Private GIT

Skip to content
Snippets Groups Projects
Commit 8c2b34df authored by Jonathon Saine's avatar Jonathon Saine
Browse files

Merge branch 'master' of https://github.com/midgetspy/Sick-Beard into api

parents 913030d8 eaf7ea09
Branches
Tags
No related merge requests found
......@@ -85,7 +85,7 @@ replace with: <b><%=", ".join([Quality.qualityStrings[x] for x in bestQualities]
</td></tr>
<tr><td class="showLegend">Language:</td><td><img src="$sbRoot/images/flags/${show.lang}.png" width="16" height="11" alt="" /> $show.lang</td></tr>
<tr><td class="showLegend">Season Folders: </td><td><img src="$sbRoot/images/#if $show.seasonfolders == 1 then "yes16.png\" alt=\"Y" else "no16.png\" alt=\"N"#" width="16" height="16" /></td></tr>
<tr><td class="showLegend">Paused: </td><td><img src="$sbRoot/images/#if int($show.paused) == 0 then "yes16.png\" alt=\"Y" else "no16.png\" alt=\"N"#" width="16" height="16" /></td></tr>
<tr><td class="showLegend">Paused: </td><td><img src="$sbRoot/images/#if int($show.paused) == 1 then "yes16.png\" alt=\"Y" else "no16.png\" alt=\"N"#" width="16" height="16" /></td></tr>
<tr><td class="showLegend">Air-by-Date: </td><td><img src="$sbRoot/images/#if int($show.air_by_date) == 1 then "yes16.png\" alt=\"Y" else "no16.png\" alt=\"N"#" width="16" height="16" /></td></tr>
</table>
</div>
......
......@@ -14,7 +14,7 @@
<!--
\$(document).ready(function(){
\$('#minLevel').change(function(){
url = 'viewlog?minLevel='+\$(this).val()
url = '$sbRoot/errorlogs/viewlog/?minLevel='+\$(this).val()
window.location.href = url
});
});
......
......@@ -24,7 +24,11 @@ import datetime
import sickbeard
from lib import MultipartPostHandler
import urllib2, cookielib, json
import urllib2, cookielib
try:
import json
except ImportError:
from lib import simplejson as json
from sickbeard.common import USER_AGENT
from sickbeard import logger
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment