From: Simon McVittie Date: Sun, 26 Dec 2010 22:19:36 +0000 (+0000) Subject: autoindex: default to autoindex_commit=1 as intended X-Git-Url: http://git.tremily.us/?p=ikiwiki.git;a=commitdiff_plain;h=44547af279408ee794e022316eb15efb85418b08 autoindex: default to autoindex_commit=1 as intended --- diff --git a/IkiWiki/Plugin/autoindex.pm b/IkiWiki/Plugin/autoindex.pm index 825633d5a..78571b276 100644 --- a/IkiWiki/Plugin/autoindex.pm +++ b/IkiWiki/Plugin/autoindex.pm @@ -7,6 +7,7 @@ use IkiWiki 3.00; use Encode; sub import { + hook(type => "checkconfig", id => "autoindex", call => \&checkconfig); hook(type => "getsetup", id => "autoindex", call => \&getsetup); hook(type => "refresh", id => "autoindex", call => \&refresh); IkiWiki::loadplugin("transient"); @@ -28,6 +29,12 @@ sub getsetup () { }, } +sub checkconfig () { + if (! defined $config{autoindex_commit}) { + $config{autoindex_commit} = 1; + } +} + sub genindex ($) { my $page=shift; my $file=newpagefile($page, $config{default_pageext});