<h2>$heading</h2>
END
-print `$updatecmd`;
+print `$updatecmd >/dev/null 2>&1`;
my(@modules) = split (/\s+/, $modulelist);
print "<a href=\"/cgi-bin/cvs/viewcvs.cgi/$file\" style=\"text-decoration: none;\">";
print HTML_encode($file);
print "</a> ";
- if($rest =~ /\((\d+).(\d+)(.*)\)/) {
+ if($rest =~ /\((\S+)\.(\d+)(.*)\)/) {
my $newrev = "$1.$2";
my $oldminver = $2-1;
my $oldrev = "$1.$oldminver";
- if(!($1==1 && $2==1)) {
+ if($2 != 1) {
my $diff = ".diff?r1=$oldrev&r2=$newrev";
print "(<a href=\"/cgi-bin/cvs/viewcvs.cgi/$file$diff\" style=\"text-decoration: none;\">";
print HTML_encode("$1.$2");