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.4 by tdb, Fri May 25 16:40:08 2001 UTC vs.
Revision 1.5 by tdb, Tue Jun 5 16:19:00 2001 UTC

# Line 1 | Line 1
1 < #!/usr/bin/perl
1 > #!/usr/bin/perl -w
2  
3 < print "Content-type: text/html\n\n";
3 > use CGI;
4 > $query=new CGI;
5 > my($period)=$query->param('period');
6 > $period = "today" unless defined $period;
7  
8 < my($today) = `date \"+%Y/%m/%d\"`;
9 < my($cvs) = "/home/cut/tdb1/bin/cvs";
10 < my($cvs2clpath) = "/home/cut/tdb1/bin/cvs2cl";
11 < my($cvsroot) = "/usr/local/proj/co600_10/cvs";
12 < my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$today'\" -g \"-d$cvsroot\" -g \"-Q\"";
13 < my($cmd) = "cd /home/cut/tdb1/cvsscripttemp && $cvs -d $cvsroot -Q update -d && $cvs2clpath $cvs2clargs *";
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  
27 < my(@lines) = `$cmd 2>&1`;
27 > print "Content-type: text/html\n\n";
28  
29 + my($cvs) = "/usr/bin/cvs";
30 + 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";
35 + my($logcmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs2clpath $cvs2clargs";
36 +
37   print <<"END";
38   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
39  
# Line 18 | Line 41 | print <<"END";
41  
42   <head>
43   <title>The i-scream Project Daily Commit Log</title>
21 <meta name="description" content="The i-scream Project is a central
22 monitoring system for Unix, Linux and NT servers.">
23 <meta name="keywords" content="i-scream, project, central monitoring
24 system, unix, linux, nt, server, alert">
25 <meta name="generator" content="notepad on acid, aye.">
44   </head>
45  
46 < <body bgcolor="#ffffff" link="#0000ff" alink="#3333cc" vlink="#3333cc"
29 < text="#000066">
46 > <body bgcolor="#ffffff" link="#0000ff" alink="#3333cc" vlink="#3333cc" text="#000066">
47  
48   <a href="http://www.i-scream.org.uk"><img border="0" src="../i-scream.gif"></a>
49  
50 < <h3>Today's i-scream CVS commits</h3>
50 > <h2>$heading</h2>
51  
35 <a href="viewcvs.cgi">Browse i-scream CVS repository</a>
36
37 <pre>
52   END
53  
54 < foreach my $line (@lines) {
55 <    print HTML_encode($line);
54 > print `$updatecmd`;
55 >
56 > my $modulelist = `ls $cvsroot`;
57 > my(@modules) = split (/\s+/, $modulelist);
58 >
59 > foreach my $module (@modules) {
60 >
61 >    print "<p><h3>$module module</h3>\n";
62 >    print "<a href=\"/cgi-bin/cvs/viewcvs.cgi/$module\">";
63 >    print "Browse i-scream &quot;$module&quot; cvs module</a>\n";
64 >    print "<pre>\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.";
69 >    }
70 >    else {
71 >        foreach my $line (@lines) {
72 >            print HTML_encode($line);
73 >        }
74 >    }
75 >
76 >    print "</pre></p>\n\n";
77   }
78  
79   print <<"END";
45 </pre>
80   </body>
81  
82   </html>
# Line 64 | Line 98 | sub HTML_encode ($){
98      $encoded =~ s/>/&gt;/g;
99      return $encoded;
100   }
67

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines