2 package IkiWiki::Plugin::autoindex;
10 hook(type => "checkconfig", id => "autoindex", call => \&checkconfig);
11 hook(type => "getsetup", id => "autoindex", call => \&getsetup);
12 hook(type => "refresh", id => "autoindex", call => \&refresh);
13 IkiWiki::loadplugin("transient");
26 description => "commit autocreated index pages",
33 if (! defined $config{autoindex_commit}) {
34 $config{autoindex_commit} = 1;
40 my $file=newpagefile($page, $config{default_pageext});
42 add_autofile($file, "autoindex", sub {
43 my $message = sprintf(gettext("creating index page %s"),
47 my $dir = $config{srcdir};
48 if (! $config{autoindex_commit}) {
50 $dir = $IkiWiki::Plugin::transient::transientdir;
53 my $template = template("autoindex.tmpl");
54 $template->param(page => $page);
55 writefile($file, $dir, $template->output);
57 if ($config{rcs} && $config{autoindex_commit}) {
58 IkiWiki::disable_commit_hook();
59 IkiWiki::rcs_add($file);
60 IkiWiki::rcs_commit_staged(message => $message);
61 IkiWiki::enable_commit_hook();
67 eval q{use File::Find};
74 foreach my $dir ($config{srcdir}, @{$config{underlaydirs}}, $config{underlaydir}) {
80 my $file=decode_utf8($_);
82 return unless length $file;
83 if (IkiWiki::file_pruned($file)) {
88 my ($f) = $file =~ /$config{wiki_file_regexp}/; # untaint
89 return unless defined $f;
90 return if $f =~ /\._([^.]+)$/; # skip internal page
92 $pages{pagename($f)}=1;
94 elsif ($dir eq $config{srcdir} || ! $config{autoindex_commit}) {
101 chdir($origdir) || die "chdir $origdir: $!";
104 # Compatibility code.
106 # {deleted} contains pages that have been deleted at some point.
107 # This plugin used to delete from the hash sometimes, but no longer
108 # does; in [[todo/autoindex_should_use_add__95__autofile]] Joey
109 # thought the old behaviour was probably a bug.
111 # The effect of listing a page in {deleted} was to avoid re-creating
112 # it; we migrate these pages to {autofile} which has the same effect.
113 # However, {autofile} contains source filenames whereas {deleted}
114 # contains page names.
116 if (ref $wikistate{autoindex}{deleted}) {
117 %deleted=%{$wikistate{autoindex}{deleted}};
118 delete $wikistate{autoindex}{deleted};
120 elsif (ref $pagestate{index}{autoindex}{deleted}) {
121 # an even older version
122 %deleted=%{$pagestate{index}{autoindex}{deleted}};
123 delete $pagestate{index}{autoindex};
127 foreach my $dir (keys %deleted) {
128 my $file=newpagefile($dir, $config{default_pageext});
129 $wikistate{autoindex}{autofile}{$file} = 1;
133 foreach my $dir (keys %dirs) {
134 if (! exists $pages{$dir} && grep /^$dir\/.*/, keys %pages) {