initial draft

master
Joey Hess 2008-07-29 15:39:01 -04:00
parent 37245a9988
commit a02c3f46ea
3 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,55 @@
#!/usr/bin/perl
package IkiWiki::Plugin::autoindex;
use warnings;
use strict;
use IkiWiki 2.00;
use Encode;
sub import { #{{{
hook(type => "refresh", id => "autoindex", call => \&refresh);
} # }}}
sub genindex ($) { #{{{
my $page=shift;
my $file=$page.".".$config{default_pageext};
my $template=template("autoindex.tmpl");
$template->param(page => $page);
writefile($file, $config{srcdir}, $template->output);
} #}}}
sub refresh () { #{{{
eval q{use File::Find};
error($@) if $@;
my (%pages, %dirs);
find({
no_chdir => 1,
wanted => sub {
$_=decode_utf8($_);
if (IkiWiki::file_pruned($_, $config{srcdir})) {
$File::Find::prune=1;
}
elsif (! -l $_) {
my ($f)=/$config{wiki_file_regexp}/; # untaint
return unless defined $f;
$f=~s/^\Q$config{srcdir}\E\/?//;
return unless length $f;
if (! -d _) {
$pages{pagename($f)}=1;
}
else {
$dirs{$f}=1;
}
}
}
}, $config{srcdir});
foreach my $dir (keys %dirs) {
if (! exists $pages{$dir}) {
genindex($dir);
}
}
} #}}}
1

View File

@ -0,0 +1,7 @@
[[!template id=plugin name=autoindex core=0 author="[[Joey]]"]]
[[!tag type/useful]]
This plugin searches for [[SubPages|ikiwiki/subpage]] with a missing parent
page, and generates a parent page for them. The generated page content is
controlled by the autoindex [[template|wikitemplates]], which by default,
uses a [[map]] to list the SubPages.

View File

@ -0,0 +1 @@
[[!map pages="<TMPL_VAR PAGE>/* and ! <TMPL_VAR PAGE>/*/*"]]