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 08-26-2010, 10:04 PM   #2536
naisren
Enthusiast
naisren began at the beginning.
 
Posts: 41
Karma: 12
Join Date: Jul 2009
Device: ppc
Quote:
Originally Posted by Starson17 View Post
OK, your problem was so interesting, I couldn't resist looking at it further. Your problem is the bad html code in your source page http://www.51voa.com/. The closing angle bracket of each opening tag is ' />', instead of ' >'. That results in each tag being closed twice. Beautiful Soup is confused and sees the entire page as a single [document] element having a single NavigableString of text, not as multiple tags, so none of the tag-based searches or manipulation commands will work. There are no tags for BeautifulSoup to find or work with.

To fix this, you first grab that page (as you have already done in your code):

Code:
        soup = self.index_to_soup('http://www.51voa.com/')
Then, grab the string that is in the contents of the big single [document] element and search and replace the bad closing brackets as follows:
Code:
        rawc = soup.contents[0].string.replace(' />', ' >')
Now it's fixed, but it's still text, so you next convert the string back into a BeautifulSoup object:
Code:
        soup = BeautifulSoup(rawc, fromEncoding=self.encoding)
(Also, add
Code:
from calibre.ebooks.BeautifulSoup import BeautifulSoup
to your recipe)

That's it! Put the two extra lines above after your first index_to_soup line. Be aware that any legitimate single element tags, such as <img>, <br> etc. will get mangled with the simple search and replace above. You may have to special case any tags that are allowed to have a closing slash inside the opening tag so they don't get mangled.

Edit: I forgot, you also need this line:
encoding = 'utf-8'
or else the final step will fail.
Thanks very much and I read a lot about BeautifulSoup after reading your words, and tried several times and failed, in the end I want to try BeautifulSoup 3.07 version to avoid the malformed closing tags.

You save me a lot.
naisren is offline  
Old 08-27-2010, 07:58 AM   #2537
Starson17
Wizard
Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.
 
Posts: 4,004
Karma: 177841
Join Date: Dec 2009
Device: WinMo: IPAQ; Android: HTC HD2, Archos 7o; Java:Gravity T
Quote:
Originally Posted by TonytheBookworm View Post
Starson I know ask before but I'm still not clear on how to do it
if i have for instance the following link (example only)
http://www.testpage.com/doi/abs/10.1...495?ai=rv&af=R
but I need it to be the following
http://www.testpage.com/doi/full/10....viewType=Print

how would I do this?
I figure it would be some form or search and replace like i seen in beautiful soup but again i'm kinda clueless (any examples of this in action ? )
In this thread - Read this.
Starson17 is offline  
Old 08-27-2010, 08:45 AM   #2538
marco_polo
Junior Member
marco_polo began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Aug 2010
Device: PRS 900
Hello, I would like to ask if it is not possible to make a recipe - I model, where only we have to put the data of other places, to refill it ... amn't I programista, I don't know, if this is possible to make it so simple? In my case for example substituting the data of the recipe ¨El Pais¨ for other ones of www.europasur.es . Thank you
marco_polo is offline  
Old 08-27-2010, 09:03 AM   #2539
cisaak
Member
cisaak began at the beginning.
 
Posts: 17
Karma: 10
Join Date: Aug 2010
Device: Kindle DX
Quote:
Originally Posted by Starson17 View Post
change the file extension from .epub to .zip and unpack it into a directory. You will find the css file there and will be able to open the unpacked book with your browser.
Before trying the css route, I substituted an image for the masthead. It worked!!! Now the output from the recipe is exactly what I want. Thanks for all your help.
cisaak is offline  
Old 08-27-2010, 09:08 AM   #2540
Starson17
Wizard
Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.
 
Posts: 4,004
Karma: 177841
Join Date: Dec 2009
Device: WinMo: IPAQ; Android: HTC HD2, Archos 7o; Java:Gravity T
Quote:
Originally Posted by cisaak View Post
Before trying the css route, I substituted an image for the masthead.
Where's the fun in that? Now all you know is how to do it with images.
Starson17 is offline  
Old 08-27-2010, 11:49 AM   #2541
Starson17
Wizard
Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.
 
Posts: 4,004
Karma: 177841
Join Date: Dec 2009
Device: WinMo: IPAQ; Android: HTC HD2, Archos 7o; Java:Gravity T
Quote:
Originally Posted by marco_polo View Post
Hello, I would like to ask if it is not possible to make a recipe - I model, where only we have to put the data of other places, to refill it ... amn't I programista, I don't know, if this is possible to make it so simple? In my case for example substituting the data of the recipe ¨El Pais¨ for other ones of www.europasur.es . Thank you
I think you're asking if you can simply substitute www.europasur.es into another recipe, such as the one for El Pais. The answer is no. www.europasur.es is not an RSS feed. If you can find a feed, you can try the simple recipe system that Calibre offers, although it's usually not very satisfactory.
Starson17 is offline  
Old 08-27-2010, 12:34 PM   #2542
Starson17
Wizard
Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.
 
