Hello,
I have a recipe, which is composed of several rss feeds. All of them are set up to clean automatically. Calibre gives good results for all but one.
This is the rss for the SF signal website, which has
full article rss anyway and probably for this reason Calibre truncates the articles only to the title of the article when in auto_cleanup=true mode.
So, my question is, how do I use auto_cleanup=true for all rss feeds in the recipe, but disable it for the SF signal feed?
Here is the autogenerated recipe:
Code:
class AdvancedUserRecipe1373561687(BasicNewsRecipe):
title = u'Science fiction and fantasy blogs'
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
feeds = [(u'A Dribble of Ink', u'http://feeds2.feedburner.com/aidanmoher/eiaU'), (u'Fantasy faction', u'http://fantasy-faction.com/feed'), (u'Fantasy literature', u'http://feeds.feedburner.com/FantasyLiteratureNewsInterviews'), (u'SF Signal', u'http://feeds.feedburner.com/Sfsignal'), (u'The Night Bazaar', u'http://night-bazaar.com/feed'), (u'Fantasy Book Critic', u'http://fantasybookcritic.blogspot.com/feeds/posts/default'), (u'SF Site', u'http://www.sfsite.com/depts/front.xml'), (u'SFF world reviews', u'http://www.sffworld.com/rsfreviews.xml'), (u'SFFscope', u'http://www.sfscope.com/feed/'), (u'Strange Horizons Reviews', u'http://www.strangehorizons.com/reviews/atom.xml'), (u'Speculative Book Review', u'http://speculativebookreview.blogspot.com/feeds/posts/default?alt=rss')]