brew/Library/Contributions/cmds/brew-test-bot/brew-test-bot.commit.html.erb
Misty De Meo 6542b22677 brew-test-bot: move html and css into subdirectory
Also updates the bash-completion to ignore subdirectories, rather than
specific filename patterns.
2012-07-18 08:25:07 -05:00

25 lines
554 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>BrewBot: <%= @test.name %></title>
<title>BrewBot</title>
<style>
<%= css %>
</style>
</head>
<body>
<div>
<h1><a href="../index.html">BrewBot</a></h1>
<h2><%= @test.name %> <%= DateTime.now.strftime "%T %D" %></h2>
<table>
<% for step in @test.steps %>
<tr>
<td><span class="prompt">$</span> <%= step.command %></td>
<td class='status <%= step.status %>'><a href='<%= step.log_file_path false %> '><%= step.status_upcase %></a></td>
</tr>
<% end %>
</table>
</div>
</body>
</html>