#!/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"; } my($cvsroot) = "/cvs/i-scream"; my($modulelist)=$query->param('module'); $modulelist = `ls $cvsroot` unless defined $modulelist; my($cvs2clpath) = "/home/sites/www.i-scream.org.uk/bin/cvs2cl.pl"; my($cvs2clargs) = "--stdout -r -b -t -w -S -U $cvsroot/CVSROOT/users -l \"-d'\>$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\""; my($updatecmd) = "/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh $modulelist"; my($logcmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs2clpath $cvs2clargs"; my ($left) = "../left.inc" ; my ($title) = "../title.inc"; my ($bottom) = "../bottom.inc"; print "Content-type: text/html\n\n"; print <<"END"; The i-scream Project Commit Log
END &print_html($left); print <<"END"; END &print_html($title); print <<"END";

$heading

END print `$updatecmd`; my(@modules) = split (/\s+/, $modulelist); foreach my $module (@modules) { print "\n\n"; print "\n\n"; print "\n"; print "
\n$module module\n
\n"; my(@lines) = `$logcmd $module 2>&1`; if(@lines == 0) { print "There have been no commits in this module during this period.\n"; } else { foreach my $line (@lines) { if ($line =~ /^([0-9]{4}-[0-9]{2}-[0-9]{2}.*?)([^\s]+)$/) { print "\n"; print HTML_encode($1); print ""; print HTML_encode("by $2"); print "\n" } else { chop $line; print ""; print HTML_encode($line); print "
\n" } } } print "

\n\n"; } &print_html($bottom); 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; } # Print a file without escaping HTML: - sub print_html ($) { my ($filename) = @_; print `cat $filename 2>&1`; }