Changeset 168

Show
Ignore:
Timestamp:
02/20/06 14:49:25 (5 years ago)
Author:
dsandler
Message:

Fix #34. The 'feed_urls' property became simply 'feeds'.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • feedtree/trunk/tools/configure-publisher

    r143 r168  
    128128 
    129129# 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 
    131142""" % (publisher_conf, time.strftime("%x %X")) 
    132143 
    133     conftext += "feed_urls = [ \n  " \ 
     144    conftext += "feeds = [ \n  " \ 
    134145             + ",\n  ".join(['"%s"' % x for x in feeds]) + "\n]\n" 
    135146