2007-02-13 19:51:21 +01:00
|
|
|
[[template id=plugin name=meta author="[[Joey]]"]]
|
2006-08-23 07:41:07 +02:00
|
|
|
[[tag type/meta]]
|
|
|
|
|
2006-06-02 06:49:12 +02:00
|
|
|
This plugin allows inserting arbitrary metadata into the source of a page.
|
|
|
|
Enter the metadata as follows:
|
|
|
|
|
2006-07-28 02:33:57 +02:00
|
|
|
\[[meta field="value"]]
|
|
|
|
\[[meta field="value" param="value" param="value"]]
|
2006-06-02 06:49:12 +02:00
|
|
|
|
|
|
|
The first form sets a given field to a given value, while the second form
|
|
|
|
also specifies some additional sub-parameters.
|
|
|
|
|
2007-03-21 19:52:56 +01:00
|
|
|
The field values are treated as HTML entity-escaped text, so you can include
|
|
|
|
a quote in the text by writing `"` and so on.
|
|
|
|
|
* meta: Drop support for "meta link", since supporting this for internal
links required meta to be run during scan, which complicated its data
storage, since it had to clear data stored during the scan pass to avoid
duplicating it during the normal preprocessing pass.
* If you used "meta link", you should switch to either "meta openid" (for
openid delegations), or tags (for internal, invisible links). I assume
that nobody really used "meta link" for external, non-openid links, since
the htmlscrubber ate those. (Tell me differently and I'll consider bringing
back that support.)
* meta: Improved data storage.
* meta: Drop the hackish filter hook that was used to clear
stored data before preprocessing, this hack was ugly, and broken (cf:
liw's disappearing openids).
* aggregate: Convert filter hook to a needsbuild hook.
2007-12-16 21:56:09 +01:00
|
|
|
Supported fields:
|
2007-12-08 20:58:29 +01:00
|
|
|
|
2006-06-02 06:49:12 +02:00
|
|
|
* title
|
|
|
|
|
|
|
|
Overrides the title of the page, which is generally the same as the
|
|
|
|
page name.
|
|
|
|
|
2007-01-28 01:10:22 +01:00
|
|
|
Note that if the title is overridden, a "title_overridden" variable will
|
2006-08-12 19:51:32 +02:00
|
|
|
be set to a true value in the template; this can be used to format things
|
|
|
|
differently in this case.
|
|
|
|
|
2006-06-02 06:49:12 +02:00
|
|
|
* license
|
|
|
|
|
2007-09-14 20:11:10 +02:00
|
|
|
Specifies a license for the page, for example, "GPL". Can contain
|
2008-01-09 07:05:54 +01:00
|
|
|
WikiLinks and arbitrary markup.
|
2007-09-14 20:11:10 +02:00
|
|
|
|
|
|
|
* copyright
|
|
|
|
|
|
|
|
Specifies the copyright of the page, for example, "Copyright 2007 by
|
2008-01-09 07:05:54 +01:00
|
|
|
Joey Hess". Can contain WikiLinks and arbitrary markup.
|
2006-06-02 06:49:12 +02:00
|
|
|
|
|
|
|
* author
|
|
|
|
|
|
|
|
Specifies the author of a page.
|
2007-08-05 23:54:33 +02:00
|
|
|
|
|
|
|
* authorurl
|
|
|
|
|
|
|
|
Specifies an url for the author of a page.
|
2006-06-02 06:49:12 +02:00
|
|
|
|
2006-08-04 02:01:51 +02:00
|
|
|
* permalink
|
|
|
|
|
2006-08-14 22:44:19 +02:00
|
|
|
Specifies a permanent link to the page, if different than the page
|
2006-08-04 06:29:18 +02:00
|
|
|
generated by ikiwiki.
|
2006-08-04 02:01:51 +02:00
|
|
|
|
2007-02-15 06:48:40 +01:00
|
|
|
* date
|
|
|
|
|
|
|
|
Specifies the creation date of the page. The date can be entered in
|
|
|
|
nearly any format, since it's parsed by [[cpan TimeDate]].
|
|
|
|
|
2007-03-21 19:52:56 +01:00
|
|
|
* stylesheet
|
2006-07-27 23:38:02 +02:00
|
|
|
|
2007-03-21 19:52:56 +01:00
|
|
|
Adds a stylesheet to a page. The stylesheet is treated as a wiki link to
|
|
|
|
a `.css` file in the wiki, so it cannot be used to add links to external
|
|
|
|
stylesheets. Example:
|
|
|
|
|
|
|
|
\[[meta stylesheet=somestyle rel="alternate stylesheet"
|
|
|
|
title="somestyle"]]
|
|
|
|
|
|
|
|
* openid
|
|
|
|
|
|
|
|
Adds html <link> tags to perform OpenID delegation to an external
|
|
|
|
OpenID server. This lets you use an ikiwiki page as your OpenID. Example:
|
|
|
|
|
|
|
|
\\[[meta openid="http://joeyh.myopenid.com/"
|
|
|
|
server="http://www.myopenid.com/server"]]
|
|
|
|
|
2008-01-09 08:38:43 +01:00
|
|
|
* link
|
|
|
|
|
|
|
|
Specifies a link to another page. This can be used as a way to make the
|
|
|
|
wiki treat one page as linking to another without displaying a user-visible
|
|
|
|
[[ikiwiki/WikiLink]]:
|
|
|
|
|
|
|
|
\[[meta link=otherpage]]
|
|
|
|
|
|
|
|
It can also be used to insert a html <link> tag. For example:
|
|
|
|
|
|
|
|
\[[meta link="http://joeyh.myopenid.com/" rel="openid.delegate"]]
|
|
|
|
|
|
|
|
However, this latter syntax won't be allowed if the [[htmlscrubber]] is
|
|
|
|
enabled, since it can be used to insert unsafe content.
|
|
|
|
|
* meta: Drop support for "meta link", since supporting this for internal
links required meta to be run during scan, which complicated its data
storage, since it had to clear data stored during the scan pass to avoid
duplicating it during the normal preprocessing pass.
* If you used "meta link", you should switch to either "meta openid" (for
openid delegations), or tags (for internal, invisible links). I assume
that nobody really used "meta link" for external, non-openid links, since
the htmlscrubber ate those. (Tell me differently and I'll consider bringing
back that support.)
* meta: Improved data storage.
* meta: Drop the hackish filter hook that was used to clear
stored data before preprocessing, this hack was ugly, and broken (cf:
liw's disappearing openids).
* aggregate: Convert filter hook to a needsbuild hook.
2007-12-16 21:56:09 +01:00
|
|
|
* redir
|
|
|
|
|
|
|
|
Causes the page to redirect to another page in the wiki.
|
|
|
|
|
|
|
|
\[[meta redir=otherpage]]
|
|
|
|
|
|
|
|
Optionally, a delay (in seconds) can be specified. The default is to
|
|
|
|
redirect without delay.
|
|
|
|
|
|
|
|
It can also be used to redirect to an external url. For example:
|
|
|
|
|
|
|
|
\[[meta redir="http://example.com/"]]
|
|
|
|
|
|
|
|
However, this latter syntax won't be allowed if the [[htmlscrubber]] is
|
|
|
|
enabled, since it can be used to insert unsafe content.
|
|
|
|
|
2007-12-22 16:21:00 +01:00
|
|
|
For both cases, an anchor to jump to inside the destination page may also be
|
|
|
|
specified using the common `PAGE#ANCHOR` syntax.
|
|
|
|
|
2007-03-21 19:52:56 +01:00
|
|
|
If the field is not one of the above predefined fields, the metadata will be
|
|
|
|
written to the generated html page as a <meta> header. However, this
|
|
|
|
won't be allowed if the [[htmlscrubber]] is enabled, since it can be used to
|
|
|
|
insert unsafe content.
|