Fix OpenID config
[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 link_urls = [
12     # rel                href                              type
13     [ 'icon',            'hacker-favicon.ico' ],
14     [ 'stylesheet',      '../wikidata/geekigeeki.css' ],
15     [ 'openid.server',   'http://www.codewiz.org/openid/' ],
16     [ 'openid.delegate', 'http://www.codewiz.org/openid/' ],
17 ]
18
19 history_url = '../wikigit/wiki.git'
20
21 post_edit_hook = './post_edit_hook.sh'
22
23 datetime_fmt = '%a %d %b %Y %I:%M %p'
24
25 # Is it possible to edit pages?
26 allow_edit = True
27
28 # show hostnames?
29 show_hosts = True
30
31 # prefix before nonexistent link (usually '?')
32 nonexist_pfx = ''
33
34 # maximum image width in pixels
35 image_maxwidth = 400
36
37 # Set to True for CGI var dump
38 debug_cgi = False