-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.dist.py
30 lines (25 loc) · 877 Bytes
/
config.dist.py
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
"""
Configuration settings. These should be in a file called config.py
"""
# Domain name of the wiki.
wiki = 'example.com'
# Page which contains the RFC.
page = 'Project:RFC/Some RFC'
# Which revision of the page to use (None means current)
revision = None
# Relevant sections in this format:
# {
# 'foo': 1,
# 'bar': 3,
# }
# The name will be used in the output to identify what the user voted for.
# The number is the same one you see in the section edit link.
sections = {
}
# date format in signature
# you only need to change these for non-English wikis
date_format = '%H:%M, %d %B %Y (UTC)'
date_regexp = r'\d{2}:\d{2}, \d{1,2} %s \d{4} \(UTC\)' \
% '(January|February|March|April|May|June|July|August|September|October|November|December)'
# date locale might be OS-dependent; use locale -a to list supported locales
date_locale = 'en_US.utf8'