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 = '/'
editor_force = True
editor_default = 'text' # internal default, just for completeness
- theme_default = 'exodus'
+ # Use a site-theme for /Site/ and a normal wiki theme for the rest.
+ proxy_theme_mapping = [
+ ('/Site/', 'exodus'),
+ ('', 'modernized'),
+ ]
# Set cookies on /, so they work on /wipi and /Site alike.
cookie_path = '/'
editor_force = True
editor_default = 'text' # internal default, just for completeness
- theme_default = 'modernized'
+ # Use a site-theme for /Site/ and a normal wiki theme for the rest.
+ proxy_theme_mapping = [
+ ('/Site/', 'extinction'),
+ ('', 'modernized'),
+ ]
# vim: set ts=8 sts=4 sw=4 expandtab:
u'HelpContents',
]
- # The default theme anonymous or new users get
- theme_default = 'modern'
-
+ # Always use the proxy. Specific configs define a proxy_theme_mapping,
+ # which maps specific paths to a corresponding theme.
+ theme_default = 'proxy'
+ theme_force = True
# Language options --------------------------------------------------