ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/web/cgi-bin/cvslog.cgi
Revision: 1.17
Committed: Sun Oct 21 17:38:55 2001 UTC (22 years, 6 months ago) by tdb
Branch: MAIN
Changes since 1.16: +1 -0 lines
Log Message:
Bug which meant the cvs update wasn't correctly executed before generating
the cvslog output.

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 tdb 1.16 my($modulelist)=$query->param('module');
8     my $moduleext=""; $moduleext=":$modulelist" if defined $modulelist;
9 tdb 1.5
10     my($firstdate);
11     if($period eq "days") {
12     my($days)=$query->param('days');
13     $days = 1 unless defined $days;
14     if ($days < 1) {$days = 1};
15 tdb 1.16 $heading = "i-scream CVS$moduleext commits in the past $days day(s)";
16 tdb 1.5 $days--;
17 tdb 1.16 $firstdate = ">" . `date --date \"$days days ago\" \"+%Y/%m/%d\"`;
18     }
19     elsif($period eq "date") {
20     my($date)=$query->param('date');
21     $date = `/bin/date \"+%Y/%m/%d\"` unless defined $date;
22     $heading = "i-scream CVS$moduleext commits on $date";
23     $firstdate = "$date 00:00<$date 23:59"
24 tdb 1.5 }
25     elsif($period eq "thisweek") {
26 tdb 1.16 $firstdate = ">last Sunday";
27     $heading = "i-scream CVS$moduleext commits this week";
28 tdb 1.5 }
29     else {
30 tdb 1.16 # default to "today only"
31     $firstdate = ">" . `/bin/date \"+%Y/%m/%d\"`;
32     $heading = "Today's i-scream CVS$moduleext commits";
33 tdb 1.5 }
34 tdb 1.1
35 tdb 1.10 my($cvsroot) = "/cvs/i-scream";
36    
37     $modulelist = `ls $cvsroot` unless defined $modulelist;
38 tdb 1.17 $modulelist =~ s/[\r\n]/ /gm;
39 tdb 1.1
40 tdb 1.16 my($cvs2clpath) = "/home/sites/www.i-scream.org.uk/bin/cvs2cl2.pl";
41     my($cvs2clargs) = "--stdout --no-wrap -r -b -t -w -S -U $cvsroot/CVSROOT/users -l \"-d'$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\"";
42 tdb 1.10 my($updatecmd) = "/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh $modulelist";
43 tdb 1.5 my($logcmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs2clpath $cvs2clargs";
44 tdb 1.13
45     my ($left) = "../left.inc" ;
46     my ($title) = "../title.inc";
47     my ($bottom) = "../bottom.inc";
48 tdb 1.1
49 tdb 1.10 print "Content-type: text/html\n\n";
50    
51 tdb 1.1 print <<"END";
52     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
53    
54     <html>
55    
56     <head>
57 tdb 1.7 <title>The i-scream Project Commit Log</title>
58 tdb 1.1 </head>
59    
60 tdb 1.14 <body bgcolor="#ffffff" link="#0000ff" alink="#3333cc" vlink="#3333cc" text="#000066">
61 tdb 1.1
62 tdb 1.12 <table border="0" cellpadding="2" cellspacing="2">
63     <tr>
64     <td valign="top">
65 tdb 1.13 END
66    
67     &print_html($left);
68 tdb 1.12
69     print <<"END";
70     </td>
71     <td valign="top">
72 tdb 1.13 END
73 tdb 1.12
74 tdb 1.13 &print_html($title);
75 tdb 1.12
76 tdb 1.13 print <<"END";
77 tdb 1.8 <h2>$heading</h2>
78 tdb 1.5 END
79 tdb 1.1
80 tdb 1.5 print `$updatecmd`;
81 tdb 1.9
82 tdb 1.5 my(@modules) = split (/\s+/, $modulelist);
83    
84     foreach my $module (@modules) {
85    
86 tdb 1.11 print "<table border=\"0\" bgcolor=\"#000066\" cellpadding=\"5\" width=\"100%\">\n\n";
87 tdb 1.14 print "<tr><td>\n<font size=\"4\"><b><a href=\"/cgi-bin/cvs/viewcvs.cgi/$module\" style=\"color: white\">$module module</a></b></font>\n</td></tr>\n\n";
88 tdb 1.8 print "<tr><td bgcolor=\"white\">\n";
89 tdb 1.5
90     my(@lines) = `$logcmd $module 2>&1`;
91     if(@lines == 0) {
92 tdb 1.8 print "There have been no commits in this module during this period.\n";
93 tdb 1.5 }
94     else {
95     foreach my $line (@lines) {
96 tdb 1.7
97 tdb 1.16 if ($line =~ /^([0-9]{4}-[0-9]{2}-[0-9]{2}.*?)\s+([^\s]+)\s+<([^\s]+)>$/) {
98     print "\n<font color=\"blue\">\n<b>";
99 tdb 1.7 print HTML_encode($1);
100 tdb 1.16 print "</b>\n<i>";
101     print " commited by <a href=\"mailto:$3\" style=\"text-decoration: none;\">";
102     print HTML_encode("$2");
103     print "</a></i>\n</font>\n"
104     }
105     elsif($line =~ /(\S+) (\(\S+\))([,:])/) {
106     #chop $line;
107     my ($file, $rest, $ext) = ($1, $2, $3);
108     print "<code>";
109     print "<a href=\"/cgi-bin/cvs/viewcvs.cgi/$file\" style=\"text-decoration: none;\">";
110     print HTML_encode($file);
111     print "</a> ";
112     if($rest =~ /\((\S).(\S+)\)/) {
113     my $newrev = "$1.$2";
114     my $oldminver = $2-1;
115     my $oldrev = "$1.$oldminver";
116     if(!($1==1 && $2==1)) {
117     my $diff = ".diff?r1=$oldrev&r2=$newrev";
118     print "<a href=\"/cgi-bin/cvs/viewcvs.cgi/$file$diff\" style=\"text-decoration: none;\">";
119     print HTML_encode($rest);
120     print "</a>";
121     }
122     else {
123     print HTML_encode($rest);
124     }
125     }
126     else {
127     print HTML_encode($rest);
128     }
129     print HTML_encode($ext);
130     print "</code><br>\n"
131 tdb 1.7 }
132     else {
133     chop $line;
134     print "<code>";
135     print HTML_encode($line);
136 tdb 1.11 print "</code><br>\n"
137 tdb 1.7 }
138 tdb 1.5 }
139     }
140 tdb 1.8 print "</td></tr>\n";
141 tdb 1.1
142 tdb 1.7 print "</table><p>\n\n";
143 tdb 1.1 }
144    
145 tdb 1.13 &print_html($bottom);
146    
147 tdb 1.1 print <<"END";
148 tdb 1.12
149     </td>
150     </tr>
151     </table>
152 tdb 1.7
153 tdb 1.1 </body>
154    
155     </html>
156     END
157    
158     exit 0;
159    
160     #------------------------------------------------------
161     # sub HTML_encode
162     #
163     # escape HTML characters that may cause problems when
164     # shown either in the <body> or within text fields.
165     #------------------------------------------------------
166     sub HTML_encode ($){
167     my ($encoded) = @_;
168     $encoded =~ s/&/&amp;/g;
169     $encoded =~ s/"/&quot;/g;
170     $encoded =~ s/</&lt;/g;
171     $encoded =~ s/>/&gt;/g;
172     return $encoded;
173 tdb 1.13 }
174    
175     # Print a file without escaping HTML: -
176     sub print_html ($) {
177     my ($filename) = @_;
178     print `cat $filename 2>&1`;
179 tdb 1.1 }