--- web/cgi-bin/cvslog.cgi 2001/06/05 17:20:12 1.6 +++ web/cgi-bin/cvslog.cgi 2001/06/13 15:18:55 1.7 @@ -26,7 +26,6 @@ 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'\>$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\""; @@ -39,14 +38,15 @@ print <<"END";
- -
 
-END @@ -57,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) {
@@ -68,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"; +