Changeset 168
- Timestamp:
- 02/20/06 14:49:25 (5 years ago)
- Files:
-
- feedtree/trunk/tools/configure-publisher (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedtree/trunk/tools/configure-publisher
r143 r168 128 128 129 129 # list of feed URLs to be fetched by the publisher & pushed to FeedTree 130 # (comma-separated, square-bracket-enclosed) 130 # 131 # examples: 132 # feeds = [ 133 # 134 # "http://site.com/feed/atom/", <== a simple feed 135 # 136 # { <== a feed with a public/private URL 137 # url: "file:///local/site/rss2.xml", 138 # publicUrl: "http://site.com/feed/rss2/" 139 # } 140 # ] 141 131 142 """ % (publisher_conf, time.strftime("%x %X")) 132 143 133 conftext += "feed _urls = [ \n " \144 conftext += "feeds = [ \n " \ 134 145 + ",\n ".join(['"%s"' % x for x in feeds]) + "\n]\n" 135 146
