Added css file to unit test website.
This commit is contained in:
parent
1037b6409e
commit
56d173be89
4 changed files with 19 additions and 2 deletions
|
@ -18,6 +18,7 @@ BOOST_AUTO_TEST_SUITE( teams )
|
|||
|
||||
BOOST_AUTO_TEST_CASE( test_user_team_name )
|
||||
{
|
||||
BOOST_WARN_EQUAL(0,0);
|
||||
}
|
||||
|
||||
/* vim: set ts=4 sw=4: */
|
||||
|
|
6
utils/tests/htdocs/styles/unit_test.css
Normal file
6
utils/tests/htdocs/styles/unit_test.css
Normal file
|
@ -0,0 +1,6 @@
|
|||
div.menu {
|
||||
float: left;
|
||||
width: 7em;
|
||||
border: 1px solid #AAAAAA;
|
||||
};
|
||||
|
|
@ -13,6 +13,9 @@
|
|||
<style type="text/css">@import url('http://www.wesnoth.org/mw/skins/glamdrol/main.css');</style>
|
||||
<style type="text/css">@import url('http://www.wesnoth.org/mw/skins/glamdrol/home.css');</style>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="styles/unit_test.css" />
|
||||
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" title="news" href="http://feed43.com/wesnoth.xml" />
|
||||
<title>Battle for Wesnoth {$extra_title}</title>
|
||||
</head>
|
||||
|
@ -42,4 +45,10 @@
|
|||
</div>
|
||||
|
||||
<div id="main">
|
||||
|
||||
<div id="menu" class="menu">
|
||||
<table class="menu">
|
||||
<tr><td><a href="index.php">Status</a></td></tr>
|
||||
<tr><td><a href="index.php">Build history</a></td></tr>
|
||||
<tr><td><a href="index.php">Test Graphs</a></td></tr>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
<th>r{$build_svn_rev}</th>
|
||||
<th>{$build_result}</th>
|
||||
<th>{$result_passed}/{$result_passed+$result_failed}</th>
|
||||
</tr>
|
||||
</table>
|
||||
<br/>
|
||||
<br/>
|
||||
|
@ -15,7 +16,7 @@
|
|||
<th>Last rev</th>
|
||||
<th>File</th>
|
||||
<th>Line</th>
|
||||
<th width="300">Message</th>
|
||||
<th style="width:300">Message</th>
|
||||
</tr>
|
||||
{foreach from=$errors item=err}
|
||||
<tr>
|
||||
|
|
Loading…
Add table
Reference in a new issue