Author: ianb
Date: 2004-04-13 00:49:58 -0600 (Tue, 13 Apr 2004)
New Revision: 46
Modified:
Wiki/wiki.ini
Log:
added some comments to the config file
Modified: Wiki/wiki.ini
===================================================================
--- Wiki/wiki.ini 2004-04-13 06:46:12 UTC (rev 45)
+++ Wiki/wiki.ini 2004-04-13 06:49:58 UTC (rev 46)
@@ -1,19 +1,36 @@
[site]
+# Actually, Webware figures this out for itself, but potentially
+# this could be used in another environment.
basehref = /~ianb/wk.cgi/
[wiki]
+# All the wikis go *under* this directory, according to domain name
basepath = /var/lib/wiki/
[localhost]
+# This means that the 'localhost' domain name is not a 'canonical'
+# name -- wiki.webwareforpython.org is the canonical name, and this
+# is just another host. *However*, you can add settings here that
+# will override wiki.webwareforpython.org's settings (e.g., readonly)
alias = wiki.webwareforpython.org
[wiki.w4py.org]
alias = wiki.webwareforpython.org
[wiki.webwareforpython.org]
+# These are used in the RSS feed:
rss.title = Webware Wiki
rss.description = The Webware For Python Wiki
+
+# This is used for static publishing. Content is published to
+# StaticPath, using the StaticTemplate Cheetah template.
StaticPublish = yes
StaticTemplate = static.tmpl
StaticPath = /home/ianb/public_html/staticwiki
-rebuildStatic = yes
\ No newline at end of file
+
+# This forces a rebuilding of the static content. It's kind of a
+# hack that this is the only way to do it -- the site is rebuilt
+# when the AppServer is started up. The backlink index can also
+# be rebuilt (or delete index.db to force a rebuild)
+#rebuildstatic = yes
+#rebuildindex = yes
\ No newline at end of file
|