mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2011, Tomas Latal<latal.tomas at gmail.com>'
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class LupaCZ(BasicNewsRecipe):
|
|
title = 'Lupa'
|
|
__author__ = 'Tomas Latal'
|
|
__version__ = '1.0'
|
|
__date__ = '30 April 2011'
|
|
description = u'Zpr\xe1vi\u010dky a \u010dl\xe1nky z Lupa.cz'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 10
|
|
encoding = 'utf8'
|
|
publisher = 'Internet Info s.r.o.'
|
|
category = 'IT,news,CZ'
|
|
language = 'cs'
|
|
publication_type = 'newsportal'
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
extra_css = 'p.perex{font-size: 1.2em;margin: 0 0 10px 0;line-height: 1.4;padding: 0 0 10px 0;font-weight: bold;} \
|
|
p.perex img {display:none;} \
|
|
.urs p {margin: 0 0 0.8em 0;}'
|
|
|
|
feeds = [
|
|
(u'Zpr\xe1vi\u010dky', u'http://rss.lupa.cz/zpravicky'),
|
|
(u'\u010cl\xe1nky', u'http://rss.lupa.cz/clanky')
|
|
]
|
|
|
|
remove_tags_before = dict(id='main')
|
|
|
|
remove_tags_after = [dict(id='main')]
|
|
|
|
remove_tags = [
|
|
dict(attrs={'class': ['author clear', 'tags-rubrics', 'box border style1 links clear', 'enquiry clear', 'serial', 'box border style1 TitleList',
|
|
'breadcrumb clear', 'article-discussion box border style1 monitoringComponentArticle', 'link-more border prev-next clear']}),
|
|
dict(id=['discussionList', 'similarItems',
|
|
'sidebar', 'footer', 'opl', 'promo-box'])
|
|
]
|