X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=conf%2Fdeadfoxjunction.py;h=58d459e149df4826d6ec45b380856aadbad0768d;hb=HEAD;hp=145db8eb752e941a15d74916ab208471d2caa6ba;hpb=be3b6930d950f5ebd3c63d982cd4b0f36e116044;p=matthijs%2Fprojects%2Fwipi.git diff --git a/conf/deadfoxjunction.py b/conf/deadfoxjunction.py index 145db8e..58d459e 100644 --- a/conf/deadfoxjunction.py +++ b/conf/deadfoxjunction.py @@ -13,10 +13,6 @@ class Config(FarmConfig): sitename = u'Dead Fox Junction' interwikiname = 'DeadFoxJunction' - # name of entry page / front page [Unicode], choose one of those: - - page_front_page = u"Site" - data_dir = data_dir_root + '/deadfoxjunction/' # The GUI WYSISYG editor is not installed with Debian. @@ -24,11 +20,15 @@ class Config(FarmConfig): editor_force = True editor_default = 'text' # internal default, just for completeness - theme_default = 'deadfoxjunction' + # Use a site-theme for /Site/ and a normal wiki theme for the rest. + proxy_theme_mapping = [ + ('/Site/', 'deadfoxjunction'), + ('', 'modernized'), + ] # Set cookies on /, so they work on /wipi and /Site alike. cookie_path = '/' - logo_string = 'Dead Fox Junction' % (FarmConfig.url_prefix_static, theme_default) + logo_string = 'Dead Fox Junction' % (FarmConfig.url_prefix_static, 'deadfoxjunction') # vim: set ts=8 sts=4 sw=4 expandtab: