mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
e56303798c
Initial SickGear for Python 3.
33 lines
No EOL
947 B
Cheetah
33 lines
No EOL
947 B
Cheetah
#import sickgear
|
|
#from sickgear import classes
|
|
#from sickgear.common import *
|
|
##
|
|
#set global $header = 'Logs & Errors'
|
|
#set global $title = 'Logs & Errors'
|
|
#set global $sbPath = '..'
|
|
#set global $topmenu = 'errorlogs'
|
|
##
|
|
#import os.path
|
|
#include $os.path.join($sickgear.PROG_DIR, 'gui/slick/interfaces/default/inc_top.tmpl')
|
|
|
|
#if $varExists('header')
|
|
<h1 class="header">$header</h1>
|
|
#else
|
|
<h1 class="title">$title</h1>
|
|
#end if
|
|
|
|
<div class="align-left"><pre>
|
|
#if $classes.ErrorViewer.errors
|
|
#for $curError in sorted($classes.ErrorViewer.errors, key=lambda error: error.time, reverse=True)[:500]
|
|
#echo '%s %s\n' % ($curError.time, $curError.message)
|
|
#end for
|
|
#end if
|
|
</pre></div>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
<!--
|
|
window.setInterval('location.reload(true)', 600000); // Refresh every 10 minutes
|
|
//-->
|
|
</script>
|
|
|
|
#include $os.path.join($sickgear.PROG_DIR, 'gui/slick/interfaces/default/inc_bottom.tmpl') |