Fix #4133 (Add all sections to the Arizona Daily Star News Feed)

This commit is contained in:
Kovid Goyal 2009-12-04 17:18:48 -07:00
parent 5193be1c5a
commit 9a6754b01d
3 changed files with 24 additions and 22 deletions

View File

@ -1,4 +1,3 @@
#!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>' __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
@ -12,26 +11,24 @@ class Azstarnet(BasicNewsRecipe):
title = 'Arizona Daily Star' title = 'Arizona Daily Star'
__author__ = 'Darko Miletic' __author__ = 'Darko Miletic'
description = 'news from Arizona' description = 'news from Arizona'
language = 'en' language = 'en'
publisher = 'azstarnet.com' publisher = 'azstarnet.com'
category = 'news, politics, Arizona, USA' category = 'news, politics, Arizona, USA'
delay = 1 delay = 1
oldest_article = 1 oldest_article = 3
max_articles_per_feed = 100 max_articles_per_feed = 100
no_stylesheets = True no_stylesheets = True
use_embedded_content = False use_embedded_content = False
encoding = 'utf-8' encoding = 'utf-8'
needs_subscription = True needs_subscription = True
remove_javascript = True
html2lrf_options = [ conversion_options = {
'--comment', description 'comment' : description
, '--category', category , 'tags' : category
, '--publisher', publisher , 'publisher' : publisher
] , 'language' : language
}
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"'
def get_browser(self): def get_browser(self):
br = BasicNewsRecipe.get_browser() br = BasicNewsRecipe.get_browser()
@ -52,14 +49,19 @@ class Azstarnet(BasicNewsRecipe):
] ]
feeds = [(u'Tucson Region', u'http://rss.azstarnet.com/index.php?site=metro')] feeds = [
(u'Tucson Region', u'http://rss.azstarnet.com/index.php?site=metro')
,(u'Sports' , u'http://rss.azstarnet.com/index.php?site=sports')
,(u'Business' , u'http://rss.azstarnet.com/index.php?site=biz-topheadlines')
,(u'Nation-World' , u'http://rss.azstarnet.com/index.php?site=news')
,(u'Opinion' , u'http://rss.azstarnet.com/index.php?site=opinion')
,(u'Lifestyle' , u'http://rss.azstarnet.com/index.php?site=accent')
,(u'Food' , u'http://rss.azstarnet.com/index.php?site=food')
]
def preprocess_html(self, soup): def preprocess_html(self, soup):
soup.html['dir' ] = 'ltr'
soup.html['lang'] = 'en-US'
mtag = '\n<meta http-equiv="Content-Language" content="en-US"/>\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\n'
soup.head.insert(0,mtag)
for item in soup.findAll(style=True): for item in soup.findAll(style=True):
del item['style'] del item['style']
return soup return soup

View File

@ -53,12 +53,10 @@ every time you add an HTML file to the library.\
class PML2PMLZ(FileTypePlugin): class PML2PMLZ(FileTypePlugin):
name = 'PML to PMLZ' name = 'PML to PMLZ'
author = 'John Schember' author = 'John Schember'
description = textwrap.dedent(_('''\ description = _('Create a PMLZ archive containing the PML file '
Create a PMLZ archive containing the PML file 'and all images in the directory pmlname_img or images. '
and all images in the directory pmlname_img or images. 'This plugin is run every time you add '
This plugin is run every time you add 'a PML file to the library.')
a PML file to the library.
'''))
version = numeric_version version = numeric_version
file_types = set(['pml']) file_types = set(['pml'])
supported_platforms = ['windows', 'osx', 'linux'] supported_platforms = ['windows', 'osx', 'linux']

View File

@ -128,6 +128,8 @@ class MetadataSource(Plugin):
from calibre.customize.ui import customize_plugin from calibre.customize.ui import customize_plugin
customize_plugin(self, sc) customize_plugin(self, sc)
def customization_help(self):
return 'This plugin can only be customized using the GUI'
class GoogleBooks(MetadataSource): class GoogleBooks(MetadataSource):