Switch site_icon to favicon in sys/
[geekigeeki.git] / geekigeeki.conf.py
index eba3843c29478cc35545811f30576254235eb500..90728b432c36b4d788bbeb9adc002da9839d60da 100644 (file)
@@ -1,20 +1,49 @@
 # Configuration values
+
+# this is displayed in the page title
 site_name = 'Codewiz'
 
+# this is used for the leftmost button of the navbar.
+# It can be set to an empty string or a text message
+site_icon = 'sys/favicon16x16.png'
+
 # set to None for read-only sites, leave empty ('') to allow anonymous edits
 # otherwise, set to a URL that requires authentication
 privileged_url = 'https://www.develer.com/~bernie/wiki'
 
-data_dir = '/home/bernie/public_html/wiki/data'
+data_dir = 'data'
+
+# default page links
+meta_urls = [
+    # http-equiv         content
+    [ 'X-XRDS-Location', 'http://www.codewiz.org/yadis.xml' ],
+]
+link_urls = [
+    # rel                href
+    [ 'icon',            'sys/favicon.png' ],
+    [ 'stylesheet',      'sys/geekigeeki.css' ],
+    [ 'openid.server',   'https://www.develer.com/openid/bernie' ],
+    [ 'openid.delegate', 'https://www.develer.com/openid/bernie' ],
+    [ 'pavatar',         'http://www.codewiz.org/wiki/BernieAvatar80x80.png' ],
+]
 
-css_url = ['../wikidata/geekigeeki.css']  # optional stylesheet links
 history_url = '../wikigit/wiki.git'
 
 post_edit_hook = './post_edit_hook.sh'
 
 datetime_fmt = '%a %d %b %Y %I:%M %p'
-allow_edit = True                       # Is it possible to edit pages?
-show_hosts = True                       # show hostnames?
-nonexist_pfx = ''                       # prefix before nonexistent link (usually '?')
-image_maxwidth = 800                    # maximum image width in pixels
-debug_cgi = False                       # Set to True for CGI var dump
+
+# Is it possible to edit pages?
+allow_edit = True
+
+# show hostnames?
+show_hosts = True
+
+# prefix before nonexistent link (usually '?')
+nonexist_pfx = ''
+
+# maximum image width in pixels
+image_maxwidth = 400
+
+# Set to True for CGI var dump
+debug_cgi = False