Posts: 4,004
Karma: 177841
Join Date: Dec 2009
Device: WinMo: IPAQ; Android: HTC HD2, Archos 7o; Java:Gravity T
Quote:
Originally Posted by naisren View Post
Thanks very much and I read a lot about BeautifulSoup after reading your words, and tried several times and failed, in the end I want to try BeautifulSoup 3.07 version to avoid the malformed closing tags.
I'm not sure how you'll switch to BeautifulSoup 3.07 without recompiling Calibre? Regardless, I did read about some changes in the parsing engine used by BeautifulSoup a while back that made it less able to handle malformed html. You would think that BeautifulSoup could parse it if FireFox can do it.

Quote:
You save me a lot.
I'm glad I could help. It was an interesting puzzle.
Starson17 is offline  
Old 08-27-2010, 12:39 PM   #2543
Starson17
Wizard
Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.
 
Posts: 4,004
Karma: 177841
Join Date: Dec 2009
Device: WinMo: IPAQ; Android: HTC HD2, Archos 7o; Java:Gravity T
Quote:
Originally Posted by Ebookerr View Post
The New England of Journal changed their format and the current Calibre version (0.7.15) recipe does not work

Ebookerr
I assume you're referring to The New England Journal of Medicine, as in the title. That needs a username and password. If you provide them to me by PM, I'll take a look at it.
Starson17 is offline  
Old 08-27-2010, 12:58 PM   #2544
TonytheBookworm
Addict
TonytheBookworm is on a distinguished road
 
TonytheBookworm's Avatar
 
Posts: 264
Karma: 62
Join Date: May 2010
Device: kindle 2, kindle 3, Kindle fire
Quote:
Originally Posted by Starson17 View Post
I assume you're referring to The New England Journal of Medicine, as in the title. That needs a username and password. If you provide them to me by PM, I'll take a look at it.

Not sure if this is the same thing he wants or not. I found this which I assume is the same thing .
http://www.nejm.org/medical-rss/current-issue
It didn't require a username/pass

Anyway see if this is what you want..

I forgot to remove the # from the masthead line so if you want the log just remove the # sorry about that
Attached Files
File Type: rar journmed.rar (823 Bytes, 252 views)

Last edited by TonytheBookworm; 08-27-2010 at 01:06 PM. Reason: added masthead
TonytheBookworm is offline  
Old 08-27-2010, 01:26 PM   #2545
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
New recipe for Europa Sur:
Attached Files
File Type: zip europasur.zip (1.2 KB, 263 views)
kiklop74 is offline  
Old 08-27-2010, 02:53 PM   #2546
marco_polo
Junior Member
marco_polo began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Aug 2010
Device: PRS 900
Quote:
Originally Posted by kiklop74 View Post
New recipe for Europa Sur:
hola, muchas gracias
Hello, thank you very much, it works very well..
Is it possible to make recipe of a web page of regional news that does not have RSS feeds like www.tarifaaldia.com? Thanks and a greeting

Last edited by marco_polo; 08-27-2010 at 03:59 PM.
marco_polo is offline  
Old 08-27-2010, 10:01 PM   #2547
TonytheBookworm
Addict
TonytheBookworm is on a distinguished road
 
TonytheBookworm's Avatar
 
Posts: 264
Karma: 62
Join Date: May 2010
Device: kindle 2, kindle 3, Kindle fire
Recipe for Marietta Daily Journal

Georgia,USA local news paper for Marietta and Metro Atlanta
Attached Files
File Type: rar marietta daily journal.rar (893 Bytes, 243 views)
TonytheBookworm is offline  
Old 08-27-2010, 11:55 PM   #2548
TonytheBookworm
Addict
TonytheBookworm is on a distinguished road
 
TonytheBookworm's Avatar
 
Posts: 264
Karma: 62
Join Date: May 2010
Device: kindle 2, kindle 3, Kindle fire
West Hawaii Today per request on Facebook page..
Attached Files
File Type: rar westhawaiitoday.rar (4.2 KB, 241 views)

Last edited by TonytheBookworm; 08-30-2010 at 11:11 PM. Reason: added favicon
TonytheBookworm is offline  
Old 08-28-2010, 08:01 PM   #2549
gk_jam
Junior Member
gk_jam began at the beginning.
 
Posts: 6
Karma: 10
Join Date: Aug 2010
Device: Kindle 3
Slate recipe omits most articles

I posted this first in a separate thread, but was advised to do so here. I'm copying much of my other post.

First of all I want to express my appreciation for such a great product! Having just got my Kindle 3 I am loving Calibre sending feeds to my Kindle to keep on top of news. It's working great, and Calibre is awesome!

Except for the Slate news source. This recipe omits most articles (only a small subset of the days articles from Slate.com are actually in the mobi output). This behavior is consistent for each fectch over the last few days.

I've tried to muck with the python source code for this feed to fix the issue but without success. I simply don't have the technical know-how to fix this on my own.

I know the recipe is set up to skip Slate Video and Gabfest podcast entries, but there are many true articles it skips. I noticed the python script is configured to skip any entry that has "http://twitter.com/Slate' in it, maybe that is an overzealous filter that's causing this? I'm not sure, since when I try to remove that text string from the python code the resulting MOBI is empty, so it's not so simple as that.

