ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/web/cgi-bin/cvslog.cgi
Revision: 1.12
Committed: Wed Jun 13 17:36:35 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
Changes since 1.11: +17 -0 lines
Log Message:
Added the left bar to the commit logs.

File Contents

# User Rev Content
1 tdb 1.5 #!/usr/bin/perl -w
2    
3     use CGI;
4     $query=new CGI;
5     my($period)=$query->param('period');
6     $period = "today" unless defined $period;
7    
8     my($firstdate);
9     if($period eq "days") {
10     my($days)=$query->param('days');
11     $days = 1 unless defined $days;
12     if ($days < 1) {$days = 1};
13     $heading = "i-scream CVS commits in the past $days day(s)";
14     $days--;
15     $firstdate = `date --date \"$days days ago\" \"+%Y/%m/%d\"`;
16     }
17     elsif($period eq "thisweek") {
18     $firstdate = "last Sunday";
19     $heading = "i-scream CVS commits this week";
20     }
21     else {
22     # default to "today only"
23     $firstdate = `/bin/date \"+%Y/%m/%d\"`;
24     $heading = "Today's i-scream CVS commits";
25     }
26 tdb 1.1
27 tdb 1.10 my($cvsroot) = "/cvs/i-scream";
28    
29     my($modulelist)=$query->param('module');
30     $modulelist = `ls $cvsroot` unless defined $modulelist;
31 tdb 1.1
32 tdb 1.5 my($cvs2clpath) = "/home/sites/www.i-scream.org.uk/bin/cvs2cl.pl";
33     my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\"";
34 tdb 1.10 my($updatecmd) = "/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh $modulelist";
35 tdb 1.5 my($logcmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs2clpath $cvs2clargs";
36 tdb 1.12 my($leftinc) = "/home/sites/www.i-scream.org.uk/web/left.inc";
37 tdb 1.1
38 tdb 1.10 print "Content-type: text/html\n\n";
39    
40 tdb 1.1 print <<"END";
41     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
42    
43     <html>
44    
45     <head>
46 tdb 1.7 <title>The i-scream Project Commit Log</title>
47 tdb 1.1 </head>
48    
49 tdb 1.7 <body bgcolor="#ffffff" link="#ffffff" alink="#ffffff" vlink="#ffffff" text="#000066">
50 tdb 1.1
51 tdb 1.12 <table border="0" cellpadding="2" cellspacing="2">
52     <tr>
53     <td valign="top">
54    
55     END
56     print `$leftinc`;
57     print <<"END";
58    
59     </td>
60     <td valign="top">
61    
62    
63 tdb 1.1 <a href="http://www.i-scream.org.uk"><img border="0" src="../i-scream.gif"></a>
64    
65 tdb 1.8 <h2>$heading</h2>
66 tdb 1.1
67 tdb 1.5 END
68 tdb 1.1
69 tdb 1.5 print `$updatecmd`;
70 tdb 1.9
71 tdb 1.5 my(@modules) = split (/\s+/, $modulelist);
72    
73     foreach my $module (@modules) {
74    
75 tdb 1.11 print "<table border=\"0\" bgcolor=\"#000066\" cellpadding=\"5\" width=\"100%\">\n\n";
76     print "<tr><td>\n<font size=\"4\"><b><a href=\"/cgi-bin/cvs/viewcvs.cgi/$module\">$module module</a></b></font>\n</td></tr>\n\n";
77 tdb 1.8 print "<tr><td bgcolor=\"white\">\n";
78 tdb 1.5
79     my(@lines) = `$logcmd $module 2>&1`;
80     if(@lines == 0) {
81 tdb 1.8 print "There have been no commits in this module during this period.\n";
82 tdb 1.5 }
83     else {
84     foreach my $line (@lines) {
85 tdb 1.7
86     if ($line =~ /^([0-9]{4}-[0-9]{2}-[0-9]{2}.*?)([^\s]+)$/) {
87 tdb 1.11 print "\n<font color=\"blue\"><b>";
88 tdb 1.7 print HTML_encode($1);
89     print "</b><i>";
90     print HTML_encode("by $2");
91 tdb 1.11 print "</i></font>\n"
92 tdb 1.7 }
93     else {
94     chop $line;
95     print "<code>";
96     print HTML_encode($line);
97 tdb 1.11 print "</code><br>\n"
98 tdb 1.7 }
99 tdb 1.5 }
100     }
101 tdb 1.8 print "</td></tr>\n";
102 tdb 1.1
103 tdb 1.7 print "</table><p>\n\n";
104 tdb 1.1 }
105    
106     print <<"END";
107 tdb 1.12
108     </td>
109     </tr>
110     </table>
111 tdb 1.7
112 tdb 1.1 </body>
113    
114     </html>
115     END
116    
117     exit 0;
118    
119     #------------------------------------------------------
120     # sub HTML_encode
121     #
122     # escape HTML characters that may cause problems when
123     # shown either in the <body> or within text fields.
124     #------------------------------------------------------
125     sub HTML_encode ($){
126     my ($encoded) = @_;
127     $encoded =~ s/&/&amp;/g;
128     $encoded =~ s/"/&quot;/g;
129     $encoded =~ s/</&lt;/g;
130     $encoded =~ s/>/&gt;/g;
131     return $encoded;
132     }