1 # -*- coding: iso-8859-1 -*-
2 # IMPORTANT! This encoding (charset) setting MUST be correct!
4 # we import the FarmConfig class for common defaults of our wikis:
5 from farmconfig import FarmConfig
7 from farmconfig import data_dir_root
9 # now we subclass that config (inherit from it) and change what's different:
10 class Config(FarmConfig):
13 sitename = u'Dead Fox Junction'
14 interwikiname = 'DeadFoxJunction'
16 data_dir = data_dir_root + '/deadfoxjunction/'
18 # The GUI WYSISYG editor is not installed with Debian.
19 # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info
21 editor_default = 'text' # internal default, just for completeness
23 # Use a site-theme for /Site/ and a normal wiki theme for the rest.
24 proxy_theme_mapping = [
25 ('/Site/', 'deadfoxjunction'),
29 # Set cookies on /, so they work on /wipi and /Site alike.
32 logo_string = '<img src="%s/%s/img/logo.png" alt="Dead Fox Junction">' % (FarmConfig.url_prefix_static, 'deadfoxjunction')
34 # vim: set ts=8 sts=4 sw=4 expandtab: