Changeset 666
- Timestamp:
- 11/28/06 11:28:30
- Files:
-
- qRSS2Syndication/trunk/utils.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
qRSS2Syndication/trunk/utils.py
r665 r666 9 9 articles_number = 20, 10 10 REQUEST = None): 11 """ Save all needed RSS2 properties into 'syndication_information' """ 11 """ Save all needed RSS2 properties into 'syndication_information' """ 12 12 obj=aq_base(context) 13 13 status = 'success' … … 22 22 syInfo.only_published = only_published 23 23 syInfo.include_subfolders = include_subfolders 24 syInfo.max_items = articles_number24 syInfo.max_items = int(articles_number) 25 25 return status, message 26 26
