Various Hungarian recipes by laca

This commit is contained in:
Kovid Goyal 2012-09-20 21:59:10 +05:30
parent 7fb9f21d0e
commit 3b04ab060a
3 changed files with 72 additions and 17 deletions

View File

@ -1,21 +1,24 @@
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from calibre.web.feeds.news import BasicNewsRecipe from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1348151548(BasicNewsRecipe):
class Index(BasicNewsRecipe): title = u'Index.hu'
__author__ = 'laca'
title = u'INDEX.HU' oldest_article = 2
oldest_article = 3
max_articles_per_feed = 50
language = 'hu' language = 'hu'
masthead_url = 'http://index.hu/assets/images/index_logo.gif'
auto_cleanup = True
__author__ = 'Ezmegaz' simultaneous_downloads= 1
max_articles_per_feed = 50
feeds = [(u'ALL', u'http://index.hu/24ora/rss/'),
(u'BELF\xd6LD', u'http://index.hu/belfold/rss/default/'),
(u'K\xdcLF\xd6LD', u'http://index.hu/kulfold/rss/default/'),
(u'BULV\xc1R', u'http://index.hu/bulvar/rss/default/'),
(u'GAZDAS\xc1G', u'http://index.hu/gazdasag/rss/default/'),
(u'TECH', u'http://index.hu/tech/rss/main/'),
(u'KULT\xdaRA', u'http://index.hu/kultur/rss/main/'),
(u'TUDOM\xc1NY', u'http://index.hu/tudomany/rss/main/'),
(u'V\xc9LEM\xc9NY', u'http://index.hu/velemeny/rss/default/')]
feeds = [(u'Belföld', u'http://index.hu/belfold/rss/'),
(u'Külföld', u'http://index.hu/kulfold/rss/'),
(u'Gazdaság', u'http://index.hu/gazdasag/rss/'),
(u'Tech', u'http://index.hu/tech/rss/'),
(u'Tudomány', u'http://index.hu/tudomany/rss/'),
(u'Kultúr', u'http://index.hu/kultur/rss/'),
(u'Sport Géza', u'http://sportgeza.hu/24ora/rss/'),
(u'Vélemény', u'http://index.hu/velemeny/rss/'),
(u'Velvet', u'http://velvet.hu/24ora/rss/'),
(u'Totalcar', u'http://totalcar.hu/24ora/rss/'),
(u'Dívány', u'http://divany.hu/24ora/rss/')]

29
recipes/origo_hu.recipe Normal file
View File

@ -0,0 +1,29 @@
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1348136299(BasicNewsRecipe):
title = u'[origo]'
oldest_article = 2
language = 'hu'
auto_cleanup = True
__author__ = 'laca'
simultaneous_downloads= 1
max_articles_per_feed = 50
feeds = [(u'Itthon', u'http://origo.hu/contentpartner/rss/itthon/origo.xml'),
(u'Nagyvilág', u'http://origo.hu/contentpartner/rss/nagyvilag/origo.xml'),
(u'Gazdaság', u'http://origo.hu/contentpartner/rss/uzletinegyed/origo.xml'),
(u'Egészség', u'http://static2.origos.hu/contentpartner/rss/egeszseg/origo.xml'),
(u'Tudomány', u'http://origo.hu/contentpartner/rss/tudomany/origo.xml'),
(u'Techbázis', u'http://origo.hu/contentpartner/rss/techbazis/origo.xml'),
(u'Szoftverbázis', u'http://www.szoftverbazis.hu/rss/index.xml'),
(u'Sport', u'http://origo.hu/contentpartner/rss/sport/origo.xml'),
(u'Szórakozás', u'http://origo.hu/contentpartner/rss/szorakozas/origo.xml'),
(u'Időjárás', u'http://static1.origos.hu/contentpartner/rss/idojaras/origo.xml'),
(u'Filmklub', u'http://origo.hu/contentpartner/rss/filmklub/origo.xml'),
(u'Utazás', u'http://origo.hu/contentpartner/rss/utazas/origo.xml'),
(u'Autó', u'http://origo.hu/contentpartner/rss/auto/origo.xml'),
(u'Komment.hu', u'http://static5.origos.hu/contentpartner/rss/velemeny/origo.xml'),
(u'365.hu', u'http://origo.hu/contentpartner/rss/365/origo.xml'),
(u'Quart', u'http://www.quart.hu/contentpartner/rss/quart/origo.xml'),
(u'Forma-1', u'http://www.f1hirek.hu/contentpartner/rss/f1hirek/f1hirek.xml')]

View File

@ -0,0 +1,23 @@
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1348146838(BasicNewsRecipe):
title = u'Portfolio.hu'
__author__ = 'laca'
oldest_article = 2
language = 'hu'
masthead_url = 'http://www.portfolio.hu/img/logo2010.gif'
auto_cleanup = True
author = 'laca'
simultaneous_downloads= 1
max_articles_per_feed = 50
feeds = [(u'Makrogazdaság', u'http://www.portfolio.hu/rss/cikkek/makrogazdasag.xml'),
(u'Vállalatok', u'http://www.portfolio.hu/rss/cikkek/vallalatok.xml'),
(u'Tőzsdei hírek', u'http://www.portfolio.hu/rss/cikkek/tozsde.xml'),
(u'Deviza/kötvény', u'http://www.portfolio.hu/rss/cikkek/penzkotveny.xml'),
(u'Befektetési alapok', u'http://www.portfolio.hu/rss/cikkek/befalap.xml'),
(u'Ingatlan', u'http://www.portfolio.hu/rss/cikkek/ingatlan.xml'),
(u'Pénzcentrum', u'http://www.penzcentrum.hu/rss/all.xml')]