[Lxr-commits] CVS: lxr search, 1.30, 1.31 find, 1.24, 1.25 genxref, 1.38, 1.39 ident, 1.21, 1.22 so
Brought to you by:
ajlittoz
From: AdrianIssott <adr...@us...> - 2009-04-08 20:49:28
|
Update of /cvsroot/lxr/lxr In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2398 Modified Files: search find genxref ident source diff .cvsignore Log Message: Fix for bug 2745292 (LXR CGI Scripts Fail on Windows) - changed all occurrences of "#!/usr/bin/perl T" to be "#!perl T" and rely on the path to find the perl executable. Index: search =================================================================== RCS file: /cvsroot/lxr/lxr/search,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- search 8 Apr 2006 13:37:57 -0000 1.30 +++ search 8 Apr 2009 20:49:18 -0000 1.31 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -T +#!perl -T # $Id$ # search -- Freetext search Index: find =================================================================== RCS file: /cvsroot/lxr/lxr/find,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- find 2 Sep 2004 15:26:42 -0000 1.24 +++ find 8 Apr 2009 20:49:19 -0000 1.25 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -T +#!perl -T # $Id$ # find -- Find files Index: genxref =================================================================== RCS file: /cvsroot/lxr/lxr/genxref,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- genxref 23 Mar 2009 16:51:19 -0000 1.38 +++ genxref 8 Apr 2009 20:49:19 -0000 1.39 @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!perl # -*- tab-width: 4 -*-" # This program is free software; you can redistribute it and/or modify Index: ident =================================================================== RCS file: /cvsroot/lxr/lxr/ident,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- ident 2 Sep 2004 15:26:42 -0000 1.21 +++ ident 8 Apr 2009 20:49:19 -0000 1.22 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -T +#!perl -T # $Id$ # ident -- Look up identifiers Index: source =================================================================== RCS file: /cvsroot/lxr/lxr/source,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- source 2 Nov 2005 23:39:55 -0000 1.45 +++ source 8 Apr 2009 20:49:19 -0000 1.46 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -T +#!perl -T # $Id$ # source -- Present sourcecode as html, complete with references Index: diff =================================================================== RCS file: /cvsroot/lxr/lxr/diff,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- diff 2 Nov 2005 23:39:55 -0000 1.16 +++ diff 8 Apr 2009 20:49:19 -0000 1.17 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -T +#!perl -T # $Id$ # diff -- Display diff output with markup. Index: .cvsignore =================================================================== RCS file: /cvsroot/lxr/lxr/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- .cvsignore 2 Nov 2005 23:39:55 -0000 1.4 +++ .cvsignore 8 Apr 2009 20:49:19 -0000 1.5 @@ -10,3 +10,5 @@ lxr.css .includepath .project +valid-html401.png +.htaccess |