mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
import re
|
|
|
|
|
|
class SmeRecipe(BasicNewsRecipe):
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'Abelturd'
|
|
language = 'cs'
|
|
version = 1
|
|
|
|
title = u'iLiteratura.cz'
|
|
publisher = u''
|
|
category = u'News, Newspaper'
|
|
description = u'O LITERATU\u0158E V CEL\xc9M SV\u011aT\u011a A DOMA'
|
|
cover_url = 'http://www.iliteratura.cz/1_vzhled/1/iliteratura.gif'
|
|
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
use_embedded_content = False
|
|
remove_empty_feeds = True
|
|
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
|
|
feeds = []
|
|
feeds.append((u'\u010cl\xe1nky', u'http://www.iliteratura.cz/rss.asp'))
|
|
|
|
keep_only_tags = []
|
|
|
|
remove_tags = [dict(name='table'), dict(name='h3')]
|
|
|
|
preprocess_regexps = [
|
|
(re.compile(r'<h3>Souvisej.*</body>', re.DOTALL | re.IGNORECASE),
|
|
lambda match: ''),
|
|
]
|
|
|
|
def print_version(self, url):
|
|
m = re.search('(?<=ID=)[0-9]*', url)
|
|
|
|
return u'http://www.iliteratura.cz/clanek.asp?polozkaID=' + str(m.group(0)) + '&c=tisk'
|
|
|
|
extra_css = '''
|
|
h1 {font-size:140%;font-family:georgia,serif; font-weight:bold}
|
|
h3 {font-size:115%;font-family:georgia,serif; font-weight:bold}
|
|
'''
|