Module: tools Branch: master Commit: f62cc452a9165ad577465957b27250963a20bf4a URL: https://source.winehq.org/git/tools.git/?a=commit;h=f62cc452a9165ad577465957...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Jan 22 03:02:02 2018 +0100
winetest: Remove unneeded colons in titles.
Removing the colon makes the titles flow more naturally and improves the chance they are fully visible when multiple tabs are open.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
winetest/gather | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/winetest/gather b/winetest/gather index ac6c350..a894377 100755 --- a/winetest/gather +++ b/winetest/gather @@ -732,14 +732,14 @@ sub write_build_index_and_summary($) { $group_name = $group->{name}; $header_footer = build_header_footer($group->{reports}); - $title = "$short_date: $group_name results"; + $title = "$short_date $group_name results"; $filename = "index_$group_name.html"; } else { $group_name = "global"; $header_footer = build_header_footer(@groups); - $title = "$short_date: Summary"; + $title = "$short_date Summary"; $filename = "index.html"; }
@@ -773,7 +773,7 @@ EOF print OUT " | <a href="..">index</a>\n"; print OUT "</div>\n"; print OUT "<div class="group">\n"; - print OUT "<h1>$short_date: $group_name results for build <a href="." title="$build">$short_build</a></h1>\n"; + print OUT "<h1>$short_date $group_name results for build <a href="." title="$build">$short_build</a></h1>\n"; print OUT "<table class="report">\n$header_footer\n <tbody>\n"; } else @@ -784,7 +784,7 @@ EOF print OUT " | <a href="..">index</a>"; print OUT "</div>\n"; print OUT "<div class="main">\n"; - print OUT "<h1>$short_date: Summary for build $short_build</h1>\n"; + print OUT "<h1>$short_date Summary for build $short_build</h1>\n"; print OUT "<table class="report">\n$header_footer\n <tbody>\n"; }