mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
21 lines
564 B
Plaintext
21 lines
564 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class AdvancedUserRecipe1295262156(BasicNewsRecipe):
|
|
title = u'kath.net'
|
|
__author__ = 'Bobus'
|
|
description = u'Katholische Nachrichten'
|
|
oldest_article = 7
|
|
language = 'de'
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
auto_cleanup = True
|
|
encoding='iso-8859-1'
|
|
|
|
feeds = [(u'kath.net', u'http://www.kath.net/2005/xml/index.xml')]
|
|
|
|
def print_version(self, url):
|
|
return url+"/print/yes"
|
|
|
|
extra_css = 'td.textb {font-size: medium;}'
|
|
|