Hi Guys I was trying to create a custom recipe for the local newspaper, Democrat and Chronicle. I found the print page and that works very fast with calibre. My problem is once it syncs onto my nook it will only display one page worth for each story and then cut off (sometimes even the bottom portion of the next sentence). I'm sure it is most likely some code snippet I am missing.
Any help would be greatly appreciated.
Here is what I had
Code:
class AdvancedUserRecipe1278352006(BasicNewsRecipe):
title = u'Democrat and Chronicle'
oldest_article = 1
max_articles_per_feed = 100
no_stylesheets = True
feeds = [(u'Breaking news and top stories', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=RSS&mime=xml'),
(u'News', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=RSS01&mime=xml'),
(u'Bills', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=SPORTS03&template=rss_dc&mime=xml'),
(u'Business', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=BUSINESS&template=rss_dc&mime=xml'),
(u'Health', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=HEALTH&template=rss_dc&mime=xml'),
(u'Arts', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=rssdcarts&mime=xml'),
(u'Living', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=LIVING&template=rss_dc&mime=xml'),
(u'Opinions', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=RSS04&mime=xml'),
(u'Sports', u'http://www.democratandchronicle.com/apps/pbcs.dll/section?category=SPORTS&template=rss_dc&mime=xml')]
def print_version(self, url):
return url.replace('http://www.democratandchronicle.com/', 'http://www.democratandchronicle.com/print/')