#!/usr/bin/perl # # Produce a hierarchical map of links. # # by Alessandro Dotti Contra # # Revision: 0.2 package IkiWiki::Plugin::map; use warnings; use strict; use IkiWiki 2.00; sub import { #{{{ hook(type => "preprocess", id => "map", call => \&preprocess); } # }}} sub preprocess (@) { #{{{ my %params=@_; $params{pages}="*" unless defined $params{pages}; # Get all the items to map. my @mapitems = (); foreach my $page (keys %pagesources) { if (pagespec_match($page, $params{pages}, location => $params{page})) { push @mapitems, "/".$page; } } # Needs to update whenever a page is added or removed, so # register a dependency. add_depends($params{page}, $params{pages}); # Explicitly add all currently shown pages, to detect when pages # are removed. add_depends($params{page}, join(" or ", @mapitems)); # Create the map. my $parent=""; my $indent=0; my $openli=0; my $map = "
\n"; foreach my $item (sort @mapitems) { my $depth = ($item =~ tr/\//\//); my $baseitem=IkiWiki::dirname($item); while (length $parent && length $baseitem && $baseitem !~ /^\Q$parent\E/) { $parent=IkiWiki::dirname($parent); $indent--; $map.="\n"; } while ($depth < $indent) { $indent--; $map.="\n"; } while ($depth > $indent) { $indent++; $map.="\n"; } $map .= "
\n"; return $map; } # }}} 1