Here is the job detail log. Can someone provide feedback on how to fix this? Thanks!

Update: Ok, I see a lot of exceptions, like so: "Exception: Could not fetch article. Run with -vv to see the reason". Looks like this is the first step to debug, but how do I do this? I can't find it in the user manual.

Code:
Fetch news from Slate
Resolved conversion options
calibre version: 0.7.16
{'asciiize': False,
 'author_sort': None,
 'authors': None,
 'base_font_size': 0,
 'book_producer': None,
 'change_justification': 'original',
 'chapter': None,
 'chapter_mark': 'pagebreak',
 'comments': None,
 'cover': None,
 'debug_pipeline': None,
 'disable_font_rescaling': False,
 'dont_compress': False,
 'dont_download_recipe': False,
 'extra_css': None,
 'font_size_mapping': None,
 'footer_regex': '(?i)(?<=<hr>)((\\s*<a name=\\d+></a>((<img.+?>)*<br>\\s*)?\\d+<br>\\s*.*?\\s*)|(\\s*<a name=\\d+></a>((<img.+?>)*<br>\\s*)?.*?<br>\\s*\\d+))(?=<br>)',
 'header_regex': '(?i)(?<=<hr>)((\\s*<a name=\\d+></a>((<img.+?>)*<br>\\s*)?\\d+<br>\\s*.*?\\s*)|(\\s*<a name=\\d+></a>((<img.+?>)*<br>\\s*)?.*?<br>\\s*\\d+))(?=<br>)',
 'input_encoding': None,
 'input_profile': <calibre.customize.profiles.InputProfile object at 0x04C83950>,
 'insert_blank_line': False,
 'insert_metadata': False,
 'isbn': None,
 'keep_ligatures': False,
 'language': None,
 'level1_toc': None,
 'level2_toc': None,
 'level3_toc': None,
 'line_height': 0,
 'linearize_tables': False,
 'lrf': False,
 'margin_bottom': 5.0,
 'margin_left': 5.0,
 'margin_right': 5.0,
 'margin_top': 5.0,
 'max_toc_links': 50,
 'no_chapters_in_toc': False,
 'no_inline_navbars': True,
 'no_inline_toc': False,
 'output_profile': <calibre.customize.profiles.KindleOutput object at 0x04C83C30>,
 'page_breaks_before': None,
 'password': None,
 'personal_doc': '[PDOC]',
 'prefer_author_sort': False,
 'prefer_metadata_cover': False,
 'preprocess_html': False,
 'pretty_print': False,
 'pubdate': None,
 'publisher': None,
 'rating': None,
 'read_metadata_from_opf': None,
 'remove_first_image': False,
 'remove_footer': False,
 'remove_header': False,
 'remove_paragraph_spacing': False,
 'remove_paragraph_spacing_indent_size': 1.5,
 'rescale_images': False,
 'series': None,
 'series_index': None,
 'tags': None,
 'test': False,
 'timestamp': None,
 'title': None,
 'title_sort': None,
 'toc_filter': None,
 'toc_threshold': 6,
 'toc_title': None,
 'use_auto_toc': False,
 'username': None,
 'verbose': 2}
InputFormatPlugin: Recipe Input running
  >>> skipping The Golden Touch Gabfest (title keyword exclusion: Gabfest) <<<

  >>> skipping DoubleX Gabfest: The Mercurial Mommy Edition (title keyword exclusion: Gabfest) <<<

  >>> skipping The Culture Gabfest, "Rambo in Blush" Edition (title keyword exclusion: Gabfest) <<<

Synthesizing mastheadImage
Downloading
Downloading
Downloading
DownloadingDownloading
Fetching
 http://www.slate.com/id/2265216/pagenum/all/
Fetching http://www.slate.com/id/2265198/pagenum/all/
Fetching Fetchinghttp://www.slate.com/id/2265255/entry/2265342/pagenum/all/ Fetching
http://www.slate.com/id/2265196/pagenum/all/ 
http://www.slate.com/id/2226097/pagenum/all/
Processing images...
Fetching http://img.slate.com/media/1/123125/123073/2240479/2262539/100826_EX_carryHeadTN.jpg
Processing images...
Fetching http://img.slate.com/media/1/123125/123051/2240279/2262529/100826_$BOX_touristsTN.jpg
Processing images...
Processing images...
Recursion limit reached. Skipping links in http://www.slate.com/id/2226097/pagenum/all/
Fetching http://img.slate.com/media/1/123125/123054/2240596/2262543/100827_POL_beckTN.jpg
Could not fetch link http://www.slate.com/id/2226097/pagenum/all/
Traceback (most recent call last):
  File "site-packages\calibre\web\fetch\simple.py", line 463, in process_links
  File "site-packages\calibre\web\feeds\news.py", line 686, in _postprocess_html
  File "c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_1eh60l_recipes\recipe0.py", line 345, in postprocess_html
AttributeError: 'NoneType' object has no attribute 'find'

