5e144dbbd45a641db9641eaa76da64e4466f8284
[matthijs/projects/wipi.git] / conf / exodus.py
1 # -*- coding: utf-8 -*-
2 # IMPORTANT! This encoding (charset) setting MUST be correct! 
3
4 # we import the FarmConfig class for common defaults of our wikis:
5 from farmconfig import FarmConfig
6
7 from farmconfig import data_dir_root
8
9 # now we subclass that config (inherit from it) and change what's different:
10 class Config(FarmConfig):
11
12     # basic options
13     sitename = u'Exodus' # [Unicode]
14     interwikiname = 'Exodus'
15
16     # name of entry page
17     page_front_page = u"Site"
18
19     data_dir = data_dir_root + '/exodus/'
20
21     # The GUI WYSISYG editor is not installed with Debian.
22     # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info
23     editor_force = True
24     editor_default = 'text'  # internal default, just for completeness
25
26     # Use a site-theme for /Site/ and a normal wiki theme for the rest.
27     proxy_theme_mapping = [
28         ('/Site/', 'exodus'),
29         ('', 'modernized'),
30     ]
31      
32     # Set cookies on /, so they work on /wipi and /Site alike.
33     cookie_path = '/'
34
35 # vim: set ts=8 sts=4 sw=4 expandtab: