From 0a52e8fd82d80bdd1290f49c3187d3f72db39c75 Mon Sep 17 00:00:00 2001 From: joey Date: Wed, 15 Mar 2006 03:24:34 +0000 Subject: config files now based on perl modules add MakeMaker foo for module --- doc/ikiwiki.setup | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) (limited to 'doc/ikiwiki.setup') diff --git a/doc/ikiwiki.setup b/doc/ikiwiki.setup index e8048c3b0..c03092b7a 100644 --- a/doc/ikiwiki.setup +++ b/doc/ikiwiki.setup @@ -5,7 +5,7 @@ # # Remember to re-run ikiwiki --setup any time you edit this file. -%setup=( +use IkiWiki::Setup::Standard { wikiname => "MyWiki", # Be sure to customise these.. @@ -21,21 +21,25 @@ svn => 1, svnrepo => "/svn/wiki", - # The svn wrapper. - svnwrapper => { - # Note that this will overwrite any exsting post-commit hoo - # script, which may not be what you want. - wrapper => "$config{svnrepo}/hooks/post-commit", - wrappermode => 04755, - }, + wrappers => [ + { + # The svn wrapper. + # Note that this will overwrite any exsting + # post-commit hook script, which may not be + # what you want. + wrapper => "$config{svnrepo}/hooks/post-commit", + wrappermode => 04755, + }, + { + # The cgi wrapper. + #cgiwrapper => { + # cgi => 1, + # wrapper => "/var/www/wiki/ikiwiki.cgi", + # wrappermode => 06755, + #}, + }, + ], - # The cgi wrapper. - #cgiwrapper => { - # cgi => 1, - # wrapper => "/var/www/wiki/ikiwiki.cgi", - # wrappermode => 06755, - #}, - # Can anonymous web users edit pages? #anonok => 1, -); +} -- cgit v1.2.3