http://www.slate.com/id/2226097/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_1\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265195/pagenum/all/
Fetching http://img.slate.com/images/tool_buttons/tweet.gif
Processing images...
Fetching http://img.slate.com/images/tool_buttons/tweet.gif
Fetching http://img.slate.com/images/tool_buttons/tweet.gif
Fetching http://img.slate.com/images/tool_buttons/tweet.gif
Fetching http://img.slate.com/images/tool_buttons/facebook.gif
Fetching http://img.slate.com/images/tool_buttons/facebook.gif
Fetching http://img.slate.com/images/tool_buttons/facebook.gif
Fetching http://img.slate.com/images/tool_buttons/facebook.gif
Failed to download article: The Slatest: Saturday Edition from http://www.slate.com/id/2226097/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason



Fetching http://img.slate.com/images/redesign2008/Slate_logo_onMaroon252x252.gif
Fetching http://img.slate.com/images/redesign2008/Slate_logo_onMaroon252x252.gif
Fetching http://img.slate.com/images/redesign2008/Slate_logo_onMaroon252x252.gif
Fetching http://img.slate.com/images/redesign2008/Slate_logo_onMaroon252x252.gif
Fetching http://img.slate.com/images/tool_buttons/rss.jpg
Fetching http://img.slate.com/images/tool_buttons/rss.jpg
Fetching http://img.slate.com/images/tool_buttons/rss.jpg
Fetching http://img.slate.com/images/tool_buttons/rss.jpg
Fetching http://img.slate.com/images/tool_buttons/print.gif
Fetching http://img.slate.com/images/tool_buttons/print.gif
Fetching http://img.slate.com/images/tool_buttons/print.gif
Fetching http://img.slate.com/images/tool_buttons/print.gif
Fetching http://img.slate.com/images/tool_buttons/email.gif
Fetching http://img.slate.com/images/tool_buttons/email.gif
Fetching http://img.slate.com/images/tool_buttons/email.gif
Fetching http://img.slate.com/images/tool_buttons/email.gif
Fetching http://img.slate.com/images/recommend_icons/facebook.gif
Fetching http://img.slate.com/images/recommend_icons/facebook.gif
Fetching http://img.slate.com/images/recommend_icons/facebook.gif
Fetching http://img.slate.com/images/recommend_icons/facebook.gif
Fetching http://img.slate.com/images/recommend_icons/digg.gif
Fetching http://img.slate.com/images/recommend_icons/digg.gif
Fetching http://img.slate.com/images/recommend_icons/digg.gif
Fetching http://img.slate.com/images/recommend_icons/reddit.gif
Fetching http://img.slate.com/images/recommend_icons/reddit.gif
Fetching http://img.slate.com/images/recommend_icons/reddit.gif
Fetching http://img.slate.com/images/recommend_icons/reddit.gif
Fetching http://img.slate.com/images/recommend_icons/stumbledupon.jpg
Fetching http://img.slate.com/images/recommend_icons/stumbledupon.jpg
Fetching http://img.slate.com/images/recommend_icons/stumbledupon.jpg
Fetching http://img.slate.com/images/recommend_icons/stumbledupon.jpg
Recursion limit reached. Skipping links in http://www.slate.com/id/2265198/pagenum/all/
Recursion limit reached. Skipping links in http://www.slate.com/id/2265196/pagenum/all/
Recursion limit reached. Skipping links in http://www.slate.com/id/2265255/entry/2265342/pagenum/all/
Recursion limit reached. Skipping links in http://www.slate.com/id/2265216/pagenum/all/
Could not fetch link http://www.slate.com/id/2265255/entry/2265342/pagenum/all/
Traceback (most recent call last):
  File "site-packages\calibre\web\fetch\simple.py", line 463, in process_links
  File "site-packages\calibre\web\feeds\news.py", line 686, in _postprocess_html
  File "c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_1eh60l_recipes\recipe0.py", line 346, in postprocess_html
AttributeError: 'NoneType' object has no attribute 'name'

http://www.slate.com/id/2265255/entry/2265342/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_3\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265343/pagenum/all/
http://www.slate.com/id/2265196/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_4\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265202/pagenum/all/
http://www.slate.com/id/2265198/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_2\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265204/pagenum/all/
Failed to download article: The Great 3-D Debate from http://www.slate.com/id/2265255/entry/2265342/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason



