diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-16 17:31:15 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-16 17:31:15 -0400 |
commit | 2c05a34be17c805d929f0ad563acf857eba1d46b (patch) | |
tree | 5466b9a35d4102b606dcb154186989c8857b1b4d /IkiWiki/Plugin | |
parent | 4ed0a630cb8a10d583c5e88cc7a87a5cecdedc8d (diff) | |
parent | 35668b87d3247a7de6c4dbb9edd7e0d909603524 (diff) |
Merge commit 'intrigeri/pedigree'
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/parentlinks.pm | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/parentlinks.pm b/IkiWiki/Plugin/parentlinks.pm new file mode 100644 index 000000000..a94cd469c --- /dev/null +++ b/IkiWiki/Plugin/parentlinks.pm @@ -0,0 +1,55 @@ +#!/usr/bin/perl +# -*- cperl-indent-level: 8; -*- +# Ikiwiki parentlinks plugin. +package IkiWiki::Plugin::parentlinks; + +use warnings; +use strict; +use IkiWiki 2.00; + +sub import { #{{{ + hook(type => "pagetemplate", id => "parentlinks", call => \&pagetemplate); +} # }}} + +sub parentlinks ($) { #{{{ + my $page=shift; + + my @ret; + my $path=""; + my $title=$config{wikiname}; + my $i=0; + my $depth=0; + my $height=0; + + my @pagepath=(split("/", $page)); + my $pagedepth=@pagepath; + foreach my $dir (@pagepath) { + next if $dir eq 'index'; + $depth=$i; + $height=($pagedepth - $depth); + push @ret, { + url => urlto($path, $page), + page => $title, + depth => $depth, + height => $height, + "depth_$depth" => 1, + "height_$height" => 1, + }; + $path.="/".$dir; + $title=IkiWiki::pagetitle($dir); + $i++; + } + return @ret; +} #}}} + +sub pagetemplate (@) { #{{{ + my %params=@_; + my $page=$params{page}; + my $template=$params{template}; + + if ($template->query(name => "parentlinks")) { + $template->param(parentlinks => [parentlinks($page)]); + } +} # }}} + +1 |