mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
GwR updates to catalog
This commit is contained in:
parent
179f8853dc
commit
6cca4b4d97
@ -41,12 +41,11 @@ p.formats {
|
||||
text-indent: 0.0in;
|
||||
}
|
||||
|
||||
/*
|
||||
div.description > p:first-child {
|
||||
margin: 0 0 0 0;
|
||||
text-indent: 0em;
|
||||
}
|
||||
*/
|
||||
|
||||
div.description {
|
||||
margin: 0 0 0 0;
|
||||
text-indent: 1em;
|
||||
@ -133,5 +132,5 @@ td.rating {
|
||||
text-align: center;
|
||||
}
|
||||
td.thumbnail img {
|
||||
-webkit-box-shadow: 6px 6px 6px #888;
|
||||
-webkit-box-shadow: 4px 4px 12px #999;
|
||||
}
|
@ -1870,7 +1870,7 @@ class EPUB_MOBI(CatalogPlugin):
|
||||
ptc = 0
|
||||
|
||||
# book with read|reading|unread symbol or wishlist item
|
||||
if self.opts.wishlist_tag in book['tags']:
|
||||
if self.opts.wishlist_tag in book.get('tags', []):
|
||||
pBookTag['class'] = "wishlist_item"
|
||||
pBookTag.insert(ptc,NavigableString(self.MISSING_SYMBOL))
|
||||
ptc += 1
|
||||
@ -2177,7 +2177,7 @@ class EPUB_MOBI(CatalogPlugin):
|
||||
ptc = 0
|
||||
|
||||
# book with read|reading|unread symbol or wishlist item
|
||||
if self.opts.wishlist_tag in new_entry['tags']:
|
||||
if self.opts.wishlist_tag in new_entry.get('tags', []):
|
||||
pBookTag['class'] = "wishlist_item"
|
||||
pBookTag.insert(ptc,NavigableString(self.MISSING_SYMBOL))
|
||||
ptc += 1
|
||||
@ -2228,7 +2228,7 @@ class EPUB_MOBI(CatalogPlugin):
|
||||
ptc = 0
|
||||
|
||||
# book with read|reading|unread symbol or wishlist item
|
||||
if self.opts.wishlist_tag in new_entry['tags']:
|
||||
if self.opts.wishlist_tag in new_entry.get('tags', []):
|
||||
pBookTag['class'] = "wishlist_item"
|
||||
pBookTag.insert(ptc,NavigableString(self.MISSING_SYMBOL))
|
||||
ptc += 1
|
||||
@ -2682,7 +2682,7 @@ class EPUB_MOBI(CatalogPlugin):
|
||||
book['read'] = False
|
||||
|
||||
# book with read|reading|unread symbol or wishlist item
|
||||
if self.opts.wishlist_tag in book['tags']:
|
||||
if self.opts.wishlist_tag in book.get('tags', []):
|
||||
pBookTag['class'] = "wishlist_item"
|
||||
pBookTag.insert(ptc,NavigableString(self.MISSING_SYMBOL))
|
||||
ptc += 1
|
||||
@ -3975,7 +3975,7 @@ class EPUB_MOBI(CatalogPlugin):
|
||||
for x in output_profiles():
|
||||
if x.short_name == self.opts.output_profile:
|
||||
# .9" width aspect ratio: 3:4
|
||||
self.thumbWidth = int(x.dpi * .9)
|
||||
self.thumbWidth = int(x.dpi * 1)
|
||||
self.thumbHeight = int(self.thumbWidth * 1.33)
|
||||
if 'kindle' in x.short_name and self.opts.fmt == 'mobi':
|
||||
# Kindle DPI appears to be off by a factor of 2
|
||||
@ -4180,7 +4180,8 @@ class EPUB_MOBI(CatalogPlugin):
|
||||
pBookTag = Tag(soup, "p")
|
||||
ptc = 0
|
||||
|
||||
# book with read|reading|unread symbol or wishlist item
|
||||
'''
|
||||
# This if clause does not display MISSING_SYMBOL for wishlist items
|
||||
# If this is the wishlist_tag genre, don't show missing symbols
|
||||
# normalized_wishlist_tag = self.genre_tags_dict[self.opts.wishlist_tag]
|
||||
if self.opts.wishlist_tag in book['tags'] and \
|
||||
@ -4188,6 +4189,13 @@ class EPUB_MOBI(CatalogPlugin):
|
||||
pBookTag['class'] = "wishlist_item"
|
||||
pBookTag.insert(ptc,NavigableString(self.MISSING_SYMBOL))
|
||||
ptc += 1
|
||||
'''
|
||||
|
||||
# book with read|reading|unread symbol or wishlist item
|
||||
if self.opts.wishlist_tag in book.get('tags', []):
|
||||
pBookTag['class'] = "wishlist_item"
|
||||
pBookTag.insert(ptc,NavigableString(self.MISSING_SYMBOL))
|
||||
ptc += 1
|
||||
else:
|
||||
if book['read']:
|
||||
# check mark
|
||||
@ -4252,32 +4260,25 @@ class EPUB_MOBI(CatalogPlugin):
|
||||
<p class="formats"> </p>
|
||||
<table width="100%" border="0">
|
||||
<tr>
|
||||
<td class="thumbnail" rowspan="7"></td>
|
||||
<!--td> </td-->
|
||||
<td class="thumbnail" rowspan="7" width="40%"></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<!--td> </td-->
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<!--td>Publisher</td-->
|
||||
<td class="publisher"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<!--td>Published</td-->
|
||||
<td class="date"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<!--td>Rating</td-->
|
||||
<td class="rating"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<!--td class="notes_label">Notes</td-->
|
||||
<td class="notes"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<!--td> </td-->
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
Loading…
x
Reference in New Issue
Block a user