mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-05 08:40:13 -04:00
Sync to trunk.
This commit is contained in:
commit
17e95213ad
@ -19,7 +19,7 @@ from modulegraph.find_modules import find_modules
|
|||||||
PYTHON = '/Library/Frameworks/Python.framework/Versions/Current/bin/python'
|
PYTHON = '/Library/Frameworks/Python.framework/Versions/Current/bin/python'
|
||||||
|
|
||||||
class BuildAPP(py2app):
|
class BuildAPP(py2app):
|
||||||
QT_PREFIX = '/Users/kovid/qt'
|
QT_PREFIX = '/Volumes/sw/qt'
|
||||||
LOADER_TEMPLATE = \
|
LOADER_TEMPLATE = \
|
||||||
r'''#!/usr/bin/env python
|
r'''#!/usr/bin/env python
|
||||||
import os, sys, glob
|
import os, sys, glob
|
||||||
|
@ -2,7 +2,7 @@ __license__ = 'GPL v3'
|
|||||||
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
||||||
__docformat__ = 'restructuredtext en'
|
__docformat__ = 'restructuredtext en'
|
||||||
__appname__ = 'calibre'
|
__appname__ = 'calibre'
|
||||||
__version__ = '0.6.0b2'
|
__version__ = '0.6.0b3'
|
||||||
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
@ -24,12 +24,12 @@ class PRS505(CLI, Device):
|
|||||||
|
|
||||||
VENDOR_ID = [0x054c] #: SONY Vendor Id
|
VENDOR_ID = [0x054c] #: SONY Vendor Id
|
||||||
PRODUCT_ID = [0x031e] #: Product Id for the PRS-505
|
PRODUCT_ID = [0x031e] #: Product Id for the PRS-505
|
||||||
BCD = [0x229] #: Needed to disambiguate 505 and 700 on linux
|
BCD = [0x229, 0x1000] #: Needed to disambiguate 505 and 700 on linux
|
||||||
|
|
||||||
VENDOR_NAME = 'SONY'
|
VENDOR_NAME = 'SONY'
|
||||||
WINDOWS_MAIN_MEM = 'PRS-505'
|
WINDOWS_MAIN_MEM = 'PRS-505'
|
||||||
WINDOWS_CARD_A_MEM = 'PRS-505/UC:MS'
|
WINDOWS_CARD_A_MEM = ['PRS-505/UC:MS', 'PRS-505/CE:MS']
|
||||||
WINDOWS_CARD_B_MEM = 'PRS-505/UC:SD'
|
WINDOWS_CARD_B_MEM = ['PRS-505/UC:SD', 'PRS-505/CE:SD']
|
||||||
|
|
||||||
OSX_MAIN_MEM = 'Sony PRS-505/UC Media'
|
OSX_MAIN_MEM = 'Sony PRS-505/UC Media'
|
||||||
OSX_CARD_A_MEM = 'Sony PRS-505/UC:MS Media'
|
OSX_CARD_A_MEM = 'Sony PRS-505/UC:MS Media'
|
||||||
|
@ -179,13 +179,19 @@ class Device(DeviceConfig, DevicePlugin):
|
|||||||
|
|
||||||
return (msz, casz, cbsz)
|
return (msz, casz, cbsz)
|
||||||
|
|
||||||
def windows_match_device(self, pnp_id, device_id):
|
def windows_match_device(self, drive, attr):
|
||||||
pnp_id = pnp_id.upper()
|
pnp_id = str(drive.PNPDeviceID).upper()
|
||||||
|
device_id = getattr(self, attr)
|
||||||
|
if device_id is None or \
|
||||||
|
'VEN_' + str(self.VENDOR_NAME).upper() not in pnp_id:
|
||||||
|
return False
|
||||||
|
if isinstance(device_id, basestring):
|
||||||
|
device_id = [device_id]
|
||||||
|
|
||||||
if device_id and pnp_id is not None:
|
for x in device_id:
|
||||||
device_id = device_id.upper()
|
x = x.upper()
|
||||||
|
|
||||||
if 'VEN_' + self.VENDOR_NAME in pnp_id and 'PROD_' + device_id in pnp_id:
|
if 'PROD_' + x in pnp_id:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
return False
|
return False
|
||||||
@ -211,18 +217,32 @@ class Device(DeviceConfig, DevicePlugin):
|
|||||||
return drives
|
return drives
|
||||||
|
|
||||||
def open_windows(self):
|
def open_windows(self):
|
||||||
|
|
||||||
|
def matches_q(drive, attr):
|
||||||
|
q = getattr(self, attr)
|
||||||
|
if q is None: return False
|
||||||
|
if isinstance(q, basestring):
|
||||||
|
q = [q]
|
||||||
|
pnp = str(drive.PNPDeviceID)
|
||||||
|
for x in q:
|
||||||
|
if x in pnp:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
time.sleep(6)
|
time.sleep(6)
|
||||||
drives = {}
|
drives = {}
|
||||||
wmi = __import__('wmi', globals(), locals(), [], -1)
|
wmi = __import__('wmi', globals(), locals(), [], -1)
|
||||||
c = wmi.WMI(find_classes=False)
|
c = wmi.WMI(find_classes=False)
|
||||||
for drive in c.Win32_DiskDrive():
|
for drive in c.Win32_DiskDrive():
|
||||||
if self.windows_match_device(str(drive.PNPDeviceID), self.WINDOWS_CARD_A_MEM):
|
if self.windows_match_device(drive, 'WINDOWS_CARD_A_MEM'):
|
||||||
drives['carda'] = self.windows_get_drive_prefix(drive)
|
drives['carda'] = self.windows_get_drive_prefix(drive)
|
||||||
elif self.windows_match_device(str(drive.PNPDeviceID), self.WINDOWS_CARD_B_MEM):
|
elif self.windows_match_device(drive, 'WINDOWS_CARD_B_MEM'):
|
||||||
drives['cardb'] = self.windows_get_drive_prefix(drive)
|
drives['cardb'] = self.windows_get_drive_prefix(drive)
|
||||||
elif self.windows_match_device(str(drive.PNPDeviceID), self.WINDOWS_MAIN_MEM):
|
elif self.windows_match_device(drive, 'WINDOWS_MAIN_MEM'):
|
||||||
drives['main'] = self.windows_get_drive_prefix(drive)
|
drives['main'] = self.windows_get_drive_prefix(drive)
|
||||||
if 'main' in drives.keys() and 'carda' in drives.keys() and 'cardb' in drives.keys():
|
if 'main' in drives.keys() and 'carda' in drives.keys() and \
|
||||||
|
'cardb' in drives.keys():
|
||||||
break
|
break
|
||||||
|
|
||||||
if 'main' not in drives:
|
if 'main' not in drives:
|
||||||
|
BIN
src/calibre/gui2/images/news/elperiodico_catalan.png
Normal file
BIN
src/calibre/gui2/images/news/elperiodico_catalan.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 693 B |
BIN
src/calibre/gui2/images/news/elperiodico_spanish.png
Normal file
BIN
src/calibre/gui2/images/news/elperiodico_spanish.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 693 B |
BIN
src/calibre/gui2/images/news/expansion_spanish.png
Normal file
BIN
src/calibre/gui2/images/news/expansion_spanish.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 806 B |
@ -45,7 +45,9 @@ recipe_modules = ['recipe_' + r for r in (
|
|||||||
'straitstimes', 'index_hu', 'pcworld_hu', 'hrt', 'rts',
|
'straitstimes', 'index_hu', 'pcworld_hu', 'hrt', 'rts',
|
||||||
'h1', 'h2', 'h3', 'phd_comics', 'woz_die', 'elektrolese',
|
'h1', 'h2', 'h3', 'phd_comics', 'woz_die', 'elektrolese',
|
||||||
'climate_progress', 'carta', 'slashdot', 'publico',
|
'climate_progress', 'carta', 'slashdot', 'publico',
|
||||||
'the_budget_fashionista'
|
'the_budget_fashionista', 'elperiodico_catalan',
|
||||||
|
'elperiodico_spanish', 'expansion_spanish', 'lavanguardia',
|
||||||
|
'marca',
|
||||||
)]
|
)]
|
||||||
|
|
||||||
import re, imp, inspect, time, os
|
import re, imp, inspect, time, os
|
||||||
|
55
src/calibre/web/feeds/recipes/recipe_elperiodico_catalan.py
Normal file
55
src/calibre/web/feeds/recipes/recipe_elperiodico_catalan.py
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
__license__ = 'GPL v3'
|
||||||
|
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
|
||||||
|
'''
|
||||||
|
elperiodico.cat
|
||||||
|
'''
|
||||||
|
|
||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
from calibre.ebooks.BeautifulSoup import Tag
|
||||||
|
|
||||||
|
class ElPeriodico_cat(BasicNewsRecipe):
|
||||||
|
title = 'El Periodico de Catalunya'
|
||||||
|
__author__ = 'Darko Miletic'
|
||||||
|
description = 'Noticias desde Catalunya'
|
||||||
|
publisher = 'elperiodico.cat'
|
||||||
|
category = 'news, politics, Spain, Catalunya'
|
||||||
|
oldest_article = 2
|
||||||
|
max_articles_per_feed = 100
|
||||||
|
no_stylesheets = True
|
||||||
|
use_embedded_content = False
|
||||||
|
delay = 1
|
||||||
|
encoding = 'cp1252'
|
||||||
|
language = _('Catalan')
|
||||||
|
|
||||||
|
html2lrf_options = [
|
||||||
|
'--comment' , description
|
||||||
|
, '--category' , category
|
||||||
|
, '--publisher', publisher
|
||||||
|
]
|
||||||
|
|
||||||
|
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"'
|
||||||
|
|
||||||
|
feeds = [(u"Tota l'edició", u'http://www.elperiodico.cat/rss.asp?id=46')]
|
||||||
|
|
||||||
|
|
||||||
|
keep_only_tags = [dict(name='div', attrs={'id':'noticia'})]
|
||||||
|
|
||||||
|
remove_tags = [
|
||||||
|
dict(name=['object','link','script'])
|
||||||
|
,dict(name='ul',attrs={'class':'herramientasDeNoticia'})
|
||||||
|
,dict(name='div', attrs={'id':'inferiores'})
|
||||||
|
]
|
||||||
|
|
||||||
|
def print_version(self, url):
|
||||||
|
return url.replace('/default.asp?','/print.asp?')
|
||||||
|
|
||||||
|
def preprocess_html(self, soup):
|
||||||
|
mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=utf-8")])
|
||||||
|
soup.head.insert(0,mcharset)
|
||||||
|
for item in soup.findAll(style=True):
|
||||||
|
del item['style']
|
||||||
|
return soup
|
||||||
|
|
55
src/calibre/web/feeds/recipes/recipe_elperiodico_spanish.py
Normal file
55
src/calibre/web/feeds/recipes/recipe_elperiodico_spanish.py
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
__license__ = 'GPL v3'
|
||||||
|
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
|
||||||
|
'''
|
||||||
|
elperiodico.com
|
||||||
|
'''
|
||||||
|
|
||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
from calibre.ebooks.BeautifulSoup import Tag
|
||||||
|
|
||||||
|
class ElPeriodico_esp(BasicNewsRecipe):
|
||||||
|
title = 'El Periodico de Catalunya'
|
||||||
|
__author__ = 'Darko Miletic'
|
||||||
|
description = 'Noticias desde Catalunya'
|
||||||
|
publisher = 'elperiodico.com'
|
||||||
|
category = 'news, politics, Spain, Catalunya'
|
||||||
|
oldest_article = 2
|
||||||
|
max_articles_per_feed = 100
|
||||||
|
no_stylesheets = True
|
||||||
|
use_embedded_content = False
|
||||||
|
delay = 1
|
||||||
|
encoding = 'cp1252'
|
||||||
|
language = _('Spanish')
|
||||||
|
|
||||||
|
html2lrf_options = [
|
||||||
|
'--comment' , description
|
||||||
|
, '--category' , category
|
||||||
|
, '--publisher', publisher
|
||||||
|
]
|
||||||
|
|
||||||
|
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"'
|
||||||
|
|
||||||
|
feeds = [(u"Toda la edición", u'http://www.elperiodico.com/rss.asp?id=46')]
|
||||||
|
|
||||||
|
|
||||||
|
keep_only_tags = [dict(name='div', attrs={'id':'noticia'})]
|
||||||
|
|
||||||
|
remove_tags = [
|
||||||
|
dict(name=['object','link','script'])
|
||||||
|
,dict(name='ul',attrs={'class':'herramientasDeNoticia'})
|
||||||
|
,dict(name='div', attrs={'id':'inferiores'})
|
||||||
|
]
|
||||||
|
|
||||||
|
def print_version(self, url):
|
||||||
|
return url.replace('/default.asp?','/print.asp?')
|
||||||
|
|
||||||
|
def preprocess_html(self, soup):
|
||||||
|
mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=utf-8")])
|
||||||
|
soup.head.insert(0,mcharset)
|
||||||
|
for item in soup.findAll(style=True):
|
||||||
|
del item['style']
|
||||||
|
return soup
|
||||||
|
|
58
src/calibre/web/feeds/recipes/recipe_expansion_spanish.py
Normal file
58
src/calibre/web/feeds/recipes/recipe_expansion_spanish.py
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
__license__ = 'GPL v3'
|
||||||
|
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
|
||||||
|
'''
|
||||||
|
www.expansion.com
|
||||||
|
'''
|
||||||
|
|
||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
from calibre.ebooks.BeautifulSoup import Tag
|
||||||
|
|
||||||
|
class Expansion(BasicNewsRecipe):
|
||||||
|
title = 'Diario Expansion'
|
||||||
|
__author__ = 'Darko Miletic'
|
||||||
|
description = 'Lider de informacion de mercados, economica y politica'
|
||||||
|
publisher = 'expansion.com'
|
||||||
|
category = 'news, politics, Spain'
|
||||||
|
oldest_article = 2
|
||||||
|
max_articles_per_feed = 100
|
||||||
|
no_stylesheets = True
|
||||||
|
use_embedded_content = False
|
||||||
|
delay = 1
|
||||||
|
encoding = 'iso-8859-15'
|
||||||
|
language = _('Spanish')
|
||||||
|
direction = 'ltr'
|
||||||
|
|
||||||
|
html2lrf_options = [
|
||||||
|
'--comment' , description
|
||||||
|
, '--category' , category
|
||||||
|
, '--publisher', publisher
|
||||||
|
]
|
||||||
|
|
||||||
|
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"'
|
||||||
|
|
||||||
|
feeds = [
|
||||||
|
(u'Ultimas noticias', u'http://rss.expansion.com/rss/descarga.htm?data2=178')
|
||||||
|
,(u'Temas del dia' , u'http://rss.expansion.com/rss/descarga.htm?data2=178')
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
keep_only_tags = [dict(name='div', attrs={'id':'principal'})]
|
||||||
|
|
||||||
|
remove_tags = [
|
||||||
|
dict(name=['object','link','script'])
|
||||||
|
,dict(name='div', attrs={'class':['utilidades','tit_relacionadas']})
|
||||||
|
]
|
||||||
|
|
||||||
|
remove_tags_after = [dict(name='div', attrs={'class':'tit_relacionadas'})]
|
||||||
|
|
||||||
|
def preprocess_html(self, soup):
|
||||||
|
soup.html['dir' ] = self.direction
|
||||||
|
mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=utf-8")])
|
||||||
|
soup.head.insert(0,mcharset)
|
||||||
|
for item in soup.findAll(style=True):
|
||||||
|
del item['style']
|
||||||
|
return soup
|
||||||
|
|
@ -6,6 +6,7 @@ __copyright__ = '2008-2009, Darko Miletic <darko.miletic at gmail.com>'
|
|||||||
harpers.org
|
harpers.org
|
||||||
'''
|
'''
|
||||||
from calibre.web.feeds.news import BasicNewsRecipe
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
from calibre.ebooks.BeautifulSoup import Tag
|
||||||
|
|
||||||
class Harpers(BasicNewsRecipe):
|
class Harpers(BasicNewsRecipe):
|
||||||
title = u"Harper's Magazine"
|
title = u"Harper's Magazine"
|
||||||
@ -18,23 +19,30 @@ class Harpers(BasicNewsRecipe):
|
|||||||
max_articles_per_feed = 100
|
max_articles_per_feed = 100
|
||||||
no_stylesheets = True
|
no_stylesheets = True
|
||||||
use_embedded_content = False
|
use_embedded_content = False
|
||||||
remove_javascript = True
|
|
||||||
|
|
||||||
html2lrf_options = [
|
html2lrf_options = [
|
||||||
'--comment', description
|
'--comment', description
|
||||||
, '--category', category
|
, '--category', category
|
||||||
, '--publisher', publisher
|
, '--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}"'
|
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}"'
|
||||||
|
|
||||||
|
|
||||||
keep_only_tags = [ dict(name='div', attrs={'id':'cached'}) ]
|
keep_only_tags = [ dict(name='div', attrs={'id':'cached'}) ]
|
||||||
remove_tags = [
|
remove_tags = [
|
||||||
dict(name='table', attrs={'class':'rcnt'})
|
dict(name='table', attrs={'class':['rcnt','rcnt topline']})
|
||||||
,dict(name='table', attrs={'class':'rcnt topline'})
|
|
||||||
,dict(name=['link','object','embed'])
|
,dict(name=['link','object','embed'])
|
||||||
]
|
]
|
||||||
|
|
||||||
feeds = [(u"Harper's Magazine", u'http://www.harpers.org/rss/frontpage-rss20.xml')]
|
feeds = [(u"Harper's Magazine", u'http://www.harpers.org/rss/frontpage-rss20.xml')]
|
||||||
|
|
||||||
|
def preprocess_html(self, soup):
|
||||||
|
mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=utf-8")])
|
||||||
|
soup.head.insert(1,mcharset)
|
||||||
|
for item in soup.findAll(style=True):
|
||||||
|
del item['style']
|
||||||
|
for item in soup.findAll(xmlns=True):
|
||||||
|
del item['xmlns']
|
||||||
|
return soup
|
||||||
|
|
||||||
|
@ -9,40 +9,38 @@ images and pdf's are ignored
|
|||||||
'''
|
'''
|
||||||
|
|
||||||
from calibre import strftime
|
from calibre import strftime
|
||||||
|
|
||||||
from calibre.web.feeds.news import BasicNewsRecipe
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
from calibre.ebooks.BeautifulSoup import Tag
|
||||||
|
|
||||||
class Harpers_full(BasicNewsRecipe):
|
class Harpers_full(BasicNewsRecipe):
|
||||||
title = u"Harper's Magazine - articles from printed edition"
|
title = u"Harper's Magazine - articles from printed edition"
|
||||||
__author__ = u'Darko Miletic'
|
__author__ = u'Darko Miletic'
|
||||||
description = u"Harper's Magazine: Founded June 1850."
|
description = u"Harper's Magazine: Founded June 1850."
|
||||||
publisher = "Harpers's"
|
publisher = "Harpers's"
|
||||||
category = 'news, politics, USA'
|
category = 'news, politics, USA'
|
||||||
oldest_article = 30
|
oldest_article = 30
|
||||||
max_articles_per_feed = 100
|
max_articles_per_feed = 100
|
||||||
no_stylesheets = True
|
no_stylesheets = True
|
||||||
use_embedded_content = False
|
use_embedded_content = False
|
||||||
simultaneous_downloads = 1
|
|
||||||
delay = 1
|
delay = 1
|
||||||
language = _('English')
|
language = _('English')
|
||||||
needs_subscription = True
|
needs_subscription = True
|
||||||
INDEX = strftime('http://www.harpers.org/archive/%Y/%m')
|
INDEX = strftime('http://www.harpers.org/archive/%Y/%m')
|
||||||
LOGIN = 'http://www.harpers.org'
|
LOGIN = 'http://www.harpers.org'
|
||||||
cover_url = strftime('http://www.harpers.org/media/pages/%Y/%m/gif/0001.gif')
|
cover_url = strftime('http://www.harpers.org/media/pages/%Y/%m/gif/0001.gif')
|
||||||
remove_javascript = True
|
|
||||||
|
|
||||||
html2lrf_options = [
|
html2lrf_options = [
|
||||||
'--comment', description
|
'--comment', description
|
||||||
, '--category', category
|
, '--category', category
|
||||||
, '--publisher', publisher
|
, '--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}"'
|
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}"'
|
||||||
|
|
||||||
keep_only_tags = [ dict(name='div', attrs={'id':'cached'}) ]
|
keep_only_tags = [ dict(name='div', attrs={'id':'cached'}) ]
|
||||||
remove_tags = [
|
remove_tags = [
|
||||||
dict(name='table', attrs={'class':'rcnt'})
|
dict(name='table', attrs={'class':['rcnt','rcnt topline']})
|
||||||
,dict(name='table', attrs={'class':'rcnt topline'})
|
,dict(name='link')
|
||||||
]
|
]
|
||||||
|
|
||||||
def get_browser(self):
|
def get_browser(self):
|
||||||
@ -54,13 +52,13 @@ class Harpers_full(BasicNewsRecipe):
|
|||||||
br['password'] = self.password
|
br['password'] = self.password
|
||||||
br.submit()
|
br.submit()
|
||||||
return br
|
return br
|
||||||
|
|
||||||
def parse_index(self):
|
def parse_index(self):
|
||||||
articles = []
|
articles = []
|
||||||
print 'Processing ' + self.INDEX
|
print 'Processing ' + self.INDEX
|
||||||
soup = self.index_to_soup(self.INDEX)
|
soup = self.index_to_soup(self.INDEX)
|
||||||
for item in soup.findAll('div', attrs={'class':'title'}):
|
for item in soup.findAll('div', attrs={'class':'title'}):
|
||||||
text_link = item.parent.find('img',attrs={'alt':'Text'})
|
text_link = item.parent.find('img',attrs={'alt':'Text'})
|
||||||
if text_link:
|
if text_link:
|
||||||
url = self.LOGIN + item.a['href']
|
url = self.LOGIN + item.a['href']
|
||||||
title = item.a.contents[0]
|
title = item.a.contents[0]
|
||||||
@ -72,4 +70,12 @@ class Harpers_full(BasicNewsRecipe):
|
|||||||
,'description':''
|
,'description':''
|
||||||
})
|
})
|
||||||
return [(soup.head.title.string, articles)]
|
return [(soup.head.title.string, articles)]
|
||||||
|
|
||||||
|
def preprocess_html(self, soup):
|
||||||
|
mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=utf-8")])
|
||||||
|
soup.head.insert(1,mcharset)
|
||||||
|
for item in soup.findAll(style=True):
|
||||||
|
del item['style']
|
||||||
|
for item in soup.findAll(xmlns=True):
|
||||||
|
del item['xmlns']
|
||||||
|
return soup
|
||||||
|
69
src/calibre/web/feeds/recipes/recipe_lavanguardia.py
Normal file
69
src/calibre/web/feeds/recipes/recipe_lavanguardia.py
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
__license__ = 'GPL v3'
|
||||||
|
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
|
||||||
|
'''
|
||||||
|
www.lavanguardia.es
|
||||||
|
'''
|
||||||
|
|
||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
from calibre.ebooks.BeautifulSoup import Tag
|
||||||
|
|
||||||
|
class LaVanguardia(BasicNewsRecipe):
|
||||||
|
title = 'La Vanguardia Digital'
|
||||||
|
__author__ = 'Darko Miletic'
|
||||||
|
description = u'Noticias desde España'
|
||||||
|
publisher = 'La Vanguardia'
|
||||||
|
category = 'news, politics, Spain'
|
||||||
|
oldest_article = 2
|
||||||
|
max_articles_per_feed = 100
|
||||||
|
no_stylesheets = True
|
||||||
|
use_embedded_content = False
|
||||||
|
delay = 1
|
||||||
|
encoding = 'cp1252'
|
||||||
|
language = _('Spanish')
|
||||||
|
direction = 'ltr'
|
||||||
|
|
||||||
|
html2lrf_options = [
|
||||||
|
'--comment' , description
|
||||||
|
, '--category' , category
|
||||||
|
, '--publisher', publisher
|
||||||
|
]
|
||||||
|
|
||||||
|
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"'
|
||||||
|
|
||||||
|
feeds = [
|
||||||
|
(u'Ciudadanos' , u'http://feeds.feedburner.com/lavanguardia/ciudadanos' )
|
||||||
|
,(u'Cultura' , u'http://feeds.feedburner.com/lavanguardia/cultura' )
|
||||||
|
,(u'Deportes' , u'http://feeds.feedburner.com/lavanguardia/deportes' )
|
||||||
|
,(u'Economia' , u'http://feeds.feedburner.com/lavanguardia/economia' )
|
||||||
|
,(u'El lector opina' , u'http://feeds.feedburner.com/lavanguardia/lectoropina' )
|
||||||
|
,(u'Gente y TV' , u'http://feeds.feedburner.com/lavanguardia/gente' )
|
||||||
|
,(u'Internacional' , u'http://feeds.feedburner.com/lavanguardia/internacional')
|
||||||
|
,(u'Internet y tecnologia', u'http://feeds.feedburner.com/lavanguardia/internet' )
|
||||||
|
,(u'Motor' , u'http://feeds.feedburner.com/lavanguardia/motor' )
|
||||||
|
,(u'Politica' , u'http://feeds.feedburner.com/lavanguardia/politica' )
|
||||||
|
,(u'Sucessos' , u'http://feeds.feedburner.com/lavanguardia/sucesos' )
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
keep_only_tags = [
|
||||||
|
dict(name='div', attrs={'class':'element1_3'})
|
||||||
|
]
|
||||||
|
|
||||||
|
remove_tags = [
|
||||||
|
dict(name=['object','link','script'])
|
||||||
|
,dict(name='div', attrs={'class':['colC','peu']})
|
||||||
|
]
|
||||||
|
|
||||||
|
remove_tags_after = [dict(name='div', attrs={'class':'text'})]
|
||||||
|
|
||||||
|
def preprocess_html(self, soup):
|
||||||
|
soup.html['dir' ] = self.direction
|
||||||
|
mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=utf-8")])
|
||||||
|
soup.head.insert(0,mcharset)
|
||||||
|
for item in soup.findAll(style=True):
|
||||||
|
del item['style']
|
||||||
|
return soup
|
||||||
|
|
55
src/calibre/web/feeds/recipes/recipe_marca.py
Normal file
55
src/calibre/web/feeds/recipes/recipe_marca.py
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
__license__ = 'GPL v3'
|
||||||
|
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
|
||||||
|
'''
|
||||||
|
www.marca.com
|
||||||
|
'''
|
||||||
|
|
||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
from calibre.ebooks.BeautifulSoup import Tag
|
||||||
|
|
||||||
|
class Marca(BasicNewsRecipe):
|
||||||
|
title = 'Marca'
|
||||||
|
__author__ = 'Darko Miletic'
|
||||||
|
description = 'Noticias deportivas'
|
||||||
|
publisher = 'marca.com'
|
||||||
|
category = 'news, sports, Spain'
|
||||||
|
oldest_article = 2
|
||||||
|
max_articles_per_feed = 100
|
||||||
|
no_stylesheets = True
|
||||||
|
use_embedded_content = False
|
||||||
|
delay = 1
|
||||||
|
encoding = 'iso-8859-15'
|
||||||
|
language = _('Spanish')
|
||||||
|
direction = 'ltr'
|
||||||
|
|
||||||
|
html2lrf_options = [
|
||||||
|
'--comment' , description
|
||||||
|
, '--category' , category
|
||||||
|
, '--publisher', publisher
|
||||||
|
]
|
||||||
|
|
||||||
|
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"'
|
||||||
|
|
||||||
|
feeds = [(u'Portada', u'http://rss.marca.com/rss/descarga.htm?data2=425')]
|
||||||
|
|
||||||
|
keep_only_tags = [dict(name='div', attrs={'class':['cab_articulo','col_izq']})]
|
||||||
|
|
||||||
|
remove_tags = [
|
||||||
|
dict(name=['object','link','script'])
|
||||||
|
,dict(name='div', attrs={'class':['colC','peu']})
|
||||||
|
,dict(name='div', attrs={'class':['utilidades estirar','bloque_int_corr estirar']})
|
||||||
|
]
|
||||||
|
|
||||||
|
remove_tags_after = [dict(name='div', attrs={'class':'bloque_int_corr estirar'})]
|
||||||
|
|
||||||
|
def preprocess_html(self, soup):
|
||||||
|
soup.html['dir' ] = self.direction
|
||||||
|
mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=utf-8")])
|
||||||
|
soup.head.insert(0,mcharset)
|
||||||
|
for item in soup.findAll(style=True):
|
||||||
|
del item['style']
|
||||||
|
return soup
|
||||||
|
|
@ -45,7 +45,7 @@ LANGUAGE_CODE = 'en-us'
|
|||||||
|
|
||||||
# If you set this to False, Django will make some optimizations so as not
|
# If you set this to False, Django will make some optimizations so as not
|
||||||
# to load the internationalization machinery.
|
# to load the internationalization machinery.
|
||||||
USE_I18N = False
|
USE_I18N = True
|
||||||
|
|
||||||
# List of callables that know how to import templates from various sources.
|
# List of callables that know how to import templates from various sources.
|
||||||
TEMPLATE_LOADERS = (
|
TEMPLATE_LOADERS = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user