ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/web/cgi-bin/cvslog.cgi
(Generate patch)

Comparing web/cgi-bin/cvslog.cgi (file contents):
Revision 1.5 by tdb, Tue Jun 5 16:19:00 2001 UTC vs.
Revision 1.10 by tdb, Wed Jun 13 15:53:51 2001 UTC

# Line 24 | Line 24 | else {
24     $heading = "Today's i-scream CVS commits";
25   }
26  
27 < print "Content-type: text/html\n\n";
27 > my($cvsroot) = "/cvs/i-scream";
28  
29 < my($cvs) = "/usr/bin/cvs";
29 > my($modulelist)=$query->param('module');
30 > $modulelist = `ls $cvsroot` unless defined $modulelist;
31 >
32   my($cvs2clpath) = "/home/sites/www.i-scream.org.uk/bin/cvs2cl.pl";
31 my($cvsroot) = "/cvs/i-scream";
32 #my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$today'\" -g \"-d$cvsroot\" -g \"-Q\"";
33   my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\"";
34 < my($updatecmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs -d $cvsroot -Q update -d";
34 > my($updatecmd) = "/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh $modulelist";
35   my($logcmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs2clpath $cvs2clargs";
36  
37 + print "Content-type: text/html\n\n";
38 +
39   print <<"END";
40   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
41  
42   <html>
43  
44   <head>
45 < <title>The i-scream Project Daily Commit Log</title>
45 > <title>The i-scream Project Commit Log</title>
46   </head>
47  
48 < <body bgcolor="#ffffff" link="#0000ff" alink="#3333cc" vlink="#3333cc" text="#000066">
48 > <body bgcolor="#ffffff" link="#ffffff" alink="#ffffff" vlink="#ffffff" text="#000066">
49  
50   <a href="http://www.i-scream.org.uk"><img border="0" src="../i-scream.gif"></a>
51  
# Line 53 | Line 55 | END
55  
56   print `$updatecmd`;
57  
56 my $modulelist = `ls $cvsroot`;
58   my(@modules) = split (/\s+/, $modulelist);
59  
60   foreach my $module (@modules) {
61  
62 <    print "<p><h3>$module module</h3>\n";
63 <    print "<a href=\"/cgi-bin/cvs/viewcvs.cgi/$module\">";
64 <    print "Browse i-scream &quot;$module&quot; cvs module</a>\n";
64 <    print "<pre>\n";
62 >    print "<table border=\"0\" bgcolor=\"#000066\" cellpadding=\"5\" width=\"100%\">";
63 >    print "<tr><td><font size=\"4\"><b><a href=\"/cgi-bin/cvs/viewcvs.cgi/$module\">$module module</a></b></font></td></tr>";
64 >    print "<tr><td bgcolor=\"white\">\n";
65  
66      my(@lines) = `$logcmd $module 2>&1`;
67      if(@lines == 0) {
68 <        print "There have been no commits in this module during this period.";
68 >        print "There have been no commits in this module during this period.\n";
69      }
70      else {
71          foreach my $line (@lines) {
72 <            print HTML_encode($line);
72 >
73 >            if ($line =~ /^([0-9]{4}-[0-9]{2}-[0-9]{2}.*?)([^\s]+)$/) {
74 >                print "<font color=\"blue\"><b>";
75 >                print HTML_encode($1);
76 >                print "</b><i>";
77 >                print HTML_encode("by $2");
78 >                print "</i></font>"
79 >            }
80 >            else {
81 >                chop $line;
82 >                print "<code>";
83 >                print HTML_encode($line);
84 >                print "</code><br>"
85 >            }
86          }
87      }
88 +    print "</td></tr>\n";
89  
90 <    print "</pre></p>\n\n";
90 >    print "</table><p>\n\n";
91   }
92  
93   print <<"END";
94 +
95   </body>
96  
97   </html>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines