]> sipb.mit.edu Git - ikiwiki.git/commitdiff
pedigree rename to parentlinks: rename/adapt everything
authorintrigeri <intrigeri@boum.org>
Tue, 15 Jul 2008 14:25:39 +0000 (16:25 +0200)
committerintrigeri <intrigeri@boum.org>
Tue, 15 Jul 2008 14:25:39 +0000 (16:25 +0200)
* Renamed to parentlinks every single variable or function called
  pedigree
* Removed the parentlinks function from Render.pm
* Enabled the new parentlinks plugin by default
* Adapted testsuite and documentation to reflate the above facts

Signed-off-by: intrigeri <intrigeri@boum.org>
IkiWiki.pm
IkiWiki/Plugin/parentlinks.pm
IkiWiki/Render.pm
doc/plugins/parentlinks.mdwn
t/parentlinks.t
t/parentlinks/templates/parentlinks.tmpl

index d4e19c388fa19c8abfd75b6504b3190910e13536..bcbbabbe0587f105b43b4dc83cd0ae3a025ae7bd 100644 (file)
@@ -77,7 +77,8 @@ sub defaultconfig () { #{{{
        adminuser => undef,
        adminemail => undef,
        plugin => [qw{mdwn link inline htmlscrubber passwordauth openid
-                       signinedit lockedit conditional recentchanges}],
+                       signinedit lockedit conditional recentchanges
+                       parentlinks}],
        libdir => undef,
        timeformat => '%c',
        locale => undef,
index eb8bfa83b38076ff7b1dd833a5d2f8a92b6a2981..a94cd469cd78d25395b62ff5a5e48eab1b785514 100644 (file)
@@ -1,17 +1,17 @@
 #!/usr/bin/perl
 # -*- cperl-indent-level: 8; -*-
-# Ikiwiki pedigree plugin.
-package IkiWiki::Plugin::pedigree;
+# Ikiwiki parentlinks plugin.
+package IkiWiki::Plugin::parentlinks;
 
 use warnings;
 use strict;
 use IkiWiki 2.00;
 
 sub import { #{{{
-       hook(type => "pagetemplate", id => "pedigree", call => \&pagetemplate);
+       hook(type => "pagetemplate", id => "parentlinks", call => \&pagetemplate);
 } # }}}
 
