View Single Post
Old 11-25-2011, 08:36 PM   #4
davidnye
Member
davidnye began at the beginning.
 
Posts: 18
Karma: 10
Join Date: Aug 2011
Device: Nook
Quote:
Originally Posted by kovidgoyal View Post
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
davidnye is offline   Reply With Quote