Struggeling with relocating
Dieser Commit ist enthalten in:
Commit
89ea01c429
301 geänderte Dateien mit 59926 neuen und 0 gelöschten Zeilen
72
tpl/log/log.tpl
Normale Datei
72
tpl/log/log.tpl
Normale Datei
|
|
@ -0,0 +1,72 @@
|
|||
<div id="content">
|
||||
<h2>{L_LOG}</h2>
|
||||
<button class="Formbutton" type="button" onclick="location.href='index.php?p=log&log=1&revers={REVERS}'">{ICON_VIEW} PHP-Log</button>
|
||||
<button class="Formbutton" type="button" onclick="location.href='index.php?p=log&log=4&revers={REVERS}'"{ERRORLOG_DISABLED}>{ICON_VIEW} {L_ERROR_LOG}</button>
|
||||
<button class="Formbutton" type="button" onclick="location.href='index.php?p=log&log=2&revers={REVERS}'"{PERLLOG_DISABLED}>{ICON_VIEW} {L_PERL_LOG}</button>
|
||||
<button class="Formbutton" type="button" onclick="location.href='index.php?p=log&log=3&revers={REVERS}'"{PERLCOMPLETELOG_DISABLED}>{ICON_VIEW} {L_PERL_COMPLETELOG}</button>
|
||||
<br />
|
||||
|
||||
<div class="left">
|
||||
<table class="bdr">
|
||||
<tr>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<td align="right">
|
||||
<a href="{LOGPATH}{PHPLOG}" class="new-window">{ICON_OPEN_FILE} {PHPLOG}</a> <br />
|
||||
|
||||
<!-- BEGIN ERRORLOG -->
|
||||
<a href="{LOGPATH}{ERRORLOG.ERRORLOG}" class="new-window">{ICON_OPEN_FILE} {ERRORLOG.ERRORLOG}</a><br />
|
||||
<!-- END ERRORLOG -->
|
||||
|
||||
<!-- BEGIN PERLLOG -->
|
||||
<a href="{LOGPATH}{PERLLOG.FILE_NAME}" class="new-window">{ICON_OPEN_FILE} {PERLLOG.FILE_NAME}</a><br />
|
||||
<!-- END PERLLOG -->
|
||||
|
||||
<!-- BEGIN PERLCOMPLETELOG -->
|
||||
<a href="{LOGPATH}{PERLCOMPLETELOG.FILE_NAME}" class="new-window">{ICON_OPEN_FILE} {PERLCOMPLETELOG.FILE_NAME}</a><br />
|
||||
<!-- END PERLCOMPLETELOG -->
|
||||
<strong>{L_INFO_SUM}:</strong>
|
||||
</td>
|
||||
|
||||
<td class="right">
|
||||
{PHPLOG_SIZE}<br />
|
||||
|
||||
<!-- BEGIN ERRORLOG -->
|
||||
{ERRORLOG.SIZE}<br />
|
||||
<!-- END ERRORLOG -->
|
||||
|
||||
<!-- BEGIN PERLLOG -->
|
||||
{PERLLOG.SIZE}<br />
|
||||
<!-- END ERRORLOG -->
|
||||
|
||||
<!-- BEGIN PERLCOMPLETELOG -->
|
||||
{PERLCOMPLETELOG.SIZE}<br />
|
||||
<!-- END PERLCOMPLETELOG -->
|
||||
|
||||
<strong><span style="text-decoration:overline">{LOGSIZE_TOTAL}</span></strong>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="left" style="width:100%">
|
||||
<a class="Formbutton" href="index.php?p=log&delete_log=1&log={LOG_TYPE}">{ICON_DELETE} {L_LOG_DELETE}</a>
|
||||
<a class="Formbutton" href="index.php?p=log&log={LOG_TYPE}&revers=0">{ICON_ARROW_UP} {L_NOREVERSE}</a>
|
||||
<a class="Formbutton" href="index.php?p=log&log={LOG_TYPE}&revers=1">{ICON_ARROW_DOWN} {L_REVERSE}</a>
|
||||
<br />
|
||||
<h3>{L_LOG} "{LOG}": <img alt="Loading..." title="Loading..." style="display: none;" class="ajax-reload" src="css/msd/icons/ajax-loader.gif" /></h3>
|
||||
|
||||
<script type="text/javascript">
|
||||
/*<![CDATA[*/
|
||||
jQuery(document).ready(function() {get_log('p=log&log={LOG_TYPE}&revers={REVERS}');});
|
||||
/*]]>*/
|
||||
</script>
|
||||
<div id="ilog" class="small">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
20
tpl/log/log_ajax.tpl
Normale Datei
20
tpl/log/log_ajax.tpl
Normale Datei
|
|
@ -0,0 +1,20 @@
|
|||
<a onclick="return get_log('p=log&log={LOG_TYPE}&revers={SORT_ORDER}&offset=0');" href="index.php?p=log&log={LOG_TYPE}&revers={SORT_ORDER}&offset=0" class="Formbutton" accesskey="s">{ICON_SORT}</a>
|
||||
<a onclick="return get_log('p=log&log={LOG_TYPE}&revers={REVERS}&offset={OFFSET_BACKWARD}');" href="index.php?p=log&log={LOG_TYPE}&revers={REVERS}&offset={OFFSET_BACKWARD}" accesskey="c" class="Formbutton"><<</a>
|
||||
<a onclick="return get_log('p=log&log={LOG_TYPE}&revers={REVERS}&offset={OFFSET_FOREWARD}');" href="index.php?p=log&log={LOG_TYPE}&revers={REVERS}&offset={OFFSET_FOREWARD}" accesskey="v" class="Formbutton">>></a>
|
||||
{PAGINATION_ENTRIES}
|
||||
<br />
|
||||
|
||||
<table id="table_log" class="bdr">
|
||||
<tr class="thead">
|
||||
<th class="left">#</th>
|
||||
<th class="left">{L_TIMESTAMP}</th>
|
||||
<th class="left">{L_MESSAGE}</th>
|
||||
</tr>
|
||||
<!-- BEGIN LINE -->
|
||||
<tr class="{LINE.ROWCLASS}">
|
||||
<td class="small right">{LINE.NR}.</td>
|
||||
<td class="small nowrap">{LINE.TIMESTAMP}</td>
|
||||
<td class="small">{LINE.MSG}</td>
|
||||
</tr>
|
||||
<!-- END LINE -->
|
||||
</table>
|
||||
Laden …
Tabelle hinzufügen
Einen Link hinzufügen
In neuem Issue referenzieren