2 # Ikiwiki skeleton plugin. Replace "skeleton" with the name of your plugin
3 # in the lines below, remove hooks you don't use, and flesh out the code to
4 # make it do something.
5 package IkiWiki::Plugin::skeleton;
12 hook(type => "getopt", id => "skeleton", call => \&getopt);
13 hook(type => "getsetup", id => "skeleton", call => \&getsetup);
14 hook(type => "checkconfig", id => "skeleton", call => \&checkconfig);
15 hook(type => "refresh", id => "skeleton", call => \&refresh);
16 hook(type => "needsbuild", id => "skeleton", call => \&needsbuild);
17 hook(type => "preprocess", id => "skeleton", call => \&preprocess);
18 hook(type => "filter", id => "skeleton", call => \&filter);
19 hook(type => "linkify", id => "skeleton", call => \&linkify);
20 hook(type => "scan", id => "skeleton", call => \&scan);
21 hook(type => "htmlize", id => "skeleton", call => \&htmlize);
22 hook(type => "sanitize", id => "skeleton", call => \&sanitize);
23 hook(type => "indexhtml", id => "skeleton", call => \&indexhtml);
24 hook(type => "format", id => "skeleton", call => \&format);
25 hook(type => "pagetemplate", id => "skeleton", call => \&pagetemplate);
26 hook(type => "templatefile", id => "skeleton", call => \&templatefile);
27 hook(type => "pageactions", id => "skeleton", call => \&pageactions);
28 hook(type => "delete", id => "skeleton", call => \&delete);
29 hook(type => "rendered", id => "skeleton", call => \&rendered);
30 hook(type => "changes", id => "skeleton", call => \&changes);
31 hook(type => "cgi", id => "skeleton", call => \&cgi);
32 hook(type => "auth", id => "skeleton", call => \&auth);
33 hook(type => "sessioncgi", id => "skeleton", call => \&sessioncgi);
34 hook(type => "canedit", id => "skeleton", call => \&canedit);
35 hook(type => "canremove", id => "skeleton", call => \&canremove);
36 hook(type => "canrename", id => "skeleton", call => \&canrename);
37 hook(type => "checkcontent", id => "skeleton", call => \&checkcontent);
38 hook(type => "editcontent", id => "skeleton", call => \&editcontent);
39 hook(type => "formbuilder_setup", id => "skeleton", call => \&formbuilder_setup);
40 hook(type => "formbuilder", id => "skeleton", call => \&formbuilder);
41 hook(type => "renamepage", id => "skeleton", call => \&renamepage);
42 hook(type => "rename", id => "skeleton", call => \&rename);
43 hook(type => "savestate", id => "skeleton", call => \&savestate);
44 hook(type => "genwrapper", id => "skeleton", call => \&genwrapper);
45 hook(type => "disable", id => "skeleton", call => \&disable);
49 debug("skeleton plugin getopt");
62 description => "example option",
69 debug("skeleton plugin checkconfig");
73 debug("skeleton plugin refresh");
79 debug("skeleton plugin needsbuild");
87 return "skeleton plugin result";
93 debug("skeleton plugin running as filter");
95 return $params{content};
101 debug("skeleton plugin running as linkify");
103 return $params{content};
109 debug("skeleton plugin running as scan");
115 debug("skeleton plugin running as htmlize");
117 return $params{content};
123 debug("skeleton plugin running as a sanitizer");
125 return $params{content};
131 debug("skeleton plugin running as indexhtml");
137 debug("skeleton plugin running as a formatter");
139 return $params{content};
142 sub pagetemplate (@) {
144 my $page=$params{page};
145 my $template=$params{template};
147 debug("skeleton plugin running as a pagetemplate hook");
150 sub templatefile (@) {
152 my $page=$params{page};
154 debug("skeleton plugin running as a templatefile hook");
157 sub pageactions (@) {
159 my $page=$params{page};
161 debug("skeleton plugin running as a pageactions hook");
168 debug("skeleton plugin told that files were deleted: @files");
174 debug("skeleton plugin told that files were rendered: @files");
180 debug("skeleton plugin told that files were changed: @files");
186 debug("skeleton plugin running in cgi");
193 debug("skeleton plugin running in auth");
196 sub sessioncgi ($$) {
200 debug("skeleton plugin running in sessioncgi");
208 debug("skeleton plugin running in canedit");
214 debug("skeleton plugin running in canremove");
220 debug("skeleton plugin running in canrename");
223 sub checkcontent (@) {
226 debug("skeleton plugin running in checkcontent");
229 sub editcontent ($$$) {
232 debug("skeleton plugin running in editcontent");
234 return $params{content};
237 sub formbuilder_setup (@) {
240 debug("skeleton plugin running in formbuilder_setup");
243 sub formbuilder (@) {
246 debug("skeleton plugin running in formbuilder");
252 debug("skeleton plugin running in renamepage");
258 debug("skeleton plugin running in rename");
262 debug("skeleton plugin running in savestate");
266 debug("skeleton plugin running in genwrapper");
270 debug("skeleton plugin running in disable");