3 # Produce a hierarchical map of links.
5 # by Alessandro Dotti Contra <alessandro@hyboria.org>
8 package IkiWiki::Plugin::map;
15 hook(type => "preprocess", id => "map", call => \&preprocess);
18 sub preprocess (@) { #{{{
20 $params{pages}="*" unless defined $params{pages};
24 # Get all the items to map.
26 foreach my $page (keys %pagesources) {
27 if (pagespec_match($page, $params{pages}, location => $params{page})) {
30 # Check for a common prefix.
31 if (! defined $common_prefix) {
34 elsif (length $common_prefix &&
35 $page !~ /^\Q$common_prefix\E(\/|$)/) {
36 my @a=split(/\//, $page);
37 my @b=split(/\//, $common_prefix);
39 while (@a && @b && $a[0] eq $b[0]) {
40 $common_prefix.=shift(@a);
47 # Common prefix should not be a page in the map.
48 while (defined $common_prefix && length $common_prefix &&
49 exists $mapitems{$common_prefix}) {
50 $common_prefix=IkiWiki::dirname($common_prefix);
53 # Needs to update whenever a page is added or removed, so
54 # register a dependency.
55 add_depends($params{page}, $params{pages});
56 # Explicitly add all currently shown pages, to detect when pages
58 add_depends($params{page}, join(" or ", keys %mapitems));
64 my $map = "<div class='map'>\n<ul>\n";
65 foreach my $item (sort keys %mapitems) {
66 $item=~s/^\Q$common_prefix\E\///
67 if defined $common_prefix && length $common_prefix;
68 my $depth = ($item =~ tr/\//\//) + 1;
69 my $baseitem=IkiWiki::dirname($item);
70 while (length $parent && length $baseitem && $baseitem !~ /^\Q$parent\E(\/|$)/) {
71 $parent=IkiWiki::dirname($parent);
78 while ($depth < $indent) {
85 my @bits=split("/", $item);
87 $p.="/".shift(@bits) for 1..$indent;
88 while ($depth > $indent) {
93 if ($depth > $indent) {
96 .htmllink($params{page}, $params{destpage}, $p, class => "mapparent")
104 $map .= "</li>\n" if $openli;
106 .htmllink($params{page}, $params{destpage},
107 "/".$common_prefix."/".$item, class => "mapitem")
112 while ($indent > 0) {
114 $map .= "</li>\n</ul>\n";