]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/plugins/contrib/getfield.mdwn
ikiwiki (3.20140916) unstable; urgency=low
[git.ikiwiki.info.git] / doc / plugins / contrib / getfield.mdwn
1 [[!template id=plugin name=getfield author="[[rubykat]]"]]
2 [[!tag type/meta type/format]]
3 [[!toc]]
4 ## NAME
6 IkiWiki::Plugin::getfield - query the values of fields
8 ## SYNOPSIS
10     # activate the plugin
11     add_plugins => [qw{goodstuff getfield ....}],
13 ## DESCRIPTION
15 This plugin provides a way of querying the meta-data (data fields) of a page
16 inside the page content (rather than inside a template) This provides a way to
17 use per-page structured data, where each page is treated like a record, and the
18 structured data are fields in that record.  This can include the meta-data for
19 that page, such as the page title.
21 This plugin is meant to be used in conjunction with the [[field]] plugin.
23 ### USAGE
25 One can get the value of a field by using special markup in the page.
26 This does not use directive markup, in order to make it easier to
27 use the markup inside other directives.  There are four forms:
29 * \{{$*fieldname*}}
31   This queries the value of *fieldname* for the source page.
33   For example:
35         \[[!meta title="My Long and Complicated Title With Potential For Spelling Mistakes"]]
36         # {{$title}}
38   When the page is processed, this will give you:
40         <h1>My Long and Complicated Title With Potential For Spelling Mistakes</h1>
42 * \{{$*pagename*#*fieldname*}}
44   This queries the value of *fieldname* for the page *pagename*.
46   For example:
48   On PageFoo:
50     \[[!meta title="I Am Page Foo"]]
52     Stuff about Foo.
54   On PageBar:
56     For more info, see \[[\{{$PageFoo#title}}|PageFoo]].
58   When PageBar is displayed:
60     &lt;p&gt;For more info, see &lt;a href="PageFoo"&gt;I Am Page Foo&lt;/a&gt;.&lt;/p&gt;
62 * \{{+$*fieldname*+}}
64   This queries the value of *fieldname* for the destination page; that is,
65   the value when this page is included inside another page.
67   For example:
69   On PageA:
71         \[[!meta title="I Am Page A"]]
72         # {{+$title+}}
74         Stuff about A.
76   On PageB:
78         \[[!meta title="I Am Page B"]]
79         \[[!inline pagespec="PageA"]]
81   When PageA is displayed:
83         <h1>I Am Page A</h1>
84         <p>Stuff about A.</p>
86   When PageB is displayed:
88         <h1>I Am Page B</h1>
89         <p>Stuff about A.</p>
91 * \{{+$*pagename*#*fieldname*+}}
93   This queries the value of *fieldname* for the page *pagename*; the
94   only difference between this and \{{$*pagename*#*fieldname*}} is
95   that the full name of *pagename* is calculated relative to the
96   destination page rather than the source page.
98   I can't really think of a reason why this should be needed, but
99   this format has been added for completeness.
101 ### Escaping
103 Getfield markup can be escaped by putting a backwards slash `\`
104 in front of the markup.
105 If that is done, then the markup is displayed as-is.
107 ### No Value Found
109 If no value is found for the given field, then the field name is returned.
111 For example:
113 On PageFoo:
115     \[[!meta title="Foo"]]
116     My title is {{$title}}.
117     
118     My description is {{$description}}.
120 When PageFoo is displayed:
122     <p>My title is Foo.</p>
123     
124     <p>My description is description.</p>
126 This is because "description" hasn't been defined for that page.
128 ### More Examples
130 Listing all the sub-pages of the current page:
132     \[[!map pages="{{$page}}/*"]]
134 ## DOWNLOAD
136 * browse at GitHub: <http://github.com/rubykat/ikiplugins/blob/master/IkiWiki/Plugin/getfield.pm>
137 * git repo at git://github.com/rubykat/ikiplugins.git