diff --git a/recipes/icons/res_publica.png b/recipes/icons/res_publica.png deleted file mode 100644 index 133cffa695..0000000000 Binary files a/recipes/icons/res_publica.png and /dev/null differ diff --git a/recipes/res_publica.recipe b/recipes/res_publica.recipe deleted file mode 100644 index 14341b4aa8..0000000000 --- a/recipes/res_publica.recipe +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python2 - -__license__ = 'GPL v3' - -from calibre.web.feeds.news import BasicNewsRecipe - - -class ResPublicaNowaRecipe(BasicNewsRecipe): - __license__ = 'GPL v3' - __author__ = u'Artur Stachecki ' - language = 'pl' - version = 1 - - title = u'Res Publica Nowa' - category = u'News' - description = u'Portal kulturalno-społecznego kwartalnika o profilu liberalnym, wydawany przez Fundację Res Publica' - cover_url = '' - remove_empty_feeds = True - no_stylesheets = True - oldest_article = 7 - max_articles_per_feed = 100000 - recursions = 0 - no_stylesheets = True - remove_javascript = True - simultaneous_downloads = 5 - - feeds = [ - ('Artykuly', 'feed://publica.pl/feed'), - ] - - def preprocess_html(self, soup): - for alink in soup.findAll('a'): - if alink.string is not None: - tstr = alink.string - alink.replaceWith(tstr) - return soup