mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
48 lines
1.6 KiB
Plaintext
48 lines
1.6 KiB
Plaintext
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2009-2011, Darko Miletic <darko.miletic at gmail.com>'
|
|
|
|
'''
|
|
vijesti.me
|
|
'''
|
|
|
|
import re
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Vijesti(BasicNewsRecipe):
|
|
title = 'Vijesti'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'News from Montenegro'
|
|
publisher = 'Daily Press Vijesti'
|
|
category = 'news, politics, Montenegro'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 150
|
|
no_stylesheets = True
|
|
encoding = 'utf8'
|
|
use_embedded_content = False
|
|
language = 'sr'
|
|
publication_type = 'newspaper'
|
|
extra_css = """
|
|
@font-face {font-family: "serif1";src:url(res:///opt/sony/ebook/FONT/tt0011m_.ttf)}
|
|
@font-face {font-family: "sans1";src:url(res:///opt/sony/ebook/FONT/tt0003m_.ttf)}
|
|
body{font-family: Georgia,"Times New Roman",Times,serif1,serif}
|
|
.articledescription,.article,.chapter{font-family: sans1, sans-serif}
|
|
"""
|
|
|
|
conversion_options = {
|
|
'comment': description, 'tags': category, 'publisher': publisher, 'language': language
|
|
}
|
|
|
|
preprocess_regexps = [(re.compile(u'\u0110'), lambda match: u'\u00D0')]
|
|
|
|
keep_only_tags = [
|
|
dict(name='div', attrs={'id': ['article_intro_text', 'article_text']})]
|
|
|
|
remove_tags = [dict(name=['object', 'link', 'embed', 'form'])]
|
|
|
|
feeds = [(u'Sve vijesti', u'http://www.vijesti.me/rss/')]
|
|
|
|
def preprocess_html(self, soup):
|
|
return self.adeify_images(soup)
|