Downloaded article: Head Case from http://www.slate.com/id/2265196/
Downloaded article: The Tourist Gap from http://www.slate.com/id/2265198/
http://www.slate.com/id/2265216/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_0\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265207/pagenum/all/
Processing images...
Fetching http://img.slate.com/media/1/123125/123087/2240624/2262765/100826_JURIS_kaganTN.jpg
Downloaded article: On the Mall With Brother Glenn from http://www.slate.com/id/2265216/
Recursion limit reached. Skipping links in http://www.slate.com/id/2265195/pagenum/all/
http://www.slate.com/id/2265195/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_5\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265297/pagenum/all/
Downloaded article: The Female Factor from http://www.slate.com/id/2265195/
Processing images...
Processing images...
Fetching http://img.slate.com/media/1/123125/123051/2240279/2262529/100826_$B_BubbleTN.jpg
Fetching http://img.slate.com/media/1/123125/2262359/2263929/2262928/100826_LG_helpWantedTN.jpg
Processing images...
Fetching http://img.slate.com/media/1/123125/123097/2248073/2265203/1008266_WH_EtisalatTN.jpg
Recursion limit reached. Skipping links in http://www.slate.com/id/2265343/pagenum/all/
Processing images...
Recursion limit reached. Skipping links in http://www.slate.com/id/2265202/pagenum/all/
Fetching http://img.slate.com/media/1/123125/122986/2241624/2262803/100826_DIS_refugeesTN.jpg
Recursion limit reached. Skipping links in http://www.slate.com/id/2265204/pagenum/all/
Recursion limit reached. Skipping links in http://www.slate.com/id/2265207/pagenum/all/
Processing images...
http://www.slate.com/id/2265343/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_6\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265031/pagenum/all/
Fetching http://img.slate.com/media/1/123125/122984/2243388/2265254/100827_HN_RoyceLamberthTN.jpg
http://www.slate.com/id/2265202/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_7\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265095/pagenum/all/
http://www.slate.com/id/2265204/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_8\index.xhtml
Downloading
Fetching http://www.slate.com/id/2263157/pagenum/all/
http://www.slate.com/id/2265207/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_9\index.xhtml
Downloading
Fetching http://www.slate.com/id/2263165/pagenum/all/
Downloaded article: The Bubble That Isn't from http://www.slate.com/id/2265343/
Downloaded article: But He Looked Good on Paper from http://www.slate.com/id/2265202/
Downloaded article: The Internet's Secret Back Door from http://www.slate.com/id/2265204/
Downloaded article: Back From the Dead from http://www.slate.com/id/2265207/
Recursion limit reached. Skipping links in http://www.slate.com/id/2265297/pagenum/all/
http://www.slate.com/id/2265297/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_10\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265214/pagenum/all/
Downloaded article: A Distinction Without Deference from http://www.slate.com/id/2265297/
Processing images...
Fetching http://labs.slate.com/media/lean-lock/images/header_onSlateLEFT_245x70.gif
Fetching http://labs.slate.com/media/lean-lock/images/header_onSlateRIGHT_232x34.gif
Fetching http://labs.slate.com/media/lean-lock/images/screenshotPreview.png
Processing images...
Recursion limit reached. Skipping links in http://www.slate.com/id/2263157/pagenum/all/
Recursion limit reached. Skipping links in http://www.slate.com/id/2265095/pagenum/all/
Processing images...
Fetching http://img.slate.com/media/1/123125/2218698/2241481/2262542/100826_XX_goodDaughters.jpg
Processing images...
Could not fetch link http://www.slate.com/id/2263157/pagenum/all/
Traceback (most recent call last):
  File "site-packages\calibre\web\fetch\simple.py", line 463, in process_links
  File "site-packages\calibre\web\feeds\news.py", line 686, in _postprocess_html
  File "c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_1eh60l_recipes\recipe0.py", line 345, in postprocess_html
AttributeError: 'NoneType' object has no attribute 'find'

http://www.slate.com/id/2263157/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_13\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265255/entry/2265256/pagenum/all/
Fetching http://labs.slate.com/media/img/slate_labs_logo_big.jpg
Recursion limit reached. Skipping links in http://www.slate.com/id/2265031/pagenum/all/
Failed to download article: Play Lean/Lock from http://www.slate.com/id/2263157/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason



Fetching http://labs.slate.com/media/img/thumbs/newsdots.jpg
Fetching http://labs.slate.com/media/img/thumbs/lean-lock.jpg
http://www.slate.com/id/2265095/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_12\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265201/pagenum/all/
Processing images...
Fetching http://img.slate.com/media/1/123125/123019/2240599/2262533/100826_PB_printingpress02TN.jpg
http://www.slate.com/id/2265031/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_11\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265192/pagenum/all/
Fetching http://labs.slate.com/media/img/thumbs/jobmap.jpg
Downloaded article: Corrections from http://www.slate.com/id/2265095/
Downloaded article: Joyce Maynard, Glib All Over Again from http://www.slate.com/id/2265031/
Fetching http://labs.slate.com/media/img/thumbs/nametree.jpg
Recursion limit reached. Skipping links in http://www.slate.com/id/2265214/pagenum/all/
Fetching http://labs.slate.com/media/img/thumbs/51flag.jpg
Fetching http://labs.slate.com/media/img/thumbs/bp-oil.jpg
Fetching http://labs.slate.com/media/img/thumbs/teaparty.jpg
http://www.slate.com/id/2265214/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_15\index.xhtml
Downloading
Fetching http://www.slate.com/id/2265205/pagenum/all/
Fetching http://labs.slate.com/media/img/thumbs/plain-english.png
Downloaded article: The Proto-Internet of 1704 from http://www.slate.com/id/2265214/
Fetching http://labs.slate.com/media/img/thumbs/media-map.jpg
Fetching http://labs.slate.com/media/img/thumbs/favre.png
Fetching http://labs.slate.com/media/img/thumbs/movie-scatterplot.png
Fetching http://labs.slate.com/media/img/thumbs/sapometer.jpg
Fetching http://labs.slate.com/media/img/thumbs/danbrown.jpg
Fetching http://labs.slate.com/media/img/thumbs/senate-social-network.jpg
Recursion limit reached. Skipping links in http://www.slate.com/id/2263165/pagenum/all/
Processing images...
Fetching http://img.slate.com/media/1/123125/122958/2240716/2262946/100826_TV_kidsHallTN.jpg
Could not fetch link http://www.slate.com/id/2263165/pagenum/all/
Traceback (most recent call last):
  File "site-packages\calibre\web\fetch\simple.py", line 463, in process_links
  File "site-packages\calibre\web\feeds\news.py", line 686, in _postprocess_html
  File "c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_1eh60l_recipes\recipe0.py", line 345, in postprocess_html
