mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Update Ambito
Fixes #1632816 [Updated recipe for Ambito.com](https://bugs.launchpad.net/calibre/+bug/1632816)
This commit is contained in:
parent
e1c0cbf9e4
commit
c06e8d6b20
@ -1,5 +1,5 @@
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2008-2015, Darko Miletic <darko.miletic at gmail.com>'
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2008-2016, Darko Miletic <darko.miletic at gmail.com>'
|
||||
'''
|
||||
ambito.com
|
||||
'''
|
||||
@ -8,19 +8,19 @@ from calibre.web.feeds.news import BasicNewsRecipe
|
||||
|
||||
|
||||
class Ambito(BasicNewsRecipe):
|
||||
title = 'Ambito.com'
|
||||
__author__ = 'Darko Miletic'
|
||||
description = 'Ambito.com con noticias del Diario Ambito Financiero de Buenos Aires'
|
||||
publisher = 'Editorial Nefir S.A.'
|
||||
category = 'news, politics, economy, finances, Argentina'
|
||||
oldest_article = 2
|
||||
no_stylesheets = True
|
||||
encoding = 'cp1252'
|
||||
masthead_url = 'http://www.ambito.com/img/logo.jpg'
|
||||
use_embedded_content = False
|
||||
remove_empty_feeds = True
|
||||
language = 'es_AR'
|
||||
publication_type = 'newsportal'
|
||||
title = 'Ambito.com'
|
||||
__author__ = 'Darko Miletic'
|
||||
description = 'Ambito.com con noticias del Diario Ambito Financiero de Buenos Aires'
|
||||
publisher = 'Editorial Nefir S.A.'
|
||||
category = 'news, politics, economy, finances, Argentina'
|
||||
oldest_article = 2
|
||||
no_stylesheets = True
|
||||
encoding = 'utf8'
|
||||
masthead_url = 'http://www.ambito.com/img/logo.jpg'
|
||||
use_embedded_content = False
|
||||
remove_empty_feeds = True
|
||||
language = 'es_AR'
|
||||
publication_type = 'newsportal'
|
||||
extra_css = """
|
||||
body{font-family: "Trebuchet MS",Verdana,sans-serif}
|
||||
.volanta{font-size: small}
|
||||
@ -28,24 +28,27 @@ class Ambito(BasicNewsRecipe):
|
||||
"""
|
||||
|
||||
conversion_options = {
|
||||
'comment': description, 'tags': category, 'publisher': publisher, 'language': language
|
||||
}
|
||||
'comment' : description
|
||||
, 'tags' : category
|
||||
, 'publisher' : publisher
|
||||
, 'language' : language
|
||||
}
|
||||
|
||||
keep_only_tags = [
|
||||
dict(attrs={'id': ['tituloDespliegue', 'imgDesp', 'textoDespliegue']})]
|
||||
remove_tags = [
|
||||
dict(name=['object', 'link', 'embed', 'iframe', 'meta', 'link'])]
|
||||
keep_only_tags = [
|
||||
dict(attrs={'class':['titulo-noticia','article-img']}),
|
||||
dict(attrs={'class': lambda x: x and 'despliegue-noticia' in x.split()})
|
||||
]
|
||||
remove_tags = [dict(name=['object','link','embed','iframe','meta','link'])]
|
||||
|
||||
feeds = [
|
||||
|
||||
(u'Principales Noticias', u'http://www.ambito.com/rss/noticiasp.asp'),
|
||||
(u'Economia', u'http://www.ambito.com/rss/noticias.asp?S=Econom%EDa'),
|
||||
(u'Politica', u'http://www.ambito.com/rss/noticias.asp?S=Pol%EDtica'),
|
||||
(u'Informacion General', u'http://www.ambito.com/rss/noticias.asp?S=Informaci%F3n%20General'),
|
||||
(u'Campo', u'http://www.ambito.com/rss/noticias.asp?S=Agro'),
|
||||
(u'Internacionales', u'http://www.ambito.com/rss/noticias.asp?S=Internacionales'),
|
||||
(u'Deportes', u'http://www.ambito.com/rss/noticias.asp?S=Deportes'),
|
||||
(u'Espectaculos', u'http://www.ambito.com/rss/noticias.asp?S=Espect%E1culos'),
|
||||
(u'Tecnologia', u'http://www.ambito.com/rss/noticias.asp?S=Tecnolog%EDa'),
|
||||
(u'Ambito Nacional', u'http://www.ambito.com/rss/noticias.asp?S=Ambito%20Nacional')
|
||||
]
|
||||
(u'Principales Noticias', u'http://www.ambito.com/rss/noticiasp.asp')
|
||||
,(u'Economia' , u'http://www.ambito.com/rss/noticias.asp?S=Econom%EDa')
|
||||
,(u'Politica' , u'http://www.ambito.com/rss/noticias.asp?S=Pol%EDtica')
|
||||
,(u'Informacion General' , u'http://www.ambito.com/rss/noticias.asp?S=Informaci%F3n%20General')
|
||||
,(u'Campo' , u'http://www.ambito.com/rss/noticias.asp?S=Agro')
|
||||
,(u'Internacionales' , u'http://www.ambito.com/rss/noticias.asp?S=Internacionales')
|
||||
,(u'Deportes' , u'http://www.ambito.com/rss/noticias.asp?S=Deportes')
|
||||
,(u'Espectaculos' , u'http://www.ambito.com/rss/noticias.asp?S=Espect%E1culos')
|
||||
,(u'Tecnologia' , u'http://www.ambito.com/rss/noticias.asp?S=Tecnolog%EDa')
|
||||
,(u'Ambito Nacional' , u'http://www.ambito.com/rss/noticias.asp?S=Ambito%20Nacional')
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user