2012-09-13 15:27:34 +00:00
< %
import mylar
from mylar import version
%>
<!doctype html>
<!-- [if lt IE 7 ]> <html lang="en" class="no - js ie6"> <![endif] -->
<!-- [if IE 7 ]> <html lang="en" class="no - js ie7"> <![endif] -->
<!-- [if IE 8 ]> <html lang="en" class="no - js ie8"> <![endif] -->
<!-- [if IE 9 ]> <html lang="en" class="no - js ie9"> <![endif] -->
<!-- [if (gt IE 9)|!(IE)]><! --> < html lang = "en" class = "no-js" > <!-- <![endif] -->
< head >
< meta charset = "UTF-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" >
< title > Mylar - ${title}< / title >
< meta name = "description" content = "Mylar 'default' interface - made by Elmar Kouwenhoven" >
< meta name = "author" content = "Elmar Kouwenhoven" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< link rel = "apple-touch-icon" href = "images/mylarlogo.png" >
< link rel = "stylesheet" href = "interfaces/default/css/style.css" >
< link rel = "stylesheet" href = "interfaces/default/css/jquery-ui.css" >
2012-10-16 08:16:29 +00:00
< link rel = "icon" href = "images/favicon.ico" type = "image/x-icon" >
< link rel = "shortcut icon" href = "images/favicon.ico" type = "image/x-icon" >
2012-09-13 15:27:34 +00:00
${next.headIncludes()}
FIX: included version of comictagger should now work with both Windows and *nix based OS' again, IMP: Global Copy/Move option available when performing post-processing, IMP: Added a verbose file-checking option (FOLDER_SCAN_LOG_VERBOSE) - when enabled will log as it currently does during manual post-processing/file-checking runs, when disabled it will not spam the log nearly as much resulting in more readable log files, IMP: Added Verbose debug logging both via startup option(-v), as well as toggle button in Log GUI (from headphones), as well as per-page loading of log file(s) in GUI, FIX: When doing manual post-processing on issues that were in story arcs, will now indicate X story-arc issues were post-processed for better visibility, FIX: Fixed an issue with deleting from the nzblog table when story arc issues were post-processed, IMP: Added WEEKFOLDER_LOC to the config.ini to allow for specification of where the weekly download directories will default to (as opposed to off of ComicLocation root), IMP: Better handling of some special character references in series titles when looking for series on the auto-wanted list, IMP: 32P will now auto-disable provider if logon returns invalid credentials, FIX: When using alt_pull on weekly pull list, xA0 unicode character caused error, FIX: If title had invalid character in filename that was replaced with a character that already existed in the title, would not scan in during file-checking, FIX: When searching for a series (weeklypull-list/add a series), if the title contained 'and' or '&' would return really mixed up results, FIX: When Post-Processing, if filename being processed had special characters (ie. comma) and was different than nzbname, in some cases would fail to find/move issues, IMP: Utilize internal comictagger to convert from cbr/cbz, IMP: Added more checks when post-processing to ensure files are handled correctly, IMP: Added meta-tag reading when importing series/issues - if previously tagged with CT, will reverse look-up the provided IssueID to reference the correct ComicID, IMP: If scanned directory during import contins cvinfo file, use that and force the ComicID to entire directory when importing a series, IMP: Manual meta-tagging issues will no longer create temporary directories and/or create files in the Comic Location root causing problems for some users, FIX: Annuals weren't properly sorted upon loading of comic details page for some series, IMP: Added some extra checks when validating/creating directories, FIX: Fixed a problem when displaying some covers of .cbz files on the comic details page
2016-01-26 07:49:56 +00:00
< script src = "js/libs/modernizr-2.8.3.min.js" > < / script >
2012-09-13 15:27:34 +00:00
< / head >
< body >
2014-12-20 17:12:46 +00:00
< %
mylar.DONATEBUTTON = True
%>
< div id = "container" >
2012-09-13 15:27:34 +00:00
< div id = "ajaxMsg" > < / div >
% if not mylar.CURRENT_VERSION:
< div id = "updatebar" >
You're running an unknown version of Mylar. < a href = "update" > Update< / a > or
< a href = "#" onclick = "$('#updatebar').slideUp('slow');" > Close< / a >
< / div >
2014-03-19 18:54:39 +00:00
% elif mylar.CURRENT_VERSION != mylar.LATEST_VERSION and mylar.INSTALL_TYPE != 'win' and mylar.COMMITS_BEHIND > 0:
2012-09-13 15:27:34 +00:00
< div id = "updatebar" >
2014-12-20 17:12:46 +00:00
A < a href = "http://github.com/evilhero/mylar/compare/${mylar.CURRENT_VERSION}...${mylar.LATEST_VERSION}" target = "_blank" > newer version< / a > is available. You're ${mylar.COMMITS_BEHIND} commits behind. < a href = "update" > Update< / a > or < a href = "#" onclick = "$('#updatebar').slideUp('slow');" > Close< / a >
2012-09-13 15:27:34 +00:00
< / div >
% endif
< header >
< div class = "wrapper" >
< div id = "logo" >
< a href = "home" > < img src = "images/mylarlogo.png" height = "64" width = "64" alt = "mylar" > < / a >
< / div >
< ul id = "nav" >
< li > < a href = "upcoming" > wanted< / a > < / li >
2013-02-13 01:27:24 +00:00
< li > < a href = "pullist" >
%if mylar.PULLNEW == 'no':
< img src = "interfaces/default/images/grey-circle.png" height = "10" width = "10" / >
%else:
< img src = "interfaces/default/images/green-circle.png" height = "10" width = "10" / >
%endif
& nbspThis Week< / a > < / li >
< li > < a href = "manage" > Manage< / a > < / li >
< li > < a href = "history" > History< / a > < / li >
< li > < a href = "logs" class = "log" > Logs< / a > < / li >
2012-09-13 15:27:34 +00:00
< li > < a href = "config" class = "config" > < img src = "interfaces/default/images/icon_gear.png" alt = "settings" / > < / a > < / li >
< / ul >
< div id = "searchbar" >
< form action = "searchit" method = "get" >
< input type = "text" value = "" placeholder = "Search" onfocus = "if(this.value==this.defaultValue) this.value='';" name = "name" / >
< span class = "mini-icon" > < / span >
< input type = "submit" value = "Search" / >
< / form >
< / div >
< / div >
< / header >
< div id = "main" class = "main" >
< div id = "subhead" >
${next.headerIncludes()}
< / div >
${next.body()}
< / div >
< footer >
< div id = "actions" >
< small >
< a href = "shutdown" > < span class = "ui-button-icon-primary ui-icon ui-icon-power" > < / span > Shutdown< / a > |
< a href = "restart" > < span class = "ui-button-icon-primary ui-icon ui-icon-power" > < / span > Restart< / a > |
< a href = "#" onclick = "doAjaxCall('checkGithub',$(this))" data-success = "Checking for update successful" data-error = "Error checking for update" > < span class = "ui-icon ui-icon-refresh" > < / span > Check for new version< / a >
< / small >
< / div >
2013-02-06 19:55:23 +00:00
< div id = "donate" >
2014-12-20 17:12:46 +00:00
%if mylar.DONATEBUTTON:
< a href = "config#donate" > < img src = "interfaces/default/images/donate.png" height = "25" width = "120" > < / a >
%endif
2013-02-06 19:55:23 +00:00
< a href = "https://twitter.com/mylarcomics" class = "twitter-follow-button" data-show-count = "false" > @mylarcomics< / a >
< script > ! function ( d , s , id ) { var js , fjs = d . getElementsByTagName ( s ) [ 0 ] ; if ( ! d . getElementById ( id ) ) { js = d . createElement ( s ) ; js . id = id ; js . src = "//platform.twitter.com/widgets.js" ; fjs . parentNode . insertBefore ( js , fjs ) ; } } ( document , "script" , "twitter-wjs" ) ; < / script >
< / div >
2012-09-13 15:27:34 +00:00
< div id = "version" >
Version: < em > ${mylar.CURRENT_VERSION}< / em >
2015-06-22 13:33:37 +00:00
%if mylar.GIT_BRANCH != 'master':
2012-09-13 15:27:34 +00:00
(${version.MYLAR_VERSION})
%endif
< / div >
< / footer >
< a href = "#main" id = "toTop" > < span > Back to top< / span > < / a >
< / div >
< script src = "js/libs/jquery-1.7.2.min.js" > < / script >
2013-10-01 18:37:42 +00:00
< script src = "js/libs/jquery-ui.min.js" > < / script >
FIX: included version of comictagger should now work with both Windows and *nix based OS' again, IMP: Global Copy/Move option available when performing post-processing, IMP: Added a verbose file-checking option (FOLDER_SCAN_LOG_VERBOSE) - when enabled will log as it currently does during manual post-processing/file-checking runs, when disabled it will not spam the log nearly as much resulting in more readable log files, IMP: Added Verbose debug logging both via startup option(-v), as well as toggle button in Log GUI (from headphones), as well as per-page loading of log file(s) in GUI, FIX: When doing manual post-processing on issues that were in story arcs, will now indicate X story-arc issues were post-processed for better visibility, FIX: Fixed an issue with deleting from the nzblog table when story arc issues were post-processed, IMP: Added WEEKFOLDER_LOC to the config.ini to allow for specification of where the weekly download directories will default to (as opposed to off of ComicLocation root), IMP: Better handling of some special character references in series titles when looking for series on the auto-wanted list, IMP: 32P will now auto-disable provider if logon returns invalid credentials, FIX: When using alt_pull on weekly pull list, xA0 unicode character caused error, FIX: If title had invalid character in filename that was replaced with a character that already existed in the title, would not scan in during file-checking, FIX: When searching for a series (weeklypull-list/add a series), if the title contained 'and' or '&' would return really mixed up results, FIX: When Post-Processing, if filename being processed had special characters (ie. comma) and was different than nzbname, in some cases would fail to find/move issues, IMP: Utilize internal comictagger to convert from cbr/cbz, IMP: Added more checks when post-processing to ensure files are handled correctly, IMP: Added meta-tag reading when importing series/issues - if previously tagged with CT, will reverse look-up the provided IssueID to reference the correct ComicID, IMP: If scanned directory during import contins cvinfo file, use that and force the ComicID to entire directory when importing a series, IMP: Manual meta-tagging issues will no longer create temporary directories and/or create files in the Comic Location root causing problems for some users, FIX: Annuals weren't properly sorted upon loading of comic details page for some series, IMP: Added some extra checks when validating/creating directories, FIX: Fixed a problem when displaying some covers of .cbz files on the comic details page
2016-01-26 07:49:56 +00:00
< script src = "js/common.js" > < / script >
2012-09-13 15:27:34 +00:00
${next.javascriptIncludes()}
< script src = "js/plugins.js" > < / script >
< script src = "interfaces/default/js/script.js" > < / script >
<!-- [if lt IE 7 ]>
< script src = "js/libs/dd_belatedpng.js" > < / script >
< script > DD _belatedPNG . fix ( 'img, .png_bg' ) ; < / script >
<![endif]-->
<!-- This template is made by Elmar Kouwenhoven -->
< / body >
< / html >
< %def name="javascriptIncludes()">< /%def>
< %def name="headIncludes()">< /%def>
< %def name="headerIncludes()">< /%def>