mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-24 09:26:45 +01:00
Implement support for full-content feeds via a FullContentProfile
This commit is contained in:
parent
f79fd7a15c
commit
4e49c9807c
1 changed files with 6 additions and 2 deletions
|
|
@ -321,10 +321,14 @@ def command_line_options(self):
|
|||
|
||||
|
||||
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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue