b7a7084c3a3cd80f768371cf46f702abfe2ba603
[matthijs/projects/wipi.git] / conf / deadfoxjunction.py
1 # -*- coding: iso-8859-1 -*-
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'Dead Fox Junction'
14     interwikiname = 'DeadFoxJunction'
15
16     # name of entry page / front page [Unicode], choose one of those:
17
18     page_front_page = u"Site"
19
20     data_dir = data_dir_root + '/deadfoxjunction/'
21
22     # The GUI WYSISYG editor is not installed with Debian.
23     # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info
24     editor_force = True
25     editor_default = 'text'  # internal default, just for completeness
26
27     # Use a site-theme for /Site/ and a normal wiki theme for the rest.
28     proxy_theme_mapping = [
29         ('/Site/', 'deadfoxjunction'),
30         ('', 'modernized'),
31     ]
32      
33     # Set cookies on /, so they work on /wipi and /Site alike.
34     cookie_path = '/'
35     
36     logo_string = '<img src="%s/%s/img/logo.png" alt="Dead Fox Junction">' % (FarmConfig.url_prefix_static, 'deadfoxjunction')
37
38 # vim: set ts=8 sts=4 sw=4 expandtab: