home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2011 November
/
CHIP_2011_11.iso
/
Programy
/
Narzedzia
/
Calibre
/
calibre-0.8.18.msi
/
file_280
/
intelligencer.recipe
< prev
next >
Wrap
Text File
|
2011-09-09
|
1KB
|
47 lines
#!/usr/bin/env python
__license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
'''
Inteligencer.ca
'''
from calibre.web.feeds.news import BasicNewsRecipe
class Inteligencer(BasicNewsRecipe):
title = u'Intelligencer'
oldest_article = 7
max_articles_per_feed = 100
encoding = 'utf-8'
language = 'en'
no_stylesheets = True
use_embedded_content = False
lang = 'en-CA'
conversion_options = {
'language' : lang
, 'pretty_print' : True
}
remove_attributes = ['style','width','height','font','border','align','action','onload']
keep_only_tags = [dict(name='td',attrs={'colspan':'2'})]
remove_tags = [
dict(name=['object','link','embed','iframe'])
,dict(name='div',attrs={'id':'header'})
]
feeds = [(u'Recent News', u'http://www.intelligencer.ca/rss/')]
def print_version(self, url):
return url.replace('/ArticleDisplay.aspx?','/PrintArticle.aspx?')
def preprocess_html(self, soup):
for item in soup.findAll('td'):
del item['colspan']
item.name = 'div'
return soup