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.1 by tdb, Fri Mar 9 00:22:30 2001 UTC vs.
Revision 1.9 by tdb, Wed Jun 13 15:29:51 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($cvs2clpath) = "/home/cut/tdb1/bin/cvs2cl";
10 < my($cvsroot) = "/usr/local/proj/co600_10/cvs";
11 < my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$today'\" -g \"-d$cvsroot\" -g \"-Q\"";
12 < my($cmd) = "cd /home/cut/tdb1/cvsscripttemp && $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`;
27 > print "Content-type: text/html\n\n";
28  
29 + my($cvs2clpath) = "/home/sites/www.i-scream.org.uk/bin/cvs2cl.pl";
30 + my($cvsroot) = "/cvs/i-scream";
31 + my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\"";
32 + my($updatecmd) = "/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh";
33 + my($logcmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs2clpath $cvs2clargs";
34 +
35   print <<"END";
36   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
37  
38   <html>
39  
40   <head>
41 < <title>The i-scream Project Logfile Tailer</title>
20 < <meta name="description" content="The i-scream Project is a central
21 < monitoring system for Unix, Linux and NT servers.">
22 < <meta name="keywords" content="i-scream, project, central monitoring
23 < system, unix, linux, nt, server, alert">
24 < <meta name="generator" content="notepad on acid, aye.">
41 > <title>The i-scream Project Commit Log</title>
42   </head>
43  
44 < <body bgcolor="#ffffff" link="#0000ff" alink="#3333cc" vlink="#3333cc"
28 < text="#000066">
44 > <body bgcolor="#ffffff" link="#ffffff" alink="#ffffff" vlink="#ffffff" text="#000066">
45  
46   <a href="http://www.i-scream.org.uk"><img border="0" src="../i-scream.gif"></a>
47  
48 < <h3>Today's i-scream CVS commits</h3>
48 > <h2>$heading</h2>
49  
34 <a href="cvsweb.cgi">Browse i-scream CVS repository</a>
35
36 <pre>
50   END
51  
52 < foreach my $line (@lines) {
53 <    print HTML_encode($line);
52 > print `$updatecmd`;
53 >
54 > my($modulelist)=$query->param('module');
55 > $modulelist = `ls $cvsroot` unless defined $modulelist;
56 >
57 > my(@modules) = split (/\s+/, $modulelist);
58 >
59 > foreach my $module (@modules) {
60 >
61 >    print "<table border=\"0\" bgcolor=\"#000066\" cellpadding=\"5\" width=\"100%\">";
62 >    print "<tr><td><font size=\"4\"><b><a href=\"/cgi-bin/cvs/viewcvs.cgi/$module\">$module module</a></b></font></td></tr>";
63 >    print "<tr><td bgcolor=\"white\">\n";
64 >
65 >    my(@lines) = `$logcmd $module 2>&1`;
66 >    if(@lines == 0) {
67 >        print "There have been no commits in this module during this period.\n";
68 >    }
69 >    else {
70 >        foreach my $line (@lines) {
71 >
72 >            if ($line =~ /^([0-9]{4}-[0-9]{2}-[0-9]{2}.*?)([^\s]+)$/) {
73 >                print "<font color=\"blue\"><b>";
74 >                print HTML_encode($1);
75 >                print "</b><i>";
76 >                print HTML_encode("by $2");
77 >                print "</i></font>"
78 >            }
79 >            else {
80 >                chop $line;
81 >                print "<code>";
82 >                print HTML_encode($line);
83 >                print "</code><br>"
84 >            }
85 >        }
86 >    }
87 >    print "</td></tr>\n";
88 >
89 >    print "</table><p>\n\n";
90   }
91  
92   print <<"END";
93 < </pre>
93 >
94   </body>
95  
96   </html>
# Line 63 | Line 112 | sub HTML_encode ($){
112      $encoded =~ s/>/&gt;/g;
113      return $encoded;
114   }
66

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines