View Single Post
Old 02-16-2010, 06:47 AM   #11
ischeriad
Connoisseur
ischeriad began at the beginning.
 
ischeriad's Avatar
 
Posts: 91
Karma: 28
Join Date: Apr 2007
Location: Germany
Device: PB Pro 903, Kobo Touch [Past: Story, Clié N770C, SL-10, Palm IIIxe, V]
Hi, I made some changes for my own needs to the recipe but want to share them here. Reason was to shorten the title, it got truncated on my reader so I could not distinguish the issues.

(pseudo-patch format )

Code:
< title = u'Die Zeit Magazine'
> title = u'Die Zeit'

< self.title = self.title + ' ' + self.tag_to_string(h4)
> self.title = self.title + ' ' + re.sub('Ausgabe ', '', self.tag_to_string(h4))
And for a higher resolution cover:
Code:
< self.cover_url = a.img['src']
> self.cover_url = re.sub('icon_', '', a.img['src'])
ischeriad is offline   Reply With Quote