From a469a6209f94f96a6c3898b9dfd6096020e1b4ad Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 22 Nov 2013 14:31:13 +0530 Subject: [PATCH] Remove No Names, No Jackets as it is discontinued --- recipes/no_names_no_jackets.recipe | 57 ------------------------------ 1 file changed, 57 deletions(-) delete mode 100644 recipes/no_names_no_jackets.recipe diff --git a/recipes/no_names_no_jackets.recipe b/recipes/no_names_no_jackets.recipe deleted file mode 100644 index 672a913270..0000000000 --- a/recipes/no_names_no_jackets.recipe +++ /dev/null @@ -1,57 +0,0 @@ -# -# Written: July 2013 -# Last Edited: 2013-07-25 -# Version: 1.0 -# Last update: 2013-07-25 -# - -__license__ = 'GPL v3' -__copyright__ = '2013, Armin Geller' - -''' -Fetch blindenbuch.de -''' - -from calibre.web.feeds.recipes import BasicNewsRecipe -class AdvancedUserRecipe1303841067(BasicNewsRecipe): - - title = u'No Names, No Jackets' - __author__ = 'Armin Geller' # AGe 2013-07-25 - description = u'One chapter. Just the writing. Discover something new.' - publisher = 'nonamesnojackets.com/' - publication_type = 'ebook news' - tags = 'Books, Literature, E-Books, US' - timefmt = ' [%a, %d %b %Y]' - publication_type = 'Feed' - language = 'en' - encoding = 'utf-8' - - oldest_article = 14 - max_articles_per_feed = 100 - - no_stylesheets = True - use_embedded_content = False - remove_javascript = True - - conversion_options = {'title' : title, - 'comments' : description, - 'tags' : tags, - 'language' : language, - 'publisher' : publisher, - 'authors' : publisher, - } - -# cover_url = '' -# masthead_url = '' - - extra_css = ''' - h1,h2 {font-weight:bold;font-size:large;} - .entry-meta {font-size: 1em;text-align: left; font-style: italic} - ''' - - keep_only_tags = [ - dict(name='article') - ] - - feeds = [(u'No Names, No Jackets', u'http://www.nonamesnojackets.com/feed/')] -