From d868b2d54154d9d101659ad6b6044efee1b5c692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C5=82ugosz?= Date: Wed, 2 Oct 2013 19:58:11 +0200 Subject: [PATCH] remove 'The H' recipe Unfortunatelly they're not publishing any more: http://www.h-online.com/open/news/item/The-H-is-closing-down-1920027.html --- recipes/the_h.recipe | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 recipes/the_h.recipe diff --git a/recipes/the_h.recipe b/recipes/the_h.recipe deleted file mode 100644 index 28a1571dc5..0000000000 --- a/recipes/the_h.recipe +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env python - -__license__ = 'GPL v3' -__copyright__ = '2010, Hiroshi Miura ' -''' -www.h-online.com -''' - -from calibre.web.feeds.news import BasicNewsRecipe - -class TheHeiseOnline(BasicNewsRecipe): - title = u'The H' - __author__ = 'Hiroshi Miura' - oldest_article = 3 - description = 'In association with Heise Online' - publisher = 'Heise Media UK Ltd.' - category = 'news, technology, security, OSS, internet' - max_articles_per_feed = 100 - language = 'en' - encoding = 'utf-8' - conversion_options = { - 'comment' : description - ,'tags' : category - ,'publisher': publisher - ,'language' : language - } - feeds = [ - (u'The H News Feed', u'http://www.h-online.com/news/atom.xml') - ] - cover_url = 'http://www.h-online.com/icons/logo_theH.gif' - - remove_tags = [ - dict(id="logo"), - dict(id="footer") - ] - - def print_version(self, url): - return url + '?view=print' -