#!/usr/bin/perl # # Produce a hyerarchical map of links. # # by Alessandro Dotti Contra # # Revision: 0.2 package IkiWiki::Plugin::map; use warnings; use strict; use IkiWiki; sub import { #{{{ IkiWiki::hook(type => "preprocess", id => "map", call => \&preprocess); } # }}} sub preprocess (@) { #{{{ my %params=@_; $params{pages}="*" unless defined $params{pages}; # Needs to update whenever a page is added or removed, so # register a dependency. IkiWiki::add_depends($params{page}, $params{pages}); # Get all the items to map. my @mapitems = (); foreach my $page (keys %IkiWiki::links) { if (IkiWiki::pagespec_match($page, $params{pages})) { push @mapitems, $page; } } # Create the map. my $indent=0; my $openli=0; my $map = "
\n"; $map .= "\n"; } while ($depth > $indent) { $indent++; $map.="\n"; } $map .= "\n"; $map .= "
\n"; return $map; } # }}} 1