--- web/cgi-bin/cvslog.cgi 2001/06/05 16:19:00 1.5 +++ web/cgi-bin/cvslog.cgi 2001/06/13 15:18:55 1.7 @@ -26,12 +26,10 @@ else { print "Content-type: text/html\n\n"; -my($cvs) = "/usr/bin/cvs"; my($cvs2clpath) = "/home/sites/www.i-scream.org.uk/bin/cvs2cl.pl"; my($cvsroot) = "/cvs/i-scream"; -#my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$today'\" -g \"-d$cvsroot\" -g \"-Q\""; my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\""; -my($updatecmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs -d $cvsroot -Q update -d"; +my($updatecmd) = "/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh"; my($logcmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs2clpath $cvs2clargs"; print <<"END"; @@ -40,14 +38,15 @@ print <<"END";
-END @@ -58,10 +57,9 @@ my(@modules) = split (/\s+/, $modulelist); foreach my $module (@modules) { - print "
\n"; + print "
$module module |
";
my(@lines) = `$logcmd $module 2>&1`;
if(@lines == 0) {
@@ -69,14 +67,29 @@ foreach my $module (@modules) {
}
else {
foreach my $line (@lines) {
- print HTML_encode($line);
+
+ if ($line =~ /^([0-9]{4}-[0-9]{2}-[0-9]{2}.*?)([^\s]+)$/) {
+ print "";
+ print HTML_encode($1);
+ print "";
+ print HTML_encode("by $2");
+ print ""
+ }
+ else {
+ chop $line;
+ print "";
+ print HTML_encode($line);
+ print " " + } } } + print " |
\n\n"; } print <<"END"; +