mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Improved EPL Talk
This commit is contained in:
parent
012ef56033
commit
dd860ea713
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
__license__ = 'GPL 3'
|
__license__ = 'GPL 3'
|
||||||
__copyright__ = 'zotzot'
|
__copyright__ = 'zotzo'
|
||||||
__docformat__ = 'restructuredtext en'
|
__docformat__ = 'restructuredtext en'
|
||||||
'''
|
'''
|
||||||
http://www.epltalk.com
|
http://www.epltalk.com
|
||||||
@ -9,10 +9,9 @@ from calibre.web.feeds.news import BasicNewsRecipe
|
|||||||
|
|
||||||
|
|
||||||
class EPLTalkRecipe(BasicNewsRecipe):
|
class EPLTalkRecipe(BasicNewsRecipe):
|
||||||
__license__ = 'GPL v3'
|
|
||||||
__author__ = u'The Gaffer'
|
|
||||||
language = 'en'
|
language = 'en'
|
||||||
version = 1
|
version = 2
|
||||||
|
__author__ = 'rylsfan'
|
||||||
|
|
||||||
title = u'EPL Talk'
|
title = u'EPL Talk'
|
||||||
publisher = u'The Gaffer'
|
publisher = u'The Gaffer'
|
||||||
@ -21,17 +20,40 @@ class EPLTalkRecipe(BasicNewsRecipe):
|
|||||||
description = u'News and Analysis from the English Premier League'
|
description = u'News and Analysis from the English Premier League'
|
||||||
cover_url = 'http://bit.ly/hJxZPu'
|
cover_url = 'http://bit.ly/hJxZPu'
|
||||||
|
|
||||||
oldest_article = 45
|
oldest_article = 3
|
||||||
max_articles_per_feed = 150
|
max_articles_per_feed = 100
|
||||||
use_embedded_content = True
|
use_embedded_content = True
|
||||||
remove_javascript = True
|
remove_javascript = True
|
||||||
encoding = 'utf8'
|
encoding = 'utf8'
|
||||||
|
|
||||||
remove_tags_after = [dict(name='div', attrs={'class':'pd-rating'})]
|
conversion_options = {
|
||||||
|
'comment' : description
|
||||||
|
, 'tags' : category
|
||||||
|
, 'publisher' : publisher
|
||||||
|
, 'language' : language
|
||||||
|
}
|
||||||
|
|
||||||
feeds = [(u'EPL Talk', u'http://feeds.feedburner.com/EPLTalk')]
|
remove_tags = [
|
||||||
|
{'class': 'feedflare'},
|
||||||
|
{'class': 'tweetmeme_button'},
|
||||||
|
{'class': 'eplrelated'},
|
||||||
|
{'p': 'Related posts:<ol>'},
|
||||||
|
]
|
||||||
|
|
||||||
|
def preprocess_html(self, soup):
|
||||||
|
return self.adeify_images(soup)
|
||||||
|
|
||||||
|
feeds =[
|
||||||
|
(u'EPL Talk', u'http://feeds.feedburner.com/EPLTalk'),
|
||||||
|
(u'MLS Talk', u'http://feeds.feedburner.com/majorleaguesoccertalksite'),
|
||||||
|
#(),
|
||||||
|
#(),
|
||||||
|
#(),
|
||||||
|
]
|
||||||
|
|
||||||
extra_css = '''
|
extra_css = '''
|
||||||
body{font-family:verdana,arial,helvetica,geneva,sans-serif;}
|
h1{font-family:Arial,Helvetica,sans-serif; font-weight:bold;font-size:large;}
|
||||||
img {float: left; margin-right: 0.5em;}
|
h2{font-family:Arial,Helvetica,sans-serif; font-weight:normal;font-size:small;}
|
||||||
'''
|
p{font-family:Arial,Helvetica,sans-serif;font-size:small;}
|
||||||
|
body{font-family:Helvetica,Arial,sans-serif;font-size:small;}
|
||||||
|
'''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user