This commit is contained in:
Kovid Goyal 2009-02-08 18:14:35 -08:00
parent d439798750
commit 99a477a186
3 changed files with 4 additions and 1 deletions

View File

@ -15,6 +15,7 @@ class Honoluluadvertiser(BasicNewsRecipe):
publisher = 'Honolulu Advertiser' publisher = 'Honolulu Advertiser'
category = 'news, Honolulu, Hawaii' category = 'news, Honolulu, Hawaii'
oldest_article = 2 oldest_article = 2
language = _('English')
max_articles_per_feed = 100 max_articles_per_feed = 100
no_stylesheets = True no_stylesheets = True
use_embedded_content = False use_embedded_content = False

View File

@ -20,6 +20,7 @@ class Jutarnji(BasicNewsRecipe):
max_articles_per_feed = 100 max_articles_per_feed = 100
simultaneous_downloads = 1 simultaneous_downloads = 1
delay = 1 delay = 1
language = _('Croatian')
no_stylesheets = True no_stylesheets = True
use_embedded_content = False use_embedded_content = False
remove_javascript = True remove_javascript = True
@ -68,4 +69,4 @@ class Jutarnji(BasicNewsRecipe):
for item in soup.findAll(width=True): for item in soup.findAll(width=True):
del item['width'] del item['width']
return soup return soup

View File

@ -16,6 +16,7 @@ class Starbulletin(BasicNewsRecipe):
category = 'news, Honolulu, Hawaii' category = 'news, Honolulu, Hawaii'
oldest_article = 2 oldest_article = 2
max_articles_per_feed = 100 max_articles_per_feed = 100
language = _('English')
no_stylesheets = True no_stylesheets = True
use_embedded_content = False use_embedded_content = False
encoding = 'utf8' encoding = 'utf8'