2014-03-10 05:18:05 +00:00
#import sickbeard
2015-05-07 00:36:40 +00:00
#from sickbeard import subtitles
2014-11-09 02:49:38 +00:00
#from sickbeard . helpers import anon_url
2015-05-07 00:36:40 +00:00
##
#set global $ title = ' Config - Subtitles '
#set global $ header = ' Subtitles '
#set global $ sbPath = ' ../.. '
#set global $ topmenu = ' config '
##
2014-03-10 05:18:05 +00:00
#import os . path
2015-05-07 00:36:40 +00:00
#include $ os . path . join ( $ sickbeard . PROG_DIR , ' gui/slick/interfaces/default/inc_top.tmpl ' )
2014-03-10 05:18:05 +00:00
2015-09-12 07:17:26 +00:00
<script type="text/javascript" src=" $ sbRoot /js/configSubtitles.js?v= $ sbPID "></script>
2014-03-10 05:18:05 +00:00
<script type="text/javascript" src=" $ sbRoot /js/config.js"></script>
2017-01-28 19:42:39 +00:00
<script type="text/javascript" src=" $ sbRoot /js/lib/jquery.tokeninput.min.js"></script>
2014-03-10 05:18:05 +00:00
<script type="text/javascript">
2017-01-28 19:42:39 +00:00
\$(document).ready(function() {
\$(' #subtitles _languages ' ).tokenInput(
[
<%=',\r\n'.join('{id: "' + lang[2] + '", name: "' + lang[3] + '"}' for lang in subtitles.subtitleLanguageFilter()) %>
],
{
method: 'POST',
hintText: 'Write to search a language and select it',
preventDuplicates: true,
prePopulate:
[
<%=
',\r\n'.join('{id: "' + lang + '", name: "' + subtitles.getLanguageName(lang) + '"}' for lang in sickbeard.SUBTITLES_LANGUAGES) if sickbeard.SUBTITLES_LANGUAGES != '' else ''
%>
],
resultsFormatter: function(item){ return '<li><img src=" $ sbRoot /images/flags/' + item['id'] + '.png"> ' + item[this.propertyToSearch] + '</li>' },
tokenFormatter: function(item) { return '<li><img src=" $ sbRoot /images/flags/' + item['id'] + '.png"> <p>' + item[this.propertyToSearch] + '</p></li>' },
flag: 'flag',
}
);
2014-03-10 05:18:05 +00:00
});
</script>
2014-10-21 19:09:01 +00:00
2015-05-07 00:36:40 +00:00
#if $ varExists ( ' header ' )
2014-03-10 05:18:05 +00:00
<h1 class="header"> $ header </h1>
2015-05-07 00:36:40 +00:00
#else
2014-03-10 05:18:05 +00:00
<h1 class="title"> $ title </h1>
#end if
<div id="config">
2017-01-28 19:42:39 +00:00
<div id="config-content">
2014-03-10 05:18:05 +00:00
2017-01-28 19:42:39 +00:00
<form id="configForm" action="saveSubtitles" method="post">
2018-03-29 16:23:33 +00:00
$ xsrf_form_html
2014-03-10 05:18:05 +00:00
2017-01-28 19:42:39 +00:00
<div id="config-components">
<ul>
<li><a href=" #core - component - group4 " >Subtitles Search</a></li>
<li><a href=" #core - component - group2 " >Subtitles Plugin</a></li>
</ul>
2015-05-07 00:36:40 +00:00
2017-01-28 19:42:39 +00:00
<div id="core-component-group4" class="component-group">
2014-03-10 05:18:05 +00:00
2017-01-28 19:42:39 +00:00
<div class="component-group-desc">
<h3>Subtitles Search</h3>
<p>Settings that dictate how SickGear handles subtitles search results.</p>
</div>
2015-05-07 00:36:40 +00:00
2014-03-10 05:18:05 +00:00
<fieldset class="component-group-list">
2017-01-28 19:42:39 +00:00
<div class="field-pair">
<input type="checkbox" class="enabler" #if $ sickbeard . USE_SUBTITLES then ' checked= " checked " ' else ' ' # id="use_subtitles" name="use_subtitles">
<label for="use_subtitles" class="clearfix">
<span class="component-title">Search Subtitles</span>
</label>
</div>
<div id="content_use_subtitles">
<div class="field-pair">
<label class="nocheck">
<span class="component-title">Subtitle Languages</span>
<span class="component-desc"><input type="text" id="subtitles_languages" name="subtitles_languages"></span>
</label>
</div>
<div class="field-pair">
<label class="nocheck">
<span class="component-title">Subtitle Directory</span>
<input type="text" value=" $ sickbeard . SUBTITLES_DIR " id="subtitles_dir" name="subtitles_dir" class="form-control input-sm input350">
</label>
<label class="nocheck">
<span class="component-title"> </span>
<span class="component-desc">The directory where SickGear should store your <i>Subtitles</i> files.</span>
</label>
<label class="nocheck">
<span class="component-title"> </span>
<span class="component-desc"><b>NOTE:</b> Leave empty if you want store subtitle in episode path.</span>
</label>
</div>
<div class="field-pair">
<label class="nocheck">
<span class="component-title">Subtitle Find Frequency</span>
<input type="number" name="subtitles_finder_frequency" value=" $ sickbeard . SUBTITLES_FINDER_FREQUENCY " hours="1" class="form-control input-sm input75">
</label>
<label class="nocheck">
<span class="component-title"> </span>
<span class="component-desc">Time in hours between scans (hours. 1)</span>
</label>
</div>
<div class="field-pair">
<input type="checkbox" name="subtitles_history" id="subtitles_history" #if $ sickbeard . SUBTITLES_HISTORY then ' checked= " checked " ' else ' ' # >
<label class="clearfix" for="subtitles_history">
<span class="component-title">Subtitles History</span>
<span class="component-desc">Log downloaded Subtitle on History page?</span>
</label>
</div>
<br /><input type="submit" class="btn config_submitter" value="Save Changes"><br />
</div>
</fieldset>
</div><!-- /component-group1 //-->
<div id="core-component-group2" class="component-group">
<div class="component-group-desc">
<h3>Subtitle Plugins</h3>
<p>Check off and drag the plugins into the order you want them to be used.</p>
<p class="note">At least one plugin is required.</p>
<p class="note"><span style="font-size:16px">*</span> Web-scraping plugin</p>
</div>
<fieldset class="component-group-list" style="margin-left:50px;margin-top:36px">
<ul id="service_order_list">
#for $ curService in $ sickbeard . subtitles . sortedServiceList ( ) :
#set $ curName = $ curService . id
<li class="ui-state-default" id=" $ curName ">
<input type="checkbox" id="enable_ $ curName " class="service_enabler" #if $ curService . enabled # checked="checked" #end if# >
#set $ provider_url = $ curService . url
<a href="<%= anon_url(provider_url) %>" class="imgLink" target="_new">
<img src=" $ sbRoot /images/subtitles/ $ curService . image " alt=" $ curService . name " title=" $ curService . name " width="16" height="16" style="vertical-align:middle">
</a>
<span style="vertical-align:middle"> $ curService . name . capitalize ()</span>
#if not $ curService . api_based # * #end if#
<span class="ui-icon ui-icon-arrowthick-2-n-s pull-right" style="vertical-align:middle"></span>
</li>
#end for
</ul>
<input type="hidden" name="service_order" id="service_order" value="<%=" ".join([x.get('id')+':'+str(int(x.get('enabled'))) for x in sickbeard.subtitles.sortedServiceList()])%>">
<br /><input type="submit" class="btn config_submitter" value="Save Changes"><br />
</fieldset>
</div><!-- /component-group2 //-->
<br /><input type="submit" class="btn config_submitter" value="Save Changes"><br />
</div><!-- /config-components //-->
</form>
</div>
2014-10-21 19:09:01 +00:00
</div>
2014-03-10 05:18:05 +00:00
<div class="clearfix"></div>
<script type="text/javascript" charset="utf-8">
<!--
2015-05-07 00:36:40 +00:00
jQuery(' #config - components ' ).tabs();
2017-01-28 19:42:39 +00:00
jQuery(' #subtitles _dir ' ).fileBrowser( { title: ' Select Subtitles Download Directory ' });
2014-03-10 05:18:05 +00:00
//-->
</script>
2015-05-07 00:36:40 +00:00
2017-01-28 19:42:39 +00:00
#include $ os . path . join ( $ sickbeard . PROG_DIR , ' gui/slick/interfaces/default/inc_bottom.tmpl ' )