From: Rob H. <for...@us...> - 2002-01-22 18:10:17
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory usw-pr-cvs1:/tmp/cvs-serv4428/lib/SandWeb/Repository Modified Files: CVS.pm Log Message: added color for "P", just made it say "Updated" Index: CVS.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/CVS.pm,v retrieving revision 1.23 retrieving revision 1.24 diff -U2 -r1.23 -r1.24 --- CVS.pm 2002/01/22 08:25:45 1.23 +++ CVS.pm 2002/01/22 18:10:12 1.24 @@ -537,4 +537,7 @@ $line =~ s/^U/\<font color\=\"green\"\>Updated\<\/font\>/; } + elsif ($line =~ /^U/) { + $line =~ s/^P/\<font color\=\"green\"\>Updated\<\/font\>/; + } elsif ($line =~ /^C/) { $line =~ s/^C/\<font color\=\"red\"\>Conflict\<\/font\>/; |