1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
<!DOCTYPE html>
<!--
This file is part of Cockpit.
Copyright (C) 2015 Red Hat, Inc.
Cockpit is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
Cockpit is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Cockpit; If not, see <http://www.gnu.org/licenses/>.
-->
<html>
<head>
<title translate>Journal</title>
<meta charset="utf-8">
<link href="../base1/patternfly.css" rel="stylesheet">
<link href="system.css" rel="stylesheet">
<script type="text/javascript" src="../base1/jquery.js"></script>
<script type="text/javascript" src="../base1/cockpit.js"></script>
<script src="../*/po.js"></script>
</head>
<body>
<div id="journal">
<div class="content-header-extra">
<div class="btn-group" id="journal-current-day-menu">
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span id="journal-current-day"></span>
<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a data-op="recent" translatable="yes">Recent</a></li>
<li><a data-op="boot" translatable="yes">Current boot</a></li>
<li><a data-op="last-24h" translatable="yes">Last 24 hours</a></li>
<li><a data-op="last-week" translatable="yes">Last 7 days</a></li>
</ul>
</div>
<span class="" translate>Severity</span>
<div class="btn-group" id="journal-prio-menu">
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span id="journal-prio"></span>
<span class="caret"></span>
</button>
<ul id="prio-lists" class="dropdown-menu" role="menu">
<li><a data-prio="*" translatable="yes">Everything</a></li>
<li><a data-prio="0" translatable="yes">Only Emergency</a></li>
<li><a data-prio="1" translatable="yes">Alert and above</a></li>
<li><a data-prio="2" translatable="yes">Critical and above</a></li>
<li><a data-prio="3" translatable="yes">Error and above</a></li>
<li><a data-prio="4" translatable="yes">Warning and above</a></li>
<li><a data-prio="5" translatable="yes">Notice and above</a></li>
<li><a data-prio="6" translatable="yes">Info and above</a></li>
<li><a data-prio="7" translatable="yes">Debug and above</a></li>
</ul>
</div>
</div>
<div id="journal-box" class="container-fluid"></div>
</div>
<div id="journal-entry" class="container-fluid" hidden>
<ol class="breadcrumb">
<li><a id="journal-navigate-home" translatable="yes">Logs</a></li>
<li class="active" translatable="yes">Entry</li>
</ol>
<div class="panel panel-default">
<div class="panel-heading">
<span id="journal-entry-id"></span>
<span id="journal-entry-date" class="pull-right"></span>
</div>
<div id="journal-entry-message"></div>
<table class="info-table-ct" id="journal-entry-fields">
</table>
</div>
</div>
<script type="text/javascript" src="logs.js"></script>
</body>
</html>
|