2019-03-13 12:20:24 +00:00
|
|
|
<!--
|
|
|
|
ClearURLs
|
|
|
|
Copyright (c) 2017-2019 Kevin Röbert
|
|
|
|
|
|
|
|
This program 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
2017-11-18 00:34:01 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Log from ClearURLs</title>
|
|
|
|
<!-- Required meta tags -->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
2018-06-17 23:17:15 +00:00
|
|
|
<link rel="icon" sizes="any" type="image/svg+xml" href="/img/clearurls.svg">
|
|
|
|
|
2017-11-18 00:34:01 +00:00
|
|
|
<!-- Bootstrap CSS -->
|
2017-12-16 22:50:50 +00:00
|
|
|
<link rel="stylesheet" href="../css/bootstrap.min.css">
|
2020-01-04 00:14:03 +00:00
|
|
|
<link rel="stylesheet" href="../css/dataTables.min.css">
|
2017-12-16 22:50:50 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="../css/core.css">
|
2017-11-18 00:34:01 +00:00
|
|
|
<style>
|
2019-10-22 23:16:12 +00:00
|
|
|
td {
|
|
|
|
word-wrap: break-word;
|
|
|
|
max-width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileinput-button {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileinput-button input {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
opacity: 0;
|
|
|
|
-ms-filter: 'alpha(opacity=0)';
|
|
|
|
direction: ltr;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-11-18 00:34:01 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2020-01-04 00:14:03 +00:00
|
|
|
<nav class="navbar-margin navbar navbar-dark bg-dark">
|
2017-11-18 00:34:01 +00:00
|
|
|
<div class="container">
|
|
|
|
<span class="navbar-brand">
|
2020-01-04 00:14:03 +00:00
|
|
|
<span class="float-left"><img src="../img/clearurls.svg"
|
2017-12-16 22:50:50 +00:00
|
|
|
width="30" height="30" alt=""></span>
|
2020-01-04 00:14:03 +00:00
|
|
|
<span style="color: #FF7800;" class="float-right" id="page_title"></span><br />
|
|
|
|
<span class="badge badge-warning float-left small-version"
|
2017-12-16 22:50:50 +00:00
|
|
|
id="version"></span>
|
2017-11-18 00:34:01 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<div class="row">
|
2020-01-04 00:14:03 +00:00
|
|
|
<div class="col-lg-10 offset-lg-1">
|
2017-11-18 00:34:01 +00:00
|
|
|
<p class="text-center">
|
2017-12-16 22:50:50 +00:00
|
|
|
<button type="button" id="reset_log_btn"
|
2019-10-22 23:16:12 +00:00
|
|
|
class="btn btn-danger" title="Reset the global log">
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button type="button" id="export_log_btn"
|
|
|
|
class="btn btn-success" title="Export the global log">
|
2020-01-04 00:14:03 +00:00
|
|
|
<i class="fas fa-download"></i>
|
2019-10-22 23:16:12 +00:00
|
|
|
<span id="export_log_btn_text"></span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<span id="import_log_btn"
|
|
|
|
class="btn btn-success fileinput-button" title="Import the global log">
|
2020-01-04 00:14:03 +00:00
|
|
|
<i class="fas fa-upload"></i>
|
2019-10-22 23:16:12 +00:00
|
|
|
<span id="import_log_btn_text"></span>
|
|
|
|
<input type="file" name="file" id="importLog"/>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
2017-11-18 00:34:01 +00:00
|
|
|
</p>
|
|
|
|
<div class="table-responsive">
|
2017-12-16 22:50:50 +00:00
|
|
|
<table class="table table-striped table-bordered"
|
|
|
|
width="100%" id="logTable" cellspacing="0">
|
2017-11-18 00:34:01 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-05-21 21:25:20 +00:00
|
|
|
<th data-orderable="false" id="head_1"></th>
|
|
|
|
<th data-orderable="false" id="head_2"></th>
|
|
|
|
<th data-orderable="false" id="head_3"></th>
|
|
|
|
<th data-orderable="true" id="head_4"></th>
|
2017-11-18 00:34:01 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="tbody">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Optional JavaScript -->
|
|
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
2018-09-02 18:17:54 +00:00
|
|
|
<script src="../browser-polyfill.js"></script>
|
2020-01-04 00:14:03 +00:00
|
|
|
<script src="../external_js/jquery-3.4.1.min.js"></script>
|
2017-12-16 22:50:50 +00:00
|
|
|
<script src="../external_js/bootstrap.min.js"></script>
|
2020-01-04 00:14:03 +00:00
|
|
|
<script src="../external_js/dataTables.min.js"></script>
|
|
|
|
<script src="../external_js/fontawesome/all.min.js"></script>
|
2017-12-16 22:50:50 +00:00
|
|
|
<script src="../core_js/log.js"></script>
|
|
|
|
<script src="../core_js/write_version.js"></script>
|
2017-11-18 00:34:01 +00:00
|
|
|
</body>
|
|
|
|
</html>
|