2011-06-21 17:19:10 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web log view file, $Date: 2010-02-23 09:10:36 +0000 (Tue, 23 Feb 2010) $, $Revision: 3030 $
|
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// 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 General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2011-06-21 17:19:10 +08:00
|
|
|
//
|
|
|
|
|
2018-05-17 02:17:57 +08:00
|
|
|
if ( !canView('System') ) {
|
|
|
|
$view = 'error';
|
|
|
|
return;
|
2011-06-21 17:19:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$focusWindow = true;
|
|
|
|
|
2015-05-10 21:10:30 +08:00
|
|
|
xhtmlHeaders(__FILE__, translate('SystemLog') );
|
2011-06-21 17:19:10 +08:00
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<div id="page">
|
|
|
|
<div id="header">
|
2018-05-17 02:17:57 +08:00
|
|
|
<table class="table">
|
2018-05-18 21:12:10 +08:00
|
|
|
<tr class="row">
|
2018-05-17 02:17:57 +08:00
|
|
|
<td class="col text-center">
|
|
|
|
<div id="logSummary">
|
|
|
|
<?php echo translate('State') ?>: <span id="logState"></span>/
|
|
|
|
<?php echo translate('Total') ?>: <span id="totalLogs"></span>/
|
|
|
|
<?php echo translate('Available') ?>: <span id="availLogs"></span>/
|
|
|
|
<?php echo translate('Displaying') ?>: <span id="displayLogs"></span>/
|
|
|
|
<?php echo translate('Updated') ?>: <span id="lastUpdate"></span>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="row">
|
2018-03-26 04:01:04 +08:00
|
|
|
<td class="col text-center">
|
2018-05-17 02:17:57 +08:00
|
|
|
<div class="btn-group">
|
2019-01-16 22:59:58 +08:00
|
|
|
<button type="button" data-on-click="expandLog"><?php echo translate('More') ?></button>
|
|
|
|
<button type="button" data-on-click="clearLog"><?php echo translate('Clear') ?></button>
|
|
|
|
<button type="button" data-on-click="refreshLog"><?php echo translate('Refresh') ?></button>
|
|
|
|
<button type="button" data-on-click="exportLog"><?php echo translate('Export') ?></button>
|
|
|
|
<button type="button" data-on-click="closeWindow"><?php echo translate('Close') ?></button>
|
2018-05-17 02:17:57 +08:00
|
|
|
</div> <!--btn-->
|
|
|
|
</td>
|
2018-10-23 01:54:27 +08:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div> <!--header-->
|
2018-05-17 02:17:57 +08:00
|
|
|
<div id="content">
|
2019-10-03 03:39:04 +08:00
|
|
|
<form id="logForm" name="logForm" method="post" action="?">
|
2018-05-17 02:17:57 +08:00
|
|
|
<div id="filters">
|
2018-05-18 21:12:10 +08:00
|
|
|
|
2018-05-17 02:17:57 +08:00
|
|
|
<table class="table-condensed">
|
|
|
|
<tr class="row">
|
|
|
|
<td class="col">
|
2019-10-03 03:39:04 +08:00
|
|
|
<label><?php echo translate('Component') ?></label>
|
2019-01-16 22:59:58 +08:00
|
|
|
<select class="form-control chosen" id="filter[Component]" data-on-change="filterLog"><option value="">-----</option></select>
|
2018-05-17 02:17:57 +08:00
|
|
|
</td>
|
|
|
|
<td class="col">
|
2019-10-03 03:39:04 +08:00
|
|
|
<label><?php echo translate('Server') ?></label>
|
2019-01-16 22:59:58 +08:00
|
|
|
<select class="form-control chosen" id="filter[ServerId]" data-on-change="filterLog"><option value="">-----</option></select>
|
2018-05-17 02:17:57 +08:00
|
|
|
</td>
|
|
|
|
<td class="col">
|
2019-10-03 03:39:04 +08:00
|
|
|
<label><?php echo translate('Pid') ?></label>
|
2019-01-16 22:59:58 +08:00
|
|
|
<select class="form-control chosen" id="filter[Pid]" data-on-change="filterLog"><option value="">-----</option></select>
|
2018-05-17 02:17:57 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="row">
|
|
|
|
<td class="col">
|
2019-10-03 03:39:04 +08:00
|
|
|
<label><?php echo translate('Level') ?></label>
|
2019-01-16 22:59:58 +08:00
|
|
|
<select class="form-control chosen" id="filter[Level]" data-on-change="filterLog"><option value="">---</option></select>
|
2018-05-17 02:17:57 +08:00
|
|
|
</td>
|
|
|
|
<td class="col">
|
2019-10-03 03:39:04 +08:00
|
|
|
<label><?php echo translate('File') ?></label>
|
2019-01-16 22:59:58 +08:00
|
|
|
<select class="form-control chosen" id="filter[File]" data-on-change="filterLog"><option value="">------</option></select>
|
2018-05-17 02:17:57 +08:00
|
|
|
</td>
|
|
|
|
<td class="col">
|
2019-10-03 03:39:04 +08:00
|
|
|
<label><?php echo translate('Line') ?></label>
|
2019-01-16 22:59:58 +08:00
|
|
|
<select class="form-control chosen" id="filter[Line]" data-on-change="filterLog"><option value="">----</option></select>
|
2018-05-17 02:17:57 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2019-01-16 22:59:58 +08:00
|
|
|
<button type="reset" data-on-click="resetLog"><?php echo translate('Reset') ?></button>
|
2011-06-21 17:19:10 +08:00
|
|
|
</div>
|
2018-05-17 02:17:57 +08:00
|
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
|
|
|
<table id="logTable" class="major">
|
|
|
|
<thead class="thead-highlight">
|
|
|
|
<tr>
|
|
|
|
<th><?php echo translate('DateTime') ?></th>
|
|
|
|
<th class="table-th-nosort"><?php echo translate('Component') ?></th>
|
|
|
|
<th class="table-th-nosort"><?php echo translate('Server') ?></th>
|
|
|
|
<th class="table-th-nosort"><?php echo translate('Pid') ?></th>
|
|
|
|
<th class="table-th-nosort"><?php echo translate('Level') ?></th>
|
|
|
|
<th class="table-th-nosort"><?php echo translate('Message') ?></th>
|
|
|
|
<th class="table-th-nosort"><?php echo translate('File') ?></th>
|
|
|
|
<th class="table-th-nosort"><?php echo translate('Line') ?></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div id="contentButtons">
|
|
|
|
</div>
|
|
|
|
</form>
|
2011-06-21 17:19:10 +08:00
|
|
|
</div>
|
2018-05-17 02:17:57 +08:00
|
|
|
</div>
|
2011-06-21 17:19:10 +08:00
|
|
|
<div id="exportLog" class="overlay">
|
|
|
|
<div class="overlayHeader">
|
2015-05-10 21:10:30 +08:00
|
|
|
<div class="overlayTitle"><?php echo translate('ExportLog') ?></div>
|
2011-06-21 17:19:10 +08:00
|
|
|
</div>
|
|
|
|
<div class="overlayBody">
|
|
|
|
<div class="overlayContent">
|
|
|
|
<form id="exportForm" action="" method="post">
|
|
|
|
<fieldset>
|
2015-05-10 21:10:30 +08:00
|
|
|
<legend><?php echo translate('SelectLog') ?></legend>
|
2019-12-21 05:11:10 +08:00
|
|
|
<label for="selectorAll"><?php echo translate('All') ?></label>
|
|
|
|
<input type="radio" id="selectorAll" name="selector" value="all"/>
|
|
|
|
<label for="selectorFilter"><?php echo translate('Filter') ?></label>
|
|
|
|
<input type="radio" id="selectorFilter" name="selector" value="filter"/>
|
|
|
|
<label for="selectorCurrent"><?php echo translate('Current') ?></label>
|
|
|
|
<input type="radio" id="selectorCurrent" name="selector" value="current" title="<?php echo translate('ChooseLogSelection') ?>" data-validators="validate-one-required"/>
|
2011-06-21 17:19:10 +08:00
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
2015-05-10 21:10:30 +08:00
|
|
|
<legend><?php echo translate('SelectFormat') ?></legend>
|
2015-04-18 23:14:14 +08:00
|
|
|
<label for="formatText">TXT</label><input type="radio" id="formatText" name="format" value="text"/>
|
2011-06-21 17:19:10 +08:00
|
|
|
<label for="formatTSV">TSV</label><input type="radio" id="formatTSV" name="format" value="tsv"/>
|
|
|
|
<label for="formatXML">HTML</label><input type="radio" id="formatHTML" name="format" value="html"/>
|
2015-05-10 21:10:30 +08:00
|
|
|
<label for="formatXML">XML</label><input type="radio" id="formatXML" name="format" value="xml" title="<?php echo translate('ChooseLogFormat') ?>" class="validate-one-required"/>
|
2011-06-21 17:19:10 +08:00
|
|
|
</fieldset>
|
2011-06-24 06:33:07 +08:00
|
|
|
<div id="exportError">
|
2015-05-10 21:10:30 +08:00
|
|
|
<?php echo translate('ExportFailed') ?>: <span id="exportErrorText"></span>
|
2011-06-21 17:19:10 +08:00
|
|
|
</div>
|
2019-01-16 22:59:58 +08:00
|
|
|
<button type="button" id="exportButton" value="Export" data-on-click="exportRequest"><?php echo translate('Export') ?></button>
|
2018-10-23 01:54:27 +08:00
|
|
|
<button type="button" value="Cancel" class="overlayCloser"><?php echo translate('Cancel') ?></button>
|
2011-06-21 17:19:10 +08:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|