aaba28a8c56694ccb00a4be507f43245a9230eeb
[matthijs/projects/wipi.git] / conf / exodus.py
1 # -*- coding: iso-8859-1 -*-
2 # IMPORTANT! This encoding (charset) setting MUST be correct! If you live in a
3 # western country and you don't know that you use utf-8, you probably want to
4 # use iso-8859-1 (or some other iso charset). If you use utf-8 (a Unicode
5 # encoding) you MUST use: coding: utf-8
6 # That setting must match the encoding your editor uses when you modify the
7 # settings below. If it does not, special non-ASCII chars will be wrong.
8
9 """
10 This is a sample config for a wiki that is part of a wiki farm and uses
11 farmconfig for common stuff. Here we define what has to be different from
12 the farm's common settings.
13 """
14
15 # we import the FarmConfig class for common defaults of our wikis:
16 from farmconfig import FarmConfig
17
18 from farmconfig import data_dir_root
19
20 # now we subclass that config (inherit from it) and change what's different:
21 class Config(FarmConfig):
22
23     # basic options (you normally need to change these)
24     sitename = u'Exodus' # [Unicode]
25     interwikiname = 'Exodus'
26
27     # name of entry page / front page [Unicode], choose one of those:
28
29     page_front_page = u"Home"
30
31     data_dir = data_dir_root + '/exodus/'
32
33     # The GUI WYSISYG editor is not installed with Debian.
34     # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info
35     editor_force = True
36     editor_default = 'text'  # internal default, just for completeness
37
38     theme_default = 'exodus'
39      
40     # Set cookies on /, so they work on /wipi and /Site alike.
41     cookie_path = '/'
42
43 # vim: set ts=8 sts=4 sw=4 expandtab: