mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #2137 (New recipes for Bosnian newspapers)
This commit is contained in:
parent
af9f8a47a5
commit
923671d402
BIN
src/calibre/gui2/images/news/dnevni_avaz.png
Normal file
BIN
src/calibre/gui2/images/news/dnevni_avaz.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 811 B |
BIN
src/calibre/gui2/images/news/glas_srpske.png
Normal file
BIN
src/calibre/gui2/images/news/glas_srpske.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 388 B |
@ -36,7 +36,7 @@ recipe_modules = ['recipe_' + r for r in (
|
||||
'el_universal', 'mediapart', 'wikinews_en', 'ecogeek', 'daily_mail',
|
||||
'new_york_review_of_books_no_sub', 'politico', 'adventuregamers',
|
||||
'mondedurable', 'instapaper', 'dnevnik_cro', 'vecernji_list',
|
||||
'nacional_cro', '24sata',
|
||||
'nacional_cro', '24sata', 'dnevni_avaz', 'glas_srpske',
|
||||
)]
|
||||
|
||||
import re, imp, inspect, time, os
|
||||
|
55
src/calibre/web/feeds/recipes/recipe_dnevni_avaz.py
Normal file
55
src/calibre/web/feeds/recipes/recipe_dnevni_avaz.py
Normal file
@ -0,0 +1,55 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
|
||||
|
||||
'''
|
||||
dnevniavaz.ba
|
||||
'''
|
||||
|
||||
import re
|
||||
from calibre.web.feeds.recipes import BasicNewsRecipe
|
||||
|
||||
class DnevniAvaz(BasicNewsRecipe):
|
||||
title = 'Dnevni Avaz'
|
||||
__author__ = 'Darko Miletic'
|
||||
description = 'Latest news from Bosnia'
|
||||
publisher = 'Dnevni Avaz'
|
||||
category = 'news, politics, Bosnia and Herzegovina'
|
||||
oldest_article = 2
|
||||
max_articles_per_feed = 100
|
||||
no_stylesheets = True
|
||||
encoding = 'utf-8'
|
||||
use_embedded_content = False
|
||||
remove_javascript = True
|
||||
cover_url = 'http://www.dnevniavaz.ba/img/logo.gif'
|
||||
lang = 'bs-BA'
|
||||
language = _('Bosnian')
|
||||
|
||||
extra_css = '@font-face {font-family: "serif1";src:url(res:///opt/sony/ebook/FONT/tt0011m_.ttf)} body{font-family: serif1, serif} .article_description{font-family: serif1, serif}'
|
||||
|
||||
html2lrf_options = [
|
||||
'--comment', description
|
||||
, '--category', category
|
||||
, '--publisher', publisher
|
||||
]
|
||||
|
||||
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"\noverride_css=" p {text-indent: 0em; margin-top: 0em; margin-bottom: 0.5em} img {margin-top: 0em; margin-bottom: 0.4em}"'
|
||||
|
||||
preprocess_regexps = [(re.compile(u'\u0110'), lambda match: u'\u00D0')]
|
||||
|
||||
keep_only_tags = [dict(name='div', attrs={'id':['fullarticle-title','fullarticle-leading','fullarticle-date','fullarticle-text','articleauthor']})]
|
||||
|
||||
remove_tags = [dict(name=['object','link','base'])]
|
||||
|
||||
feeds = [
|
||||
(u'Najnovije' , u'http://www.dnevniavaz.ba/rss/novo' )
|
||||
,(u'Najpopularnije', u'http://www.dnevniavaz.ba/rss/popularno')
|
||||
]
|
||||
|
||||
def preprocess_html(self, soup):
|
||||
soup.html['xml:lang'] = self.lang
|
||||
soup.html['lang'] = self.lang
|
||||
mtag = '<meta http-equiv="Content-Language" content="bs-BA"/>\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'
|
||||
soup.head.insert(0,mtag)
|
||||
return soup
|
96
src/calibre/web/feeds/recipes/recipe_glas_srpske.py
Normal file
96
src/calibre/web/feeds/recipes/recipe_glas_srpske.py
Normal file
@ -0,0 +1,96 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
|
||||
|
||||
'''
|
||||
glassrpske.com
|
||||
'''
|
||||
|
||||
import re
|
||||
from calibre.web.feeds.recipes import BasicNewsRecipe
|
||||
|
||||
class GlasSrpske(BasicNewsRecipe):
|
||||
title = 'Glas Srpske'
|
||||
__author__ = 'Darko Miletic'
|
||||
description = 'Latest news from republika srpska'
|
||||
publisher = 'GLAS SRPSKE'
|
||||
category = 'Novine, Dnevne novine, Vijesti, Novosti, Ekonomija, Sport, Crna Hronika, Banja Luka,, Republika Srpska, Bosna i Hercegovina'
|
||||
oldest_article = 2
|
||||
max_articles_per_feed = 100
|
||||
no_stylesheets = True
|
||||
encoding = 'utf-8'
|
||||
use_embedded_content = False
|
||||
remove_javascript = True
|
||||
cover_url = 'http://www.glassrpske.com/var/slike/glassrpske-logo.png'
|
||||
lang = 'sr-BA'
|
||||
language = _('Serbian')
|
||||
INDEX = 'http://www.glassrpske.com'
|
||||
|
||||
extra_css = '@font-face {font-family: "serif1";src:url(res:///opt/sony/ebook/FONT/tt0011m_.ttf)} body{font-family: serif1, serif} .article_description{font-family: serif1, serif}'
|
||||
|
||||
html2lrf_options = [
|
||||
'--comment', description
|
||||
, '--category', category
|
||||
, '--publisher', publisher
|
||||
]
|
||||
|
||||
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"\noverride_css=" p {text-indent: 0em; margin-top: 0em; margin-bottom: 0.5em} img {margin-top: 0em; margin-bottom: 0.4em}"'
|
||||
|
||||
preprocess_regexps = [(re.compile(u'\u0110'), lambda match: u'\u00D0')]
|
||||
|
||||
keep_only_tags = [dict(name='div', attrs={'class':'gl_cv paragraf'})]
|
||||
|
||||
remove_tags = [dict(name=['object','link','base'])]
|
||||
|
||||
feeds = [
|
||||
(u'Novosti' , u'http://www.glassrpske.com/vijest/2/novosti/lat/' )
|
||||
,(u'Drustvo' , u'http://www.glassrpske.com/vijest/3/drustvo/lat/' )
|
||||
,(u'Biznis' , u'http://www.glassrpske.com/vijest/4/ekonomija/lat/' )
|
||||
,(u'Kroz RS' , u'http://www.glassrpske.com/vijest/5/krozrs/lat/' )
|
||||
,(u'Hronika' , u'http://www.glassrpske.com/vijest/6/hronika/lat/' )
|
||||
,(u'Srbija' , u'http://www.glassrpske.com/vijest/8/srbija/lat/' )
|
||||
,(u'Region' , u'http://www.glassrpske.com/vijest/18/region/lat/' )
|
||||
,(u'Svijet' , u'http://www.glassrpske.com/vijest/12/svijet/lat/' )
|
||||
,(u'Kultura' , u'http://www.glassrpske.com/vijest/9/kultura/lat/' )
|
||||
,(u'Banja Luka', u'http://www.glassrpske.com/vijest/10/banjaluka/lat/')
|
||||
,(u'Jet Set' , u'http://www.glassrpske.com/vijest/11/jetset/lat/' )
|
||||
,(u'Muzika' , u'http://www.glassrpske.com/vijest/19/muzika/lat/' )
|
||||
,(u'Sport' , u'http://www.glassrpske.com/vijest/13/sport/lat/' )
|
||||
,(u'Kolumne' , u'http://www.glassrpske.com/vijest/16/kolumne/lat/' )
|
||||
,(u'Plus' , u'http://www.glassrpske.com/vijest/7/plus/lat/' )
|
||||
]
|
||||
|
||||
def preprocess_html(self, soup):
|
||||
soup.html['xml:lang'] = self.lang
|
||||
soup.html['lang'] = self.lang
|
||||
mtag = '<meta http-equiv="Content-Language" content="sr-BA"/>\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'
|
||||
soup.head.insert(0,mtag)
|
||||
return soup
|
||||
|
||||
def parse_index(self):
|
||||
totalfeeds = []
|
||||
lfeeds = self.get_feeds()
|
||||
for feedobj in lfeeds:
|
||||
feedtitle, feedurl = feedobj
|
||||
self.report_progress(0, _('Fetching feed')+' %s...'%(feedtitle if feedtitle else feedurl))
|
||||
articles = []
|
||||
soup = self.index_to_soup(feedurl)
|
||||
for item in soup.findAll('div', attrs={'class':'gl_rub'}):
|
||||
atag = item.find('a')
|
||||
ptag = item.find('p')
|
||||
datetag = item.find('span')
|
||||
url = self.INDEX + atag['href']
|
||||
title = self.tag_to_string(atag)
|
||||
description = self.tag_to_string(ptag)
|
||||
date,sep,rest = self.tag_to_string(ptag).partition('|')
|
||||
articles.append({
|
||||
'title' :title
|
||||
,'date' :date
|
||||
,'url' :url
|
||||
,'description':description
|
||||
})
|
||||
totalfeeds.append((feedtitle, articles))
|
||||
return totalfeeds
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user