View Single Post
Old 07-03-2009, 08:06 AM   #578
kiklop74
Guru
kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.
 
kiklop74's Avatar
 
Posts: 800
Karma: 194644
Join Date: Dec 2007
Location: Argentina
Device: Kindle Voyage
Quote:
Originally Posted by JIGACE View Post
I been tryng to do a recipe to download a blog... the tipe of xxx.blogspot.com but i cant do it, it always download only a portion of the blog, is there a way to download the entire blog? The blog is http://globaliciousworld.blogspot.com/
thanks in advance
See this image how to start recipe



After that click on the 'Switch to advanced mode' and add these two lines:

Code:
    use_embedded_content  = True
    encoding                      = 'utf-8'
So the result should be something like this:

Code:
class AdvancedUserRecipe1246622332(BasicNewsRecipe):
    title          = u'Globalicious'
    oldest_article = 15
    max_articles_per_feed = 100
    use_embedded_content  = True
    encoding              = 'utf-8'
    feeds          = [(u'All articles', u'http://globaliciousworld.blogspot.com/feeds/posts/default?alt=rss')]
That is all
kiklop74 is offline