Merge branch 'work-in-progress' of github.com:gutenbergtools/autocat3 into work-in-progress
Conflicts: CoverPages.pywork-in-progress
commit
4eaa3bcc2f
|
@ -46,7 +46,6 @@ class CoverPages (object):
|
||||||
url = '/' + row.filename
|
url = '/' + row.filename
|
||||||
href = '/ebooks/%d' % row.pk
|
href = '/ebooks/%d' % row.pk
|
||||||
title = gg.xmlspecialchars (row.title)
|
title = gg.xmlspecialchars (row.title)
|
||||||
title = title.replace('\"','"')
|
|
||||||
#Shortening long titles for latest covers
|
#Shortening long titles for latest covers
|
||||||
short_title = title
|
short_title = title
|
||||||
short_title = short_title.replace ('"', '"')
|
short_title = short_title.replace ('"', '"')
|
||||||
|
@ -58,7 +57,7 @@ class CoverPages (object):
|
||||||
if(title_len>80):
|
if(title_len>80):
|
||||||
short_title = textwrap.wrap(short_title,80)[0]
|
short_title = textwrap.wrap(short_title,80)[0]
|
||||||
|
|
||||||
s += """<a href="{href}" title="{title}" target="_top"><div class="cover_image">
|
s += """<a href="{href}" title="{title}" target="_top"><div class="cover_image">
|
||||||
<div class="cover_img"><img src="{url}" alt="{title}" title="{title}" draggable="false">
|
<div class="cover_img"><img src="{url}" alt="{title}" title="{title}" draggable="false">
|
||||||
</div><div class="cover_title"><h5>{short_title}</h5></div></div></a>\n""".format (
|
</div><div class="cover_title"><h5>{short_title}</h5></div></div></a>\n""".format (
|
||||||
url = url, href = href, title = title, short_title = short_title, size = size)
|
url = url, href = href, title = title, short_title = short_title, size = size)
|
||||||
|
|
Loading…
Reference in New Issue