#!/usr/bin/perl -w use CGI; $query=new CGI; my($period)=$query->param('period'); $period = "today" unless defined $period; my($firstdate); if($period eq "days") { my($days)=$query->param('days'); $days = 1 unless defined $days; if ($days < 1) {$days = 1}; $heading = "i-scream CVS commits in the past $days day(s)"; $days--; $firstdate = `date --date \"$days days ago\" \"+%Y/%m/%d\"`; } elsif($period eq "thisweek") { $firstdate = "last Sunday"; $heading = "i-scream CVS commits this week"; } else { # default to "today only" $firstdate = `/bin/date \"+%Y/%m/%d\"`; $heading = "Today's i-scream CVS commits"; } print "Content-type: text/html\n\n"; my($cvs) = "/usr/bin/cvs"; my($cvs2clpath) = "/home/sites/www.i-scream.org.uk/bin/cvs2cl.pl"; my($cvsroot) = "/cvs/i-scream"; #my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$today'\" -g \"-d$cvsroot\" -g \"-Q\""; my($cvs2clargs) = "--stdout -r -b -t -w -U $cvsroot/CVSROOT/users -l \"-d'\>$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\""; my($updatecmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs -d $cvsroot -Q update -d"; my($logcmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs2clpath $cvs2clargs"; print <<"END"; The i-scream Project Daily Commit Log

$heading

END print `$updatecmd`; my $modulelist = `ls $cvsroot`; my(@modules) = split (/\s+/, $modulelist); foreach my $module (@modules) { print "

$module module

\n"; print ""; print "Browse i-scream "$module" cvs module\n"; print "
\n";

    my(@lines) = `$logcmd $module 2>&1`;
    if(@lines == 0) {
        print "There have been no commits in this module during this period.";
    }
    else {
        foreach my $line (@lines) {
            print HTML_encode($line);
        }
    }

    print "

\n\n"; } print <<"END"; END exit 0; #------------------------------------------------------ # sub HTML_encode # # escape HTML characters that may cause problems when # shown either in the or within text fields. #------------------------------------------------------ sub HTML_encode ($){ my ($encoded) = @_; $encoded =~ s/&/&/g; $encoded =~ s/"/"/g; $encoded =~ s//>/g; return $encoded; }