AttributeError: 'NoneType' object has no attribute 'find'

http://www.slate.com/id/2263165/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_14\index.xhtml
Processing images...
Processing images...
Fetching http://img.slate.com/media/1/123125/2126996/2240593/2262953/100826_TECH_gmailPhoneTN.jpg
Fetching http://img.slate.com/media/1/123125/122954/2241435/2262941/100826_MOV_INFERNO.jpg
Failed to download article: Welcome to Slate Labs from http://www.slate.com/id/2263165/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason



Recursion limit reached. Skipping links in http://www.slate.com/id/2265192/pagenum/all/
Fetching http://img.slate.com/media/1/123125/2126996/2240593/2262953/100826_TECH_gmailstill.jpg
http://www.slate.com/id/2265192/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_18\index.xhtml
Downloaded article: Aesthetes of Absurdity from http://www.slate.com/id/2265192/
Recursion limit reached. Skipping links in http://www.slate.com/id/2265201/pagenum/all/
Recursion limit reached. Skipping links in http://www.slate.com/id/2265255/entry/2265256/pagenum/all/
http://www.slate.com/id/2265201/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_17\index.xhtml
Could not fetch link http://www.slate.com/id/2265255/entry/2265256/pagenum/all/
Traceback (most recent call last):
  File "site-packages\calibre\web\fetch\simple.py", line 463, in process_links
  File "site-packages\calibre\web\feeds\news.py", line 686, in _postprocess_html
  File "c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_1eh60l_recipes\recipe0.py", line 346, in postprocess_html
AttributeError: 'NoneType' object has no attribute 'name'

http://www.slate.com/id/2265255/entry/2265256/pagenum/all/ saved to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_jsiqib_plumber\feed_0\article_16\index.xhtml
WARNING: Encoding detection confidence 99%
Downloaded article: The Home Phone Is Back! from http://www.slate.com/id/2265201/
Failed to download article: The Great 3-D Debate from http://www.slate.com/id/2265255/entry/2265256/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason



no allowed content found, removing article
Could not fetch link http://www.slate.com/id/2265205/pagenum/all/
Traceback (most recent call last):
  File "site-packages\calibre\web\fetch\simple.py", line 434, in process_links
  File "site-packages\calibre\web\fetch\simple.py", line 195, in get_soup
  File "c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_qlqfic\calibre_0.7.16_1eh60l_recipes\recipe0.py", line 301, in preprocess_html
Exception: String error

http://www.slate.com/id/2265205/pagenum/all/ saved to 
Failed to download article: Create Your Own Virtual Cloud from http://www.slate.com/id/2265205/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason



Failed to download the following articles:
The Slatest: Saturday Edition from All Articles
http://www.slate.com/id/2226097/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason

The Great 3-D Debate from All Articles
http://www.slate.com/id/2265255/entry/2265342/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason

Play Lean/Lock from All Articles
http://www.slate.com/id/2263157/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason

Welcome to Slate Labs from All Articles
http://www.slate.com/id/2263165/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason

The Great 3-D Debate from All Articles
http://www.slate.com/id/2265255/entry/2265256/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason

Create Your Own Virtual Cloud from All Articles
http://www.slate.com/id/2265205/
Traceback (most recent call last):
  File "site-packages\calibre\utils\threadpool.py", line 95, in run
  File "site-packages\calibre\web\feeds\news.py", line 813, in fetch_article
  File "site-packages\calibre\web\feeds\news.py", line 809, in _fetch_article
Exception: Could not fetch article. Run with -vv to see the reason

