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