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));
65 my $map = "<div class='map'>\n<ul>\n";
66 foreach my $item (sort keys %mapitems) {
67 $item=~s/^\Q$common_prefix\E\///
68 if defined $common_prefix && length $common_prefix;
69 my $depth = ($item =~ tr/\//\//) + 1;
70 my $baseitem=IkiWiki::dirname($item);
71 while (length $parent && length $baseitem && $baseitem !~ /^\Q$parent\E(\/|$)/) {
72 $parent=IkiWiki::dirname($parent);
73 last if !$dummy && length $parent && $baseitem =~ /^\Q$parent\E(\/|$)/;
81 while ($depth < $indent) {
88 my @bits=split("/", $item);
90 $p.="/".shift(@bits) for 1..$indent;
91 while ($depth > $indent) {
96 if ($depth > $indent) {
100 .htmllink($params{page}, $params{destpage}, $p, class => "mapparent")
108 $map .= "</li>\n" if $openli;
110 .htmllink($params{page}, $params{destpage},
111 "/".$common_prefix."/".$item, class => "mapitem")
116 while ($indent > 0) {
118 $map .= "</li>\n</ul>\n";