mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-23 17:53:43 +00:00
95d7d728e0
Re-write of New Show seearch function Re-write of Existing show search helper function for determining indexer/indexerid Massive code cleanup and more bugs found and fixed Indexer code fully modualized for future proofing
54 lines
No EOL
2.8 KiB
Cheetah
54 lines
No EOL
2.8 KiB
Cheetah
#import sickbeard
|
|
#set global $header="Post Processing"
|
|
#set global $title="Post Processing"
|
|
|
|
#set global $sbPath="../.."
|
|
|
|
#set global $topmenu="home"#
|
|
#import os.path
|
|
#include $os.path.join($sickbeard.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
|
|
<form name="processForm" method="post" action="processEpisode" style="line-height: 44px">
|
|
<input type="hidden" id="type" name="type" value="manual">
|
|
<b>Enter the folder containing the episode:</b> <input type="text" name="dir" id="episodeDir" size="50" /><br/>
|
|
<b>Show Indexer to be used:</b>
|
|
<select name="indexer" id="indexer" class="indexer">
|
|
#for $curIndexer in sorted($sickbeard.indexerApi().indexers.items(), key=lambda x: x[1]):
|
|
<option value="$curIndexer[0]" #if $curIndexer[0] in $sickbeard.indexerApi().indexers then "selected=\"selected\"" else ""#>$curIndexer[1]</option>
|
|
#end for
|
|
</select>
|
|
<br/>
|
|
<b>Process Method to be used:</b>
|
|
<select name="process_method" id="process_method" class="input-medium" >
|
|
#set $process_method_text = {'copy': "Copy", 'move': "Move", 'hardlink': "Hard Link", 'symlink' : "Symbolic Link"}
|
|
#for $curAction in ('copy', 'move', 'hardlink', 'symlink'):
|
|
#if $sickbeard.PROCESS_METHOD == $curAction:
|
|
#set $process_method = "selected=\"selected\""
|
|
#else
|
|
#set $process_method = ""
|
|
#end if
|
|
<option value="$curAction" $process_method>$process_method_text[$curAction]</option>
|
|
#end for
|
|
</select><br/>
|
|
<b>Force already Post Processed Dir/Files:</b>   <input id="force" name="force" type="checkbox"><br/>
|
|
<b>Mark Dir/Files as priority download:</b> <input id="is_priority" name="is_priority" type="checkbox">
|
|
<span style="line-height: 0; font-size: 12px;"><i>(Check it to replace the file even if it exists at higher quality)</i></span><br/>
|
|
#if $sickbeard.USE_FAILED_DOWNLOADS:
|
|
<b>Mark download as failed:</b>  
|
|
<input id="failed" name="failed" type="checkbox"><br />
|
|
#end if
|
|
<br/>
|
|
<input id="submit" class="btn btn-primary" type="submit" value="Process" />
|
|
</form>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
<!--
|
|
jQuery('#episodeDir').fileBrowser({ title: 'Select Unprocessed Episode Folder', key: 'postprocessPath' });
|
|
//-->
|
|
</script>
|
|
|
|
#include $os.path.join($sickbeard.PROG_DIR,"gui/slick/interfaces/default/inc_bottom.tmpl") |