Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository
In directory sc8-pr-cvs1:/tmp/cvs-serv3067/lib/SandWeb/Repository
Modified Files:
cvs.pm
Log Message:
* made vcs edit subroutine exit, so it doesn't print the page twice
* made "watch" work, but it's a complex command and needs it's own
menu.
* disabled "watch", "watchers", "import"
Index: cvs.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v
retrieving revision 1.39
retrieving revision 1.40
diff -U2 -r1.39 -r1.40
--- cvs.pm 31 Jan 2003 06:46:11 -0000 1.39
+++ cvs.pm 3 Feb 2003 20:56:04 -0000 1.40
@@ -2425,6 +2425,6 @@
my @param = 'watch';
- if ($set) { push @param, " $set" };
- if ($notify) { push @param, " $notify" };
+ if ($set) { push @param, " on" };
+ if ($notify) { push @param, " add" };
if ($recurse) { push @param, " -R" };
|