config: Use "Start" as the frontpage for all sites.
[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     data_dir = data_dir_root + '/deadfoxjunction/'
17
18     # The GUI WYSISYG editor is not installed with Debian.
19     # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info
20     editor_force = True
21     editor_default = 'text'  # internal default, just for completeness
22
23     # Use a site-theme for /Site/ and a normal wiki theme for the rest.
24     proxy_theme_mapping = [
25         ('/Site/', 'deadfoxjunction'),
26         ('', 'modernized'),
27     ]
28      
29     # Set cookies on /, so they work on /wipi and /Site alike.
30     cookie_path = '/'
31     
32     logo_string = '<img src="%s/%s/img/logo.png" alt="Dead Fox Junction">' % (FarmConfig.url_prefix_static, 'deadfoxjunction')
33
34 # vim: set ts=8 sts=4 sw=4 expandtab: