UTF-8 fixup for Python 3.0
[geekigeeki.git] / geekigeeki.conf.py
1 # Configuration values
2 site_name = 'Codewiz'
3
4 # set to None for read-only sites, leave empty ('') to allow anonymous edits
5 # otherwise, set to a URL that requires authentication
6 privileged_url = 'https://www.develer.com/~bernie/wiki'
7
8 data_dir = '/home/bernie/public_html/wiki/data'
9
10 # default page links
11 meta_urls = [
12     # http-equiv         content 
13     [ 'X-XRDS-Location', 'http://www.codewiz.org/yadis.xml' ],
14 ]
15 link_urls = [
16     # rel                href
17     [ 'icon',            'hacker-favicon.ico' ],
18     [ 'stylesheet',      '../wikidata/geekigeeki.css' ],
19     [ 'openid.server',   'https://www.develer.com/openid/bernie' ],
20     [ 'openid.delegate', 'https://www.develer.com/openid/bernie' ],
21     [ 'pavatar',         'http://www.codewiz.org/wiki/BernieAvatar80x80.png' ],
22 ]
23
24 history_url = '../wikigit/wiki.git'
25
26 post_edit_hook = './post_edit_hook.sh'
27
28 datetime_fmt = '%a %d %b %Y %I:%M %p'
29
30 # Is it possible to edit pages?
31 allow_edit = True
32
33 # show hostnames?
34 show_hosts = True
35
36 # prefix before nonexistent link (usually '?')
37 nonexist_pfx = ''
38
39 # maximum image width in pixels
40 image_maxwidth = 400
41
42 # Set to True for CGI var dump
43 debug_cgi = False