Advertisement
lcawte

Planet Config

Dec 7th, 2010
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. # Planet configuration file
  2.  
  3. # Every planet needs a [Planet] section
  4. [Planet]
  5. # name: Your planet's name
  6. # link: Link to the main page
  7. # owner_name: Your name
  8. # owner_email: Your e-mail address
  9. name = Planet Lewis Cawte
  10. link = http://planet.blog.lewiscawte.info/
  11. owner_name = Lewis Cawte
  12. owner_email = lewis@lewiscawte.info
  13.  
  14. # cache_directory: Where cached feeds are stored
  15. # new_feed_items: Number of items to take from new feeds
  16. # log_level: One of DEBUG, INFO, WARNING, ERROR or CRITICAL
  17. cache_directory = LewisCawte/cache
  18. new_feed_items = 2
  19. log_level = DEBUG
  20.  
  21. # template_files: Space-separated list of output template files
  22. template_files = LewisCawte/basic/index.html.tmpl LewisCawte/atom.xml.tmpl LewisCawte/rss20.xml.tmpl LewisCawte/rss10.xml.tmpl LewisCawte/opml.xml.tmpl LewisCawte/foafroll.xml.tmpl
  23.  
  24. # The following provide defaults for each template:
  25. # output_dir: Directory to place output files
  26. # items_per_page: How many items to put on each page
  27. # days_per_page: How many complete days of posts to put on each page
  28. # This is the absolute, hard limit (over the item limit)
  29. # date_format: strftime format for the default 'date' template variable
  30. # new_date_format: strftime format for the 'new_date' template variable
  31. # encoding: output encoding for the file, Python 2.3+ users can use the
  32. # special "xml" value to output ASCII with XML character references
  33. # locale: locale to use for (e.g.) strings in dates, default is taken from your
  34. # system. You can specify more locales separated by ':', planet will
  35. # use the first available one
  36. output_dir = LewisCawte/output
  37. items_per_page = 60
  38. days_per_page = 0
  39. date_format = %B %d, %Y %I:%M %p
  40. new_date_format = %B %d, %Y
  41. encoding = utf-8
  42. # locale = C
  43.  
  44.  
  45. # To define a different value for a particular template you may create
  46. # a section with the same name as the template file's filename (as given
  47. # in template_files).
  48. #
  49. # [LewisCawterss10.xml.tmpl]
  50. # items_per_page = 30
  51. # encoding = xml
  52.  
  53.  
  54. # Any other section defines a feed to subscribe to. The section title
  55. # (in the []s) is the URI of the feed itself. A section can also be
  56. # have any of the following options:
  57. #
  58. # name: Name of the feed (defaults to the title found in the feed)
  59. #
  60. # Additionally any other option placed here will be available in
  61. # the template (prefixed with channel_ for the Items loop). You can
  62. # define defaults for these in a [DEFAULT] section, for example
  63. # Planet Debian uses the following to define faces:
  64. #
  65. # [DEFAULT]
  66. # facewidth = 64
  67. # faceheight = 64
  68. #
  69. # [http://www.blog.com/rss]
  70. # face = foo.png
  71. # faceheight = 32
  72. #
  73. # The facewidth of the defined blog defaults to 64.
  74.  
  75. [http://blog.lewiscawte.info/feed/]
  76. name = Lewis Cawte (Blog)
  77. [http://techblog.lcawte.co.cc/feed/]
  78. name = TechBlog
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement