X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=conf%2Fextinction.py;h=3af49983de69257631f47f84eee44e79a4315b8e;hb=b33a13508758d2b377a523aad09cf9ff3761b51c;hp=5776e5971c300eed9af31883aeb856d489d40169;hpb=f159c73b29c5a76a7314ce34fda82d5cbb66b2ec;p=matthijs%2Fprojects%2Fwipi.git diff --git a/conf/extinction.py b/conf/extinction.py index 5776e59..3af4998 100644 --- a/conf/extinction.py +++ b/conf/extinction.py @@ -1,16 +1,5 @@ -# -*- coding: iso-8859-1 -*- -# IMPORTANT! This encoding (charset) setting MUST be correct! If you live in a -# western country and you don't know that you use utf-8, you probably want to -# use iso-8859-1 (or some other iso charset). If you use utf-8 (a Unicode -# encoding) you MUST use: coding: utf-8 -# That setting must match the encoding your editor uses when you modify the -# settings below. If it does not, special non-ASCII chars will be wrong. - -""" -This is a sample config for a wiki that is part of a wiki farm and uses -farmconfig for common stuff. Here we define what has to be different from -the farm's common settings. -""" +# -*- coding: utf-8 -*- +# IMPORTANT! This encoding (charset) setting MUST be correct! # we import the FarmConfig class for common defaults of our wikis: from farmconfig import FarmConfig @@ -20,12 +9,11 @@ from farmconfig import data_dir_root # now we subclass that config (inherit from it) and change what's different: class Config(FarmConfig): - # basic options (you normally need to change these) - sitename = u'Extinction' # [Unicode] + # basic options + sitename = u'Extinction' interwikiname = 'Extinction' - # name of entry page / front page [Unicode], choose one of those: - + # name of entry page page_front_page = u"Home" data_dir = data_dir_root + '/extinction/' @@ -35,6 +23,6 @@ class Config(FarmConfig): editor_force = True editor_default = 'text' # internal default, just for completeness - theme_default = 'classic' + theme_default = 'modernized' # vim: set ts=8 sts=4 sw=4 expandtab: