2008-10-28 10:19:31 +00:00
|
|
|
[% USE date -%]
|
2008-11-18 12:48:58 +00:00
|
|
|
[% USE HTML -%]
|
2008-11-13 12:11:18 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2008-11-13 09:48:10 +00:00
|
|
|
|
2008-11-27 02:38:03 +00:00
|
|
|
[% PROCESS common.tt %]
|
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
2011-04-18 08:21:27 +00:00
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
<head>
|
2008-11-27 00:38:09 +00:00
|
|
|
<title>Hydra - [% title %]</title>
|
2012-04-12 18:12:07 +00:00
|
|
|
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap.css" type="text/css" />
|
2012-04-12 19:03:59 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/hydra.css" type="text/css" />
|
2012-04-12 18:12:07 +00:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
|
|
|
|
padding-bottom: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap-responsive.css" type="text/css" />
|
|
|
|
|
|
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
|
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
|
|
|
|
<script type="text/javascript" src="/static/bootstrap/js/bootstrap-dropdown.js"></script>
|
|
|
|
<script type="text/javascript" src="/static/bootstrap/js/bootstrap-tab.js"></script>
|
|
|
|
<script type="text/javascript" src="/static/bootstrap/js/bootstrap-alert.js"></script>
|
|
|
|
<!--
|
2008-10-28 15:34:29 +00:00
|
|
|
<script type="text/javascript" src="/static/js/tablesorter/jquery.tablesorter.js"></script>
|
2012-04-12 18:12:07 +00:00
|
|
|
-->
|
2008-10-28 15:34:29 +00:00
|
|
|
<script type="text/javascript">
|
2008-11-18 12:48:58 +00:00
|
|
|
$(document).ready(function() {
|
2008-11-26 18:45:52 +00:00
|
|
|
|
|
|
|
/*** Sortable tables. ***/
|
2011-04-18 08:21:27 +00:00
|
|
|
|
|
|
|
|
2008-11-26 18:45:52 +00:00
|
|
|
/*** Tree toggles in logfiles. ***/
|
|
|
|
|
2008-11-18 17:51:40 +00:00
|
|
|
/* Set the appearance of the toggle depending on whether the
|
|
|
|
corresponding subtree is initially shown or hidden. */
|
|
|
|
$(".logTreeToggle").map(function() {
|
|
|
|
if ($(this).siblings("ul:hidden").length == 0) {
|
|
|
|
$(this).text("-");
|
|
|
|
} else {
|
|
|
|
$(this).text("+");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/* When a toggle is clicked, show or hide the subtree. */
|
|
|
|
$(".logTreeToggle").click(function() {
|
|
|
|
if ($(this).siblings("ul:hidden").length != 0) {
|
|
|
|
$(this).siblings("ul").show();
|
|
|
|
$(this).text("-");
|
|
|
|
} else {
|
|
|
|
$(this).siblings("ul").hide();
|
|
|
|
$(this).text("+");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Implementation of the expand all link. */
|
|
|
|
$(".logTreeExpandAll").click(function() {
|
|
|
|
$(".logTreeToggle", $(this).siblings(".toplevel")).map(function() {
|
|
|
|
$(this).siblings("ul").show();
|
|
|
|
$(this).text("-");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Implementation of the collapse all link. */
|
|
|
|
$(".logTreeCollapseAll").click(function() {
|
|
|
|
$(".logTreeToggle", $(this).siblings(".toplevel")).map(function() {
|
|
|
|
$(this).siblings("ul").hide();
|
|
|
|
$(this).text("+");
|
|
|
|
});
|
|
|
|
});
|
2008-11-26 18:45:52 +00:00
|
|
|
|
|
|
|
|
2008-11-18 12:48:58 +00:00
|
|
|
});
|
2008-10-28 15:34:29 +00:00
|
|
|
</script>
|
2011-04-19 12:00:54 +00:00
|
|
|
[% tracker %]
|
2008-10-28 10:19:31 +00:00
|
|
|
</head>
|
2011-04-18 08:21:27 +00:00
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
<body>
|
2011-04-18 08:21:27 +00:00
|
|
|
|
2012-04-12 18:12:07 +00:00
|
|
|
<div class="navbar navbar-fixed-top">
|
|
|
|
<div class="navbar-inner">
|
|
|
|
<div class="container">
|
|
|
|
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
</a>
|
|
|
|
<a class="brand" href="[% c.uri_for(c.controller('Root').action_for('index')) %]">Hydra</a>
|
|
|
|
<div class="nav-collapse">
|
|
|
|
[% PROCESS topbar.tt %]
|
|
|
|
</div><!--/.nav-collapse -->
|
|
|
|
</div>
|
2008-11-12 23:45:11 +00:00
|
|
|
</div>
|
2012-04-12 18:12:07 +00:00
|
|
|
</div>
|
2008-11-12 23:45:11 +00:00
|
|
|
|
2012-04-12 18:12:07 +00:00
|
|
|
<div class="container">
|
2010-01-07 14:25:12 +00:00
|
|
|
|
2012-04-12 18:12:07 +00:00
|
|
|
[% content %]
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="navbar navbar-fixed-bottom">
|
|
|
|
<div id="footer" style="text-align: center;">
|
2010-01-07 14:25:12 +00:00
|
|
|
<div id="last-modified">
|
2010-04-27 13:29:08 +00:00
|
|
|
<em><a href="http://nixos.org/hydra" target="_new">Hydra</a> [% HTML.escape(version) %] (using [% HTML.escape(nixVersion) %]).</em>
|
2010-01-07 14:25:12 +00:00
|
|
|
Page generated on [% INCLUDE renderDateTime %].
|
|
|
|
[% IF c.user_exists %]
|
|
|
|
You are logged in as <tt>[% c.user.username %]</tt>.
|
|
|
|
[% END %]
|
|
|
|
</div>
|
2008-10-28 10:19:31 +00:00
|
|
|
|
|
|
|
</div>
|
2012-04-12 18:12:07 +00:00
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
</body>
|
|
|
|
|
2008-11-25 13:27:57 +00:00
|
|
|
</html>
|