forked from python/planet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ini
More file actions
65 lines (56 loc) · 2.14 KB
/
config.ini
File metadata and controls
65 lines (56 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Planet configuration file
# Every planet needs a [Planet] section
[Planet]
# name: Your planet's name
# link: Link to the main page
# owner_name: Your name
# owner_email: Your e-mail address
name = Planet Python
link = http://planet.python.org/
owner_name = PSF
owner_email = [email protected]
# cache_directory: Where cached feeds are stored
# log_level: One of DEBUG, INFO, WARNING, ERROR or CRITICAL
cache_directory = /data/planet/cache
log_level = DEBUG
# template_files: Space-separated list of output template files
template_files = examples/index.html.tmpl examples/rss20.xml.tmpl examples/rss10.xml.tmpl examples/opml.xml.tmpl examples/foafroll.xml.tmpl
# The following provide defaults for each template:
# output_dir: Directory to place output files
# items_per_page: How many items to put on each page
# days_per_page: How many complete days of posts to put on each page
# This is the absolute, hard limit (over the item limit)
# date_format: strftime format for the default 'date' template variable
output_dir = /data/planet/output
items_per_page = 60
days_per_page = 0
date_format = %B %d, %Y %I:%M %p
# To define a different value for a particular template you may create
# a section with the same name as the template file's filename (as given
# in template_files).
#
# [examples/rss10.xml.tmpl]
# items_per_page = 30
# Any other section defines a feed to subscribe to. The section title
# (in the []s) is the URI of the feed itself. A section can also be
# have any of the following options:
#
# name: Name of the feed (defaults to the title found in the feed)
# offset: Number of hours (+ or -) the feed's times tend to be out
#
# Additionally any other option placed here will be available in
# the template (prefixed with channel_ for the Items loop). You can
# define defaults for these in a [DEFAULT] section, for example
# Planet Debian uses the following to define faces:
#
# [DEFAULT]
# facewidth = 64
# faceheight = 64
#
# [http://www.blog.com/rss]
# face = foo.png
# faceheight = 32
#
# The facewidth of the defined blog defaults to 64.
[http://www.amk.ca/diary/index.rss]
name = Andrew Kuchling