You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(21) |
Jul
(14) |
Aug
(83) |
Sep
(23) |
Oct
(37) |
Nov
(52) |
Dec
(10) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(28) |
Feb
(40) |
Mar
(21) |
Apr
(8) |
May
(21) |
Jun
(13) |
Jul
(9) |
Aug
(5) |
Sep
(8) |
Oct
(7) |
Nov
(2) |
Dec
|
2003 |
Jan
(2) |
Feb
(1) |
Mar
(11) |
Apr
(4) |
May
(6) |
Jun
(15) |
Jul
(4) |
Aug
(4) |
Sep
(9) |
Oct
(1) |
Nov
(1) |
Dec
(1) |
2004 |
Jan
(4) |
Feb
|
Mar
(4) |
Apr
(12) |
May
(5) |
Jun
(9) |
Jul
(47) |
Aug
(1) |
Sep
(1) |
Oct
(7) |
Nov
|
Dec
(1) |
2005 |
Jan
(4) |
Feb
(2) |
Mar
(3) |
Apr
(10) |
May
(9) |
Jun
(15) |
Jul
(3) |
Aug
(1) |
Sep
(8) |
Oct
(9) |
Nov
(10) |
Dec
(4) |
2006 |
Jan
(1) |
Feb
|
Mar
(9) |
Apr
(5) |
May
(1) |
Jun
(6) |
Jul
(2) |
Aug
|
Sep
(5) |
Oct
(2) |
Nov
|
Dec
(3) |
2007 |
Jan
(2) |
Feb
(1) |
Mar
(32) |
Apr
(3) |
May
(3) |
Jun
(16) |
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
(4) |
Dec
(3) |
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
(46) |
Apr
(70) |
May
(15) |
Jun
(13) |
Jul
(1) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
(5) |
Feb
(4) |
Mar
|
Apr
|
May
(2) |
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
(7) |
Nov
(6) |
Dec
|
2011 |
Jan
(1) |
Feb
|
Mar
(85) |
Apr
(18) |
May
(4) |
Jun
(3) |
Jul
(4) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
(2) |
Dec
(20) |
2012 |
Jan
(17) |
Feb
(16) |
Mar
(13) |
Apr
(18) |
May
|
Jun
(6) |
Jul
(6) |
Aug
(10) |
Sep
(15) |
Oct
(10) |
Nov
(25) |
Dec
(1) |
From: Jan-Benedict G. <jb...@lu...> - 2006-03-31 21:45:53
|
On Fri, 2006-03-31 21:46:07 +0100, Malcolm Box <mal...@gm...> wrot= e: > Jan-Benedict Glaw wrote: > >Maximilian Wilhelm and I started to work on LXR to support GIT as a > >backend (since GIT is now used for Linux kernel work.) When it > >started to work somewhat, I found out that ectags now recognizes some > >more object types. This patch supports those and also reorders > >existing entries. >=20 > Thanks for the patch! What version of ectags are you using - the code=20 > currently checks for a version explicitly, so I might need to update the= =20 > version checked for? jbglaw@config:~$ ctags --version Exuberant Ctags 5.5.4, Copyright (C) 1996-2003 Darren Hiebert Compiled: Mar 30 2004, 11:26:12 Addresses: <dhi...@us...>, http://ctags.sourceforge.net Optional compiled features: +wildcards, +regex jbglaw@config:~$ dpkg -l | grep ctags ii exuberant-ctags 5.5.4-1 build tag file= indexes of source code defini It is a 5.something version, as checked for. Comments on the other patches are welcome, too :) MfG, JBG --=20 Jan-Benedict Glaw jb...@lu... . +49-172-7608481 = _ O _ "Eine Freie Meinung in einem Freien Kopf | Gegen Zensur | Gegen Krieg = _ _ O f=C3=BCr einen Freien Staat voll Freier B=C3=BCrger" | im Internet! | i= m Irak! O O O ret =3D do_actions((curr | FREE_SPEECH) & ~(NEW_COPYRIGHT_LAW | DRM | TCPA)= ); |
From: Malcolm B. <mal...@gm...> - 2006-03-31 20:46:03
|
Hi, Jan-Benedict Glaw wrote: > Hi! > > Maximilian Wilhelm and I started to work on LXR to support GIT as a > backend (since GIT is now used for Linux kernel work.) When it > started to work somewhat, I found out that ectags now recognizes some > more object types. This patch supports those and also reorders > existing entries. > Thanks for the patch! What version of ectags are you using - the code currently checks for a version explicitly, so I might need to update the version checked for? Cheers, Malcolm |
From: SourceForge.net <no...@so...> - 2006-03-30 02:40:39
|
Bugs item #1461086, was opened at 2006-03-30 02:40 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1461086&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: v0.9.4 Status: Open Resolution: None Priority: 5 Submitted By: steel_mental (steel_mental) Assigned to: Nobody/Anonymous (nobody) Summary: "Cant use hyphen in file names" problem not fixed well Initial Comment: "Cant use hyphen in file names problem" fixed not well. the sub "clean_path" of file Common.pm(near line 537): .... if(defined $path) { # First suppress anything after a dodgy character $path =~ s!(^[\w_+-,.%^/]+).*!$1!; # Clean out /../ while ($path =~ m!/../!) { $path = s!/\.\./!/!g; } .... this line: $path =~ s!(^[\w_+-,.%^/]+).*!$1!; should be: $path =~ s!(^[\w_+\-,.%^/]+).*!$1!; or lxr still can not use hyphen in file names. my box is freebsd 6.0 with perl 5.8.8. sorry for my poor english and enjoy. by Michael Lee. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1461086&group_id=27350 |
From: SourceForge.net <no...@so...> - 2006-03-22 18:17:44
|
Patches item #1456323, was opened at 2006-03-22 10:17 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390119&aid=1456323&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: LXR return to / if directory has 2 letters Initial Comment: I encounter this while browsing the netbsd kernel tree (which include several 2 letters' directory), the regex in clean_path() is missing 2 '\' to protect '.' which causes the $path to be emptied. The following patch correct the regex. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390119&aid=1456323&group_id=27350 |
From: SourceForge.net <no...@so...> - 2006-03-08 23:39:16
|
Bugs item #1446014, was opened at 2006-03-08 15:39 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1446014&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: v0.9.4 Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Cant use hyphen in file names Initial Comment: Indexing files or directories named first-second cannot be viewed. Selecting the first-second link results in "The file first cannot be found." The cause is clean_path not allowing hyphen. It's in the list, just not first, so it denotes a range between the adjacent characters, not itself. Moving the hyphen to the beginning of the list solves the problem. --- Common.pm 2006-03-08 15:14:26.000000000 -0800 +++ Common.pm.old 2006-02-14 08:47:29.000000000 -0800 @@ -539,8 +539,7 @@ if(defined $path) { # First suppress anything after a dodgy character - $path =~ s!(^[-\w_+,.%^/]+).*!$1!; + $path =~ s!(^[\w_+-,.%^/]+).*!$1!; # Clean out /../ while ($path =~ m!/../!) { $path = s!/\.\./!/!g; As '+' and ',' are adjacent in the ascii character set, "+-," is a valid but not very useful range. Enjoy Lee lee...@f5... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1446014&group_id=27350 |
From: SourceForge.net <no...@so...> - 2006-01-31 11:32:08
|
Patches item #1420380, was opened at 2006-01-31 03:32 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390119&aid=1420380&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: Bugfix Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: 0.9.4: Unexpected returnvalue 16777215 from Glimpse Initial Comment: On a Suse 9.3 system with apache2-2.0.53-9.7.rpm and apache2-mod_perl-2.0.0-4.rpm the LXR 0.9.4 general search configured to use glimpse returns with the error: Unexpected returnvalue 16777215 from Glimpse Search failed I found a bug in the search perl script causing this problem. The patch is attached. For you reference I list the apache configuration and the change to .htaccess I used to get lxr working with apache2. .htaccess: 15c15,16 < PerlResponseHandler ModPerl::Registry::handler --- > PerlHandler Apache::Registry > PerlSetEnv PERL5LIB lib 17c18 < PerlOptions +ParseHeaders --- > PerlSendHeader On /etc/apache2/conf.d/mod_perl.conf PerlSwitches -T PerlSwitches -I/srv/www/lxr-0.9.4/lib -I/srv/www/lxr-0.9.4 /etc/apache2/mod_perl-startup.pl # enable if the mod_perl 1.0 compatibility is needed use Apache::compat (); ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390119&aid=1420380&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-12-28 10:52:34
|
Feature Requests item #1391862, was opened at 2005-12-28 05:52 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=1391862&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: General Group: Next Release Status: Open Priority: 5 Submitted By: GinEric (cybersongs) Assigned to: Nobody/Anonymous (nobody) Summary: 20051228.0652 $INCLUDE APR Initial Comment: I know you're busy, but would it be possible to include the Apache Portable Runtime Libraries so that the configure script adheres to true portability? Specifically, the options --enable-layout=LAYOUT and --with-most would really improve installation and up and running lxr without so much manual editing of the produced configuration files. This would help tremendously in getting more developers on SourceForge to quickly implement lxr for their sources. Thanks, Terry James meddac ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=1391862&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-12-21 17:20:23
|
Bugs item #1209273, was opened at 2005-05-26 16:33 Message generated for change (Comment added) made by lmop You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1209273&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Database interface Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jeff Warnica (jeffwarnica) Assigned to: Nobody/Anonymous (nobody) Summary: "release" a reserved word in MySQL 5.x Initial Comment: And perhaps earlier versions too. The table lxr_releases can not be created.. The MySQL docs claim that you can use reserved words as identifiers if you quote them, but testing the CREATE TABLE with "release" quoted also failed. ---------------------------------------------------------------------- Comment By: Laurence Passmore (lmop) Date: 2005-12-21 17:20 Message: Logged In: YES user_id=1410237 This is a simple fix. initdb-mysql should be changed as follows (basically, backtick (`) the column name `release` to escape/quote it): create table lxr_releases ( fileid int not null references lxr_files, `release` char(255) binary not null, primary key (fileid, `release`) ); ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1209273&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-12-08 13:58:11
|
Patches item #1376296, was opened at 2005-12-08 05:58 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390119&aid=1376296&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: Bugfix Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Fix bug that source script does not display file content. Initial Comment: Recently I set up a LXR server for OpenOffice.org 2.0.0rc3 using lxr-0.9.4, but some source code can not displayed. After playing with it about 2 days, I fixed the bug finally. Please saw the attachment. Anyone can contact me at wan...@cc... . ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390119&aid=1376296&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-12-01 14:46:40
|
Bugs item #1322202, was opened at 2005-10-10 04:04 Message generated for change (Comment added) made by darellik You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1322202&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: None Status: Closed Resolution: Duplicate Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: source does not enter 2-letters dirs Initial Comment: (LXR 0.9.4) The source script refuses to enter a 2 letters dir (such as 'fs' or 'mm' in linux kernel source tree). The problem comes from a misuse of the dot in the regexp used to filter out the .. (parent) dir. Fixup : apply following patch (do not forget to apply to the perl-mods installed in the /usr/.../site_lisp perl directory if you followd install directives) --- LXR/Common.pm 2005-10-07 15:21:11.000000000 +0200 +++ LXR/Common.pm~ 2005-10-05 17:55:19.000000000 +0200 @@ -541,7 +541,7 @@ # First suppress anything after a dodgy character $path =~ s!(^[\w_+-,.%^/]+).*!$1!; # Clean out /../ - while ($path =~ m!/\.\./!) { + while ($path =~ m!/../!) { $path = s!/\.\./!/!g; } } ---------------------------------------------------------------------- Comment By: Nick Jones (darellik) Date: 2005-12-01 08:46 Message: Logged In: YES user_id=119409 I just came upon this problem and this patch is backwards. It should read: --- LXR/Common.pm 2005-10-07 15:21:11.000000000 +0200 +++ LXR/Common.pm 2005-10-05 17:55:19.000000000 +0200 @@ -541,7 +541,7 @@ # First suppress anything after a dodgy character $path =~ s!(^[\w_+-,.%^/]+).*!$1!; # Clean out /../ - while ($path =~ m!/../!) { + while ($path =~ m!/\.\./!) { $path = s!/\.\./!/!g; } } ---------------------------------------------------------------------- Comment By: Malcolm Box (mbox) Date: 2005-10-31 16:57 Message: Logged In: YES user_id=215386 This has now been fixed in CVS. If you can install the new version and check that it solves your problem, then it would be very useful. Thanks for reporting this defect and helping to make LXR better. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1322202&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-09 18:49:59
|
Bugs item #1352448, was opened at 2005-11-09 12:38 Message generated for change (Settings changed) made by darellik You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1352448&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: v0.9.4 >Status: Deleted >Resolution: Duplicate Priority: 8 Submitted By: Nick Jones (darellik) Assigned to: Nobody/Anonymous (nobody) Summary: Files with hyphens "do not exist" Initial Comment: Any file with a hyphen in the name is reported as non-existant while browsing source. Examples include pci-dma.c and kernel-parameters.txt from the linux kernel source. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1352448&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-09 18:38:35
|
Bugs item #1352448, was opened at 2005-11-09 12:38 Message generated for change (Settings changed) made by darellik You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1352448&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: v0.9.4 Status: Open Resolution: None >Priority: 8 Submitted By: Nick Jones (darellik) Assigned to: Nobody/Anonymous (nobody) Summary: Files with hyphens "do not exist" Initial Comment: Any file with a hyphen in the name is reported as non-existant while browsing source. Examples include pci-dma.c and kernel-parameters.txt from the linux kernel source. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1352448&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-09 18:38:11
|
Bugs item #1352448, was opened at 2005-11-09 12:38 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1352448&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: v0.9.4 Status: Open Resolution: None Priority: 5 Submitted By: Nick Jones (darellik) Assigned to: Nobody/Anonymous (nobody) Summary: Files with hyphens "do not exist" Initial Comment: Any file with a hyphen in the name is reported as non-existant while browsing source. Examples include pci-dma.c and kernel-parameters.txt from the linux kernel source. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1352448&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-03 18:53:55
|
Bugs item #1347560, was opened at 2005-11-03 18:53 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1347560&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: genxref Group: v0.9.4 Status: Open Resolution: None Priority: 5 Submitted By: Jean Mao (qijingmao) Assigned to: Nobody/Anonymous (nobody) Summary: duplicated lxr_useage entries Initial Comment: I am using lxr-0.9.2 currently, but I have tried lxr-0.9.4 and which has the same problem. We are using mysql 4.1.7 and plain files. The 'genxref' creates duplicated lxr_useage entries when the source code has something like: wchar_t * foo(wchar_t *str, int len, char *ref_f, ...) { va_list va; va_start(va,ref_f); return( smsg_put_buffer_va(str, len, ref_f, va)); } /* End of smsg_put_buffer() */ .......... foo (buf, K_PATH_SIZE, "Error reading the logfile:\n %0s\n\nSelect the \Cancel\ button to exit.", filepath); ...... That is, when the next line for calling the function is really long. I have dug into the code and found the problem is at the line 184 of the lib/LXR/Lang/Generic.pm (lxr-0.9.4): @lines = ($frag =~ /(.*?\n)/g, $frag =~ /([^\n]*)$/); Where the $frag is end with: "foo (buf, K_PATH_SIZE," with carriage return (\n) and code doubled the last line. Could this be fixed? Please let me know if you have any questions. Thank you in advance for your help. Jean ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1347560&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-03 14:42:31
|
Bugs item #1346032, was opened at 2005-11-02 08:39 Message generated for change (Comment added) made by darellik You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: genxref Group: v0.9.4 >Status: Closed Resolution: None Priority: 5 Submitted By: Nick Jones (darellik) Assigned to: Malcolm Box (mbox) Summary: Unable to create LXR::Lang::Generic Lang object Initial Comment: I get the following if I try and index with this version. I have mysql 4.x setup and configured as well. # ./genxref --url=http://<servername>/linuxref --version=2.6.13 This is glimpseindex version 4.17.4, 2003. Indexing "/usr/local/lxr-0.9.4/src/2.6.13" ... Size of files being indexed = 203009279 B, Total #of files = 18057 Some files had numerals in > 50% of the indexed words: check .glimpse_messages Index-directory: "/usr/local/lxr/source/2.6.13/2.6.13" Glimpse-files created here: -rw-r--r-- 1 root root 1087477 Nov 2 08:26 .glimpse_filenames -rw-r--r-- 1 root root 72228 Nov 2 08:26 .glimpse_filenames_index -rw-r--r-- 1 root root 0 Nov 2 08:23 .glimpse_filetimes -rw------- 1 root root 15998076 Nov 2 08:26 .glimpse_index -rw-r--r-- 1 root root 328792 Nov 2 08:26 .glimpse_messages -rw------- 1 root root 12414164 Nov 2 08:26 .glimpse_partitions -rw-r--r-- 1 root root 680 Nov 2 08:26 .glimpse_statistics -rw-r--r-- 1 root root 262144 Nov 2 08:26 .glimpse_turbo *** / 2.6.13 *** /Documentation/ 2.6.13 *** /Documentation/DocBook/ 2.6.13 *** /Documentation/DocBook/man/ 2.6.13 *** /Documentation/DocBook/man/Makefile 2.6.13 Unable to create LXR::Lang::Generic Lang object, Exuberant ctags version 5 or above required, found ---------------------------------------------------------------------- >Comment By: Nick Jones (darellik) Date: 2005-11-03 08:42 Message: Logged In: YES user_id=119409 The path to the binary was incorrect as was suspected. Gentoo or the ctags config file named the binary as "exuberant-ctags" instead of only "ctags". ---------------------------------------------------------------------- Comment By: Nick Jones (darellik) Date: 2005-11-02 19:31 Message: Logged In: YES user_id=119409 I do have ctags installed, but I'll check on the path pointed to in lxr.conf tomorrow. Thanks. ---------------------------------------------------------------------- Comment By: Malcolm Box (mbox) Date: 2005-11-02 16:49 Message: Logged In: YES user_id=215386 It looks like you don't have exuberant ctags installed, or it's not where you've pointed to in lxr.conf The code tries to execute the ctags pointed to by ectagsbin in lxr.conf, and reads the version string. That's the error message you're getting - ctags is not being found. ---------------------------------------------------------------------- Comment By: Nick Jones (darellik) Date: 2005-11-02 11:39 Message: Logged In: YES user_id=119409 This is perl version 5.8.6 as well. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-03 01:31:36
|
Bugs item #1346032, was opened at 2005-11-02 08:39 Message generated for change (Comment added) made by darellik You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: genxref Group: v0.9.4 Status: Open Resolution: None Priority: 5 Submitted By: Nick Jones (darellik) Assigned to: Malcolm Box (mbox) Summary: Unable to create LXR::Lang::Generic Lang object Initial Comment: I get the following if I try and index with this version. I have mysql 4.x setup and configured as well. # ./genxref --url=http://<servername>/linuxref --version=2.6.13 This is glimpseindex version 4.17.4, 2003. Indexing "/usr/local/lxr-0.9.4/src/2.6.13" ... Size of files being indexed = 203009279 B, Total #of files = 18057 Some files had numerals in > 50% of the indexed words: check .glimpse_messages Index-directory: "/usr/local/lxr/source/2.6.13/2.6.13" Glimpse-files created here: -rw-r--r-- 1 root root 1087477 Nov 2 08:26 .glimpse_filenames -rw-r--r-- 1 root root 72228 Nov 2 08:26 .glimpse_filenames_index -rw-r--r-- 1 root root 0 Nov 2 08:23 .glimpse_filetimes -rw------- 1 root root 15998076 Nov 2 08:26 .glimpse_index -rw-r--r-- 1 root root 328792 Nov 2 08:26 .glimpse_messages -rw------- 1 root root 12414164 Nov 2 08:26 .glimpse_partitions -rw-r--r-- 1 root root 680 Nov 2 08:26 .glimpse_statistics -rw-r--r-- 1 root root 262144 Nov 2 08:26 .glimpse_turbo *** / 2.6.13 *** /Documentation/ 2.6.13 *** /Documentation/DocBook/ 2.6.13 *** /Documentation/DocBook/man/ 2.6.13 *** /Documentation/DocBook/man/Makefile 2.6.13 Unable to create LXR::Lang::Generic Lang object, Exuberant ctags version 5 or above required, found ---------------------------------------------------------------------- >Comment By: Nick Jones (darellik) Date: 2005-11-02 19:31 Message: Logged In: YES user_id=119409 I do have ctags installed, but I'll check on the path pointed to in lxr.conf tomorrow. Thanks. ---------------------------------------------------------------------- Comment By: Malcolm Box (mbox) Date: 2005-11-02 16:49 Message: Logged In: YES user_id=215386 It looks like you don't have exuberant ctags installed, or it's not where you've pointed to in lxr.conf The code tries to execute the ctags pointed to by ectagsbin in lxr.conf, and reads the version string. That's the error message you're getting - ctags is not being found. ---------------------------------------------------------------------- Comment By: Nick Jones (darellik) Date: 2005-11-02 11:39 Message: Logged In: YES user_id=119409 This is perl version 5.8.6 as well. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-03 00:06:50
|
Bugs item #1346032, was opened at 2005-11-02 14:39 Message generated for change (Settings changed) made by mbox You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: genxref Group: v0.9.4 Status: Open Resolution: None Priority: 5 Submitted By: Nick Jones (darellik) >Assigned to: Malcolm Box (mbox) Summary: Unable to create LXR::Lang::Generic Lang object Initial Comment: I get the following if I try and index with this version. I have mysql 4.x setup and configured as well. # ./genxref --url=http://<servername>/linuxref --version=2.6.13 This is glimpseindex version 4.17.4, 2003. Indexing "/usr/local/lxr-0.9.4/src/2.6.13" ... Size of files being indexed = 203009279 B, Total #of files = 18057 Some files had numerals in > 50% of the indexed words: check .glimpse_messages Index-directory: "/usr/local/lxr/source/2.6.13/2.6.13" Glimpse-files created here: -rw-r--r-- 1 root root 1087477 Nov 2 08:26 .glimpse_filenames -rw-r--r-- 1 root root 72228 Nov 2 08:26 .glimpse_filenames_index -rw-r--r-- 1 root root 0 Nov 2 08:23 .glimpse_filetimes -rw------- 1 root root 15998076 Nov 2 08:26 .glimpse_index -rw-r--r-- 1 root root 328792 Nov 2 08:26 .glimpse_messages -rw------- 1 root root 12414164 Nov 2 08:26 .glimpse_partitions -rw-r--r-- 1 root root 680 Nov 2 08:26 .glimpse_statistics -rw-r--r-- 1 root root 262144 Nov 2 08:26 .glimpse_turbo *** / 2.6.13 *** /Documentation/ 2.6.13 *** /Documentation/DocBook/ 2.6.13 *** /Documentation/DocBook/man/ 2.6.13 *** /Documentation/DocBook/man/Makefile 2.6.13 Unable to create LXR::Lang::Generic Lang object, Exuberant ctags version 5 or above required, found ---------------------------------------------------------------------- Comment By: Malcolm Box (mbox) Date: 2005-11-02 22:49 Message: Logged In: YES user_id=215386 It looks like you don't have exuberant ctags installed, or it's not where you've pointed to in lxr.conf The code tries to execute the ctags pointed to by ectagsbin in lxr.conf, and reads the version string. That's the error message you're getting - ctags is not being found. ---------------------------------------------------------------------- Comment By: Nick Jones (darellik) Date: 2005-11-02 17:39 Message: Logged In: YES user_id=119409 This is perl version 5.8.6 as well. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-02 22:49:04
|
Bugs item #1346032, was opened at 2005-11-02 14:39 Message generated for change (Comment added) made by mbox You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: genxref Group: v0.9.4 Status: Open Resolution: None Priority: 5 Submitted By: Nick Jones (darellik) Assigned to: Nobody/Anonymous (nobody) Summary: Unable to create LXR::Lang::Generic Lang object Initial Comment: I get the following if I try and index with this version. I have mysql 4.x setup and configured as well. # ./genxref --url=http://<servername>/linuxref --version=2.6.13 This is glimpseindex version 4.17.4, 2003. Indexing "/usr/local/lxr-0.9.4/src/2.6.13" ... Size of files being indexed = 203009279 B, Total #of files = 18057 Some files had numerals in > 50% of the indexed words: check .glimpse_messages Index-directory: "/usr/local/lxr/source/2.6.13/2.6.13" Glimpse-files created here: -rw-r--r-- 1 root root 1087477 Nov 2 08:26 .glimpse_filenames -rw-r--r-- 1 root root 72228 Nov 2 08:26 .glimpse_filenames_index -rw-r--r-- 1 root root 0 Nov 2 08:23 .glimpse_filetimes -rw------- 1 root root 15998076 Nov 2 08:26 .glimpse_index -rw-r--r-- 1 root root 328792 Nov 2 08:26 .glimpse_messages -rw------- 1 root root 12414164 Nov 2 08:26 .glimpse_partitions -rw-r--r-- 1 root root 680 Nov 2 08:26 .glimpse_statistics -rw-r--r-- 1 root root 262144 Nov 2 08:26 .glimpse_turbo *** / 2.6.13 *** /Documentation/ 2.6.13 *** /Documentation/DocBook/ 2.6.13 *** /Documentation/DocBook/man/ 2.6.13 *** /Documentation/DocBook/man/Makefile 2.6.13 Unable to create LXR::Lang::Generic Lang object, Exuberant ctags version 5 or above required, found ---------------------------------------------------------------------- >Comment By: Malcolm Box (mbox) Date: 2005-11-02 22:49 Message: Logged In: YES user_id=215386 It looks like you don't have exuberant ctags installed, or it's not where you've pointed to in lxr.conf The code tries to execute the ctags pointed to by ectagsbin in lxr.conf, and reads the version string. That's the error message you're getting - ctags is not being found. ---------------------------------------------------------------------- Comment By: Nick Jones (darellik) Date: 2005-11-02 17:39 Message: Logged In: YES user_id=119409 This is perl version 5.8.6 as well. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-02 17:40:04
|
Bugs item #1346032, was opened at 2005-11-02 08:39 Message generated for change (Comment added) made by darellik You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: genxref Group: v0.9.4 Status: Open Resolution: None Priority: 5 Submitted By: Nick Jones (darellik) Assigned to: Nobody/Anonymous (nobody) Summary: Unable to create LXR::Lang::Generic Lang object Initial Comment: I get the following if I try and index with this version. I have mysql 4.x setup and configured as well. # ./genxref --url=http://<servername>/linuxref --version=2.6.13 This is glimpseindex version 4.17.4, 2003. Indexing "/usr/local/lxr-0.9.4/src/2.6.13" ... Size of files being indexed = 203009279 B, Total #of files = 18057 Some files had numerals in > 50% of the indexed words: check .glimpse_messages Index-directory: "/usr/local/lxr/source/2.6.13/2.6.13" Glimpse-files created here: -rw-r--r-- 1 root root 1087477 Nov 2 08:26 .glimpse_filenames -rw-r--r-- 1 root root 72228 Nov 2 08:26 .glimpse_filenames_index -rw-r--r-- 1 root root 0 Nov 2 08:23 .glimpse_filetimes -rw------- 1 root root 15998076 Nov 2 08:26 .glimpse_index -rw-r--r-- 1 root root 328792 Nov 2 08:26 .glimpse_messages -rw------- 1 root root 12414164 Nov 2 08:26 .glimpse_partitions -rw-r--r-- 1 root root 680 Nov 2 08:26 .glimpse_statistics -rw-r--r-- 1 root root 262144 Nov 2 08:26 .glimpse_turbo *** / 2.6.13 *** /Documentation/ 2.6.13 *** /Documentation/DocBook/ 2.6.13 *** /Documentation/DocBook/man/ 2.6.13 *** /Documentation/DocBook/man/Makefile 2.6.13 Unable to create LXR::Lang::Generic Lang object, Exuberant ctags version 5 or above required, found ---------------------------------------------------------------------- >Comment By: Nick Jones (darellik) Date: 2005-11-02 11:39 Message: Logged In: YES user_id=119409 This is perl version 5.8.6 as well. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-11-02 14:39:05
|
Bugs item #1346032, was opened at 2005-11-02 08:39 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: genxref Group: v0.9.4 Status: Open Resolution: None Priority: 5 Submitted By: Nick Jones (darellik) Assigned to: Nobody/Anonymous (nobody) Summary: Unable to create LXR::Lang::Generic Lang object Initial Comment: I get the following if I try and index with this version. I have mysql 4.x setup and configured as well. # ./genxref --url=http://<servername>/linuxref --version=2.6.13 This is glimpseindex version 4.17.4, 2003. Indexing "/usr/local/lxr-0.9.4/src/2.6.13" ... Size of files being indexed = 203009279 B, Total #of files = 18057 Some files had numerals in > 50% of the indexed words: check .glimpse_messages Index-directory: "/usr/local/lxr/source/2.6.13/2.6.13" Glimpse-files created here: -rw-r--r-- 1 root root 1087477 Nov 2 08:26 .glimpse_filenames -rw-r--r-- 1 root root 72228 Nov 2 08:26 .glimpse_filenames_index -rw-r--r-- 1 root root 0 Nov 2 08:23 .glimpse_filetimes -rw------- 1 root root 15998076 Nov 2 08:26 .glimpse_index -rw-r--r-- 1 root root 328792 Nov 2 08:26 .glimpse_messages -rw------- 1 root root 12414164 Nov 2 08:26 .glimpse_partitions -rw-r--r-- 1 root root 680 Nov 2 08:26 .glimpse_statistics -rw-r--r-- 1 root root 262144 Nov 2 08:26 .glimpse_turbo *** / 2.6.13 *** /Documentation/ 2.6.13 *** /Documentation/DocBook/ 2.6.13 *** /Documentation/DocBook/man/ 2.6.13 *** /Documentation/DocBook/man/Makefile 2.6.13 Unable to create LXR::Lang::Generic Lang object, Exuberant ctags version 5 or above required, found ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1346032&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-10-31 22:57:13
|
Bugs item #1322202, was opened at 2005-10-10 10:04 Message generated for change (Settings changed) made by mbox You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1322202&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: None >Status: Closed >Resolution: Duplicate Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: source does not enter 2-letters dirs Initial Comment: (LXR 0.9.4) The source script refuses to enter a 2 letters dir (such as 'fs' or 'mm' in linux kernel source tree). The problem comes from a misuse of the dot in the regexp used to filter out the .. (parent) dir. Fixup : apply following patch (do not forget to apply to the perl-mods installed in the /usr/.../site_lisp perl directory if you followd install directives) --- LXR/Common.pm 2005-10-07 15:21:11.000000000 +0200 +++ LXR/Common.pm~ 2005-10-05 17:55:19.000000000 +0200 @@ -541,7 +541,7 @@ # First suppress anything after a dodgy character $path =~ s!(^[\w_+-,.%^/]+).*!$1!; # Clean out /../ - while ($path =~ m!/\.\./!) { + while ($path =~ m!/../!) { $path = s!/\.\./!/!g; } } ---------------------------------------------------------------------- Comment By: Malcolm Box (mbox) Date: 2005-10-31 22:57 Message: Logged In: YES user_id=215386 This has now been fixed in CVS. If you can install the new version and check that it solves your problem, then it would be very useful. Thanks for reporting this defect and helping to make LXR better. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1322202&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-10-31 22:56:24
|
Bugs item #1340588, was opened at 2005-10-28 12:45 Message generated for change (Settings changed) made by mbox You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1340588&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Sourceforge Group: current cvs >Status: Closed >Resolution: Rejected Priority: 5 Submitted By: Ray Booysen (twyford) Assigned to: Malcolm Box (mbox) Summary: Why is LXR.conf ignored? Initial Comment: Why is lxr.conf in the .cvsignore file. There is no example file to use for our configuration. ---------------------------------------------------------------------- >Comment By: Malcolm Box (mbox) Date: 2005-10-31 22:56 Message: Logged In: YES user_id=215386 There is an example lxr.conf file in the templates directory, as detailed in the INSTALL file. The lxr.conf in the root lxr directory is in .cvsignore so that developers can run a live lxr install with no risk of their lxr.conf files ending up in CVS. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1340588&group_id=27350 |
From: SourceForge.net <no...@so...> - 2005-10-28 11:45:04
|
Bugs item #1340588, was opened at 2005-10-28 12:45 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1340588&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Sourceforge Group: current cvs Status: Open Resolution: None Priority: 5 Submitted By: Ray Booysen (twyford) Assigned to: Malcolm Box (mbox) Summary: Why is LXR.conf ignored? Initial Comment: Why is lxr.conf in the .cvsignore file. There is no example file to use for our configuration. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1340588&group_id=27350 |
From: <gla...@gm...> - 2005-10-11 15:04:45
|
Hi, I am a student of Computer Scieces at the University Carlos III of Madrid (Spain). I am at the fifth course (last course) and I am starting to develop my Master Thesis. This Master Thesis will be a system to automate as much as possible the documentation process of open source project, in particular, the Linux kernel. I have designed this system to use the index files created by lxr to generate the HTML pages dinamically, but I need to know exactly which information do these files contain. Since I have not worked with Perl before, it is hard to me to read the source code of lxr to determine the information contained in these files. I hope it will be possible to you to give me the specification of those fil= es. Thanks for your help and regards, -- Guillermo |
From: SourceForge.net <no...@so...> - 2005-10-10 09:04:04
|
Bugs item #1322202, was opened at 2005-10-10 02:04 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1322202&group_id=27350 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Browsing Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: source does not enter 2-letters dirs Initial Comment: (LXR 0.9.4) The source script refuses to enter a 2 letters dir (such as 'fs' or 'mm' in linux kernel source tree). The problem comes from a misuse of the dot in the regexp used to filter out the .. (parent) dir. Fixup : apply following patch (do not forget to apply to the perl-mods installed in the /usr/.../site_lisp perl directory if you followd install directives) --- LXR/Common.pm 2005-10-07 15:21:11.000000000 +0200 +++ LXR/Common.pm~ 2005-10-05 17:55:19.000000000 +0200 @@ -541,7 +541,7 @@ # First suppress anything after a dodgy character $path =~ s!(^[\w_+-,.%^/]+).*!$1!; # Clean out /../ - while ($path =~ m!/\.\./!) { + while ($path =~ m!/../!) { $path = s!/\.\./!/!g; } } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=1322202&group_id=27350 |