web commit by joey: change to plugin interface
[ikiwiki] / doc / plugins / write.mdwn
1 ikiwiki [[plugins]] are written in perl. Each plugin is a perl module, in
2 the `IkiWiki::Plugin` namespace. The name of the plugin is typically in
3 lowercase, such as `IkiWiki::Plugin::inline`. Ikiwiki includes a
4 `IkiWiki::Plugin::skeleton` that can be fleshed out to make a useful
5 plugin. `IkiWiki::Plugin::pagecount` is another simple example.
6
7 ## Note
8
9 One thing to keep in mind when writing a plugin is that ikiwiki is a wiki
10 *compiler*. So plugins influence pages when they are built, not when they
11 are loaded. A plugin that inserts the current time into a page, for
12 example, will insert the build time. Also, as a compiler, ikiwiki avoids
13 rebuilding pages unless they have changed, so a plugin that prints some
14 random or changing thing on a page will generate a static page that won't
15 change until ikiwiki rebuilds the page for some other reason, like the page
16 being edited.
17
18 ## Registering plugins
19
20 Plugins should, when imported, call IkiWiki::hook to hook into
21 ikiwiki's processing. The function uses named parameters, and use varies depending on the type of plugin being registered. Note that a plugin can call the function more than once to register multiple hooks. All calls to IkiWiki::hook should be passed a "type" parameter, which gives the type of hook, a "id" paramter, which should be a unique string for this plugin, and a "call" parameter, which is a reference to a function to call for the hook.
22
23 ## Writing a [[PreProcessorDirective]]
24
25         IkiWiki::hook(type => "preprocess", id => "foo", call => \&preprocess);
26
27 Replace "foo" with the command name that will be used inside brackers for the preprocessor directive.
28
29 Each time the directive is processed, the referenced subroutine (`preprocess` in the example above) is called, and is passed named parameters. A
30 "page" parameter gives the name of the page that embedded the preprocessor directive. All parameters included in the directive are included
31 as named parameters as well. Whatever the subroutine returns goes onto the
32 page in place of the directive.
33
34 ## Error handing in plugins
35
36 While a plugin can call ikiwiki's error routine for a fatal error, for
37 errors that aren't intended to halt the entire wiki build, including bad
38 parameters passed to a [[PreProcessorDirective]], etc, it's better to just
39 return the error message as the output of the plugin.
40
41 ## Html issues
42
43 Note that if [[HTMLSanitization]] is enabled, html in 
44 [[PreProcessorDirective]] output is sanitised, which may limit what your
45 plugin can do. Also, the rest of the page content is not in html format at
46 preprocessor time. Text output by a preprocessor directive will be passed through markdown along with the rest of the page.
47
48 ## Wiki configuration
49
50 A plugin can access the wiki's configuration via the `%IkiWiki::config` hash.
51 The best way to understand the contents of the hash is to look at
52 [[ikiwiki.setup]], which sets the hash content to configure the wiki.
53
54 ## Wiki data
55
56 If your plugin needs to access data about other pages in the wiki. It can
57 use the following hashes, using a page name as the key:
58
59 * `%IkiWiki::links` lists the names of each page
60   that a page links to, in an array reference.
61 * `%IkiWiki::pagemtime` contains the last modification time of each page
62 * `%IkiWiki::pagectime` contains the creation time of each page
63 * `%IkiWiki::renderedfiles` contains the name of the file rendered by a
64   page
65 * `%IkiWiki::pagesources` contains the name of the source file for a page.
66 * `%IkiWiki::depends` contains a [[GlobList]] that is used to specify other
67   pages that a page depends on. If one of its dependencies is updated, the
68   page will also get rebuilt. 
69   
70   Many plugins will need to add dependencies to this hash; the best way to do
71   it is by using the IkiWiki::add_depends function, which takes as its
72   parameters the page name and a [[GlobList]] of dependencies to add.
73
74 ## RCS plugins
75
76 ikiwiki's support for revision control systems also uses pluggable perl
77 modules. These are in the `IkiWiki::RCS` namespace, for example
78 `IkiWiki::RCS::svn`. 
79
80 Each RCS plugin must support all the IkiWiki::rcs_* functions.
81 See IkiWiki::RCS::Stub for the full list of functions. It's ok if
82 rcs_getctime does nothing except for throwing an error.