Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Recipes

Notices

Closed Thread
 
Thread Tools Search this Thread
Old 06-29-2009, 09:07 AM   #571
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 trektech View Post
can anybody make a recipe for me?
i would love to have a recipe for http://www.inquirer.net/

thank you very much in advance...
New recipe for inquirer.net:
Attached Files
File Type: zip inquirer.zip (1.9 KB, 223 views)
kiklop74 is offline  
Old 06-29-2009, 09:08 AM   #572
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 rbarhat View Post
http://www.uncrate.com/

The RSS feed is not able to get the full story, just a few lines and then "..."
Please help.
Uncrate recipe:
Attached Files
File Type: zip uncrate.zip (1.2 KB, 259 views)
kiklop74 is offline  
Old 06-29-2009, 11:45 AM   #573
trektech
Member
trektech began at the beginning.
 
Posts: 19
Karma: 12
Join Date: Jun 2009
Location: Singapore
Device: Sony PRS-505, Nexus One, Nikon D700, Smartq V7
Thumbs up

Quote:
Originally Posted by kiklop74 View Post
New recipe for inquirer.net:

thank you very very much..
trektech is offline  
Old 06-29-2009, 07:06 PM   #574
rbarhat
Member
rbarhat began at the beginning.
 
rbarhat's Avatar
 
Posts: 10
Karma: 10
Join Date: Feb 2009
Device: Sony-PRS 505
Thank you so much Kiklop...
rbarhat is offline  
Old 06-30-2009, 03:56 PM   #575
JIGACE
Member
JIGACE began at the beginning.
 
Posts: 21
Karma: 10
Join Date: Jul 2008
Device: EZ Reader Pocket Pro
Help please

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
JIGACE is offline  
Old 07-02-2009, 07:32 AM   #576
SQMS
Junior Member
SQMS began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Jul 2009
Device: Sony 505
Is it possible for someone to create a recipe for Accountancy Age for me please.

http://www.accountancyage.com/

Many thanks
SQMS is offline  
Old 07-02-2009, 03:02 PM   #577
omfosm
Junior Member
omfosm began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Jul 2009
Device: kindle
fastcompany.com custom receipt please!

looking for a fastcompany.com custom receipt please! thx
omfosm is offline  
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  
Old 07-03-2009, 10:41 AM   #579
JIGACE
Member
JIGACE began at the beginning.
 
Posts: 21
Karma: 10
Join Date: Jul 2008
Device: EZ Reader Pocket Pro
Quote:
Originally Posted by kiklop74 View Post
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
Thanks man, it work, but doesn't download all the posts... i don´t know why... could it be the feed? so far it only downloads about a month of posts... is there a way to download the page and not the feed?
JIGACE is offline  
Old 07-03-2009, 11:15 AM   #580
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
Thanks man, it work, but doesn't download all the posts... i don´t know why... could it be the feed? so far it only downloads about a month of posts... is there a way to download the page and not the feed?
You should specify how old articles you want. Change the number in:

Code:
    oldest_article = 15
to for example:

Code:
  oldest_article = 80

The number represent the days in teh past of latest article you want to accept counting from now.
kiklop74 is offline  
Old 07-03-2009, 12:04 PM   #581
JIGACE
Member
JIGACE began at the beginning.
 
Posts: 21
Karma: 10
Join Date: Jul 2008
Device: EZ Reader Pocket Pro
Unhappy

Quote:
Originally Posted by kiklop74 View Post
You should specify how old articles you want. Change the number in:

Code:
    oldest_article = 15
to for example:

Code:
  oldest_article = 80

The number represent the days in teh past of latest article you want to accept counting from now.
I already did that, i increased the number of days until 365, but the results are always the same, downloads from today to may 4th, and thats it, no matter the number is the same result. I'm intrigued and frustated..
JIGACE is offline  
Old 07-03-2009, 01:06 PM   #582
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 already did that, i increased the number of days until 365, but the results are always the same, downloads from today to may 4th, and thats it, no matter the number is the same result. I'm intrigued and frustated..
No need to be frustrated. You can download only what is published in rss feed and currently oldest article is from may 23. That's it. You can not get older than that.

For anything else a special custom recipe is needed.
kiklop74 is offline  
Old 07-03-2009, 01:33 PM   #583
JIGACE
Member
JIGACE began at the beginning.
 
Posts: 21
Karma: 10
Join Date: Jul 2008
Device: EZ Reader Pocket Pro
Quote:
Originally Posted by kiklop74 View Post
No need to be frustrated. You can download only what is published in rss feed and currently oldest article is from may 23. That's it. You can not get older than that.

For anything else a special custom recipe is needed.
I was afraid of that... thank you for the help...
JIGACE is offline  
Old 07-04-2009, 11:34 AM   #584
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 SQMS View Post
Is it possible for someone to create a recipe for Accountancy Age for me please.

http://www.accountancyage.com/

Many thanks
Here goes:
Attached Files
File Type: zip accountancyage.zip (1.1 KB, 240 views)
kiklop74 is offline  
Old 07-04-2009, 11:34 AM   #585
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 omfosm View Post
looking for a fastcompany.com custom receipt please! thx
Here goes:
Attached Files
File Type: zip fastcompany.zip (9.6 KB, 226 views)
kiklop74 is offline  
Closed Thread


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Custom column read ? pchrist7 Calibre 2 10-04-2010 02:52 AM
Archive for custom screensavers sleeplessdave Amazon Kindle 1 07-07-2010 12:33 PM
How to back up preferences and custom recipes? greenapple Calibre 3 03-29-2010 05:08 AM
Donations for Custom Recipes ddavtian Calibre 5 01-23-2010 04:54 PM
Help understanding custom recipes andersent Calibre 0 12-17-2009 02:37 PM


All times are GMT -4. The time now is 07:06 PM.


MobileRead.com is a privately owned, operated and funded community.