From: Rob H. <for...@us...> - 2003-06-08 05:03:44
|
Update of /cvsroot/sandweb/sandweb In directory sc8-pr-cvs1:/tmp/cvs-serv16900 Modified Files: README install.cfg Log Message: * bumped version number to 1.1-ALPHA on trunk (to avoid confusion) * uncommented a debug statement in Browse Index: README =================================================================== RCS file: /cvsroot/sandweb/sandweb/README,v retrieving revision 1.13 retrieving revision 1.14 diff -U2 -r1.13 -r1.14 --- README 22 Apr 2003 17:12:48 -0000 1.13 +++ README 8 Jun 2003 05:03:41 -0000 1.14 @@ -1,4 +1,4 @@ ============================================================================ -SandWeb Summary - 1.0RC3 Release +SandWeb Summary - 1.1-ALPHA Release ============================================================================ @@ -8,5 +8,5 @@ It is essentially a multi-user client to version control systems ( VCS ) such as CVS, SVN ( Subversion ), arch or RCS ( only CVS is supported for -the 1.0RC3 release ). +the 1.1-ALPHA release ). SandWeb requires a user agent that supports and allows Javascript @@ -20,5 +20,5 @@ using SandWeb. -The 1.0RC3 release only supports "FlatFile" authentication, in +The 1.1-ALPHA release only supports "FlatFile" authentication, in which SandWeb uses it's own password file and format. More authentication systems are planned for future releases. @@ -86,5 +86,5 @@ You are now at the repository menu. You can enter username, password, version control system, server name and version control root for as -many repositories as you want. For the 1.0RC3 release, SandWeb supports +many repositories as you want. For the 1.1-ALPHA release, SandWeb supports "local", "pserver" and "SSH" CVS repositories. Index: install.cfg =================================================================== RCS file: /cvsroot/sandweb/sandweb/install.cfg,v retrieving revision 1.23 retrieving revision 1.24 diff -U2 -r1.23 -r1.24 --- install.cfg 1 Apr 2003 06:42:18 -0000 1.23 +++ install.cfg 8 Jun 2003 05:03:41 -0000 1.24 @@ -2,13 +2,13 @@ package config; -$bindir = '/usr/local/bin'; -$cfgdir = '/usr/local/etc/sandweb'; -$cgidir = '/var/www/cgi-bin'; -$imgdir = '/var/www/images'; -$tmpldir = '/usr/local/lib/sandweb/templates'; -$cachedir = '/usr/local/share/sandweb'; -$logdir = '/var/log'; -$httpuser = 'www'; +$cfgdir = './debian/tmp/etc/sandweb'; +$cgidir = './debian/tmp/usr/lib/cgi-bin'; +$imgdir = './debian/tmp/var/www/images'; +$tmpldir = './debian/tmp/usr/lib/sandweb/templates'; +$cachedir = './debian/tmp/usr/share/sandweb'; +$logdir = './debian/tmp/var/log'; +$httpuser = 'www-data'; $expectbin = '/usr/bin/expect'; +$bindir = './debian/tmp/usr/bin'; $ssh_bin = '/usr/bin/ssh'; $cvs_bin = '/usr/bin/cvs'; |