Changeset 1166
- Timestamp:
- 07/16/08 09:21:18
- Files:
-
- qRSS2Syndication/branches/Plone3.1/utils.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
qRSS2Syndication/branches/Plone3.1/utils.py
r1165 r1166 14 14 """ Save all needed RSS2 properties into 'syndication_information' """ 15 15 obj=aq_base(context) 16 status = 'success'17 message = 'Your changes have been saved'18 19 16 syInfo = getattr(obj, 'syndication_information', None) 20 17 … … 30 27 syInfo.itunes_image_url = itunes_image_url 31 28 syInfo.itunes_explicit = itunes_explicit 29 status = 'success' 30 message = 'Your changes have been saved' 31 32 32 return status, message 33 33 … … 76 76 if include_subfolders == 0: 77 77 args['sort_limit'] = articles_number 78 res=catalog.searchResults(args) 78 res=catalog.searchResults(args) 79 if include_subfolders == 0: 79 80 for i in res : 80 81 if i.getPath()[path_length:].find('/')<0:
