source: products/qRSS2Syndication/trunk/skins/qrss2syndication/getSyndicatableContent.py @ 1

Last change on this file since 1 was 1, checked in by myroslav, 18 years ago

Building directory structure

File size: 695 bytes
Line 
1## Script (Python) "getAudioFiles"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=obj=None
8##title=
9##
10from Products.qRSS2Syndication.utils import listSyndicatableContent
11if not obj:
12   obj = context
13if hasattr(context,'synContentValues') or context.portal_type=='Topic':
14   count = int(context.portal_syndication.getMaxItems(obj))
15   res = context.portal_syndication.getSyndicatableContent(obj)
16   # has to check and cut number of items to be displayed
17   # to prevent feed bloat
18   count = count<len(res) and count or len(res)
19   res = res[:count]
20else:
21   res = listSyndicatableContent(obj) 
22return res
Note: See TracBrowser for help on using the repository browser.