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.
|
|
|
|
|
2006-06-02 06:49:12 +02:00
|
|
|
You can use any field names you like, but here are some predefined ones:
|
|
|
|
|
|
|
|
* link
|
|
|
|
|
2007-03-21 19:52:56 +01:00
|
|
|
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
|
2007-12-09 02:04:18 +01:00
|
|
|
[[ikiwiki/WikiLink]]:
|
2007-03-21 19:52:56 +01:00
|
|
|
|
|
|
|
\[[meta link=otherpage]]
|
2006-06-02 06:49:12 +02:00
|
|
|
|
2007-03-21 19:52:56 +01:00
|
|
|
It can also be used to insert a html <link> tag. For example:
|
2006-06-02 06:49:12 +02:00
|
|
|
|
2007-03-21 19:52:56 +01:00
|
|
|
\[[meta link="http://joeyh.myopenid.com/" rel="openid.delegate"]]
|
2006-06-02 06:49:12 +02:00
|
|
|
|
2007-03-21 19:52:56 +01:00
|
|
|
However, this latter syntax won't be allowed if the [[htmlscrubber]] is
|
|
|
|
enabled, since it can be used to insert unsafe content.
|
2006-06-02 06:49:12 +02:00
|
|
|
|
2007-12-08 20:58:29 +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.
|
|
|
|
|
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
|
|
|
|
WikiLinks.
|
|
|
|
|
|
|
|
* copyright
|
|
|
|
|
|
|
|
Specifies the copyright of the page, for example, "Copyright 2007 by
|
|
|
|
Joey Hess". Can contain WikiLinks.
|
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"]]
|
|
|
|
|
|
|
|
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.
|