mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Historia_org_pl(BasicNewsRecipe):
|
|
title = u'Historia.org.pl'
|
|
__author__ = 'fenuks'
|
|
description = u'Artykuły dotyczące historii w układzie epok i tematów, forum. Najlepsza strona historii. Matura z historii i egzamin gimnazjalny z historii.'
|
|
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
|
|
ignore_duplicate_articles = {'title', 'url'}
|
|
|
|
|
|
feeds = [(u'Wszystkie', u'http://historia.org.pl/feed/'),
|
|
(u'Wiadomości', u'http://historia.org.pl/Kategoria/wiadomosci/feed/'),
|
|
(u'Publikacje', u'http://historia.org.pl/Kategoria/artykuly/feed/'),
|
|
(u'Publicystyka', u'http://historia.org.pl/Kategoria/publicystyka/feed/'),
|
|
(u'Recenzje', u'http://historia.org.pl/Kategoria/recenzje/feed/'),
|
|
(u'Projekty', u'http://historia.org.pl/Kategoria/projekty/feed/'),]
|
|
|
|
|
|
def print_version(self, url):
|
|
return url + '?tmpl=component&print=1&layout=default&page=' |