Parsing all content...
Parsing feed_0/article_7/index.html ...
Parsing feed_0/article_18/index.html ...
Parsing feed_0/article_11/index.html ...
Parsing feed_0/article_0/index.html ...
Initial parse failed:
Traceback (most recent call last):
  File "site-packages\calibre\ebooks\oeb\base.py", line 816, in first_pass
  File "lxml.etree.pyx", line 2532, in lxml.etree.fromstring (src/lxml/lxml.etree.c:48270)
  File "parser.pxi", line 1545, in lxml.etree._parseMemoryDocument (src/lxml/lxml.etree.c:71812)
  File "parser.pxi", line 1417, in lxml.etree._parseDoc (src/lxml/lxml.etree.c:70608)
  File "parser.pxi", line 898, in lxml.etree._BaseParser._parseUnicodeDoc (src/lxml/lxml.etree.c:67148)
  File "parser.pxi", line 539, in lxml.etree._ParserContext._handleParseResultDoc (src/lxml/lxml.etree.c:63824)
  File "parser.pxi", line 625, in lxml.etree._handleParseResult (src/lxml/lxml.etree.c:64745)
  File "parser.pxi", line 565, in lxml.etree._raiseParseError (src/lxml/lxml.etree.c:64088)
XMLSyntaxError: xmlns: URI xhtml is not absolute, line 1, column 26

Parsing file 'feed_0/article_0/index.html' as HTML
Forcing feed_0/article_0/index.html into XHTML namespace
Parsing feed_0/article_8/index.html ...
Parsing feed_0/index.html ...
Forcing feed_0/index.html into XHTML namespace
Parsing feed_0/article_2/index.html ...
Parsing feed_0/article_17/index.html ...
Parsing feed_0/article_10/index.html ...
Initial parse failed:
Traceback (most recent call last):
  File "site-packages\calibre\ebooks\oeb\base.py", line 816, in first_pass
  File "lxml.etree.pyx", line 2532, in lxml.etree.fromstring (src/lxml/lxml.etree.c:48270)
  File "parser.pxi", line 1545, in lxml.etree._parseMemoryDocument (src/lxml/lxml.etree.c:71812)
  File "parser.pxi", line 1417, in lxml.etree._parseDoc (src/lxml/lxml.etree.c:70608)
  File "parser.pxi", line 898, in lxml.etree._BaseParser._parseUnicodeDoc (src/lxml/lxml.etree.c:67148)
  File "parser.pxi", line 539, in lxml.etree._ParserContext._handleParseResultDoc (src/lxml/lxml.etree.c:63824)
  File "parser.pxi", line 625, in lxml.etree._handleParseResult (src/lxml/lxml.etree.c:64745)
  File "parser.pxi", line 565, in lxml.etree._raiseParseError (src/lxml/lxml.etree.c:64088)
XMLSyntaxError: xmlns: URI xhtml is not absolute, line 1, column 26

