Implement support for full-content feeds via a FullContentProfile

This commit is contained in:
Kovid Goyal 2008-01-22 06:35:56 +00:00
parent f79fd7a15c
commit 4e49c9807c

View File

@ -321,10 +321,14 @@ class DefaultProfile(object):
class FullContentProfile(DefaultProfile):
'''
This profile is designed for feeds that embed the full article content in the RSS file.
'''
max_recursions = 3
summary_length = 500 # Max number of characters in the short description
max_recursions = 0
article_counter = 0
def build_index(self):