Skip to content

Commit

Permalink
Merge pull request #888 from philborman/master
Browse files Browse the repository at this point in the history
Changes to sqlite commands, email notification, libgen options, magazine opf
  • Loading branch information
philborman authored Jun 30, 2017
2 parents fb4b821 + a5d54b8 commit 582f7e3
Show file tree
Hide file tree
Showing 36 changed files with 1,355 additions and 1,013 deletions.
6 changes: 6 additions & 0 deletions data/interfaces/bookstrap/audio.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
</%def>
<%def name="body()">
<h1>${title}</h1>
%if lazylibrarian.AUDIO_UPDATE == True:
<p class="alert alert-info"><i class="fa fa-circle-o-notch fa-spin"></i> Library scan in progress ...</p>
%endif
<form action="markBooks" method="get" class="form-inline">
<div class="indented">
<input type="hidden" name="booklang" value=${booklang}>
Expand Down Expand Up @@ -71,6 +74,9 @@ <h1>${title}</h1>
</form>
</%def>
<%def name="headIncludes()">
%if lazylibrarian.AUDIO_UPDATE == True:
<meta http-equiv="refresh" content="10">
%endif
</%def>
<%def name="javascriptIncludes()">
<script type="text/javascript">
Expand Down
6 changes: 6 additions & 0 deletions data/interfaces/bookstrap/books.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
</%def>
<%def name="body()">
<h1>${title}</h1>
%if lazylibrarian.EBOOK_UPDATE == True:
<p class="alert alert-info"><i class="fa fa-circle-o-notch fa-spin"></i> Library scan in progress ...</p>
%endif
<form action="markBooks" method="get" class="form-inline">
<div class="indented">
<input type="hidden" name="booklang" value=${booklang}>
Expand Down Expand Up @@ -69,6 +72,9 @@ <h1>${title}</h1>
</form>
</%def>
<%def name="headIncludes()">
%if lazylibrarian.EBOOK_UPDATE == True:
<meta http-equiv="refresh" content="10">
%endif
</%def>
<%def name="javascriptIncludes()">
<script type="text/javascript">
Expand Down
389 changes: 216 additions & 173 deletions data/interfaces/bookstrap/config.html

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions data/interfaces/bookstrap/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ <h1>${title}</h1>
primary: {
label: "Close",
className: 'btn-primary'
},
prompt: {
label: "Clear Counters",
className: 'btn-primary',
callback: function(result){ $.get("cleardownloads", function(e) {}); }
}
}
});
Expand Down
1 change: 1 addition & 0 deletions data/interfaces/bookstrap/issues.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<a href="forceProcess?source=magazines" class="button btn btn-sm btn-primary">Force Post-Processing</a>
<a href="magazineScan" class="button btn btn-sm btn-primary"><i class="fa fa-flash"></i> Library Scan</a>
<a href="pastIssues?whichStatus=Skipped" class="button btn btn-sm btn-primary"><i class="fa fa-calendar"></i> Past Issues</a>
<a href="magWall?title=${title}" class="button btn btn-sm btn-primary"><i class="fa fa-calendar"></i> Recent Issues</a>
</div>
</div>
</%def>
Expand Down
6 changes: 6 additions & 0 deletions data/interfaces/bookstrap/magazines.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
<%def name="body()">
<form action="markMagazines" method="get" class="form-inline">
<h1>${title}</h1>
%if lazylibrarian.MAG_UPDATE == True:
<p class="alert alert-info"><i class="fa fa-circle-o-notch fa-spin"></i> Library scan in progress ...</p>
%endif
<div class="indented">
<div class="form-group">
<label for="action" class="">Mark selected as</label>
Expand Down Expand Up @@ -108,6 +111,9 @@ <h1>${title}</h1>
</form>
</%def>
<%def name="headIncludes()">
%if lazylibrarian.MAG_UPDATE == True:
<meta http-equiv="refresh" content="10">
%endif
</%def>
<%def name="javascriptIncludes()">
<script>
Expand Down
Loading

0 comments on commit 582f7e3

Please sign in to comment.