X-Git-Url: http://git.i-scream.org/?a=blobdiff_plain;f=cgi-bin%2Fcvslog.cgi;h=fe62526d0e79a7428945677a83ce8eb4d1f0c46c;hb=dc1a4c45281a89afeef45f0dd14379766d941b73;hp=84911f7af4b037e525833383b5b2a36c9ce4ae10;hpb=260e347c348e1980347900b2ec720882201427a3;p=www.i-scream.org.git diff --git a/cgi-bin/cvslog.cgi b/cgi-bin/cvslog.cgi index 84911f7..fe62526 100755 --- a/cgi-bin/cvslog.cgi +++ b/cgi-bin/cvslog.cgi @@ -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"; - The i-scream Project Daily Commit Log + The i-scream Project Commit Log - + -

$heading

+
$heading
+

 

END @@ -57,10 +57,9 @@ my(@modules) = split (/\s+/, $modulelist); foreach my $module (@modules) { - print "

$module module

\n"; - print ""; - print "Browse i-scream "$module" cvs module\n"; - print "
\n";
+    print "";
+    print "";
+    print "";
 
-    print "

\n\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"; +