mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2010, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
www.aif.ru
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class AIF_ru(BasicNewsRecipe):
|
|
title = 'Arguments & Facts - Russian'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'News from Russia'
|
|
publisher = 'AIF'
|
|
category = 'news, politics, Russia'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
encoding = 'cp1251'
|
|
language = 'ru'
|
|
publication_type = 'magazine'
|
|
extra_css = ' @font-face {font-family: "sans1";src:url(res:///opt/sony/ebook/FONT/tt0003m_.ttf)} body{font-family: Verdana,Arial,Helvetica,sans1,sans-serif} '
|
|
keep_only_tags = [dict(name='div',attrs={'id':'inner'})]
|
|
remove_tags = [
|
|
dict(name=['iframe','object','link','base','input','img'])
|
|
,dict(name='div',attrs={'class':'photo'})
|
|
,dict(name='p',attrs={'class':'resizefont'})
|
|
]
|
|
|
|
feeds = [(u'News', u'http://www.aif.ru/rss/all.php')]
|
|
|