9046bcbff78c11e3301c53e6e3df6d7220105e1b
[matthijs/projects/wipi.git] / conf / extinction.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'Extinction'
14     interwikiname = 'Extinction'
15
16     # name of entry page
17     page_front_page = u"Home"
18
19     data_dir = data_dir_root + '/extinction/'
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/', 'extinction'),
29         ('', 'modernized'),
30     ]
31
32 # vim: set ts=8 sts=4 sw=4 expandtab: