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
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
|
|
|
|
|
|
|
if ( !canView( 'System' ) )
|
|
|
|
{
|
|
|
|
$view = "error";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$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">
|
|
|
|
<div id="headerButtons">
|
2015-05-10 21:10:30 +08:00
|
|
|
<input type="button" value="<?php echo translate('More') ?>" onclick="expandLog()"/>
|
|
|
|
<input type="button" value="<?php echo translate('Clear') ?>" onclick="clearLog()"/>
|
|
|
|
<input type="button" value="<?php echo translate('Refresh') ?>" onclick="refreshLog()"/>
|
|
|
|
<input type="button" value="<?php echo translate('Export') ?>" onclick="exportLog()"/>
|
|
|
|
<input type="button" value="<?php echo translate('Close') ?>" onclick="closeWindow()"/>
|
2011-06-21 17:19:10 +08:00
|
|
|
</div>
|
2015-05-10 21:10:30 +08:00
|
|
|
<h2 class="floating"><?php echo translate('SystemLog') ?></h2>
|
2011-06-21 17:19:10 +08:00
|
|
|
<div id="headerControl">
|
|
|
|
<table id="logSummary" cellspacing="0">
|
|
|
|
<tr>
|
2015-05-10 21:10:30 +08:00
|
|
|
<td><?php echo translate('Updated') ?>: <span id="lastUpdate"></span></td>
|
|
|
|
<td><?php echo translate('State') ?>: <span id="logState"></span></td>
|
|
|
|
<td><?php echo translate('Total') ?>: <span id="totalLogs"></span></td>
|
|
|
|
<td><?php echo translate('Available') ?>: <span id="availLogs"></span></td>
|
|
|
|
<td><?php echo translate('Displaying') ?>: <span id="displayLogs"></span></td>
|
2011-06-21 17:19:10 +08:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="content">
|
2015-05-10 21:10:30 +08:00
|
|
|
<div id="filters"><?php echo translate('FilterLog') ?> -
|
|
|
|
<?php echo translate('Component') ?> <select id="filter[Component]" onchange="filterLog(this)"><option value="">-----</option></select>
|
|
|
|
<?php echo translate('Pid') ?> <select id="filter[Pid]" onchange="filterLog(this)"><option value="">-----</option></select>
|
|
|
|
<?php echo translate('Level') ?> <select id="filter[Level]" onchange="filterLog(this)"><option value="">---</option></select>
|
|
|
|
<?php echo translate('File') ?> <select id="filter[File]" onchange="filterLog(this)"><option value="">------</option></select>
|
|
|
|
<?php echo translate('Line') ?> <select id="filter[Line]" onchange="filterLog(this)"><option value="">----</option></select>
|
|
|
|
<input type="reset" value="<?php echo translate('Reset') ?>" onclick="resetLog()"/>
|
2011-06-21 17:19:10 +08:00
|
|
|
</div>
|
2014-12-05 07:44:23 +08:00
|
|
|
<form name="logForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
|
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
2011-06-24 05:53:45 +08:00
|
|
|
<table id="logTable" class="major" cellspacing="0">
|
2011-06-21 17:19:10 +08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2015-05-10 21:10:30 +08:00
|
|
|
<th><?php echo translate('DateTime') ?></th>
|
|
|
|
<th class="table-th-nosort"><?php echo translate('Component') ?></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>
|
2011-06-21 17:19:10 +08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div id="contentButtons">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<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>
|
|
|
|
<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>
|
2015-05-10 21:10:30 +08:00
|
|
|
<input type="button" id="exportButton" value="<?php echo translate('Export') ?>" onclick="exportRequest()"/>
|
|
|
|
<input type="button" value="<?php echo translate('Cancel') ?>" class="overlayCloser"/>
|
2011-06-21 17:19:10 +08:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|