]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn
web commit by http://smcv.pseudorandom.co.uk/
[ikiwiki.git] / doc / bugs / title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn
1 When the meta plugin is enabled, use of the title() predicate in a [[PageSpec]] fails with "Undefined subroutine &IkiWiki::Plugin::meta::pagetitle called". The [[patch]] is to replace "pagetitle" with "IkiWiki::pagetitle" in the meta plugin, as in [this git commit](http://git.debian.org/?p=users/smcv/ikiwiki.git;a=commit;h=1f26a1bf1655b1d0223b24ba1db70579a3774eb1) (git://git.debian.org/git/users/smcv/ikiwiki.git, branch=master, commit=1f26a).
2
3 Applying the changes shown here to ikiwiki's docwiki, and rebuilding its docwiki, is sufficient to reproduce this bug.
4
5     diff --git a/doc/sandbox.mdwn b/doc/sandbox.mdwn
6     index 5c7368f..8aaa032 100644
7     --- a/doc/sandbox.mdwn
8     +++ b/doc/sandbox.mdwn
9     @@ -78,4 +78,4 @@ The haiku will change after every save, mind you.
10     
11      This sandbox is also a [[ikiwiki/blog]]!
12  
13     -[[inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
14     +[[inline pages="sandbox/* and !title(*s3kr1t*) and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
15     diff --git a/docwiki.setup b/docwiki.setup
16     index 0a6a866..65590f0 100644
17     --- a/docwiki.setup
18     +++ b/docwiki.setup
19     @@ -15,5 +15,5 @@ use IkiWiki::Setup::Standard {
20         syslog => 0,
21         userdir => "users",
22         usedirs => 0,
23     -   add_plugins => [qw{goodstuff version haiku polygen fortune}],
24     +   add_plugins => [qw{goodstuff version haiku polygen fortune meta inline}],
25     }