You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
(1) |
Apr
(9) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(32) |
Feb
(24) |
Mar
(5) |
Apr
(50) |
May
(21) |
Jun
(25) |
Jul
(6) |
Aug
(1) |
Sep
|
Oct
(1) |
Nov
(6) |
Dec
(17) |
2004 |
Jan
(19) |
Feb
(1) |
Mar
(5) |
Apr
(4) |
May
|
Jun
(9) |
Jul
|
Aug
(6) |
Sep
(1) |
Oct
|
Nov
(3) |
Dec
(14) |
2005 |
Jan
(6) |
Feb
(3) |
Mar
(3) |
Apr
(1) |
May
(5) |
Jun
(7) |
Jul
(4) |
Aug
(16) |
Sep
(2) |
Oct
(2) |
Nov
(7) |
Dec
|
2006 |
Jan
(3) |
Feb
(4) |
Mar
(8) |
Apr
(1) |
May
(6) |
Jun
(19) |
Jul
(5) |
Aug
(4) |
Sep
(4) |
Oct
(19) |
Nov
(15) |
Dec
(10) |
2007 |
Jan
(6) |
Feb
(2) |
Mar
(4) |
Apr
(1) |
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Robert H. <ro...@ro...> - 2004-12-30 18:39:00
|
Hi Jim, On Thu, Dec 30, 2004 at 06:25:13AM -0800, Jim wrote: > 1. All files in the sandbox are owned by the apache > user (www). If the original file had 444 permission, > then it now has 644. Even though I've made www in the > same group as the developers, they can't edit the file > from the Unix command line like I need them to. Is > there a way for the files to be owned by the user > logging into Sandweb and not the apache user? There is no way to do this currently, but SandWeb could be made to do an "su" when doing CVS operations, which may address your problem. Can you explain exactly what you want to do? > 2. Along the same lines, when a user edits a file then > commits it back to the CVS repository, the comments > are owned by www. I need them the comments to come > from the developer so we can tell who did what changes > to the code. We've been disussing this over the past few days. Right now the solutions is: don't use local or pserver, use SSH. If performance becomes an issue, I have some patches that enable RSH instead that I can check in if anyone else is interested. Thanks, Rob |
From: Jim <ji...@ya...> - 2004-12-30 14:25:14
|
I've recently installed SandWeb and would like to use it for a project involving several developers. I have a couple of issues though that I need help with. 1. All files in the sandbox are owned by the apache user (www). If the original file had 444 permission, then it now has 644. Even though I've made www in the same group as the developers, they can't edit the file from the Unix command line like I need them to. Is there a way for the files to be owned by the user logging into Sandweb and not the apache user? 2. Along the same lines, when a user edits a file then commits it back to the CVS repository, the comments are owned by www. I need them the comments to come from the developer so we can tell who did what changes to the code. Thanks for your help with this. It looks like an excellent product you've created. Jim __________________________________ Do you Yahoo!? Yahoo! Mail - Find what you need with new enhanced search. http://info.mail.yahoo.com/mail_250 |
From: Robert H. <ro...@ro...> - 2004-12-23 00:28:54
|
Hmm this is going out to the shell, did you try using two backlashes \\ in the .user.cfg? The shell treats backslash as an escape character. On Wed, 22 Dec 2004 2:45pm, Webb, Jason wrote: > I have tried to edit the .user.cfg files manually with the same result > as before(the \ is still removed). > > -----Original Message----- > From: Robert Helmer [mailto:ro...@ro...] > Sent: Wednesday, December 22, 2004 2:53 PM > To: Webb, Jason > Cc: san...@li... > Subject: Re: [Sandweb-users] cvs repository username problem > > Ah that's interesting.. ok. Using pserver with SandWeb has some > drawbacks, having to do with the way pserver works: > > 1) all passwords are stored in ~www-user/.cvspass > 2) all checkins appear to come from www-user > > Substitute "www-user" for your Apache user's name. > > Anyway, SSH overcomes these problems, but your core problem will > be the same, that SandWeb isn't taking the \ character. > > One workaround you can try is to edit the .user.cfg file directly; > I think that should work. The default location is > /usr/local/share/sandweb/users/${username}/.user.cfg > > Let me know if that works. > > > -- > Rob > > > On Wed, Dec 22, 2004 at 02:28:21PM -0700, Webb, Jason wrote: >> I am using pserver. The cvs username for this user to access the cvs >> repository has to be passed as a domain followed by a "\" followed by >> his username. We have to do it this way because of the way his user >> account is set up. Any suggestions? >> >> -----Original Message----- >> From: Robert Helmer [mailto:ro...@ro...] >> Sent: Wednesday, December 22, 2004 1:48 PM >> To: Webb, Jason >> Subject: Re: [Sandweb-users] cvs repository username problem >> >> This needs to be done within SandWeb (workaround would be for >> the user to change their name :) ). >> >> I just confirmed that backslashes in usernames work for SandWeb >> users but not for CVS over SSH users.. this is what you are seeing >> right? >> >> I'll see if I can put out a patch for the 1.0 branch that addresses >> this.. however we need to be very careful with funny characters since >> this is part of a call to the shell. >> >> >> Thanks, >> Rob >> >> On Wed, Dec 22, 2004 at 12:00:01PM -0700, Webb, Jason wrote: >> > I am having another problem. I have Sandweb up and working now, >> however >> > there is one user that needs to access our CVS repository and can't, >> > while everybody else can. The problem seems to be that the username >> that >> > he needs to access the repository with, contains a backslash(\). > From >> > the debugging info it seems that the "\" is being stripped out of > the >> > username before it is ever passed to the repository for >> authentication. >> > Is there a way to get around this problem? >> > >> > >> > >> > Thanks >> > >> > -Jason >> > >> > >> > >> >> >> |
From: Webb, J. <jas...@lm...> - 2004-12-22 22:22:42
|
I have tried to edit the .user.cfg files manually with the same result as before(the \ is still removed). -----Original Message----- From: Robert Helmer [mailto:ro...@ro...] Sent: Wednesday, December 22, 2004 2:53 PM To: Webb, Jason Cc: san...@li... Subject: Re: [Sandweb-users] cvs repository username problem Ah that's interesting.. ok. Using pserver with SandWeb has some drawbacks, having to do with the way pserver works: 1) all passwords are stored in ~www-user/.cvspass 2) all checkins appear to come from www-user Substitute "www-user" for your Apache user's name. Anyway, SSH overcomes these problems, but your core problem will be the same, that SandWeb isn't taking the \ character. One workaround you can try is to edit the .user.cfg file directly; I think that should work. The default location is /usr/local/share/sandweb/users/${username}/.user.cfg Let me know if that works. -- Rob On Wed, Dec 22, 2004 at 02:28:21PM -0700, Webb, Jason wrote: > I am using pserver. The cvs username for this user to access the cvs > repository has to be passed as a domain followed by a "\" followed by > his username. We have to do it this way because of the way his user > account is set up. Any suggestions? > > -----Original Message----- > From: Robert Helmer [mailto:ro...@ro...] > Sent: Wednesday, December 22, 2004 1:48 PM > To: Webb, Jason > Subject: Re: [Sandweb-users] cvs repository username problem > > This needs to be done within SandWeb (workaround would be for > the user to change their name :) ). > > I just confirmed that backslashes in usernames work for SandWeb > users but not for CVS over SSH users.. this is what you are seeing > right? > > I'll see if I can put out a patch for the 1.0 branch that addresses > this.. however we need to be very careful with funny characters since > this is part of a call to the shell. > > > Thanks, > Rob > > On Wed, Dec 22, 2004 at 12:00:01PM -0700, Webb, Jason wrote: > > I am having another problem. I have Sandweb up and working now, > however > > there is one user that needs to access our CVS repository and can't, > > while everybody else can. The problem seems to be that the username > that > > he needs to access the repository with, contains a backslash(\). From > > the debugging info it seems that the "\" is being stripped out of the > > username before it is ever passed to the repository for > authentication. > > Is there a way to get around this problem? > > > > > > > > Thanks > > > > -Jason > > > > > > > > > |
From: Robert H. <ro...@ro...> - 2004-12-22 22:01:28
|
Ah that's interesting.. ok. Using pserver with SandWeb has some drawbacks, having to do with the way pserver works: 1) all passwords are stored in ~www-user/.cvspass 2) all checkins appear to come from www-user Substitute "www-user" for your Apache user's name. Anyway, SSH overcomes these problems, but your core problem will be the same, that SandWeb isn't taking the \ character. One workaround you can try is to edit the .user.cfg file directly; I think that should work. The default location is /usr/local/share/sandweb/users/${username}/.user.cfg Let me know if that works. -- Rob On Wed, Dec 22, 2004 at 02:28:21PM -0700, Webb, Jason wrote: > I am using pserver. The cvs username for this user to access the cvs > repository has to be passed as a domain followed by a "\" followed by > his username. We have to do it this way because of the way his user > account is set up. Any suggestions? > > -----Original Message----- > From: Robert Helmer [mailto:ro...@ro...] > Sent: Wednesday, December 22, 2004 1:48 PM > To: Webb, Jason > Subject: Re: [Sandweb-users] cvs repository username problem > > This needs to be done within SandWeb (workaround would be for > the user to change their name :) ). > > I just confirmed that backslashes in usernames work for SandWeb > users but not for CVS over SSH users.. this is what you are seeing > right? > > I'll see if I can put out a patch for the 1.0 branch that addresses > this.. however we need to be very careful with funny characters since > this is part of a call to the shell. > > > Thanks, > Rob > > On Wed, Dec 22, 2004 at 12:00:01PM -0700, Webb, Jason wrote: > > I am having another problem. I have Sandweb up and working now, > however > > there is one user that needs to access our CVS repository and can't, > > while everybody else can. The problem seems to be that the username > that > > he needs to access the repository with, contains a backslash(\). From > > the debugging info it seems that the "\" is being stripped out of the > > username before it is ever passed to the repository for > authentication. > > Is there a way to get around this problem? > > > > > > > > Thanks > > > > -Jason > > > > > > > > > |
From: Webb, J. <jas...@lm...> - 2004-12-22 21:52:24
|
I am using pserver. The cvs username for this user to access the cvs repository has to be passed as a domain followed by a "\" followed by his username. We have to do it this way because of the way his user account is set up. Any suggestions? -----Original Message----- From: Robert Helmer [mailto:ro...@ro...] Sent: Wednesday, December 22, 2004 1:48 PM To: Webb, Jason Subject: Re: [Sandweb-users] cvs repository username problem This needs to be done within SandWeb (workaround would be for the user to change their name :) ). I just confirmed that backslashes in usernames work for SandWeb users but not for CVS over SSH users.. this is what you are seeing right? I'll see if I can put out a patch for the 1.0 branch that addresses this.. however we need to be very careful with funny characters since this is part of a call to the shell. Thanks, Rob On Wed, Dec 22, 2004 at 12:00:01PM -0700, Webb, Jason wrote: > I am having another problem. I have Sandweb up and working now, however > there is one user that needs to access our CVS repository and can't, > while everybody else can. The problem seems to be that the username that > he needs to access the repository with, contains a backslash(\). From > the debugging info it seems that the "\" is being stripped out of the > username before it is ever passed to the repository for authentication. > Is there a way to get around this problem? > > > > Thanks > > -Jason > > > |
From: Webb, J. <jas...@lm...> - 2004-12-22 19:00:38
|
I am having another problem. I have Sandweb up and working now, however there is one user that needs to access our CVS repository and can't, while everybody else can. The problem seems to be that the username that he needs to access the repository with, contains a backslash(\). From the debugging info it seems that the "\" is being stripped out of the username before it is ever passed to the repository for authentication. Is there a way to get around this problem? Thanks -Jason |
From: Robert H. <ro...@ro...> - 2004-12-19 21:33:07
|
On Tue, Dec 14, 2004 at 09:30:15AM -0700, Webb, Jason wrote: > ./tools/install_script.pl > > make: *** [custom_install] Error 1 Hello, Hmm strange.. there is no other output but an error? What Linux distribution is this? What happens if you run "./tools/install_script.pl" from the command line? Just curious if the script itself is failing for some reason (path to Perl set wrong, et.). -- Rob |
From: Webb, J. <jas...@lm...> - 2004-12-14 16:30:21
|
I am now trying to install Sandweb on a linux box. perl Makefile.PL make make test all run fine with no errors. When I run "make install" it seems to be running fine and then at the very end it has this output: Writing /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi/auto/Sandweb/.pac klist Appending installation info to /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi/perllocal.pod ./tools/install_script.pl make: *** [custom_install] Error 1 What does this mean? And how can I fix it? Thanks, -Jason |
From: Robert H. <ro...@ro...> - 2004-12-12 12:03:28
|
So I guess you figured out the previous problem stated in your email with the subject: "Sandweb installation problems"? You really should be getting debug messages if debug is set to 1.. Are you sure that you have the sandweb.cfg installed into the proper place? Look inside sandweb.cgi and verify that these settings are correct: my $config_file = 'sandweb.cfg'; my $config_dir = '/etc'; (your config_dir may be different from mine of course..) -- Rob Helmer Webb, Jason wrote: > I have installed sandweb and get the login screen when I run > sandweb.cgi. However, when I try to login using a user that I created > using sandweb-admin I always get an error message saying: > > Login incorrect, please try again. > > I have edited the sandweb.cfg file so that debug = “1”, but I am > getting no messages in the sandweb.log file nor on the screen. > > Can anyone help? > > -Jason > |
From: Webb, J. <jas...@lm...> - 2004-12-08 22:39:26
|
I have installed sandweb and get the login screen when I run sandweb.cgi. However, when I try to login using a user that I created using sandweb-admin I always get an error message saying: Login incorrect, please try again. I have edited the sandweb.cfg file so that debug = "1", but I am getting no messages in the sandweb.log file nor on the screen. Can anyone help? -Jason |
From: Webb, J. <jas...@lm...> - 2004-12-06 21:52:18
|
I am having problems with the installation of sandweb. When I run "make test" I get the following output: /usr/bin/perl.exe "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch') t/*.t t/auth.........ok 2/3# Failed test 3 in t/auth.t at line 29 # t/auth.t line 29 is: ok($auth->login(t/auth..........NOK 3 t/auth.........Failed test 3 Failed 1/3 tests, 66.67% okay t/file.........ok t/repository...ok 8/190+1 records in 0+1 records out t/repository...ok 11/190+1 records in 0+1 records out t/repository...ok 17/19# Failed test 18 in t/repository.t at line 147 # t/repository.t line 147 is: if ( -d "$file") (t/repository....NOK 18 t/repository...FAILED test 18 Failed 1/19 tests, 94.7% okay Failed Test Stat Wstat Total Fail Failed List of Failed ------------------------------------------------------------------------ -------- t/auth.t 3 1 33.33% 3 t/repository.t 19 1 5.26% 18 Failed 2/3 test scripts, 33.3% okay. 2/30 subtests failed, 93.3% okay make: *** [test_dynamic] Error 14 also if I try to run the sandweb.cgi file through an apache server I get the following software error: HTML::Template->new() : Cannot open included file /login.html : file not found. at C:/www/perl/site/lib/HTML/Template.pm line 1616 HTML::Template::_init_template('HTML::Template=HASH(0x1760528)') called at C:/www/perl/site/lib/HTML/Template.pm line 1189 HTML::Template::_init('HTML::Template=HASH(0x1760528)') called at C:/www/perl/site/lib/HTML/Template.pm line 1083 HTML::Template::new('HTML::Template', 'filename', '/login.html') called at C:/www/Apache2/bin/../lib/SandWeb/UI.pm line 509 SandWeb::UI::get_menu('SandWeb::UI=HASH(0x1b64660)', 'MENU', 'login', 'PROGNAME', 'sandweb.cgi', 'SALT', 1595015167.62863) called at C:/www/Apache2/bin/sandweb.cgi line 675 main::login_menu() called at C:/www/Apache2/bin/sandweb.cgi line 188 main::main() called at C:/www/Apache2/bin/sandweb.cgi line 3833 Is there anyone out there that has some idea about what might be wrong? I could really use some help. |
From: Robert H. <ro...@ro...> - 2004-12-01 21:39:14
|
Trevor McAlister wrote: > I have exactly the same problem as indicated by the Email in users > archive: 2004-11-17. But I didn't understand the solution to the error, > I'm new to sandweb & apache2, so could I have a simple & detailed > explanation/solution please. > > Also sandweb.cgi is only displaying the following in the web browser and > there is no entry in the server error log to give me any ideas. Did you follow the installation instructions? Sounds like the location of the config file is not set in sandweb.cgi ... You mention that you are running on Windows; are you using Cygwin (from http://cygwin.com)? That is the only supported way to run SandWeb on Windows. -- Rob Helmer |
From: Trevor M. <tre...@ho...> - 2004-12-01 16:13:10
|
Hi I have exactly the same problem as indicated by the Email in users archive: 2004-11-17. But I didn't understand the solution to the error, I'm new to sandweb & apache2, so could I have a simple & detailed explanation/solution please. Also sandweb.cgi is only displaying the following in the web browser and there is no entry in the server error log to give me any ideas. unable to open config file: sandweb.cfg in dir '../etc'return data: $VAR1 = { 'errlev' => 0, 'data' => {} }; Finally can you reassure me that sandweb will work on these two configurations: {windows 2000, apache1.3, sandweb1.0.1},{windows xp, apache2, sandweb1.0.1} thank you Trevor -- Whatever you Wanadoo: http://www.wanadoo.co.uk/time/ This email has been checked for most known viruses - find out more at: http://www.wanadoo.co.uk/help/id/7098.htm |
From: Robert H. <ro...@ro...> - 2004-11-17 21:05:12
|
From: Robert H. <ro...@ro...> - 2004-11-16 00:04:18
|
Hello, Send your web server's error log, something is failing before the HTTP headers can even be sent from sandweb. -- Rob Vasile V. Alaiba wrote: >Hi everybody! > >I have sandweb 1.0.1 installed at home and working on >mandrake 10.0. I am trying to install it now on a >dedicated server with fedora core 1, with no luck. > >I am running out of ideas: all I get when I access >sandweb.cgi is Internal Server Error. The log has the >following message: > Premature end of script headers: sandweb.cgi > >Where should I look for a solution? > >Thank you for your help! >Vasile > > > >__________________________________ >Do you Yahoo!? >Check out the new Yahoo! Front Page. >www.yahoo.com > > > > >------------------------------------------------------- >This SF.Net email is sponsored by: >Sybase ASE Linux Express Edition - download now for FREE >LinuxWorld Reader's Choice Award Winner for best database on Linux. >http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click >_______________________________________________ >Sandweb-users mailing list >San...@li... >https://lists.sourceforge.net/lists/listinfo/sandweb-users > > > |
From: Vasile V. A. <al...@ya...> - 2004-11-03 22:14:48
|
Hi everybody! I have sandweb 1.0.1 installed at home and working on mandrake 10.0. I am trying to install it now on a dedicated server with fedora core 1, with no luck. I am running out of ideas: all I get when I access sandweb.cgi is Internal Server Error. The log has the following message: Premature end of script headers: sandweb.cgi Where should I look for a solution? Thank you for your help! Vasile __________________________________ Do you Yahoo!? Check out the new Yahoo! Front Page. www.yahoo.com |
From: Rob H. <ro...@ro...> - 2004-09-22 17:42:58
|
The images must be accessible from the web, so they must be in your DocumentRoot or some alias (like /images). Is /etc/apache/images directly accessible? CdnNoName wrote: > Message body follows: > > I saw that you responded to someone's help request, so I > was wondering if you also knew the answer to this: > > I set the sandweb.cfg file (and also install.cfg before > installing) to look for images in /images (relative > to /etc/apache). > > I have the Sandweb images in /etc/apache/images, yet none > of them show up. Is there a known problem with this, or is it > somehow something to do with my Apache server? > > Thank you. > > -- > This message has been sent to you, a registered SourceForge.net user, > by another site user, through the SourceForge.net site. This message > has been delivered to your SourceForge.net mail alias. You may reply > to this message using the "Reply" feature of your email client, or > using the messaging facility of SourceForge.net at: > https://sourceforge.net/sendmessage.php?touser=1122514 > |
From: Rob H. <ro...@ro...> - 2004-08-21 06:22:24
|
Hello, This is a very minor bugfix release, it should eliminate some install problems we've seen in some environments. If you were able to install SandWeb without any problem, then there's no reason to upgrade. Thanks, Rob |
From: Semiz C. <cem...@nt...> - 2004-08-14 12:35:18
|
=20 |
From: Rob H. <ro...@ro...> - 2004-08-14 02:02:42
|
Gotcha. Please apply this patch, let me know if it makes the problem go away so I can fix it in the branch: Index: tools/install_script.pl =================================================================== RCS file: /cvsroot/sandweb/sandweb/tools/install_script.pl,v retrieving revision 1.22.2.2 diff -r1.22.2.2 install_script.pl 13a14 > "imgpath = $config::imgpath\n". Dayton Jones wrote: > The host is running RH ES 3 update2, I upgraded perl from the default > 5.8.0 via rpm to 5.8.3. I can't, at this time upgrade perl further since > there is another service running that is using 5.8.3 and I can't upgrade > and have it not run... > > > On Fri, 13 Aug 2004, Rob Helmer wrote: > > >>hmm.. other people have reported this too, I can't reproduce right now >>on perl 5.8.4. >> >>I just tried it on RH8.0 w/ Perl 5.8.0 and Debian Unstable (sid) w/ Perl >>5.8.4, no problems. If you look in the file, you'll see 2 other places >>that imgpath is referred to, so I think that this error is bogus. >> >>What OS are you using? How did you install Perl? Can you upgrade to the >>latest Perl? >> >> >> >>Thanks! >>Rob >> >> >>Dayton Jones wrote: >> >>>I just Downloaded sandweb-1_0-RC4 and tried to install. >>> >>>Make, make test both worked fine, but when I tried to run 'make install' I >>>get: >>> >>># make install >>>Writing >>>/usr/lib/perl5/site_perl/5.8.3/i386-linux-thread-multi/auto/SandWeb/.packlist >>>Appending installation info to >>>/usr/lib/perl5/5.8.3/i386-linux-thread-multi/perllocal.pod >>>./tools/install_script.pl >>>Name "config::imgpath" used only once: possible typo at >>>./tools/install_script.pl line 26. >>>make: *** [custom_install] Error 1 >>> >>> >>>I saw a similar posting but there was no reply... Please help! >>> >> > |
From: Dayton J. <ed...@ge...> - 2004-08-14 01:50:13
|
The host is running RH ES 3 update2, I upgraded perl from the default 5.8.0 via rpm to 5.8.3. I can't, at this time upgrade perl further since there is another service running that is using 5.8.3 and I can't upgrade and have it not run... On Fri, 13 Aug 2004, Rob Helmer wrote: > hmm.. other people have reported this too, I can't reproduce right now > on perl 5.8.4. > > I just tried it on RH8.0 w/ Perl 5.8.0 and Debian Unstable (sid) w/ Perl > 5.8.4, no problems. If you look in the file, you'll see 2 other places > that imgpath is referred to, so I think that this error is bogus. > > What OS are you using? How did you install Perl? Can you upgrade to the > latest Perl? > > > > Thanks! > Rob > > > Dayton Jones wrote: > > I just Downloaded sandweb-1_0-RC4 and tried to install. > > > > Make, make test both worked fine, but when I tried to run 'make install' I > > get: > > > > # make install > > Writing > > /usr/lib/perl5/site_perl/5.8.3/i386-linux-thread-multi/auto/SandWeb/.packlist > > Appending installation info to > > /usr/lib/perl5/5.8.3/i386-linux-thread-multi/perllocal.pod > > ./tools/install_script.pl > > Name "config::imgpath" used only once: possible typo at > > ./tools/install_script.pl line 26. > > make: *** [custom_install] Error 1 > > > > > > I saw a similar posting but there was no reply... Please help! > > > -- +---------------------------------------------------------------+ Dayton Jones ed...@ge... "It's better to dig your own grave than to rot in the sun." +---------------------------------------------------------------+ |
From: Rob H. <ro...@ro...> - 2004-08-14 01:22:07
|
hmm.. other people have reported this too, I can't reproduce right now on perl 5.8.4. I just tried it on RH8.0 w/ Perl 5.8.0 and Debian Unstable (sid) w/ Perl 5.8.4, no problems. If you look in the file, you'll see 2 other places that imgpath is referred to, so I think that this error is bogus. What OS are you using? How did you install Perl? Can you upgrade to the latest Perl? Thanks! Rob Dayton Jones wrote: > I just Downloaded sandweb-1_0-RC4 and tried to install. > > Make, make test both worked fine, but when I tried to run 'make install' I > get: > > # make install > Writing > /usr/lib/perl5/site_perl/5.8.3/i386-linux-thread-multi/auto/SandWeb/.packlist > Appending installation info to > /usr/lib/perl5/5.8.3/i386-linux-thread-multi/perllocal.pod > ./tools/install_script.pl > Name "config::imgpath" used only once: possible typo at > ./tools/install_script.pl line 26. > make: *** [custom_install] Error 1 > > > I saw a similar posting but there was no reply... Please help! > |
From: Dayton J. <ed...@ge...> - 2004-08-12 23:46:13
|
I just Downloaded sandweb-1_0-RC4 and tried to install. Make, make test both worked fine, but when I tried to run 'make install' I get: # make install Writing /usr/lib/perl5/site_perl/5.8.3/i386-linux-thread-multi/auto/SandWeb/.packlist Appending installation info to /usr/lib/perl5/5.8.3/i386-linux-thread-multi/perllocal.pod ./tools/install_script.pl Name "config::imgpath" used only once: possible typo at ./tools/install_script.pl line 26. make: *** [custom_install] Error 1 I saw a similar posting but there was no reply... Please help! -- +---------------------------------------------------------------+ Dayton Jones ed...@ge... "It's better to dig your own grave than to rot in the sun." +---------------------------------------------------------------+ |
From: Rob H. <ro...@ro...> - 2004-06-28 20:40:29
|
Hi Alainna, We don't support checkout parameters yet, but you can do this: 1) do a normal checkout 2) select "branch" from the pulldown menu The "branch" control allows you to do a bunch of branch-related operation to one of more files. You can use this to update to a given branch. -- Rob Helmer Alainna C. Wonders wrote: > Is there a way to checkout an entire branch of a repository? > > > > -----Original Message----- > From: san...@li... > [mailto:san...@li...] On Behalf Of Robert > Helmer > Sent: Wednesday, June 23, 2004 3:35 PM > To: Alainna C. Wonders > Cc: san...@li... > Subject: Re: [Sandweb-users] Sandweb Repository Issues > > > Hi Alainna, > > > Are you able to check out this module using the command line, e.g.: > > cvs -d /cvs_root co aspl_scripts > > > "CVS/Entries" and "CVS/Root" appear inside a valid checkout. > CVS uses "CVS" subdirectories inside a checkout to keep state on what is > happening in the checkout, to compare against the repository. > > > > -- > Rob > > > On Wed, Jun 23, 2004 at 08:53:31AM -0400, Alainna C. Wonders wrote: > >>Okay, I've got a couple things straight, unfortunately I still am at a > > >>loss for what is happening here... >> >>I specify the following parameters for the repository: >> >>Name: CVSROOT >>Server hostname: localhost >>Username: awonders >>Vcs type: CVS >>Connection: local >>Root: /cvs_root/ >> >>When I key in a module (specifically aspl_scripts) it says it can't >>find the module (but it DOES exist in CVS; I did add it through the >>command line). So I try to update it and this is what I get: >> >>cvs update: cannot open CVS/Entries for reading: No such file or >>directory cvs update: nothing known about aspl_scripts >>cvs [update aborted]: cannot open CVS/Root: No such file or directory >> >>What is CVS/Entries and CVS/Root? I haven't specified those anywhere. >> >>Thanks! >> >>Alainna >> >> >> >> >>------------------------------------------------------- >>This SF.Net email sponsored by Black Hat Briefings & Training. Attend >>Black Hat Briefings & Training, Las Vegas July 24-29 - digital self >>defense, top technical experts, no vendor pitches, unmatched >>networking opportunities. Visit www.blackhat.com >>_______________________________________________ >>Sandweb-users mailing list San...@li... >>https://lists.sourceforge.net/lists/listinfo/sandweb-users >> > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. Attend > Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Sandweb-users mailing list > San...@li... > https://lists.sourceforge.net/lists/listinfo/sandweb-users > > > |