mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
20 lines
1001 B
Plaintext
20 lines
1001 B
Plaintext
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:fdm=marker:ai
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class ZTS(BasicNewsRecipe):
|
|
title = u'Zaufana Trzecia Strona'
|
|
__author__ = 'fenuks'
|
|
description = u'Niezależne źródło wiadomości o świecie bezpieczeństwa IT'
|
|
category = 'IT, security'
|
|
language = 'pl'
|
|
cover_url = 'http://www.zaufanatrzeciastrona.pl/wp-content/uploads/2012/08/z3s_h100.png'
|
|
extra_css = '.thumbnail {float: left; margin-right:5px;}'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
remove_empty_feeds = True
|
|
use_embedded_content = False
|
|
keep_only_tags = [dict(name='div', attrs={'class':'post postcontent'})]
|
|
remove_tags = [dict(name='div', attrs={'class':'dolna-ramka'})]
|
|
feeds = [(u'Strona g\u0142\xf3wna', u'http://feeds.feedburner.com/ZaufanaTrzeciaStronaGlowna'), (u'Drobiazgi', u'http://feeds.feedburner.com/ZaufanaTrzeciaStronaDrobiazgi')]
|