Quote:
Originally Posted by kovidgoyal
You want
use_embedded_content = False
not True
|
Thanks much for your reply. Unfortunately, that just makes the TOC disappear, so now all I get is 'Start' and no content. Here is my recipe:
Code:
class AdvancedUserRecipe1322154189(BasicNewsRecipe):
title = u'the Progressive'
masthead_url = 'http://progressive.org/sites/all/themes/progress/logo.png'
oldest_article = 7
feeds = [u'http://feeds.feedburner.com/progressivefeed']
def get_cover_url(self):
soup = self.index_to_soup('http://progressive.org')
item = soup.find('div',attrs={'class':'views-field-field-cover-fid'})
if item:
return item.img['src']
return None
If I enter the rss url into my browser, I get a list of articles with short teasers followed by 'read more', same as the .epub my recipe produces. If I enter the article url (the same one listed in the epub by the article stub), I'm directed to a web page with the whole article. Any thoughts and assistance much appreciated.
David