diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs.mdwn | 2 | ||||
-rw-r--r-- | doc/ikiwiki.setup | 36 | ||||
-rw-r--r-- | doc/setup.mdwn | 4 | ||||
-rw-r--r-- | doc/todo.mdwn | 9 |
4 files changed, 22 insertions, 29 deletions
diff --git a/doc/bugs.mdwn b/doc/bugs.mdwn index 8ceff9aae..812a2c5ff 100644 --- a/doc/bugs.mdwn +++ b/doc/bugs.mdwn @@ -4,8 +4,6 @@ to point to it, but will forget to update the linkbacks in Foo/Baz. And if Foo/Bar/Baz is then removed, it forgets to update Foo/Bar to link back to Foo/Baz. -* Foo/Bar/Baz shows up as Bar/Baz in the linkbacks on page Foo/Bar. Should - show as just Baz there. * If I try to do a web commit, to a svn+ssh repo, it fails with "Host key verification failed." I think that the setuid isn't fully taking; it should be running as me, 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, -); +} diff --git a/doc/setup.mdwn b/doc/setup.mdwn index d72cac71a..fe590c415 100644 --- a/doc/setup.mdwn +++ b/doc/setup.mdwn @@ -54,7 +54,7 @@ optional support for commits from the web. directories, and read through and configure the rest of the file to your liking. - Note that the default file has a block to configure a svnwraper. This + Note that the default file has a block to configure a svn wrapper. This sets up a [[post-commit]] hook to update the wiki. When you're satisfied, run `ikiwiki --setup ikiwiki.setup`, and it @@ -62,7 +62,7 @@ optional support for commits from the web. 8. Set up [[CGI]] to allow editing the wiki from the web. - Just edit ikiwiki.setup, uncomment the block for the cgiwrapper, make + Just edit ikiwiki.setup, uncomment the block for the cgi wrapper, make sure the filename for the cgi wrapper is ok, run `ikiwiki --setup ikiwiki.setup`, and you're done! diff --git a/doc/todo.mdwn b/doc/todo.mdwn index 2b4da3c4f..7565c5b59 100644 --- a/doc/todo.mdwn +++ b/doc/todo.mdwn @@ -77,15 +77,6 @@ recentchanges that goes to the diff for any listed change. Possibly add "next 100" link to it, but OTOH, you can just use svn log if you need that data.. -## setup classes - -The setup files should "use WikiWiki::Setup" and the like at the top, and -indeed could just be one big use that passes all params to the module's -importer. The module then handles running ikiwiki functions. This would -allow for different types of setup files for more than just the one -hardcoded thing there is now, and would probably be good for upgrades, -incompatible changes, etc, too. - ## base wiki Need a toned down version of this wiki with a basic frontpage, sandbox and |