aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash....
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-12 12:04:47 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-12 12:04:47 -0400
commit52cccc6fd441111d7f5bc3bc1190ecab1c26248a (patch)
tree68a82971f363e0c5859e798e44a1e24ef69fd4f6 /doc/bugs/title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn
parent6255c88e89625ee50a1e114575edfdd56c90e3b1 (diff)
downloadikiwiki-52cccc6fd441111d7f5bc3bc1190ecab1c26248a.tar
ikiwiki-52cccc6fd441111d7f5bc3bc1190ecab1c26248a.tar.gz
remove example (which was lacking escaping)
Diffstat (limited to 'doc/bugs/title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn')
-rw-r--r--doc/bugs/title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn24
1 files changed, 0 insertions, 24 deletions
diff --git a/doc/bugs/title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn b/doc/bugs/title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn
index d81874ed6..8dc78a4a9 100644
--- a/doc/bugs/title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn
+++ b/doc/bugs/title__40____41___in_a_PageSpec__44___with_meta_enabled__44___causes_a_crash.mdwn
@@ -1,27 +1,3 @@
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).
-Applying the changes shown here to ikiwiki's docwiki, and rebuilding its docwiki, is sufficient to reproduce this bug.
-
- diff --git a/doc/sandbox.mdwn b/doc/sandbox.mdwn
- index 5c7368f..8aaa032 100644
- --- a/doc/sandbox.mdwn
- +++ b/doc/sandbox.mdwn
- @@ -78,4 +78,4 @@ The haiku will change after every save, mind you.
-
- This sandbox is also a [[ikiwiki/blog]]!
-
- -[[inline pages="sandbox/* and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
- +[[inline pages="sandbox/* and !title(*s3kr1t*) and !*/Discussion" rootpage="sandbox" show="4" archive="yes"]]
- diff --git a/docwiki.setup b/docwiki.setup
- index 0a6a866..65590f0 100644
- --- a/docwiki.setup
- +++ b/docwiki.setup
- @@ -15,5 +15,5 @@ use IkiWiki::Setup::Standard {
- syslog => 0,
- userdir => "users",
- usedirs => 0,
- - add_plugins => [qw{goodstuff version haiku polygen fortune}],
- + add_plugins => [qw{goodstuff version haiku polygen fortune meta inline}],
- }
-
[[done]] thanks!