Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository
In directory usw-pr-cvs1:/tmp/cvs-serv20736/lib/SandWeb/Repository
Modified Files:
CVS.pm
Log Message:
fixed cvs output a bit, plus added "cvs update" handler for "?" aka
"Unknown"
Index: CVS.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/CVS.pm,v
retrieving revision 1.25
retrieving revision 1.26
diff -U2 -r1.25 -r1.26
--- CVS.pm 2002/01/23 21:03:04 1.25
+++ CVS.pm 2002/01/26 22:22:10 1.26
@@ -543,4 +543,7 @@
$line =~ s/^C/\<font color\=\"red\"\>Conflict\<\/font\>/;
}
+ elsif ($line =~ /^\?/) {
+ $line =~ s/^\?/\<font color\=\"blue\"\>Unknown\<\/font\>/;
+ }
elsif ($line =~ /warning/) {
$line =~ s/warning/\<font color\=\"red\"\>warning\<\/font\>/;
|