mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
48 lines
1.8 KiB
Plaintext
48 lines
1.8 KiB
Plaintext
# -*- coding: utf-8 -*-
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2008-2012, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
pescanik.net
|
|
'''
|
|
|
|
import re
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Pescanik(BasicNewsRecipe):
|
|
title = u'Peščanik'
|
|
__author__ = 'Darko Miletic'
|
|
description = u'Peščanik je udruženje građana osnovano 2006. godine. Glavni proizvod Peščanika je radio emisija koja je emitovana na Radiju B92 od 02.02.2000. do 16.06.2011, a od septembra 2011. se emituje na osam radio stanica u Srbiji, Crnoj Gori i BiH' # noqa
|
|
publisher = u'Peščanik'
|
|
category = 'news, politics, Serbia'
|
|
oldest_article = 10
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
encoding = 'utf-8'
|
|
language = 'sr'
|
|
publication_type = 'newsportal'
|
|
masthead_url = 'http://pescanik.net/wp-content/uploads/2011/10/logo1.png'
|
|
extra_css = """
|
|
@font-face {font-family: "sans1";src:url(res:///opt/sony/ebook/FONT/tt0003m_.ttf)}
|
|
body{font-family: Verdana,Arial,Tahoma,sans1,sans-serif}
|
|
#BlogTitle{font-size: xx-large; font-weight: bold}
|
|
"""
|
|
|
|
conversion_options = {
|
|
'comment': description, 'tags': category, 'publisher': publisher, 'language': language
|
|
}
|
|
|
|
preprocess_regexps = [(re.compile(u'\u0110'), lambda match: u'\u00D0')]
|
|
remove_tags = [
|
|
dict(name=['object', 'link', 'meta', 'script', 'iframe', 'embed'])]
|
|
keep_only_tags = [
|
|
dict(attrs={'id': ['BlogTitle', 'BlogDate', 'BlogContent']})]
|
|
feeds = [
|
|
(u'Autori', u'http://pescanik.net/category/autori/feed/'),
|
|
(u'Prevodi', u'http://pescanik.net/category/prevodi/feed/')
|
|
]
|
|
|
|
def print_version(self, url):
|
|
return url + 'print/'
|