14 |
|
if ($days < 1) {$days = 1}; |
15 |
|
$heading = "i-scream CVS$moduleext commits in the past $days day(s)"; |
16 |
|
$days--; |
17 |
< |
$firstdate = ">" . `date --date \"$days days ago\" \"+%Y/%m/%d\"`; |
17 |
> |
$days .= "d"; # because we can't write "$daysd" below :-) |
18 |
> |
$firstdate = ">" . `/bin/date -v-$days +%Y/%m/%d`; |
19 |
|
} |
20 |
|
elsif($period eq "date") { |
21 |
|
my($date)=$query->param('date'); |
22 |
< |
$date = `/bin/date \"+%Y/%m/%d\"` unless defined $date; |
22 |
> |
$date = `/bin/date +%Y/%m/%d` unless defined $date; |
23 |
|
$heading = "i-scream CVS$moduleext commits on $date"; |
24 |
|
$firstdate = "$date 00:00<$date 23:59" |
25 |
|
} |
26 |
|
elsif($period eq "since") { |
27 |
|
my($date)=$query->param('date'); |
28 |
< |
$date = `/bin/date \"+%Y/%m/%d\"` unless defined $date; |
28 |
> |
$date = `/bin/date +%Y/%m/%d` unless defined $date; |
29 |
|
$heading = "i-scream CVS$moduleext commits since $date"; |
30 |
|
$firstdate = ">$date"; |
31 |
|
} |
35 |
|
} |
36 |
|
else { |
37 |
|
# default to "today only" |
38 |
< |
$firstdate = ">" . `/bin/date \"+%Y/%m/%d\"`; |
38 |
> |
$firstdate = ">" . `/bin/date +%Y/%m/%d`; |
39 |
|
$heading = "Today's i-scream CVS$moduleext commits"; |
40 |
|
} |
41 |
|
|
45 |
|
$modulelist =~ s/[\r\n]/ /gm; |
46 |
|
|
47 |
|
my($cvs2clpath) = "/usr/local/bin/cvs2cl"; |
47 |
– |
#my($cvs2clargs) = "--stdout --no-wrap -r -b -t -w -S -U $cvsroot/CVSROOT/users -l \"-d'$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\""; |
48 |
|
my($cvs2clargs) = "--stdout --no-wrap -r -t -w -S -U $cvsroot/CVSROOT/users -l \"-d'$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\""; |
49 |
|
my($updatecmd) = "/home/iscream/bin/fullcvsupdate.sh $modulelist"; |
50 |
|
my($logcmd) = "cd /tmp/i-scream/cvstmp && $cvs2clpath $cvs2clargs"; |
118 |
|
print "</i>\n</font>\n" |
119 |
|
} |
120 |
|
elsif($line =~ /(\S+) (\(\S+\))([,:])/ || $line =~ /(\S+) (\(\S+,\s+\S+\))([,:])/) { |
121 |
– |
#chop $line; |
121 |
|
my ($file, $rest, $ext) = ($1, $2, $3); |
122 |
|
print "<code>"; |
123 |
|
print "<a href=\"http://cvs.i-scream.org/$file\" style=\"text-decoration: none;\">"; |
124 |
|
print HTML_encode($file); |
125 |
|
print "</a> "; |
126 |
|
if($rest =~ /\((\S+)\.(\d+)(.*)\)/) { |
127 |
< |
my $newrev = "$1.$2"; |
128 |
< |
my $oldminver = $2-1; |
129 |
< |
my $oldrev = "$1.$oldminver"; |
130 |
< |
if($2 != 1) { |
127 |
> |
my $start = $1; |
128 |
> |
my $end = $2; |
129 |
> |
my $other = $3; |
130 |
> |
my $newrev = "$start.$end"; |
131 |
> |
my $oldrev; |
132 |
> |
if($end != 1) { |
133 |
> |
my $oldminver = $end-1; |
134 |
> |
$oldrev = "$start.$oldminver"; |
135 |
> |
} |
136 |
> |
elsif($start =~ /^((\d+\.)+)(\d+)$/) { |
137 |
> |
$oldrev = $1; |
138 |
> |
# take trailing . off old revision |
139 |
> |
chop $oldrev; |
140 |
> |
} |
141 |
> |
if(defined $oldrev) { |
142 |
|
my $diff = ".diff?r1=$oldrev&r2=$newrev"; |
143 |
|
print "(<a href=\"http://cvs.i-scream.org/$file$diff\" style=\"text-decoration: none;\">"; |
144 |
< |
print HTML_encode("$1.$2"); |
144 |
> |
print HTML_encode("$start.$end"); |
145 |
|
print "</a>"; |
146 |
< |
print HTML_encode("$3)"); |
146 |
> |
print HTML_encode("$other)"); |
147 |
|
} |
148 |
|
else { |
149 |
|
print HTML_encode($rest); |