Parsing file 'feed_0/article_10/index.html' as HTML
Forcing feed_0/article_10/index.html into XHTML namespace
Parsing feed_0/article_4/index.html ...
Parsing feed_0/article_15/index.html ...
Parsing index.html ...
Forcing index.html into XHTML namespace
Parsing feed_0/article_12/index.html ...
Parsing feed_0/article_9/index.html ...
Parsing feed_0/article_5/index.html ...
Parsing feed_0/article_6/index.html ...
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265031' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265198' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265216' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265204' not found
Referenced file 'feed_0/article_16/index.html' not found
Referenced file 'feed_0/article_1/index.html' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265201' not found
Referenced file 'feed_0/article_3/index.html' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265195' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265192' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265207' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265297' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265343' not found
Referenced file 'feed_0/article_13/index.html' not found
Referenced file 'feed_0/article_19/index.html' not found
Referenced file 'feed_0/article_14/index.html' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265202' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265196' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265214' not found
Referenced file '/toolbar.aspx%3faction%3dprint%26id%3d2265095' not found
Reading TOC from NCX...
Merging user specified metadata...
Detecting structure...
Flattening CSS and remapping font sizes...
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 195 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 300 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 195 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 300 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 338 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 195 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 354 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 195 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 321 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: normal 1em/1.5em [1:1: font]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 150 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 227 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 283 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 250 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 89 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 539 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 305 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 195 [1:13: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [1:12: height]
Source base font size is 12.00000pt
Cleaning up manifest...
Trimming unused files from manifest...
Parsing stylesheet.css ...
Property: Invalid value for "CSS Level 2.1" property: 195 [74:1: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [75:1: width]
Property: Invalid value for "CSS Level 2.1" property: 18 [164:1: height]
Property: Invalid value for "CSS Level 2.1" property: 18 [165:1: width]
Property: Invalid value for "CSS Level 2.1" property: 300 [169:1: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [170:1: width]
Property: Invalid value for "CSS Level 2.1" property: 338 [174:1: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [175:1: width]
Property: Invalid value for "CSS Level 2.1" property: 354 [190:1: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [191:1: width]
Property: Invalid value for "CSS Level 2.1" property: 321 [210:1: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [211:1: width]
Property: Invalid value for "CSS Level 2.1" property: 227 [253:1: height]
Property: Invalid value for "CSS Level 2.1" property: 150 [254:1: width]
Property: Invalid value for "CSS Level 2.1" property: 283 [266:1: height]
Property: Invalid value for "CSS Level 2.1" property: 252 [267:1: width]
Property: Invalid value for "CSS Level 2.1" property: 89 [275:1: height]
Property: Invalid value for "CSS Level 2.1" property: 250 [276:1: width]
Property: Invalid value for "CSS Level 2.1" property: 305 [280:1: height]
Property: Invalid value for "CSS Level 2.1" property: 539 [281:1: width]
Property: Invalid value for "CSS Level 2.1" property: middle [291:1: text-align]
Trimming 'feed_0/article_14/images/img7.jpg' from manifest
Trimming 'feed_0/article_13/images/img3.jpg' from manifest
Trimming 'feed_0/article_14/images/img6.jpg' from manifest
Trimming 'feed_0/article_14/images/img11.jpg' from manifest
Trimming 'feed_0/article_14/images/img8.jpg' from manifest
Trimming 'feed_0/article_14/images/img10.jpg' from manifest
Trimming 'feed_0/article_3/images/img5.jpg' from manifest
Trimming 'feed_0/article_3/images/img8.jpg' from manifest
Trimming 'feed_0/article_14/images/img12.jpg' from manifest
Trimming 'feed_0/article_3/images/img9.jpg' from manifest
Trimming 'feed_0/article_14/images/img1.jpg' from manifest
Trimming 'feed_0/article_14/images/img3.jpg' from manifest
Trimming 'feed_0/article_14/images/img5.jpg' from manifest
Trimming 'feed_0/article_14/images/img9.jpg' from manifest
Trimming 'feed_0/article_16/images/img1.jpg' from manifest
Trimming 'feed_0/article_3/images/img4.jpg' from manifest
Trimming 'feed_0/article_14/images/img2.jpg' from manifest
Trimming 'feed_0/article_14/images/img13.jpg' from manifest
Trimming 'feed_0/article_13/images/img1.jpg' from manifest
Trimming 'feed_0/article_3/images/img3.jpg' from manifest
Trimming 'feed_0/article_3/images/img6.jpg' from manifest
Trimming 'feed_0/article_3/images/img10.jpg' from manifest
Trimming 'feed_0/article_3/images/img7.jpg' from manifest
Trimming 'feed_0/article_3/images/img2.jpg' from manifest
Trimming 'feed_0/article_14/images/img4.jpg' from manifest
Trimming 'feed_0/article_14/images/img15.jpg' from manifest
Trimming 'feed_0/article_14/images/img14.jpg' from manifest
Trimming 'feed_0/article_13/images/img2.jpg' from manifest
Creating MOBI Output...
Generating in-line TOC...
Applying case-transforming CSS...
Parsing manglecase.css ...
Parsing tocstyle.css ...
Rasterizing SVG images...
Converting XHTML to Mobipocket markup...
Converting TOC for MOBI periodical indexing...
Using mastheadImage supplied in manifest...
Serializing markup content...
Hyperlink target 'feed_0/article_8/index.html#add-comment' not found
Hyperlink target 'feed_0/article_7/index.html#add-comment' not found
Hyperlink target 'feed_0/article_12/index.html#add-comment' not found
Hyperlink target 'feed_0/article_6/index.html#add-comment' not found
Hyperlink target 'feed_0/article_0/index.html#add-comment' not found
Hyperlink target 'feed_0/article_4/index.html#add-comment' not found
Hyperlink target 'feed_0/article_5/index.html#add-comment' not found
Hyperlink target 'feed_0/article_15/index.html#add-comment' not found
Hyperlink target 'feed_0/article_2/index.html#add-comment' not found
Hyperlink target 'feed_0/article_10/index.html#add-comment' not found
Hyperlink target 'feed_0/article_11/index.html#add-comment' not found
Hyperlink target 'feed_0/article_17/index.html#add-comment' not found
Hyperlink target 'feed_0/article_18/index.html#add-comment' not found
Hyperlink target 'feed_0/article_9/index.html#add-comment' not found
  Compressing markup content...
  MOBI periodical specified, evaluating TOC for periodical conformance ...
  TOC structure conforms
Generating structured CTOC ...
  CNCX utilization: 1 record, 3% full
Indexing navPoints ...
Generating INDX ...
Serializing images...
MOBI output written to c:\users\ganesh\appdata\local\temp\calibre_0.7.16_tmp_y2cdkc\calibre_0.7.16_u2tn7b_recipe_out.mobi

Last edited by gk_jam; 08-28-2010 at 08:09 PM.
gk_jam is offline  
Old 08-28-2010, 10:17 PM   #2550
DoctorOhh
US Navy, Retired
DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.
 
DoctorOhh's Avatar
 
Posts: 9,890
Karma: 13806776
Join Date: Feb 2009
Location: North Carolina
Device: Icarus Illumina XL HD, Kindle PaperWhite SE 11th Gen
Quote:
Originally Posted by gk_jam View Post
Update: Ok, I see a lot of exceptions, like so: "Exception: Could not fetch article. Run with -vv to see the reason". Looks like this is the first step to debug, but how do I do this? I can't find it in the user manual.
I'm not an expert but the part of the manual you're looking for is under Tips for developing new recipes.

If you want it to run the full recipe I think you have to eliminate the --test otherwise it just grabs the first 2 articles to test the recipe basics.

Good Luck

Last edited by DoctorOhh; 08-28-2010 at 10:19 PM.
DoctorOhh 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 08:00 AM.


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