-sub pedigree ($) { #{{{
+sub parentlinks ($) { #{{{
        my $page=shift;
 
        my @ret;
@@ -47,8 +47,8 @@ sub pagetemplate (@) { #{{{
         my $page=$params{page};
         my $template=$params{template};
 
-       if ($template->query(name => "pedigree")) {
-               $template->param(pedigree => [pedigree($page)]);
+       if ($template->query(name => "parentlinks")) {
+               $template->param(parentlinks => [parentlinks($page)]);
        }
 } # }}}
 
index 990fcaaa111d3d48985eff126fbdd30bd0d17003..8a79119cd1173beb6a259ee4a3338e7dbbf6045b 100644 (file)
@@ -47,23 +47,6 @@ sub backlinks ($) { #{{{
        return @links;
 } #}}}
 
-sub parentlinks ($) { #{{{
-       my $page=shift;
-       
-       my @ret;
-       my $pagelink="";
-       my $path="";
-       my $title=$config{wikiname};
-       
-       foreach my $dir (split("/", $page)) {
-               next if $dir eq 'index';
-               push @ret, { url => urlto($path, $page), page => $title };
-               $path.="/".$dir;
-               $title=pagetitle($dir);
-       }
-       return @ret;
-} #}}}
-
 sub genpage ($$) { #{{{
        my $page=shift;
        my $content=shift;
@@ -121,7 +104,6 @@ sub genpage ($$) { #{{{
                        ? $config{wikiname} 
                        : pagetitle(basename($page)),
                wikiname => $config{wikiname},
-               parentlinks => [parentlinks($page)],
                content => $content,
                backlinks => $backlinks,
                more_backlinks => $more_backlinks,
index 15c0328386c4908e5df1fb661195a5d8a040d79d..ff413939019745c128f4c72238e4e1c297cc5f8e 100644 (file)
@@ -1,20 +1,19 @@
-[[!template id=plugin name=pedigree author="intrigeri"]]
-[[!tag type/useful]]
+[[!template id=plugin name=parentlinks core=1 author="[[intrigeri]]"]]
+[[!tag type/link]]
 
 This plugin offers a `HTML::Template` loop that iterates over all or
-a subset of a page's parents, providing a few bonus possibilities,
-such as styling the parent links depending on their place in the path.
-One can think of pedigree as "`PARENTLINKS` on steroids".
+a subset of a page's parents. It also provides a few bonus
+possibilities, such as styling the parent links depending on their
+place in the path.
 
 [[!toc ]]
 
 Content
 =======
 
-This plugin provides one template loop, called `PEDIGREE`, that
-returns the same parents list as `PARENTLINKS` would; as a bonus,
-every path element returned by the `PEDIGREE` loop has the following
-variables set:
+This plugin provides one template loop, called `PARENTLINKS`, that
+returns the list of parent pages for the current page. Every returned
+path element has the following variables set:
 
 * `URL` (string): url to the current path element
 * `PAGE` (string): title of the current path element
@@ -38,6 +37,18 @@ The `DEPTH` and `HEIGHT` variables allow the template writer to apply
 general treatment, depending on one of these variables, to *every*
 parent: they are counters.
 
+Basic usage
+-----------
+
+As in the default `page.tmpl`, one can simply display the list of
+parent pages:
+
+       <TMPL_LOOP NAME="PARENTLINKS">
+       <a href="<TMPL_VAR NAME=URL>"><TMPL_VAR NAME=PAGE></a>/ 
+       </TMPL_LOOP>
+       <TMPL_VAR TITLE>
+
+
 Styling parents depending on their depth
 ----------------------------------------
 
@@ -45,7 +56,7 @@ Say you want the parent links to be styled depending on their depth in
 the path going from the wiki root to the current page; just add the
 following lines in `page.tmpl`:
 
-       <TMPL_LOOP NAME="PEDIGREE">
+       <TMPL_LOOP NAME="PARENTLINKS">
        <a href="<TMPL_VAR NAME="URL">" class="depth<TMPL_VAR NAME="DEPTH">">
          <TMPL_VAR NAME="PAGE">
        </a> / 
@@ -60,7 +71,7 @@ Say you want to display all the parents links but the wiki homepage,
 styled depending on their distance to the current page; just add the
 following lines in `page.tmpl`:
 
-       <TMPL_LOOP NAME="PEDIGREE">
+       <TMPL_LOOP NAME="PARENTLINKS">
        <TMPL_IF NAME="DEPTH_0">
        <TMPL_ELSE>
        <a href="<TMPL_VAR NAME="URL">" class="height<TMPL_VAR NAME="HEIGHT">">
@@ -81,7 +92,7 @@ and/or CSS generated for some special path components; e.g.:
        <!-- all parents, skipping mother and grand'ma, inside a common div+ul -->
        <div id="oldestparents">
        <ul>
-       <TMPL_LOOP NAME="PEDIGREE">
+       <TMPL_LOOP NAME="PARENTLINKS">
          <TMPL_IF NAME="HEIGHT_2">
          <TMPL_ELSE>
            <TMPL_IF NAME="HEIGHT_1">
@@ -94,7 +105,7 @@ and/or CSS generated for some special path components; e.g.:
        </div>
        
        <!-- dedicated div's for mother and grand'ma -->
-       <TMPL_LOOP NAME="PEDIGREE">
+       <TMPL_LOOP NAME="PARENTLINKS">
          <TMPL_IF NAME="HEIGHT_2">
            <div id="grandma">
              <a href="<TMPL_VAR NAME="URL">"><TMPL_VAR NAME="PAGE"></a>
index 74871cfa8f7766fc7cbe10d6b596cd31e659caf0..593937a97f2c7878150080d3af789f86472b8d89 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 # -*- cperl-indent-level: 8; -*-
-# Testcases for the Ikiwiki pedigree plugin.
+# Testcases for the Ikiwiki parentlinks plugin.
 
 use warnings;
 use strict;
@@ -14,13 +14,12 @@ BEGIN { use_ok("IkiWiki"); }
 %config=IkiWiki::defaultconfig();
 $config{srcdir}=$config{destdir}="/dev/null";
 $config{underlaydir}="underlays/basewiki";
-$config{templatedir}="t/pedigree/templates";
+$config{templatedir}="t/parentlinks/templates";
 IkiWiki::loadplugins();
 IkiWiki::checkconfig();
-ok(IkiWiki::loadplugin("pedigree"), "pedigree plugin loaded");
 
 # Test data
-$expected{'pedigree'} =
+$expected{'parentlinks'} =
   {
    "" => [],
    "ikiwiki" => [],
@@ -42,7 +41,7 @@ sub test_loop($$) {
        my $template;
        my %params;
 
-       ok($template=template('pedigree.tmpl'), "template created");
+       ok($template=template('parentlinks.tmpl'), "template created");
        ok($params{template}=$template, "params populated");
 
        while ((my $page, my $exp) = each %{$expected}) {
@@ -53,7 +52,7 @@ sub test_loop($$) {
                # manually run the plugin hook
                $params{page}=$page;
                $template->clear_params();
-               IkiWiki::Plugin::pedigree::pagetemplate(%params);
+               IkiWiki::Plugin::parentlinks::pagetemplate(%params);
                my $res=$template->param($loop);
 
                is(scalar(@$res), $pagedepth, "$msgprefix: path length");
@@ -80,4 +79,4 @@ sub test_loop($$) {
 }
 
 # Main
-test_loop('pedigree', $expected{'pedigree'});
+test_loop('parentlinks', $expected{'parentlinks'});
index 5fa25733a7cf771489a242d880a60da80c688454..3ca3b00305895c54c1c2e1d926b089ccc980fbd3 100644 (file)
@@ -1,4 +1,4 @@
-<!-- This template file only has to "use" the loops tested by pedigree.t -->
+<!-- This template file only has to "use" the loops tested by parentlinks.t -->
 
-<TMPL_LOOP NAME="PEDIGREE">
+<TMPL_LOOP NAME="PARENTLINKS">
 </TMPL_LOOP>