2006-03-13 19:35:23 +01:00
|
|
|
#!/usr/bin/perl
|
|
|
|
# Configuration file for ikiwiki.
|
2006-07-03 23:29:56 +02:00
|
|
|
# Passing this to ikiwiki --setup will make ikiwiki generate wrappers and
|
|
|
|
# build the wiki.
|
2006-03-13 19:35:23 +01:00
|
|
|
#
|
|
|
|
# Remember to re-run ikiwiki --setup any time you edit this file.
|
|
|
|
|
2006-03-15 04:24:34 +01:00
|
|
|
use IkiWiki::Setup::Standard {
|
2006-03-13 19:35:23 +01:00
|
|
|
wikiname => "MyWiki",
|
2006-03-23 02:40:46 +01:00
|
|
|
#adminuser => ["yourname", ],
|
2006-04-25 01:05:17 +02:00
|
|
|
adminemail => 'me@myhost',
|
2006-03-23 02:40:46 +01:00
|
|
|
|
2006-03-13 19:35:23 +01:00
|
|
|
# Be sure to customise these..
|
|
|
|
srcdir => "/path/to/source",
|
|
|
|
destdir => "/var/www/wiki",
|
2006-03-23 03:53:03 +01:00
|
|
|
|
2006-03-13 19:35:23 +01:00
|
|
|
url => "http://myhost/wiki",
|
|
|
|
cgiurl => "http://myhost/ikiwiki.cgi",
|
2006-03-23 03:53:03 +01:00
|
|
|
#templatedir => "/usr/share/ikiwiki/templates",
|
2006-03-13 19:35:23 +01:00
|
|
|
|
2006-06-02 07:43:58 +02:00
|
|
|
# Subversion stuff.
|
|
|
|
rcs => "svn",
|
|
|
|
#historyurl => "http://svn.myhost/trunk/[[file]]",
|
2006-07-04 08:07:32 +02:00
|
|
|
#diffurl => "http://svn.someurl/trunk/[[file]]?root=wiki&r1=[[r1]]&r2=[[r2]]",
|
2006-03-13 19:35:23 +01:00
|
|
|
svnrepo => "/svn/wiki",
|
2006-04-25 01:05:17 +02:00
|
|
|
svnpath => "trunk",
|
2006-03-13 20:29:21 +01:00
|
|
|
|
2006-06-02 07:43:58 +02:00
|
|
|
# Git stuff.
|
|
|
|
#rcs => "git",
|
|
|
|
#historyurl => "http://git.host/gitweb.cgi?p=wiki.git;a=history;f=[[file]]",
|
2006-06-03 20:03:41 +02:00
|
|
|
#diffurl => "http://git.host/gitweb.cgi?p=wiki.git;a=blobdiff;h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_parent]];f=[[file]]",
|
2006-06-02 07:43:58 +02:00
|
|
|
|
2006-09-04 08:15:54 +02:00
|
|
|
# Tla stuff.
|
|
|
|
#rcs => "tla"
|
|
|
|
#historyurl => ??,
|
|
|
|
#diffurl => ??,
|
|
|
|
|
2006-09-06 22:31:55 +02:00
|
|
|
# Mercurial stuff.
|
|
|
|
#rcs => "mercurial",
|
|
|
|
#historyurl => "http://localhost:8000/", # hg serve'd local repository
|
|
|
|
#diffurl => "http://localhost:8000/?fd=[[changeset]];file=[[file]]",
|
|
|
|
|
2006-03-15 04:24:34 +01:00
|
|
|
wrappers => [
|
2006-06-02 07:43:58 +02:00
|
|
|
#{
|
|
|
|
# # The cgi wrapper.
|
|
|
|
# cgi => 1,
|
|
|
|
# wrapper => "/var/www/wiki/ikiwiki.cgi",
|
|
|
|
# wrappermode => "06755",
|
|
|
|
#},
|
2006-03-15 04:24:34 +01:00
|
|
|
{
|
2006-06-02 07:43:58 +02:00
|
|
|
# The svn post-commit wrapper.
|
2006-06-03 20:03:41 +02:00
|
|
|
# Note that this will overwrite any existing
|
2006-03-15 04:24:34 +01:00
|
|
|
# post-commit hook script, which may not be
|
|
|
|
# what you want.
|
2006-06-02 07:43:58 +02:00
|
|
|
wrapper => "/svn/wikirepo/hooks/post-commit",
|
2006-04-03 02:00:16 +02:00
|
|
|
wrappermode => "04755",
|
2006-04-25 01:05:17 +02:00
|
|
|
# Enable mail notifications of commits.
|
|
|
|
notify => 1,
|
2006-03-15 04:24:34 +01:00
|
|
|
},
|
2006-04-03 02:00:16 +02:00
|
|
|
#{
|
2006-06-02 07:43:58 +02:00
|
|
|
# # The git post-update wrapper.
|
2006-06-03 20:03:41 +02:00
|
|
|
# # Note that this will overwrite any existing
|
|
|
|
# # post-update hook script, which may not be
|
2006-06-02 07:43:58 +02:00
|
|
|
# # what you want.
|
2006-07-03 18:43:30 +02:00
|
|
|
# wrapper => "/git/wikirepo/.git/hooks/post-update",
|
2006-06-02 07:43:58 +02:00
|
|
|
# wrappermode => "04755",
|
|
|
|
# # Enable mail notifications of commits.
|
|
|
|
# notify => 1,
|
2006-04-03 02:00:16 +02:00
|
|
|
#},
|
2006-03-15 04:24:34 +01:00
|
|
|
],
|
2006-03-13 20:10:29 +01:00
|
|
|
|
2006-03-13 20:53:13 +01:00
|
|
|
# Can anonymous web users edit pages?
|
|
|
|
#anonok => 1,
|
2006-03-23 22:00:51 +01:00
|
|
|
# Generate rss feeds for pages?
|
2006-03-24 03:42:19 +01:00
|
|
|
rss => 1,
|
2006-06-27 03:13:03 +02:00
|
|
|
# Urls to ping with XML-RPC when rss feeds are updated
|
|
|
|
#pingurl => [qw{http://rpc.technorati.com/rpc/ping}],
|
2006-05-05 20:20:52 +02:00
|
|
|
# Include discussion links on all pages?
|
|
|
|
discussion => 1,
|
2006-07-28 19:48:24 +02:00
|
|
|
# To exclude files matching a regexp from processing. This adds to
|
|
|
|
# the default exclude list.
|
|
|
|
#exclude => qr/\*.wav/,
|
2006-05-29 07:09:43 +02:00
|
|
|
# Time format (for strftime)
|
|
|
|
#timeformat => '%c',
|
2006-07-29 23:04:31 +02:00
|
|
|
# Locale to use. Must be a UTF-8 locale.
|
|
|
|
#locale => 'en_US.UTF-8',
|
2006-08-27 22:25:05 +02:00
|
|
|
# Only send cookies over SSL connections.
|
|
|
|
#sslcookie => 1,
|
2006-08-16 23:17:49 +02:00
|
|
|
# Logging settings:
|
|
|
|
verbose => 0,
|
|
|
|
syslog => 0,
|
2006-07-03 23:29:56 +02:00
|
|
|
|
|
|
|
# To add plugins, list them here.
|
2006-07-27 23:38:02 +02:00
|
|
|
#add_plugins => [qw{meta tag pagecount brokenlinks search smiley
|
2006-08-18 02:24:22 +02:00
|
|
|
# wikitext camelcase pagestats htmltidy fortune
|
2006-08-28 09:40:20 +02:00
|
|
|
# sidebar map rst toc}],
|
2006-07-03 23:29:56 +02:00
|
|
|
# If you want to disable any of the default plugins, list them here.
|
|
|
|
#disable_plugins => [qw{inline htmlscrubber}],
|
2006-03-15 04:24:34 +01:00
|
|
|
}
|