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;
|
|
|
|
|
|
|
|
xhtmlHeaders(__FILE__, $SLANG['SystemLog'] );
|
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<div id="page">
|
|
|
|
<div id="header">
|
|
|
|
<div id="headerButtons">
|
|
|
|
<input type="button" value="<?= $SLANG['More'] ?>" onclick="expandLog()"/>
|
|
|
|
<input type="button" value="<?= $SLANG['Clear'] ?>" onclick="clearLog()"/>
|
|
|
|
<input type="button" value="<?= $SLANG['Refresh'] ?>" onclick="refreshLog()"/>
|
|
|
|
<input type="button" value="<?= $SLANG['Export'] ?>" onclick="exportLog()"/>
|
|
|
|
<input type="button" value="<?= $SLANG['Close'] ?>" onclick="closeWindow()"/>
|
|
|
|
</div>
|
|
|
|
<h2 class="floating"><?= $SLANG['SystemLog'] ?></h2>
|
|
|
|
<div id="headerControl">
|
|
|
|
<table id="logSummary" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
<td><?= $SLANG['Updated'] ?>: <span id="lastUpdate"></span></td>
|
|
|
|
<td><?= $SLANG['State'] ?>: <span id="logState"></span></td>
|
|
|
|
<td><?= $SLANG['Total'] ?>: <span id="totalLogs"></span></td>
|
|
|
|
<td><?= $SLANG['Available'] ?>: <span id="availLogs"></span></td>
|
|
|
|
<td><?= $SLANG['Displaying'] ?>: <span id="displayLogs"></span></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
<div id="filters">Filter log -
|
|
|
|
Component <select id="filter[Component]" onchange="filterLog(this)"><option value="">-----</option></select>
|
|
|
|
PID <select id="filter[Pid]" onchange="filterLog(this)"><option value="">-----</option></select>
|
|
|
|
Level <select id="filter[Level]" onchange="filterLog(this)"><option value="">---</option></select>
|
|
|
|
File <select id="filter[File]" onchange="filterLog(this)"><option value="">------</option></select>
|
|
|
|
Line <select id="filter[Line]" onchange="filterLog(this)"><option value="">----</option></select>
|
|
|
|
<input type="reset" value="<?= $SLANG['Reset'] ?>" onclick="resetLog()"/>
|
|
|
|
</div>
|
2011-06-24 05:53:45 +08:00
|
|
|
<form name="logForm" method="post" action="<?= $_SERVER['PHP_SELF'] ?>">
|
2011-06-21 17:19:10 +08:00
|
|
|
<input type="hidden" name="view" value="<?= $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>
|
|
|
|
<th><?= $SLANG['DateTime'] ?></th>
|
|
|
|
<th class="table-th-nosort"><?= $SLANG['Component'] ?></th>
|
|
|
|
<th class="table-th-nosort"><?= $SLANG['Pid'] ?></th>
|
|
|
|
<th class="table-th-nosort"><?= $SLANG['Level'] ?></th>
|
|
|
|
<th class="table-th-nosort"><?= $SLANG['Message'] ?></th>
|
|
|
|
<th class="table-th-nosort"><?= $SLANG['File'] ?></th>
|
|
|
|
<th class="table-th-nosort"><?= $SLANG['Line'] ?></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div id="contentButtons">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="exportLog" class="overlay">
|
|
|
|
<div class="overlayHeader">
|
|
|
|
<div class="overlayTitle"><?= $SLANG['ExportLog'] ?></div>
|
|
|
|
</div>
|
|
|
|
<div class="overlayBody">
|
|
|
|
<div class="overlayContent">
|
|
|
|
<form id="exportForm" action="" method="post">
|
|
|
|
<fieldset>
|
|
|
|
<legend><?= $SLANG['SelectLog'] ?></legend>
|
|
|
|
<label for="selectorAll">All</label><input type="radio" id="selectorAll" name="selector" value="all"/>
|
|
|
|
<label for="selectorFilter">Filter</label><input type="radio" id="selectorFilter" name="selector" value="filter"/>
|
|
|
|
<label for="selectorCurrent">Current</label><input type="radio" id="selectorCurrent" name="selector" value="current" title="<?= $SLANG['ChooseLogSelection'] ?>" data-validators="validate-one-required"/>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<legend><?= $SLANG['SelectFormat'] ?></legend>
|
|
|
|
<label for="formatText">Text</label><input type="radio" id="formatText" name="format" value="text"/>
|
|
|
|
<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"/>
|
|
|
|
<label for="formatXML">XML</label><input type="radio" id="formatXML" name="format" value="xml" title="<?= $SLANG['ChooseLogFormat'] ?>" class="validate-one-required"/>
|
|
|
|
</fieldset>
|
2011-06-24 06:33:07 +08:00
|
|
|
<div id="exportError">
|
|
|
|
<?= $SLANG['ExportFailed'] ?>: <span id="exportErrorText"></span>
|
2011-06-21 17:19:10 +08:00
|
|
|
</div>
|
|
|
|
<input type="button" id="exportButton" value="<?= $SLANG['Export'] ?>" onclick="exportRequest()"/>
|
|
|
|
<input type="button" value="<?= $SLANG['Cancel'] ?>" class="overlayCloser"/>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|