lxr-developer Mailing List for LXR Cross Referencer (Page 12)
Brought to you by:
ajlittoz
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: SourceForge.net <no...@so...> - 2011-03-04 18:07:43
|
Bugs item #3089456, was opened at 2010-10-18 03:49 Message generated for change (Comment added) made by ajlittoz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3089456&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: Lang support Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Marc W. Mengel (mengel) Assigned to: Nobody/Anonymous (nobody) Summary: variables span or class yeild nested tag ugliness Initial Comment: If you cross-reference C code that has variable "span" the markup engine first puts <span class='reserved'>typedef</span> and then the identifier markup turns that into <<a href="...ident?i=span">span</a> class='reserved'>typedef</span> If you have a program with all 3 of "span", "class" and "reserved" as variables, the results are particualrly special. I've worked around this somewhat by hacking up Generic.pm with the following patch, but there are still a few such instances leaking through... *** Generic.pm.orig 2010-09-27 11:35:23.000000000 -0500 --- Generic.pm 2010-10-17 13:09:59.000000000 -0500 *************** *** 155,168 **** $self->processreserved($code); ! # Replace identifier by link unless it's a reserved word $$code =~ s{ ! (^|[^\$\w\#])([-\w~\#][\w]*)\b } { $1. ! ( $index->issymbol($2, $$self{'releaseid'}) ? join($2, @{$$self{'itag'}}) : $2 ); }gex; } --- 155,168 ---- $self->processreserved($code); ! # Replace identifier by link unless it's a reserved word or part of a span tag from above... $$code =~ s{ ! ((?:\s*<span.*?>.*?</span>\s*)+|[^\$\w\#]|^)([-\w~\#]?[\w]*)\b } { $1. ! ((! $self->isreserved($2) && $index->issymbol($2, $$self{'releaseid'})) ? join($2, @{$$self{'itag'}}) : $2 ); }gex; } ---------------------------------------------------------------------- Comment By: Andre-Littoz (ajlittoz) Date: 2011-03-04 19:07 Message: The same behaviour happens with processinclude if filename looks like a reserved word or contains a pathological variable like above. Thus it deserves the same kind of correction. As you noticed, your proposed patch leaves some leaks. I tackled the issue on a different principle: in my opinion, the cause is the multi-pass nature of the replacements/taggings. All must be done simultaneously to prevent the mis-behaviour. Take a look to the help forum where I posted the whole bunch of my patches under topic 'Help on non regression' as I'd like someone to check these on different data than mine. Regards, Pat ---------------------------------------------------------------------- Comment By: Marc W. Mengel (mengel) Date: 2010-10-18 16:46 Message: Attached a patch which seems to work reliably now. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3089456&group_id=27350 |
From: SourceForge.net <no...@so...> - 2011-01-29 17:14:03
|
Bugs item #3116715, was opened at 2010-11-23 17:00 Message generated for change (Comment added) made by dnycz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116715&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: Lang support Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: dcochlin (dcochlin) Assigned to: Nobody/Anonymous (nobody) Summary: C/C++ language: #elsif should be #elseif Initial Comment: - generic.conf should define #elseif instead of #elsif. - Python language could use a triple quote comment 'comment' => ('"""', '"""'), ---------------------------------------------------------------------- Comment By: Damian Nycz (dnycz) Date: 2011-01-29 18:14 Message: In C/C++ language there is no '#elseif' nor '#elsif'; there is '#elif'; generic.conf should define '#elif' instead of '#elsif'. There is missing '#line' directive in C/C++. There is missing 'compl' C++ keyword. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116715&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-11-23 19:59:54
|
Bugs item #3116870, was opened at 2010-11-23 13:57 Message generated for change (Comment added) made by dcochlin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116870&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: Lang support Group: None >Status: Deleted >Resolution: Duplicate Priority: 5 Private: No Submitted By: dcochlin (dcochlin) Assigned to: Nobody/Anonymous (nobody) Summary: C/C++ language: #elsif should be #elseif Initial Comment: - generic.conf should define #elseif instead of #elsif. - Python language could use a triple quote comment 'comment' => ('"""', '"""'), ---------------------------------------------------------------------- >Comment By: dcochlin (dcochlin) Date: 2010-11-23 13:59 Message: Deleted this because it is an exact duplicate of another bug. Posted twice. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116870&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-11-23 19:57:41
|
Bugs item #3116870, was opened at 2010-11-23 13:57 Message generated for change (Tracker Item Submitted) made by dcochlin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116870&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: Lang support Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: dcochlin (dcochlin) Assigned to: Nobody/Anonymous (nobody) Summary: C/C++ language: #elsif should be #elseif Initial Comment: - generic.conf should define #elseif instead of #elsif. - Python language could use a triple quote comment 'comment' => ('"""', '"""'), ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116870&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-11-23 16:00:59
|
Bugs item #3116715, was opened at 2010-11-23 10:00 Message generated for change (Tracker Item Submitted) made by dcochlin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116715&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: Lang support Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: dcochlin (dcochlin) Assigned to: Nobody/Anonymous (nobody) Summary: C/C++ language: #elsif should be #elseif Initial Comment: - generic.conf should define #elseif instead of #elsif. - Python language could use a triple quote comment 'comment' => ('"""', '"""'), ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116715&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-11-23 15:55:49
|
Bugs item #3116713, was opened at 2010-11-23 09:51 Message generated for change (Comment added) made by dcochlin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116713&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: Lang support Group: None >Status: Closed >Resolution: Duplicate Priority: 5 Private: No Submitted By: dcochlin (dcochlin) Assigned to: Nobody/Anonymous (nobody) Summary: Line continuation character "\" problem Initial Comment: LXR Version: 0.9.8 Error message in genxref output: BTYPE was: atom DB: mysql Plain files. When the code being parsed contains a line continuation character, like "\" in C, the line associated with "References:" to the tag are wrong. For example, parsing this code (ignore the line numbers, they are included to show the problem with References).... <<< 001 #define my_define (100 - \ 002 25) 003 004 char[] my_string; 005 006 strcat(my_string, "Hello"); 007 008 for (i=0, i<my_define; ++i){ 009 printf("The number is: %d", i); 010 } 011 012 printf("%s", my_string); >>> Clicking on "my_define" results in the following. Note the line numbers in the references for "my_define" should be (1 and 8) not (1 and 7). <<< my_define Declarations: /deviceapps/aim_adams.c, line 1 macro (un)definition 1 declarations in 1 files. References: /deviceapps/aim_adams.c, line 1 /deviceapps/aim_adams.c, line 7 2 references in 1 files. >>> Clicking on my_string results in something even stranger. There are only 3 references in the file and only one of the references displayed match the actual line number. <<< my_string Declarations: /deviceapps/aim_adams.c, line 4 variable definition 1 declarations in 1 files. References: /deviceapps/aim_adams.c, line 3 /deviceapps/aim_adams.c, line 5 /deviceapps/aim_adams.c, line 11 /deviceapps/aim_adams.c, line 12 4 references in 1 files. >>> ---------------------------------------------------------------------- >Comment By: dcochlin (dcochlin) Date: 2010-11-23 09:55 Message: This is re-post of a previous bug. Sorry. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116713&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-11-23 15:51:39
|
Bugs item #3116713, was opened at 2010-11-23 09:51 Message generated for change (Tracker Item Submitted) made by dcochlin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116713&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: Lang support Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: dcochlin (dcochlin) Assigned to: Nobody/Anonymous (nobody) Summary: Line continuation character "\" problem Initial Comment: LXR Version: 0.9.8 Error message in genxref output: BTYPE was: atom DB: mysql Plain files. When the code being parsed contains a line continuation character, like "\" in C, the line associated with "References:" to the tag are wrong. For example, parsing this code (ignore the line numbers, they are included to show the problem with References).... <<< 001 #define my_define (100 - \ 002 25) 003 004 char[] my_string; 005 006 strcat(my_string, "Hello"); 007 008 for (i=0, i<my_define; ++i){ 009 printf("The number is: %d", i); 010 } 011 012 printf("%s", my_string); >>> Clicking on "my_define" results in the following. Note the line numbers in the references for "my_define" should be (1 and 8) not (1 and 7). <<< my_define Declarations: /deviceapps/aim_adams.c, line 1 macro (un)definition 1 declarations in 1 files. References: /deviceapps/aim_adams.c, line 1 /deviceapps/aim_adams.c, line 7 2 references in 1 files. >>> Clicking on my_string results in something even stranger. There are only 3 references in the file and only one of the references displayed match the actual line number. <<< my_string Declarations: /deviceapps/aim_adams.c, line 4 variable definition 1 declarations in 1 files. References: /deviceapps/aim_adams.c, line 3 /deviceapps/aim_adams.c, line 5 /deviceapps/aim_adams.c, line 11 /deviceapps/aim_adams.c, line 12 4 references in 1 files. >>> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116713&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-11-23 15:28:19
|
Bugs item #3116684, was opened at 2010-11-23 09:28 Message generated for change (Tracker Item Submitted) made by dcochlin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116684&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: Lang support Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: dcochlin (dcochlin) Assigned to: Nobody/Anonymous (nobody) Summary: Line continuation character "\" problem Initial Comment: LXR Version: 0.9.8 Error message in genxref output: BTYPE was: atom DB: mysql Plain files. When the code being parsed contains a line continuation character, like "\" in C, the line associated with "References:" to the tag are wrong. For example, parsing this code (ignore the line numbers, they are included to show the problem with References).... <<< 001 #define my_define (100 - \ 002 25) 003 004 char[] my_string; 005 006 strcat(my_string, "Hello"); 007 008 for (i=0, i<my_define; ++i){ 009 printf("The number is: %d", i); 010 } 011 012 printf("%s", my_string); >>> Clicking on "my_define" results in the following. Note the line numbers in the references for "my_define" should be (1 and 8) not (1 and 7). <<< my_define Declarations: /deviceapps/aim_adams.c, line 1 macro (un)definition 1 declarations in 1 files. References: /deviceapps/aim_adams.c, line 1 /deviceapps/aim_adams.c, line 7 2 references in 1 files. >>> Clicking on my_string results in something even stranger. There are only 3 references in the file and only one of the references displayed match the actual line number. <<< my_string Declarations: /deviceapps/aim_adams.c, line 4 variable definition 1 declarations in 1 files. References: /deviceapps/aim_adams.c, line 3 /deviceapps/aim_adams.c, line 5 /deviceapps/aim_adams.c, line 11 /deviceapps/aim_adams.c, line 12 4 references in 1 files. >>> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3116684&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-10-18 14:51:53
|
Bugs item #3004815, was opened at 2010-05-20 17:36 Message generated for change (Comment added) made by mengel You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3004815&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: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Bad HTML output Initial Comment: Using lxr-0.9.8, I get garbled output in the generated web pages. I have attached my lxr.conf and an example html page showing the problem. I am using MySQL as a backend with raw source files (not using CVS or git, etc.) I have reproduced this issue on Centos 5.3 and Ubuntu 10.04 Server. ---------------------------------------------------------------------- Comment By: Marc W. Mengel (mengel) Date: 2010-10-18 14:51 Message: I put a fix for this in https://sourceforge.net/tracker/?func=detail&aid=3089456&group_id=27350&atid=390117 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3004815&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-10-18 14:51:23
|
Bugs item #3004819, was opened at 2010-05-20 17:41 Message generated for change (Comment added) made by mengel You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3004819&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: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Bad HTML output, part 2 Initial Comment: CLONE please close. Unfortunately, SF.net\\\'s web interface did not let me attach more than a single file.... attached is the example HTML output ---------------------------------------------------------------------- Comment By: Marc W. Mengel (mengel) Date: 2010-10-18 14:51 Message: I put a fix for this in https://sourceforge.net/tracker/?func=detail&aid=3089456&group_id=27350&atid=390117 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3004819&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-10-18 14:46:49
|
Bugs item #3089456, was opened at 2010-10-18 01:49 Message generated for change (Comment added) made by mengel You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3089456&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: Lang support Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Marc W. Mengel (mengel) Assigned to: Nobody/Anonymous (nobody) Summary: variables span or class yeild nested tag ugliness Initial Comment: If you cross-reference C code that has variable "span" the markup engine first puts <span class='reserved'>typedef</span> and then the identifier markup turns that into <<a href="...ident?i=span">span</a> class='reserved'>typedef</span> If you have a program with all 3 of "span", "class" and "reserved" as variables, the results are particualrly special. I've worked around this somewhat by hacking up Generic.pm with the following patch, but there are still a few such instances leaking through... *** Generic.pm.orig 2010-09-27 11:35:23.000000000 -0500 --- Generic.pm 2010-10-17 13:09:59.000000000 -0500 *************** *** 155,168 **** $self->processreserved($code); ! # Replace identifier by link unless it's a reserved word $$code =~ s{ ! (^|[^\$\w\#])([-\w~\#][\w]*)\b } { $1. ! ( $index->issymbol($2, $$self{'releaseid'}) ? join($2, @{$$self{'itag'}}) : $2 ); }gex; } --- 155,168 ---- $self->processreserved($code); ! # Replace identifier by link unless it's a reserved word or part of a span tag from above... $$code =~ s{ ! ((?:\s*<span.*?>.*?</span>\s*)+|[^\$\w\#]|^)([-\w~\#]?[\w]*)\b } { $1. ! ((! $self->isreserved($2) && $index->issymbol($2, $$self{'releaseid'})) ? join($2, @{$$self{'itag'}}) : $2 ); }gex; } ---------------------------------------------------------------------- >Comment By: Marc W. Mengel (mengel) Date: 2010-10-18 14:46 Message: Attached a patch which seems to work reliably now. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3089456&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-10-18 01:49:27
|
Bugs item #3089456, was opened at 2010-10-18 01:49 Message generated for change (Tracker Item Submitted) made by mengel You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3089456&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: Lang support Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Marc W. Mengel (mengel) Assigned to: Nobody/Anonymous (nobody) Summary: variables span or class yeild nested tag ugliness Initial Comment: If you cross-reference C code that has variable "span" the markup engine first puts <span class='reserved'>typedef</span> and then the identifier markup turns that into <<a href="...ident?i=span">span</a> class='reserved'>typedef</span> If you have a program with all 3 of "span", "class" and "reserved" as variables, the results are particualrly special. I've worked around this somewhat by hacking up Generic.pm with the following patch, but there are still a few such instances leaking through... *** Generic.pm.orig 2010-09-27 11:35:23.000000000 -0500 --- Generic.pm 2010-10-17 13:09:59.000000000 -0500 *************** *** 155,168 **** $self->processreserved($code); ! # Replace identifier by link unless it's a reserved word $$code =~ s{ ! (^|[^\$\w\#])([-\w~\#][\w]*)\b } { $1. ! ( $index->issymbol($2, $$self{'releaseid'}) ? join($2, @{$$self{'itag'}}) : $2 ); }gex; } --- 155,168 ---- $self->processreserved($code); ! # Replace identifier by link unless it's a reserved word or part of a span tag from above... $$code =~ s{ ! ((?:\s*<span.*?>.*?</span>\s*)+|[^\$\w\#]|^)([-\w~\#]?[\w]*)\b } { $1. ! ((! $self->isreserved($2) && $index->issymbol($2, $$self{'releaseid'})) ? join($2, @{$$self{'itag'}}) : $2 ); }gex; } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3089456&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-10-01 15:24:28
|
Feature Requests item #942911, was opened at 2004-04-27 10:23 Message generated for change (Comment added) made by mengel You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=942911&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 Private: No Submitted By: teewurstmann (teewurstmann) Assigned to: Nobody/Anonymous (nobody) Summary: Subversion Support Initial Comment: It would be nice to integrate support for Subversion into a future release of LXR. Since LXR already supports CVS support for Subversion shouldn't be too hard to implement. ---------------------------------------------------------------------- Comment By: Marc W. Mengel (mengel) Date: 2010-10-01 15:24 Message: I've added patch 390119 https://sourceforge.net/tracker/?func=detail&aid=3079487&group_id=27350&atid=390119 ---------------------------------------------------------------------- Comment By: Marc W. Mengel (mengel) Date: 2010-10-01 15:14 Message: I have this working, where you give a 'sourceroot' => 'svn:http://servername/path/to/repository' I'll try to attach a patch... ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2007-11-27 11:19 Message: Logged In: NO is it comming or not? would be very nice to hear about... think this is a good feature ---------------------------------------------------------------------- Comment By: Matt England (mengland) Date: 2006-12-24 13:48 Message: Logged In: YES user_id=10503 Originator: NO Is any Subversion-support activity underway? If not, can anyone provide some pointers on how to make an appropriate lib/LXR/Files/SVN.pm and anything else that's needed to make LXR parse a Subversion repository? -Matt ---------------------------------------------------------------------- Comment By: Vaish (vaish) Date: 2006-04-24 15:19 Message: Logged In: YES user_id=1508835 Is there any workaround for LXR to access subversion repository? ---------------------------------------------------------------------- Comment By: Roland Schwingel (rolandschwingel) Date: 2004-10-20 08:58 Message: Logged In: YES user_id=710704 Oh yes!! This would be really cool to have... I am at present searching for an application doing this... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=942911&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-10-01 15:22:03
|
Patches item #3079487, was opened at 2010-10-01 15:22 Message generated for change (Tracker Item Submitted) made by mengel You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390119&aid=3079487&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: File backends Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Marc W. Mengel (mengel) Assigned to: Nobody/Anonymous (nobody) Summary: svn (Subversion) repository support Initial Comment: Attaching a patch to add File::Subversion.pm which uses readonly http: access to a subversion repository to implement the interface that LXR needs. You set 'sourceroot' => 'svn:http://path/to/repository', where there is http://path/to/repository/trunk and http://path/to/repostory/tags/tag and then you can use 'head' or 'trunk' for the head, and tagnames as versions to be browsed. I may of course have overlooked something, but it seemed pretty straightforward... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390119&aid=3079487&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-10-01 15:14:08
|
Feature Requests item #942911, was opened at 2004-04-27 10:23 Message generated for change (Comment added) made by mengel You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=942911&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 Private: No Submitted By: teewurstmann (teewurstmann) Assigned to: Nobody/Anonymous (nobody) Summary: Subversion Support Initial Comment: It would be nice to integrate support for Subversion into a future release of LXR. Since LXR already supports CVS support for Subversion shouldn't be too hard to implement. ---------------------------------------------------------------------- Comment By: Marc W. Mengel (mengel) Date: 2010-10-01 15:14 Message: I have this working, where you give a 'sourceroot' => 'svn:http://servername/path/to/repository' I'll try to attach a patch... ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2007-11-27 11:19 Message: Logged In: NO is it comming or not? would be very nice to hear about... think this is a good feature ---------------------------------------------------------------------- Comment By: Matt England (mengland) Date: 2006-12-24 13:48 Message: Logged In: YES user_id=10503 Originator: NO Is any Subversion-support activity underway? If not, can anyone provide some pointers on how to make an appropriate lib/LXR/Files/SVN.pm and anything else that's needed to make LXR parse a Subversion repository? -Matt ---------------------------------------------------------------------- Comment By: Vaish (vaish) Date: 2006-04-24 15:19 Message: Logged In: YES user_id=1508835 Is there any workaround for LXR to access subversion repository? ---------------------------------------------------------------------- Comment By: Roland Schwingel (rolandschwingel) Date: 2004-10-20 08:58 Message: Logged In: YES user_id=710704 Oh yes!! This would be really cool to have... I am at present searching for an application doing this... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=942911&group_id=27350 |
From: Jochen R. <joc...@gm...> - 2010-07-13 00:57:53
|
I got LXR 0.9.8 to run on Centos last weekend. I am using MySQL and glimpse. Attached is a patch with some changes I had to make. Looks like other folks have run into similar problems. I am fairly perl-illiterate, so please pardon any gross mistakes on my part. Best, Jochen |
From: SourceForge.net <no...@so...> - 2010-06-22 00:40:11
|
Bugs item #3019336, was opened at 2010-06-22 00:40 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3019336&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 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: ident makes bad getindex/getreference calls Initial Comment: http://lxr.cvs.sourceforge.net/viewvc/lxr/lxr/ident?r1=1.24&r2=1.25 When mbox made the fix for the XSS issue, he reverted the change of getindex -> symdeclarations and getreference -> symreferences. If you trace the history of the Mysql module you'll see the change. (2009-04-25) This is in 0.9.8 and it makes 0.9.8 unusable. The error message in my apache logs (scrubbed) is : fatal: main, line 89: Can't locate object method "getreference" via package "LXR::Index::Mysql" at /opt/lxr/ident line 89., fatal: main, line 52: Can't locate object method "getindex" via package "LXR::Index::Mysql" at /opt/lxr/ident line 52. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3019336&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-05-20 17:41:19
|
Bugs item #3004819, was opened at 2010-05-20 17:41 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3004819&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: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Bad HTML output, part 2 Initial Comment: CLONE please close. Unfortunately, SF.net\\\'s web interface did not let me attach more than a single file.... attached is the example HTML output ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3004819&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-05-20 17:36:16
|
Bugs item #3004815, was opened at 2010-05-20 17:36 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3004815&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: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Bad HTML output Initial Comment: Using lxr-0.9.8, I get garbled output in the generated web pages. I have attached my lxr.conf and an example html page showing the problem. I am using MySQL as a backend with raw source files (not using CVS or git, etc.) I have reproduced this issue on Centos 5.3 and Ubuntu 10.04 Server. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=3004815&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-02-20 03:09:24
|
Bugs item #2955434, was opened at 2010-02-20 03:09 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=2955434&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 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: wrong coloring Initial Comment: Hi, Have a look here http://lxr.linux.no/linux+v2.6.32/net/core/utils.c#L65 .. for some reason all the line after the first ' is colored green .. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=2955434&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-02-12 19:55:52
|
Bugs item #2950793, was opened at 2010-02-12 13:55 Message generated for change (Tracker Item Submitted) made by gartung You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=2950793&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 Private: No Submitted By: Patrick Gartung (gartung) Assigned to: Nobody/Anonymous (nobody) Summary: genxref --reindexall with MySQL causes unknown table error Initial Comment: Running genxref --reindexall when using MySQL 4.x produces an unkonown table error from mysql server. Using the syntax suggested at this site http://www.portfolioofpb.com/blog/mysql-sql-error-unknown-table-in-MULTI+DELETE-solved I modified lib/LXR/Index/Mysql.pm to use the correct syntax for mysql 4.x ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=2950793&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-02-09 06:58:14
|
Feature Requests item #2948299, was opened at 2010-02-09 06:54 Message generated for change (Settings changed) made by You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=2948299&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 Interface Group: Next Release Status: Open >Priority: 1 Private: No Submitted By: https://www.google.com/accounts () Assigned to: Nobody/Anonymous (nobody) Summary: Mobile UI for LXR Initial Comment: How about design an interface for mobile browsers on Android, WM and Symbian? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=2948299&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-02-09 06:54:42
|
Feature Requests item #2948299, was opened at 2010-02-09 06:54 Message generated for change (Tracker Item Submitted) made by You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=2948299&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 Interface Group: Next Release Status: Open Priority: 5 Private: No Submitted By: https://www.google.com/accounts () Assigned to: Nobody/Anonymous (nobody) Summary: Mobile UI for LXR Initial Comment: How about design an interface for mobile browsers on Android, WM and Symbian? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390120&aid=2948299&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-01-05 22:04:45
|
Bugs item #2926043, was opened at 2010-01-05 06:26 Message generated for change (Comment added) made by mbox You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=2926043&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.6 Status: Closed Resolution: Accepted Priority: 5 Private: No Submitted By: Dan Rosenberg (drosenbe) Assigned to: Malcolm Box (mbox) Summary: Cross-Site Scripting bugs in LXR Initial Comment: Apologies if you've received duplicate e-mail from me, but I haven't received any response from the LXR SourceForge e-mail addresses. There are several cross-site scripting vulnerabilities in LXR. These vulnerabilities could allow an attacker to execute scripts in a user's browser, steal cookies associated with vulnerable domains, redirect the user to malicious websites, etc. A proof-of-concept URL may look like: http://www.example.com/lxr/ident?i=<script>alert('XSS')</script> I have confirmed these vulnerabilities in LXR 0.9.6 and 0.9.5. The experimental LXR installation in use at lxr.linux.no is also vulnerable with certain settings. This issue has been assigned CVE-2009-4497. I have written a patch for this issue, and I'd be happy to work with you to resolve the problem. Please reply to discuss fixing and publishing this bug. Thanks, Dan Rosenberg ---------------------------------------------------------------------- >Comment By: Malcolm Box (mbox) Date: 2010-01-05 22:04 Message: Fixed in release 0.9.7 ---------------------------------------------------------------------- Comment By: Malcolm Box (mbox) Date: 2010-01-05 22:04 Message: Fixed in release 0.9.7 ---------------------------------------------------------------------- Comment By: Malcolm Box (mbox) Date: 2010-01-05 22:04 Message: This has now been fixed in the SF LXR codebase. As for the maintenance status is I think the most accurate answer is "patchy", as in I'd be very happy to find someone else to take over... ---------------------------------------------------------------------- Comment By: Arne Georg Gleditsch (argggh) Date: 2010-01-05 21:40 Message: Thank you for your report. (This is the first I've seen of it -- what addresses did you try earlier?) I'm honestly not sure what the maintenance status of the SF-hosted LXR code base is these days -- perhaps some of the other developers would like to speak up? I have not myself touched this code for some time. Regarding the lxr.linux.no code base, I'd be more than happy to attend to any issues you have found. You can reach me directly on ar...@gl... if you wish. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=2926043&group_id=27350 |
From: SourceForge.net <no...@so...> - 2010-01-05 22:04:41
|
Bugs item #2926043, was opened at 2010-01-05 06:26 Message generated for change (Comment added) made by mbox You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=2926043&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.6 >Status: Closed >Resolution: Accepted Priority: 5 >Private: No Submitted By: Dan Rosenberg (drosenbe) >Assigned to: Malcolm Box (mbox) Summary: Cross-Site Scripting bugs in LXR Initial Comment: Apologies if you've received duplicate e-mail from me, but I haven't received any response from the LXR SourceForge e-mail addresses. There are several cross-site scripting vulnerabilities in LXR. These vulnerabilities could allow an attacker to execute scripts in a user's browser, steal cookies associated with vulnerable domains, redirect the user to malicious websites, etc. A proof-of-concept URL may look like: http://www.example.com/lxr/ident?i=<script>alert('XSS')</script> I have confirmed these vulnerabilities in LXR 0.9.6 and 0.9.5. The experimental LXR installation in use at lxr.linux.no is also vulnerable with certain settings. This issue has been assigned CVE-2009-4497. I have written a patch for this issue, and I'd be happy to work with you to resolve the problem. Please reply to discuss fixing and publishing this bug. Thanks, Dan Rosenberg ---------------------------------------------------------------------- >Comment By: Malcolm Box (mbox) Date: 2010-01-05 22:04 Message: Fixed in release 0.9.7 ---------------------------------------------------------------------- Comment By: Malcolm Box (mbox) Date: 2010-01-05 22:04 Message: This has now been fixed in the SF LXR codebase. As for the maintenance status is I think the most accurate answer is "patchy", as in I'd be very happy to find someone else to take over... ---------------------------------------------------------------------- Comment By: Arne Georg Gleditsch (argggh) Date: 2010-01-05 21:40 Message: Thank you for your report. (This is the first I've seen of it -- what addresses did you try earlier?) I'm honestly not sure what the maintenance status of the SF-hosted LXR code base is these days -- perhaps some of the other developers would like to speak up? I have not myself touched this code for some time. Regarding the lxr.linux.no code base, I'd be more than happy to attend to any issues you have found. You can reach me directly on ar...@gl... if you wish. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=390117&aid=2926043&group_id=27350 |