diff --git a/recipes/no_names_no_jackets.recipe b/recipes/no_names_no_jackets.recipe new file mode 100644 index 0000000000..672a913270 --- /dev/null +++ b/recipes/no_names_no_jackets.recipe @@ -0,0 +1,57 @@ +# +# 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/')] +