mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
28 lines
1.4 KiB
Plaintext
28 lines
1.4 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Historia_org_pl(BasicNewsRecipe):
|
|
title = u'Historia.org.pl'
|
|
__author__ = 'fenuks'
|
|
description = u'history site'
|
|
cover_url = 'http://lh3.googleusercontent.com/_QeRQus12wGg/TOvHsZ2GN7I/AAAAAAAAD_o/LY1JZDnq7ro/logo5.jpg'
|
|
category = 'history'
|
|
language = 'pl'
|
|
oldest_article = 8
|
|
remove_empty_feeds= True
|
|
no_stylesheets = True
|
|
use_embedded_content = True
|
|
max_articles_per_feed = 100
|
|
|
|
feeds = [(u'Wszystkie', u'http://www.historia.org.pl/index.php?format=feed&type=atom'),
|
|
(u'Wiadomości', u'http://www.historia.org.pl/index.php/wiadomosci.feed?type=atom'),
|
|
(u'Publikacje', u'http://www.historia.org.pl/index.php/publikacje.feed?type=atom'),
|
|
(u'Publicystyka', u'http://www.historia.org.pl/index.php/publicystyka.feed?type=atom'),
|
|
(u'Recenzje', u'http://historia.org.pl/index.php/recenzje.feed?type=atom'),
|
|
(u'Kultura i sztuka', u'http://www.historia.org.pl/index.php/kultura-i-sztuka.feed?type=atom'),
|
|
(u'Rekonstykcje', u'http://www.historia.org.pl/index.php/rekonstrukcje.feed?type=atom'),
|
|
(u'Projekty', u'http://www.historia.org.pl/index.php/projekty.feed?type=atom'),
|
|
(u'Konkursy'), (u'http://www.historia.org.pl/index.php/konkursy.feed?type=atom')]
|
|
|
|
|
|
def print_version(self, url):
|
|
return url + '?tmpl=component&print=1&layout=default&page=' |