From 21b256018deb96442dfb8ac6a616b0911457baef Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 26 Jan 2008 04:37:00 +0000 Subject: [PATCH] Make processing of tag default to HTML in web2lrf --- src/libprs500/ebooks/lrf/web/profiles/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libprs500/ebooks/lrf/web/profiles/__init__.py b/src/libprs500/ebooks/lrf/web/profiles/__init__.py index 66d8d2a7c2..34848a1616 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/__init__.py +++ b/src/libprs500/ebooks/lrf/web/profiles/__init__.py @@ -27,7 +27,7 @@ class DefaultProfile(object): url = '' # The URL of the website title = 'Default Profile' # The title to use for the LRF file max_articles_per_feed = 10 # Maximum number of articles to download from each feed - html_description = False # If True process the element of the feed as HTML + html_description = True # If True process the element of the feed as HTML oldest_article = 7 # How many days old should the oldest article downloaded from the feeds be? max_recursions = 1 # Number of levels of links to follow max_files = 3000 # Maximum number of files to download @@ -330,7 +330,6 @@ class FullContentProfile(DefaultProfile): max_recursions = 0 article_counter = 0 - html_description = True def build_index(self):