lxr-general 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
|
Jun
(3) |
Jul
|
Aug
(1) |
Sep
(6) |
Oct
|
Nov
(13) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(8) |
Feb
(4) |
Mar
(6) |
Apr
(5) |
May
(5) |
Jun
(4) |
Jul
(8) |
Aug
(3) |
Sep
(6) |
Oct
(7) |
Nov
(7) |
Dec
(10) |
2003 |
Jan
(9) |
Feb
(4) |
Mar
(8) |
Apr
(12) |
May
(13) |
Jun
(9) |
Jul
(13) |
Aug
(10) |
Sep
(3) |
Oct
(3) |
Nov
(19) |
Dec
(14) |
2004 |
Jan
(11) |
Feb
(10) |
Mar
(7) |
Apr
(5) |
May
(4) |
Jun
(4) |
Jul
(2) |
Aug
|
Sep
(3) |
Oct
(2) |
Nov
(6) |
Dec
(6) |
2005 |
Jan
(11) |
Feb
(1) |
Mar
(6) |
Apr
(4) |
May
(7) |
Jun
(13) |
Jul
(9) |
Aug
(32) |
Sep
(27) |
Oct
(31) |
Nov
(17) |
Dec
(24) |
2006 |
Jan
(19) |
Feb
(25) |
Mar
(30) |
Apr
(28) |
May
(35) |
Jun
(38) |
Jul
(21) |
Aug
(31) |
Sep
(38) |
Oct
(68) |
Nov
(84) |
Dec
(83) |
2007 |
Jan
(45) |
Feb
(78) |
Mar
(72) |
Apr
(67) |
May
(51) |
Jun
(49) |
Jul
(125) |
Aug
(113) |
Sep
(74) |
Oct
(59) |
Nov
(63) |
Dec
(55) |
2008 |
Jan
(58) |
Feb
(53) |
Mar
(56) |
Apr
(224) |
May
(282) |
Jun
(269) |
Jul
(354) |
Aug
(552) |
Sep
(277) |
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(6) |
Nov
(8) |
Dec
|
2010 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(3) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(6) |
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Peter H. <ph...@oi...> - 2001-11-09 06:56:52
|
I've tried to set up lxr as per the directions. The problem is, whenever I try to follow a link from, say, $WEBHOME/lxr/http/source/linux-2.4.14, such as to linux-2.4.14/kernel, what i hit instead is /source/linux-2.4.14/source/linux-2.4.14/kernel. My lxr.conf reads in part: baseurl: http://www.ointment.org/lxr/http/ sourceroot: /usr/local/apache/htdocs/lxr/source/ # srcrootname: Linux dbdir: /usr/local/apache/htdocs/lxr/source/ glimpsebin: /usr/local/bin/glimpse I've created a <Directory> in my httpd.conf like so: <Directory "/usr/local/apache/htdocs/lxr"> Options All AllowOverride All </Directory> What am I doing wrong? Thanks very much. -- And do not say, I will study when I have leisure; for perhaps you will not have leisure. -- Pirke Avot 2:5 |
From: Joseph W. <jwi...@ou...> - 2001-09-27 17:08:53
|
I'm using the most recent version of everything from CVS, and when I try to run './genxref --url=http://cvs.mydomain.com/lxr' (Implicit --allverions), I get nothing.. no errors or anything. However, if I do './genxref --url=http://cvs.mydomain.com/lxr --version=1.2', it will generate all the indexes for v1.2 (And also 1.1, oddly). After a bit of searching, I believe I've pinpointed the problem to be in the fact that LXR::Common::pathname is empty. And since in lxr.conf, the example for getting all CVS versions is as follows: 'range' => sub { return ($files->allreleases(LXR::Common::pathname), $files->allrevisions(LXR::Common::pathname)) }, # deferred function call. It doesn't find a single version. (Not even the default version) Any suggestions on workarounds or fixes for this? I'm up against a brick wall at the moment on this one. |
From: Malcolm B. <ma...@br...> - 2001-09-24 13:11:41
|
Joel Dsa wrote: > > I set up lxr twice on my machine and everything was perfect the first time. The second time however, even though i installed perfectly, i get an error 'bash: Permission denied', everytime i try to run /var/www/html/lxr/bin/genxref /usr/src/linux > > Why is that ??? There are two possibilities that I can think of - either the script /var/www/html/lxr/bin/genxref does not have the correct permissions to allow your userid to access it, or some file under /usr/src/linux does not have read access to your user. To check if the permissions are ok on genxref, use ls -l and check that either (a) you own the script and the user permissions are r-x, or that your group owns the script and the group permissions are r-x, or that all users (others) have r-x permissions. You can see if some file under /usr/src/linux is causing the problem by looking at the output of 'strace genxref /usr/src/linux'. This shows the system calls being made, and should show you what file access is causing problems. The final possible reason (though unlikely) is that your copy of genxref comes from a windows machine, and thus the line endings are wrong. If 'perl /var/www/html/lxr/bin/genxref /usr/src/linux' works but executing it at as command doesn't then this is a likely cause. Cheers, Malcolm |
From: Joel D. <jd...@re...> - 2001-09-24 03:33:22
|
I set up lxr twice on my machine and everything was perfect the first tim= e. The second time however, even though i installed perfectly, i get an e= rror 'bash: Permission denied', everytime i try to run /var/www/html/lxr/= bin/genxref /usr/src/linux Why is that ??? Thanks, Joel = |
From: Tao L. <ta...@vt...> - 2001-09-23 16:52:55
|
hi, all, I set up code cross-reference web by using lxr 0.3 before. Now I want to cross reference a smaller source code for a software. But I have difficulty when I open the browser to localhost/lxr/http/source. It is said "This directory does not exist". If I run the source script file from console, I can get the output html file which correct reference inside it. I can search via identifier search/free text search. But when I click one link in the search result, I will get file does not exist error. I checked the .htaccess and access.conf files. They are the same as the required. The prosperity of those perl scripts are r and x for all users. Can you give me some advice on it? Thanks! Tao |
From: Rusty C. <rca...@te...> - 2001-09-05 14:46:13
|
"Joel Dsa" <jd...@re...> wrote: > Hi, > > I am having a problem. I have an apache web server and I > installed lxr as was given in the text file i got from > lxr.linux.no. Even after all the files in > $(INSTALLPREFIX)/http/source have read and execute > permissions, it gives my an access denied error when i > try to run the source script . > > Please help, You must enable cgi scripts in apache, did you do that? Here's what my apache config files look like: rcarruth@msfree> foreach f ( apache/etc/access.conf apache/etc/httpd.conf apache/etc/mime.types pache/etc/srm.conf) foreach? echo ............. $f ..................... foreach? diff $f $f.default foreach? end ............. apache/etc/access.conf ..................... 40c40 < Options Indexes FollowSymLinks ExecCGI --- > Options Indexes FollowSymLinks 58,67d57 < <Directory /apache/share/htdocs/perflogs> < AllowOverride All < Options All < </Directory> < < <Directory /apache/share/htdocs/lxr> < AllowOverride All < Options All < </Directory> < ............. /apache/etc/mime.types ..................... 40d39 < application/x-httpd-cgi pl ............. /apache/etc/srm.conf ..................... 165d164 < AddType application/x-httpd-cgi .pl 173c172 < AddHandler cgi-script .cgi --- > #AddHandler cgi-script .cgi Rusty E. Carruth Email: rca...@Te... or rca...@sl... Voice: (480) 345-3621 SnailMail: Schlumberger ATE ___ FAX: (480) 345-8793 7855 S. River Parkway, Suite 116 \e/ Ham: N7IKQ @ 146.82+,pl 162.2 Tempe, AZ 85284-1825 V ICBM: 33 20' 44"N 111 53' 47"W http://tuxedo.org/~esr/ecsl/index.html |
From: Joel D. <jd...@re...> - 2001-09-05 02:35:45
|
Hi, I am having a problem. I have an apache web server and I installed lxr as was given in the text file i got from lxr.linux.no. Even after all the files in $(INSTALLPREFIX)/http/source have read and execute permissions, it gives my an access denied error when i try to run the source script . Please help, Joel D'sa = |
From: Paul M. <pau...@ci...> - 2001-08-22 14:19:29
|
Hi, I'm using LXR 0.3 to index a system with multiple versions. Everything's = going great - it really makes browsing the source easy - apart from the = fact that I can't seem to get the include files properly set up such = that they are linked from within the files where they are referenced. Each version lives in a path like /view/version-name/... (we're using = ClearCase). However, LXR does not seem to allow me to place my version = variable in the incprefix part of lxr.conf - at any rate I can't get it = to work - so I can't gain access to the header files appropriate to each = version. I've tried playing with the mapping sections in order to get this to = work, but I've had no luck so far. Could anyone give me any pointers as = to how to get this to work? Any help much appreciated. I've also just installed LXR 0.8, and I guess I'll have the same problem = there as well. So tips related to 0.8 as welcome too. Cheers Paul |
From: Ghozlane T. <gt...@pr...> - 2001-06-27 08:23:12
|
----- Original Message ----- From: "Malcolm Box" <ma...@br...> Subject: Re: [Lxr-general] lxr usability > [...] > So my advice would be to go ahead and use the 0.7 or cvs versions. > There are some major changes coming to cvs soon before a 0.8 release, > but upgrading should be easy. great, thank you, I'll try it next week (free time in the schedule) ghoz |
From: Malcolm B. <ma...@br...> - 2001-06-27 02:52:43
|
Hi Ghoz, Ghozlane Toumi wrote: > i'd like to tryon the CVS version, and i have a few questions : > is this version useable ? > I mean i'm ready to tweak lxr code if i have to (did that on 0.3), but the > primary goal is to *use* lxr ... what are the issues/problems left open in > the cvs or 0.7, > can i expect it to work with the same features set as 0.3 ? Both the 0.7 and the current CVS version work for C/C++ at least as well as the 0.3 release. However, Java browsing is currently broken for both - the fix is not complicated, but I haven't got round to it yet. In general I've found that the 0.7 version is much better than 0.3 - the move to a proper database makes it *much* faster, and the use of ectags makes the referencing better. So my advice would be to go ahead and use the 0.7 or cvs versions. There are some major changes coming to cvs soon before a 0.8 release, but upgrading should be easy. Cheers, Malcolm |
From: Ghozlane T. <gt...@pr...> - 2001-06-26 11:35:22
|
Hello all... i've been using lxr 0.3 a while back, and for various reasons lost access to it. i'd like to tryon the CVS version, and i have a few questions : is this version useable ? I mean i'm ready to tweak lxr code if i have to (did that on 0.3), but the primary goal is to *use* lxr ... what are the issues/problems left open in the cvs or 0.7, can i expect it to work with the same features set as 0.3 ? thank you for your help (and the work on lxr) ghoz |