View Single Post
Old 03-13-2011, 12:33 PM   #3
mufc
Connoisseur
mufc doesn't littermufc doesn't litter
 
Posts: 99
Karma: 170
Join Date: Nov 2010
Location: Airdrie Alberta
Device: Sony 650
This book is set up exactly like a newspaper recipe. I have several categories in the book that each has its own rss link. After Front Page you get a list of categories. When I click on that I get the articles in that category.These all have a date and time attached to the end of the article heading. Here is my recipe. It downloads quite fast.
Spoiler:

Code:
class AdvancedUserRecipe1289709253(BasicNewsRecipe):
    title          = u'Laura Recipes test'
    oldest_article = 100
    max_articles_per_feed = 100
    timefmt = ''
    use_embedded_content  = False

    remove_javascript     = True
    extra_css = '''
        h1{font-family:Arial,sans-serif; font-weight:bold;font-size:large;}
        h2{font-family:Arial,sans-serif; font-weight:normal;font-size:small;}
        body{font-family:Arial,sans-serif;font-size:small;}
        a.feed {text-decoration: none;background-color: none;}
        a.article {text-decoration: none;background-color: none;}
        p{font-family:Arial,sans-serif;font-size:small;line-height: 1.2;margin-bottom: 0;margin-left: 2pt;
        margin-right: 2pt;margin-top: 0;padding-left: 0;padding-right: 0;text-align: left;text-indent: 1.5em}
        '''
   
    feeds       = [(u'Soup', u'http://www.members.shaw.ca/conventions/Recipes/soup.rss'),
                        (u'Muffins', u'http://www.members.shaw.ca/conventions/Recipes/muffins.rss'),
                        (u'Cake', u'http://www.members.shaw.ca/conventions/Recipes/cake.rss'),
                        (u'Cookies', u'http://www.members.shaw.ca/conventions/Recipes/cookies.rss'),
                        (u'Pies', u'http://www.members.shaw.ca/conventions/Recipes/pies.rss'),
                        (u'Chicken', u'http://www.members.shaw.ca/conventions/Recipes/chicken.rss'),
                        (u'Beef', u'http://www.members.shaw.ca/conventions/Recipes/beef.rss'),
                        (u'Turkey', u'http://www.members.shaw.ca/conventions/Recipes/turkey.rss'),
                        (u'Fish', u'http://www.members.shaw.ca/conventions/Recipes/fish.rss')]

Moderator Notice
Code tags added for readability

Last edited by Starson17; 03-13-2011 at 12:50 PM.
mufc is offline   Reply With Quote