Module: tools Branch: master Commit: 1767d458d20ccce7616fb4a725d9e158046318b8 URL: http://source.winehq.org/git/tools.git/?a=commit;h=1767d458d20ccce7616fb4a72...
Author: Alexandre Julliard julliard@winehq.org Date: Sun Feb 8 20:06:22 2009 +0100
winetest: Make sure the right-hand side links don't get wrapped.
---
winetest/build-index | 2 +- winetest/gather | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/winetest/build-index b/winetest/build-index index 2813ae8..6516cfa 100755 --- a/winetest/build-index +++ b/winetest/build-index @@ -186,7 +186,7 @@ EOF } } print OUT " <td class="links"><a href="$gitweb?a=shortlog;h=$build->{name}">shortlog</a>"; - print OUT " | <a href="../$build->{name}">all tests</a></td></tr>\n"; + print OUT " | <a href="../$build->{name}">all tests</a></td></tr>\n"; } print OUT "</table></body></html>\n"; close OUT; diff --git a/winetest/gather b/winetest/gather index fef9396..3c9946b 100755 --- a/winetest/gather +++ b/winetest/gather @@ -607,8 +607,8 @@ sub test_links($) my ($testname) = @_; my $source = $alltests{$testname}; return "<td class="links"><a href="$gitweb/?a=history;f=$source;hb=$build" title="$source change history">history</a>" . - " | <a href="$gitweb/?a=blob;f=$source;hb=$build" title="$source source code">source</a>" . - " | <a href="../tests/$testname.html" title="$testname results across all builds">all builds</a></td>"; + " | <a href="$gitweb/?a=blob;f=$source;hb=$build" title="$source source code">source</a>" . + " | <a href="../tests/$testname.html" title="$testname results across all builds">all builds</a></td>"; }
sub build_totals($)