deadfoxjunction: Add configuration.
authorMatthijs Kooijman <matthijs@stdin.nl>
Thu, 29 Apr 2010 10:59:28 +0000 (12:59 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Thu, 29 Apr 2010 10:59:28 +0000 (12:59 +0200)
conf/deadfoxjunction.py [new file with mode: 0644]

diff --git a/conf/deadfoxjunction.py b/conf/deadfoxjunction.py
new file mode 100644 (file)
index 0000000..145db8e
--- /dev/null
@@ -0,0 +1,34 @@
+# -*- coding: iso-8859-1 -*-
+# IMPORTANT! This encoding (charset) setting MUST be correct!
+
+# we import the FarmConfig class for common defaults of our wikis:
+from farmconfig import FarmConfig
+
+from farmconfig import data_dir_root
+
+# now we subclass that config (inherit from it) and change what's different:
+class Config(FarmConfig):
+
+    # basic options
+    sitename = u'Dead Fox Junction'
+    interwikiname = 'DeadFoxJunction'
+
+    # name of entry page / front page [Unicode], choose one of those:
+
+    page_front_page = u"Site"
+
+    data_dir = data_dir_root + '/deadfoxjunction/'
+
+    # The GUI WYSISYG editor is not installed with Debian.
+    # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info
+    editor_force = True
+    editor_default = 'text'  # internal default, just for completeness
+
+    theme_default = 'deadfoxjunction'
+     
+    # Set cookies on /, so they work on /wipi and /Site alike.
+    cookie_path = '/'
+    
+    logo_string = '<img src="%s/%s/img/logo.png" alt="Dead Fox Junction">' % (FarmConfig.url_prefix_static, theme_default)
+
+# vim: set ts=8 sts=4 sw=4 expandtab: