Skip to content

Commit

Permalink
Do not merge -none columns, only clear name in netlink html.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluhm committed Jul 31, 2024
1 parent e1443a6 commit d3d05c8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions netlink-html.pl
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ sub html_hier_test_head {
} elsif ($hier eq "patch" && $hv->{diff}) {
my $link = uri_escape($hv->{diff}, "^A-Za-z0-9\-\._~/");
$name = "<a href=\"../$link\">$name</a>";
} else {
$name =~ s/.*-none$//;
}
print $html " <th class=\"hier\"$title>$name</th>\n";
}
Expand Down Expand Up @@ -194,6 +196,8 @@ sub html_hier_test_head_utilization {
} elsif ($hier eq "patch" && $hv->{diff}) {
my $link = uri_escape($hv->{diff}, "^A-Za-z0-9\-\._~/");
$name = "<a href=\"../$link\">$name</a>";
} else {
$name =~ s/.*-none$//;
}
print $html " <$te class=\"hier $hier\"$title>$name</$te>\n";
}
Expand Down Expand Up @@ -554,9 +558,6 @@ sub glob_result_files {
warn "Invalid subdir '$_' in result '$File::Find::name'";
return;
}
foreach (values %f) {
delete $f{$1} if /(.*)-none$/;
}
$f{dir} = $File::Find::dir;
$f{name} = $File::Find::name;
push @files, \%f;
Expand Down

0 comments on commit d3d05c8

Please sign in to comment.