lxr-general Mailing List for LXR Cross Referencer (Page 3)
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: Jan-Benedict G. <jb...@lu...> - 2008-02-25 08:19:37
|
On Sun, 2008-02-24 20:20:22 -0500, Gene Smith <gd...@gm...> wrote: > Jan-Benedict Glaw wrote, On 02/19/2008 06:57 PM: > > On Mon, 2008-02-18 21:30:28 -0500, Gene Smith <gd...@gm...> wrote: > > > Gene Smith wrote, On 02/03/2008 12:26 AM: > > > > I have a LXR setup on fc6 that works fine. When I moved it to f8 (which > > > > seems to have the same versions of httpd, perl, mysql etc) I can only > > > > get it to work if I change the user/group in httpd.conf from > > > > apache:apache to myusername:myusername. The files accessed by httpd, > > > > perl etc are world readable and executable but owned by root, as they > > > > were in fc6. These are in /usr/lib/perl5/site_perl/.... > > [...] > > > To answer my own post, the reason was because the files accessed by lxr > > > were in my home directory with permission 700 and apache could not go > > > there. Pretty simple actually but not much hint from apache or lxr as to > > > what the problem was. Just was looking at the /home/me/lxr-file/ > > > directory which was set to 755, I think, but was was overriden by the > > > /home/me/ setting of 700. (Didn't realize the permission are inherited > > > but I guess they are.) > > > > I hope you didn't need full two weeks to look at either strace output? > > Were there no error messages in apache's error.log? No specific error > > messages in HTTP output? > > Sorry, don't know much about strace. Didn't know it could be useful in > debugging my problem. Also, saw no errors in apache logs since I think > the "sources" script detected the error and generated OK html which just > said file not found. No permission denied or such messages. > Actually, didn't take 2 weeks to fix, just didn't reply immediately. > > Possibly you will say rtfm, but how do you use strace to debug lxr > problems (if I dare ask). strace traces system calls, the border between userland programs and the kernel. You can strace the whole apache processes from startup (strace -f -ff -F -s 200 -o xxxxxxx /etc/init.d/apache start) or attach to individual worker backends afterwards (-p PID). Apache is one of the harder programs to properly strace, because it does so much surrounding work, which all results in a lot of issued system calls, bloating the logs. It's kind of an art to read those, guessing what happens here and there :) However, you won't really notice suspicious stuff unless you're used to C programming. MfG, JBG -- Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: What we do for ourselves dies with us. What we do for the second : others and the world remains and is immortal. (Albert Pine) |
From: Gene Sm(i)t. <gd...@gm...> - 2008-02-25 01:20:30
|
Jan-Benedict Glaw wrote, On 02/19/2008 06:57 PM: > On Mon, 2008-02-18 21:30:28 -0500, Gene Sm(i)th <gd...@gm...> wrote: >> Gene Smith wrote, On 02/03/2008 12:26 AM: >>> I have a LXR setup on fc6 that works fine. When I moved it to f8 (which >>> seems to have the same versions of httpd, perl, mysql etc) I can only >>> get it to work if I change the user/group in httpd.conf from >>> apache:apache to myusername:myusername. The files accessed by httpd, >>> perl etc are world readable and executable but owned by root, as they >>> were in fc6. These are in /usr/lib/perl5/site_perl/.... > [...] >> To answer my own post, the reason was because the files accessed by lxr >> were in my home directory with permission 700 and apache could not go >> there. Pretty simple actually but not much hint from apache or lxr as to >> what the problem was. Just was looking at the /home/me/lxr-file/ >> directory which was set to 755, I think, but was was overriden by the >> /home/me/ setting of 700. (Didn't realize the permission are inherited >> but I guess they are.) > > I hope you didn't need full two weeks to look at either strace output? > Were there no error messages in apache's error.log? No specific error > messages in HTTP output? > > MfG, JBG > Sorry, don't know much about strace. Didn't know it could be useful in debugging my problem. Also, saw no errors in apache logs since I think the "sources" script detected the error and generated OK html which just said file not found. No permission denied or such messages. Actually, didn't take 2 weeks to fix, just didn't reply immediately. Possibly you will say rtfm, but how do you use strace to debug lxr problems (if I dare ask). -gene |
From: Gene Sm(i)t. <gd...@gm...> - 2008-02-25 01:04:35
|
Malcolm Box wrote, On 02/19/2008 05:27 AM: > On Feb 19, 2008 2:30 AM, Gene Sm(i)th <gd...@gm...> wrote: >> To answer my own post, the reason was because the files accessed by lxr >> were in my home directory with permission 700 and apache could not go >> there. Pretty simple actually but not much hint from apache or lxr as to >> what the problem was. Just was looking at the /home/me/lxr-file/ >> directory which was set to 755, I think, but was was overriden by the >> /home/me/ setting of 700. (Didn't realize the permission are inherited >> but I guess they are.) > > Permissions aren't inherited, but apache needs to be able to traverse > the whole path. That requires permissions for apache on each > directory on the path. Otherwise the kernel will not allow the file > to be read. > > So you need apache to have permissions on /home, /home/me and /home/lxr-file > > Malcolm I created a user/group "test" and within test account I was unable to cat files or list files in /home/me/lxr-file (set to 755) unless I changed /home/me to 705 so permission seemed to be inherited for this simple case (unless I am missing something here). By the way, thanks for your excellent work on LXR. I use it constantly! -gene |
From: Jan-Benedict G. <jb...@lu...> - 2008-02-19 23:57:29
|
On Mon, 2008-02-18 21:30:28 -0500, Gene Sm(i)th <gd...@gm...> wrote: > Gene Smith wrote, On 02/03/2008 12:26 AM: > > I have a LXR setup on fc6 that works fine. When I moved it to f8 (which > > seems to have the same versions of httpd, perl, mysql etc) I can only > > get it to work if I change the user/group in httpd.conf from > > apache:apache to myusername:myusername. The files accessed by httpd, > > perl etc are world readable and executable but owned by root, as they > > were in fc6. These are in /usr/lib/perl5/site_perl/.... [...] > To answer my own post, the reason was because the files accessed by lxr > were in my home directory with permission 700 and apache could not go > there. Pretty simple actually but not much hint from apache or lxr as to > what the problem was. Just was looking at the /home/me/lxr-file/ > directory which was set to 755, I think, but was was overriden by the > /home/me/ setting of 700. (Didn't realize the permission are inherited > but I guess they are.) I hope you didn't need full two weeks to look at either strace output? Were there no error messages in apache's error.log? No specific error messages in HTTP output? MfG, JBG -- Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: Zensur im Internet? Nein danke! the second : |
From: Gene Sm(i)t. <gd...@gm...> - 2008-02-19 02:30:31
|
Gene Smith wrote, On 02/03/2008 12:26 AM: > I have a LXR setup on fc6 that works fine. When I moved it to f8 (which > seems to have the same versions of httpd, perl, mysql etc) I can only > get it to work if I change the user/group in httpd.conf from > apache:apache to myusername:myusername. The files accessed by httpd, > perl etc are world readable and executable but owned by root, as they > were in fc6. These are in /usr/lib/perl5/site_perl/.... > > I have tried changing all the files to owner/group apache:apache but > that does not help. I have disabled selinux and that makes no > difference, but saw no errors before disabling. I have made httpd.conf > user/group nobody:nobody and that does not work. Only when I use my own > UID/GID in httpd.conf does LXR work. > > I have set-up LXR several times before with other fedora/rh versions > with no problem this difficult. Why would the apache account not work in > f8 but it did work with the same files in fc6? Or should I just run > apache as myself and be happy. This is only really used from localhost > for the most part, not on the internet. > > By "not work" what I mean is all I see when I go to a link in LXR is > "The directory / does not exist." which is produced in the > /usr/local/lxr/sources script. No errors appear in the httpd logs since > the script is producing a valid page. > > Got no answer on Fedora list when I asked this. Hope this makes it > through the spam. To answer my own post, the reason was because the files accessed by lxr were in my home directory with permission 700 and apache could not go there. Pretty simple actually but not much hint from apache or lxr as to what the problem was. Just was looking at the /home/me/lxr-file/ directory which was set to 755, I think, but was was overriden by the /home/me/ setting of 700. (Didn't realize the permission are inherited but I guess they are.) |
From: Jan-Benedict G. <jb...@lu...> - 2008-02-18 13:53:17
|
On Mon, 2008-02-18 14:18:14 +0100, Corentin Leboutte <le...@gm...> wrote: > Please, I need a sort help. Can u tell me where to download or find > OpenOffice's API for java? Are you sure this question is appropriate on the LXR mailing list? I guess some OOo development related list would be more helpful there... MfG, JBG -- Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: Zensur im Internet? Nein danke! the second : |
From: Corentin L. <le...@gm...> - 2008-02-18 13:18:16
|
hi Please, I need a sort help. Can u tell me where to download or find OpenOffice's API for java? In my program I need to import com.sun.star.sheet.* and other com.sun.star classes. I need to create spreadsheets, pivot tables. It is more than one week i look for it but i can't find anywhere. Thanks. Regards, Corentin |
From: Gene S. <gd...@ch...> - 2008-02-03 05:26:55
|
I have a LXR setup on fc6 that works fine. When I moved it to f8 (which seems to have the same versions of httpd, perl, mysql etc) I can only get it to work if I change the user/group in httpd.conf from apache:apache to myusername:myusername. The files accessed by httpd, perl etc are world readable and executable but owned by root, as they were in fc6. These are in /usr/lib/perl5/site_perl/.... I have tried changing all the files to owner/group apache:apache but that does not help. I have disabled selinux and that makes no difference, but saw no errors before disabling. I have made httpd.conf user/group nobody:nobody and that does not work. Only when I use my own UID/GID in httpd.conf does LXR work. I have set-up LXR several times before with other fedora/rh versions with no problem this difficult. Why would the apache account not work in f8 but it did work with the same files in fc6? Or should I just run apache as myself and be happy. This is only really used from localhost for the most part, not on the internet. By "not work" what I mean is all I see when I go to a link in LXR is "The directory / does not exist." which is produced in the /usr/local/lxr/sources script. No errors appear in the httpd logs since the script is producing a valid page. Got no answer on Fedora list when I asked this. Hope this makes it through the spam. Thanks, -gene |
From: ashitosh w. <a.d...@gm...> - 2008-01-18 10:26:26
|
Respected sir, I complete Installations of Lxr with apache server and glimpse. When I use URL : http://10.52.64.100:8080 it shows it works.But when I tried to access the code URL:http://10.52.64.100:8080/kernel/source it gives error "You don't have permission to access /kernel/source on this server" I added ScriptAlias /home/kernel "/home/lxr/http" <Directory "/home/lxr/http"> AllowOverride None Options None Order allow,deny Allow from all </Directory> in httpd.conf . Can anybody please tell me what is the problem ? Thanks in advance. Thanks & Regards Ashitosh |
From: Reed <Ree...@Su...> - 2008-01-09 01:17:55
|
Hi Guys, Are there any ideas that why I got identical results? ... Type the full name of an identifier to summarize (a function name, variable name, typedef, etc). Matches are case-sensitive. *Identifier: * stmf_first_zero *Declarations:* /comstar/src/sun_nws/comstar/stmf/src/stmf.c, line 86 <http://lxr.prc.sun.com/lxr/source/comstar/src/sun_nws/comstar/stmf/src/stmf.c#086> variable definition /comstar/src/sun_nws/comstar/stmf/src/stmf.c, line 86 <http://lxr.prc.sun.com/lxr/source/comstar/src/sun_nws/comstar/stmf/src/stmf.c#086> variable definition 2 declarations in 1 files. *References:* /comstar/src/sun_nws/comstar/stmf/src/stmf.c, line 86 <http://lxr.prc.sun.com/lxr/source/comstar/src/sun_nws/comstar/stmf/src/stmf.c#086> /comstar/src/sun_nws/comstar/stmf/src/stmf.c, line 1990 <http://lxr.prc.sun.com/lxr/source/comstar/src/sun_nws/comstar/stmf/src/stmf.c#1990> /comstar/src/sun_nws/comstar/stmf/src/stmf.c, line 86 <http://lxr.prc.sun.com/lxr/source/comstar/src/sun_nws/comstar/stmf/src/stmf.c#086> /comstar/src/sun_nws/comstar/stmf/src/stmf.c, line 1990 <http://lxr.prc.sun.com/lxr/source/comstar/src/sun_nws/comstar/stmf/src/stmf.c#1990> 4 references in 1 files. ... Thanks, Reed |
From: Chuanwen W. <wc...@gm...> - 2007-12-07 12:42:39
|
On Dec 7, 2007 8:18 PM, Jan-Benedict Glaw <jb...@lu...> wrote: > On Fri, 2007-12-07 20:13:01 +0800, Chuanwen Wu <wc...@gm...> wrote: > > *** / helloworld > > *** /helloworld.c helloworld > > Unable to create LXR::Lang::Generic Lang object, Exuberant ctags > > version 5 or above required, found ctags (GNU Emacs 22.1) You mean this line? Of course, I use ctags-5.5.4-r2:( I use gentoo linux) # eix ctags [I] dev-util/ctags Available versions: 5.5.4-r2 ~5.6-r2 ~5.6-r3 ~5.7 {ada} Installed versions: 5.5.4-r2(08:04:34 PM 12/07/2007) Homepage: http://ctags.sourceforge.net Description: Exuberant Ctags creates tags files for code browsing in editors > > Copyright (C) 2007 Free Software Foundation, Inc. > > This program is distributed under the terms in ETAGS.README > > > Did you actually *read* that message? > > > Any help will be very appreciated! > > Please read the error message again :) > > MfG, JBG > > -- > Jan-Benedict Glaw jb...@lu... +49-172-7608481 > Signature of: http://catb.org/~esr/faqs/smart-questions.html > the second : > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (GNU/Linux) > > iD8DBQFHWTn+Hb1edYOZ4bsRAs6LAJ9GHp5EVSpYkaIw66mZmF72iQrfIgCfeAKW > pdQJV5IzOdYFgNezpZYeJAc= > =eZa5 > -----END PGP SIGNATURE----- > > -- wcw |
From: Jan-Benedict G. <jb...@lu...> - 2007-12-07 12:18:20
|
On Fri, 2007-12-07 20:13:01 +0800, Chuanwen Wu <wc...@gm...> wrote: > *** / helloworld > *** /helloworld.c helloworld > Unable to create LXR::Lang::Generic Lang object, Exuberant ctags > version 5 or above required, found ctags (GNU Emacs 22.1) > Copyright (C) 2007 Free Software Foundation, Inc. > This program is distributed under the terms in ETAGS.README Did you actually *read* that message? > Any help will be very appreciated! Please read the error message again :) MfG, JBG --=20 Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: http://catb.org/~esr/faqs/smart-questions.html the second : |
From: Chuanwen W. <wc...@gm...> - 2007-12-07 12:13:07
|
Hi, I just follow the INSTALL file and when I did genxref, I got this error information: # ./genxref --url=http://192.168.1.77/lxr --version=helloworld This is glimpseindex version 4.18.2, 2006. Indexing "/usr/src/mysrc/helloworld" ... Size of files being indexed = 72 B, Total #of files = 1 Index-directory: "/var/www/localhost/htdocs/lxr/glimpse-src/helloworld" Glimpse-files created here: -rw-r--r-- 1 root root 41 2007-12-07 20:04 .glimpse_filenames -rw-r--r-- 1 root root 4 2007-12-07 20:04 .glimpse_filenames_index -rw-r--r-- 1 root root 0 2007-12-07 20:04 .glimpse_filetimes -rw------- 1 root root 121 2007-12-07 20:04 .glimpse_index -rw-r--r-- 1 root root 116 2007-12-07 20:04 .glimpse_messages -rw------- 1 root root 22 2007-12-07 20:04 .glimpse_partitions -rw-r--r-- 1 root root 250 2007-12-07 20:04 .glimpse_statistics -rw-r--r-- 1 root root 262144 2007-12-07 20:04 .glimpse_turbo *** / helloworld *** /helloworld.c helloworld Unable to create LXR::Lang::Generic Lang object, Exuberant ctags version 5 or above required, found ctags (GNU Emacs 22.1) Copyright (C) 2007 Free Software Foundation, Inc. This program is distributed under the terms in ETAGS.README Here is the content of the file helloworld.c /**********************************************/ #include <stdio.h> int main(){ printf("hello world!\n"); return 0; } /*********************************************/ I use lxr-0.9.5. and # mysql -V mysql Ver 14.7 Distrib 4.1.22, for pc-linux-gnu (x86_64) using readline 5.2 Any help will be very appreciated! -- wcw |
From: am k. <am...@ya...> - 2007-12-03 11:58:47
|
Dear Sir/Madam, Is there any package or application to install LXR automatically on Linux Fedora Core 6, Pentium 4, i386, kernel 2.6.18? THank you for your attention, Am Kara. ____________________________________________________________________________________ Be a better pen pal. Text or chat with friends inside Yahoo! Mail. See how. http://overview.mail.yahoo.com/ |
From: Jan-Benedict G. <jb...@lu...> - 2007-06-19 22:03:32
|
On Tue, 2007-06-19 22:37:27 +0500, Tahir Saleh <tah...@ho...> wro= te: > after couple of my mails in the same mailing list i was asked to get the = lxr source from cvs > but trying to get the source from www.sf.net website persist the same pr= oblem the missing=20 > .htaccess file. iam persuing this file in the downloads b/c i have seen i= t while browsing the=20 > source code from other undownloadable source list.can anyone tell me wher= e to get the lxr=20 > source from (i mean can i get a link). Use CVS, the "Concurrent Versioning SystEM" (or "Crappiest Version System ever made" for what it's worth...) You once need to log on: $ cvs -d:pserver:ano...@lx...:/cvsroot/lxr login=20 (Just press the Enter key when asked for a password.) Now you can proceed downloading the sources: $ cvs -z9 -d:pserver:ano...@lx...:/cvsroot/lxr co -P l= xr As further development taked place, you may want to update your checked-out sources (from the above step) to whatever it up-to-date right now: $ cd lxr/ $ cvs update -d -P That's all :) MfG, JBG --=20 Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: http://www.chiark.greenend.org.uk/~sgtatham/bugs.h= tml the second : |
From: Jan-Benedict G. <jb...@lu...> - 2007-06-19 20:47:11
|
On Tue, 2007-06-19 19:47:18 +0200, Maximilian Wilhelm <ma...@rf...> wro= te: > Am Tuesday, den 19 June hub Tahir Saleh folgendes in die Tasten: > > after couple of my mails in the same mailing list i was asked to get th= e lxr source from cvs > > but trying to get the source from www.sf.net website persist the same = problem the missing=20 > > .htaccess file. iam persuing this file in the downloads b/c i have seen= it while browsing the=20 > > source code from other undownloadable source list.can anyone tell me wh= ere to get the lxr=20 > > source from (i mean can i get a link). >=20 > lxr.sf.net points to a "new site" -> http://sourceforge.net/projects/lxr > There is a menu item "Code" with an item CVS in it which leeds to=20 > http://sourceforge.net/cvs/?group_id=3D27350 >=20 > To make the story short, read that page and use cvs. Additionally, keep in mind that files beginning with a dot are "hidden" files. For `ls', you need to add the "-a" switch to the command line to see them. MfG, JBG --=20 Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: The real problem with C++ for kernel modules is: the second : the language just sucks. -- Linus Torvalds |
From: Maximilian W. <ma...@rf...> - 2007-06-19 17:47:31
|
Am Tuesday, den 19 June hub Tahir Saleh folgendes in die Tasten: > > after couple of my mails in the same mailing list i was asked to get the lxr source from cvs > but trying to get the source from www.sf.net website persist the same problem the missing > .htaccess file. iam persuing this file in the downloads b/c i have seen it while browsing the > source code from other undownloadable source list.can anyone tell me where to get the lxr > source from (i mean can i get a link). lxr.sf.net points to a "new site" -> http://sourceforge.net/projects/lxr There is a menu item "Code" with an item CVS in it which leeds to http://sourceforge.net/cvs/?group_id=27350 To make the story short, read that page and use cvs. Ciao Max -- Follow the white penguin. |
From: Tahir S. <tah...@ho...> - 2007-06-19 17:37:48
|
after couple of my mails in the same mailing list i was asked to get the lx= r source from cvs but trying to get the source from www.sf.net website persist the same prob= lem the missing=20 .htaccess file. iam persuing this file in the downloads b/c i have seen it = while browsing the=20 source code from other undownloadable source list.can anyone tell me where = to get the lxr=20 source from (i mean can i get a link). regards _________________________________________________________________ Play free games, earn tickets, get cool prizes! Join Live Search Club.=A0 http://club.live.com/home.aspx?icid=3DCLUB_wlmailtextlink= |
From: Steven G. <Ste...@ce...> - 2007-06-01 08:40:21
|
Dear Help, I would like to do a "general search" with LXR to find all of the "MSG::ERROR" statements under MuonSpectrometer. If I enter "MuonSpectrometer" in the "Files named:" window, I get a listing of all of the MuonSpectrometer software. If I enter "MSG::ERROR" in the "Containing:" window, I get a listing of the first 1000 files containing "MSG::ERROR", but this does not even get close to "MuonSpectrometer" in the alphabet. If I enter both, I come up empty! I suspect that only the first 1000 files are searched for the string, as I know that I have plenty of "MSG:ERROR" statements in the MuonSpectrometer software. Does anyone know how to change that behavior? I would like to avoid renaming my package to AAMuonSpectrometer! Thanks. Best Regards, Steve ======================================================================== Steven Goldfarb, Research Scientist University of Michigan / ATLAS Address: CERN-PH, 1211 Geneva 23, Suisse CERN Office: Bat 40-3-D08 Phone: +41.22.767.1226 <Ste...@ce...> Fax: +41.22.767.8350 <http://cern.ch/goldfarb> ======================================================================== |
From: Shahbaz K. <sha...@gm...> - 2007-05-24 19:21:15
|
Mr Jan-Benedict Glaw Its so sweet of you to look at all the configuration. Its always a pleasure to know people like you are out there to help such newbies like me. I will work on your hints and let you know about the conclusions. I should succeed now at least! Thak you. |
From: Jan-Benedict G. <jb...@lu...> - 2007-05-20 20:54:09
|
On Mon, 2007-05-21 01:25:56 +0500, Shahbaz Khan <sha...@gm...> wrot= e: > I sent this email a few days back. If nobody can help me out plz let > me know so that I can move ahead. Either the spam filter ate it, or it simply didn't find its way to the mailing list. Please resend--this version was missing the mentioned attachments. > On 5/16/07, Shahbaz Khan <sha...@gm...> wrote: > > I am using apache 2.2.3-5 and lxr-0.9.5 release version. Attached are > > my conf files for apache and lxr. Plz sort it out for me because I > > have spent a lot of time and its not working out for me. I have > > thouroghly read lxr.cong and install files for details but alone its > > knowledge is not working. I am not used to apache and linux in general > > so I get lost easily and end up installing my linux machine over and > > over again. > > > > Do we need an lxr user for my sql? You can use any existing user, but in general, it's wise to separate stuff that's, well, separate. So better create a fresh user for LXR. > > Does mysql server have local users? It does. Usually, all the SQL servers have their own user management that's not at all related to system users. > > Is lxr linux user of sqlserver user? I don't understand this question. At most, I see these users being in the game: * One (system) user that Apache is using. This usually is "www", "apache", "www-data" or something like that, rarely "root" is uses. * One (system) user that's owning the LXR related files. The Apache web server's user (www, apache, www-data, ... as above) must have read access to the LXR files. Using the same user is the simple approach, but depending on your setup, you may want some real user to be able to update LXR or change its configuration, so it may be a regular user accoung. * A (system) user that the database server is using, usually named like the RDBMS system (eg. "postgres", "oracle", ...) You possibly need to have access to this user to create the next one, a DB-specific user for use with LXR. * A (DB-specific) LXR user, which lifes entirely inside the DB, including its password, access management etc. Account data for this user is usually placed into the lxr.conf file. > > My database is empty even after generating the indexes That means that either there was nothing to index, or that some error happened. Tough you didn't post error messages (and the config attachments aren't in this resent email), we this is a guess--at best. > > I do not use CVS so should I comment out its requirements? Like CVS bin LXR is a system to present source code with the help of a web browser. You need to give LXR the source code you want to present. How did you do that? (Your lxr.conf file would probably tell us...) There are several ways: * Offer a Bitkeeper repository to LXR. * Offer a CVS repository to LXR. * Offer a GIT repository to LXR. * Offer plain files to LXR (eg. extract tarballs of the project: mkdir /data/sources/linux-0.01 && ( cd /data/sources/linux-0.01 && tar x= jf /path/to/linux-0.01.tar.bz2 ) mkdir /data/sources/linux-1.0.0 && ( cd /data/sources/linux-1.0.0 && tar x= jf /path/to/linux-1.0.0.tar.bz2 ) mkdir /data/sources/linux-2.0.0 && ( cd /data/sources/linux-2.0.0 && tar x= jf /path/to/linux-2.0.0.tar.bz2 ) mkdir /data/sources/linux-2.6.1 && ( cd /data/sources/linux-2.6.1 && tar x= jf /path/to/linux-2.6.1.tar.bz2 ) ) Without sources, nothing will be indexed, because there's nothing to index. > > I have no idea how to install the test units! What to do? Ignore it. It's mostly used to test LXR after hacking it. > > Curently I get the source perl file in my browser which might mean > > that perl is not being executed but dumped by the server. It has to be > > with httpd.conf. mod_per and other perl module are installed as > > directed by install and lxr.conf. Apache2? Apache1? httpd.conf? Thses handler options have to be set for the <Location>: SetHandler perl-script PerlHandler Apache::Registry Options +ExecCGI > > My directory options are set in /etc/security/access.conf. This is the > > same thing that can be put in httpd.conf. But this works because > > multiple Files ~ A|B|C syntax is not yet supported with apache. > > Atleast I get this message. I have also sorted out that mysql 5.x has > > release as a keyword so we have to escape it with ` in initdb_mysql. ISTR that this should be fixed in the CVS version of LXR. > > I need simple explainations plz, because am a newbie/rookie with linux = and lxr. Thought about offering somebody login data to the machine to install it together with you in a screen -x session? MfG, JBG --=20 Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: Ich hatte in letzter Zeit ein bi=C3=9Fchen viel Rea= litycheck. the second : Langsam m=C3=B6chte ich mal wieder weitertr=C3= =A4umen k=C3=B6nnen. |
From: Shahbaz K. <sha...@gm...> - 2007-05-20 20:26:43
|
I sent this email a few days back. If nobody can help me out plz let me know so that I can move ahead. On 5/16/07, Shahbaz Khan <sha...@gm...> wrote: > I am using apache 2.2.3-5 and lxr-0.9.5 release version. Attached are > my conf files for apache and lxr. Plz sort it out for me because I > have spent a lot of time and its not working out for me. I have > thouroghly read lxr.cong and install files for details but alone its > knowledge is not working. I am not used to apache and linux in general > so I get lost easily and end up installing my linux machine over and > over again. > > Do we need an lxr user for my sql? > Does mysql server have local users? > Is lxr linux user of sqlserver user? > My database is empty even after generating the indexes > I do not use CVS so should I comment out its requirements? Like CVS bin > I have no idea how to install the test units! What to do? > Curently I get the source perl file in my browser which might mean > that perl is not being executed but dumped by the server. It has to be > with httpd.conf. mod_per and other perl module are installed as > directed by install and lxr.conf. > > My directory options are set in /etc/security/access.conf. This is the > same thing that can be put in httpd.conf. But this works because > multiple Files ~ A|B|C syntax is not yet supported with apache. > Atleast I get this message. I have also sorted out that mysql 5.x has > release as a keyword so we have to escape it with ` in initdb_mysql. > > I need simple explainations plz, because am a newbie/rookie with linux and lxr. > > Thank you. > > |
From: Jan-Benedict G. <jb...@lu...> - 2007-05-14 20:30:50
|
On Mon, 2007-05-14 05:35:38 -0700, Swarup Sahoo <me...@ya...> wrote: > I don't have access to a machine for which I don't have admin > privileges. I want to use lxr in that machine.=20 Eh? No access to no machine? > Is it possible to configure lxr so that I can browse the source code > in my PC locally, without suing any httpd, Apache? Won't work that easily. In theory, a script could be written to fetch all and any content off a LXR server, but after all, LXR is a server-based technology. So there's no "easy" way to simply "dump" all pages for offline use, but it has been considered (for speed reasons) to locally cache requested pages. > Did any body try to use lxr locally in his machine?=20 You can install it locally, but this needs a local source repository, a database and a web server... > It would be great if i get some suggestions to do this locally in my mach= ine. I'm sorry, but there's no easy way in doing that, except installing it. MfG, JBG --=20 Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: If it doesn't work, force it. the second : If it breaks, it needed replacing anyway. |
From: Jan-Benedict G. <jb...@lu...> - 2007-05-14 20:15:58
|
On Sat, 2007-05-12 20:33:00 +0500, Shahbaz Khan <sha...@gm...> wrot= e: > Currently, after all configurations I do http://localhost/source, it > dumps the source.pl script from lxr directory as text! This is an important step. What exact LXR version do you use (released 0.9.x or from CVS?) and what exact kind of web server (Apache 1.x? Apache 2.x?) are you using? >From the INSTALL file: Apache2, modperl2 and LXR /--------------- |Edit the .htaccess file and change "Apache::Registry" to |"ModPerl::Registry". You also need to let modperl2 know about |where to find LXR perl modules. You can add a line like this |to your Apache2 config: | | PerlRequire /usr/local/lxr/require.pl | |with about this contents: |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |#!/usr/bin/env perl -w |@INC=3D(@INC, "/usr/local/lxr", | "/usr/local/lxr/lib", | "/usr/local/lxr/lib/Files"); |1; |- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \--------------- For me, it worked by just installing the appropriate Debian packages (libapache2-mod-perl2 and apache2) and enabling the module (link it into /etc/apache2/mods-enabled from mods-availabl). MfG, JBG --=20 Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: http://catb.org/~esr/faqs/smart-questions.html the second : |
From: Swarup S. <me...@ya...> - 2007-05-14 12:35:46
|
Hi All, I don't have access to a machine for which I don't have admin privileges. I want to use lxr in that machine. Is it possible to configure lxr so that I can browse the source code in my PC locally, without suing any httpd, Apache? Did any body try to use lxr locally in his machine? It would be great if i get some suggestions to do this locally in my machine. ~swarup --------------------------------- Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, photos & more. |