$okhosts{$H} = 1;
}
my $updlink = $wikilink . ucfirst($H) . "Updates" . $year;
+ # Fix some pages that do not follow the convention.
+ # Mostly because the host names would not make proper WikiWords
+ $updlink =~ s/Bugzilla3Updates/BugzillaUpdates/;
+ $updlink =~ s/Opencontent-solrUpdates/OpenContentSolrUpdates/;
$table .= " <a href='$updlink' >Upd</a>";
$table .= "</td></tr>\n";
$table .= $det if $pkgs;
if ( $sectot ) {
print F "<tr><td><b>Security</b><br/>" . scalar(keys(%sechosts)) .
- " / " . scalar(keys(%secpkgs)) . " / $sectot </td>\n" ;
+ " / " . scalar(keys(%secpkgs)) . " / $sectot </td>\n" ;
print F "<td>";
for $HH ( sort(keys(%sechosts)) ) {
print F "<a href='#$HH'><b>$HH</b></a> ";
}
if ( $owntot ) {
print F "<tr><td><b>Indexdata</b><br/>" . scalar(keys(%ownhosts)) .
- " / " . scalar(keys(%ownpkgs)) . " / $owntot </td>\n" ;
+ " / " . scalar(keys(%ownpkgs)) . " / $owntot </td>\n" ;
print F "<td>";
for $HH ( sort(keys(%ownhosts)) ) {
print F "<a href='#$HH'><b>$HH</b></a> ";
print F "<a href='#$PP'>$PP</a> ";
}
print F "</td>";
- #print F "<td>" . join(" ",sort(keys(%ownpkgs))) . " </td>";
print F "</tr>\n";
}
if ( $normtot ) {
- print F "<tr><td>Indexdata<br/>" . scalar(keys(%normhosts)) .
- " / " . scalar(keys(%normpkgs)) . " / $normtot </td>\n" ;
+ print F "<tr><td>Normal<br/>" . scalar(keys(%normhosts)) .
+ " / " . scalar(keys(%normpkgs)) . " / $normtot </td>\n" ;
print F "<td>";
for $HH ( sort(keys(%normhosts)) ) {
print F "<a href='#$HH'><b>$HH</b></a> ";
}
- print F "<td>" . join(" ",sort(keys(%normpkgs))) . " </td>";
+ print F "</td>";
+ print F "<td>";
+ for $PP ( sort(keys(%normpkgs)) ) {
+ print F "<a href='#$PP'>$PP</a> ";
+ }
+ print F "</td>";
print F "</tr>\n";
}
if ( %skiphosts ) {
- print F "<tr><td>Skipped: " . scalar(keys(%skiphosts)) . "</td>\n";
+ print F "<tr><td>Skipped " . scalar(keys(%skiphosts)) . "</td>\n";
print F "<td colspan='2'>";
for $HH ( sort(keys(%skiphosts)) ) {
print F "<a href='#$HH'><b>$HH</b></a> ";
print F "</td></tr>\n";
}
if ( %okhosts ) {
- print F "<tr><td>Ok: " . scalar(keys(%okhosts)) . "</td>\n";
+ print F "<tr><td>Ok " . scalar(keys(%okhosts)) . "</td>\n";
print F "<td colspan='2'>";
for $HH ( sort(keys(%okhosts)) ) {
print F "<a href='#$HH'><b>$HH</b></a> ";
my $x = shift;
my $y = shift;
print "strdiff: '$x' '$y' \n" if $debug>1;
+ if ( $x eq $y ) {
+ return "$x <b>??</b>";
+ }
my $a = 0;
while ( $a < length($y) &&
substr($x,$a,1) eq substr($y,$a,1) ) {
$a++;
}
if ( $a == length($y) ) {
- return "$y ???";
+ return "$y ??";
}
my $b = 1;
while ( $b < length($y)-$a &&