ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/web/cgi-bin/cvslog.cgi
Revision: 1.16
Committed: Mon Jun 18 15:19:37 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
Changes since 1.15: +50 -15 lines
Log Message:
Major changes:
- Now supports period=date&date=yyyy/mm/dd query strings.
- The files/logs section of each commit has been broken into two seperate bits.
- The filenames are linked to their relevant viewcvs page.
- The revisions are linked to their diffs, allowing one to see the changes a
  certain commit has introduced.
- The log message itself has been unwrapped, for neatness.

Bugs:
- fails to know about "deleted" files. They simply show up as a new revision.
  This is a fault in the underlying cvs2cl script.

Notes:
- This uses a modified version of cvs2cl. The diff is given here to avoid any
  confusion as to what this script expects in the future.

777c777,778
<             $files = wrap ("\t", "    ", "$files");
---
> # tdb1: no-wrap shouldn't wrap ANYTHING!
>             #$files = wrap ("\t", "   ", "$files");
934c935,936
<     if ((scalar (@qunkrefs)) > 1)
---
> # tdb1: hacked to turn off the commondir feature
>     if ((scalar (@qunkrefs)) < 0)
1126c1128,1129
<       $beauty .= ", ";
---
> # tdb1: hacked to put a newline after each one
>       $beauty .= ",\n";
1175c1178,1179
<   $beauty = "* $beauty:";
---
> # tdb1: hacked to remove the prefixed *
>   $beauty = "$beauty:";

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