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 => "postscan", id => "skeleton", call => \&postscan);
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 => "delete", id => "skeleton", call => \&delete);
28 hook(type => "change", id => "skeleton", call => \&change);
29 hook(type => "cgi", id => "skeleton", call => \&cgi);
30 hook(type => "auth", id => "skeleton", call => \&auth);
31 hook(type => "sessioncgi", id => "skeleton", call => \&sessioncgi);
32 hook(type => "canedit", id => "skeleton", call => \&canedit);
33 hook(type => "canremove", id => "skeleton", call => \&canremove);
34 hook(type => "canrename", id => "skeleton", call => \&canrename);
35 hook(type => "checkcontent", id => "skeleton", call => \&checkcontent);
36 hook(type => "editcontent", id => "skeleton", call => \&editcontent);
37 hook(type => "formbuilder_setup", id => "skeleton", call => \&formbuilder_setup);
38 hook(type => "formbuilder", id => "skeleton", call => \&formbuilder);
39 hook(type => "savestate", id => "skeleton", call => \&savestate);
43 debug("skeleton plugin getopt");
55 description => "example option",
62 debug("skeleton plugin checkconfig");
66 debug("skeleton plugin refresh");
70 debug("skeleton plugin needsbuild");
76 return "skeleton plugin result";
82 debug("skeleton plugin running as filter");
84 return $params{content};
90 debug("skeleton plugin running as linkify");
92 return $params{content};
98 debug("skeleton plugin running as scan");
104 debug("skeleton plugin running as htmlize");
106 return $params{content};
112 debug("skeleton plugin running as a sanitizer");
114 return $params{content};
120 debug("skeleton plugin running as postscan");
126 debug("skeleton plugin running as a formatter");
128 return $params{content};
131 sub pagetemplate (@) {
133 my $page=$params{page};
134 my $template=$params{template};
136 debug("skeleton plugin running as a pagetemplate hook");
139 sub templatefile (@) {
141 my $page=$params{page};
143 debug("skeleton plugin running as a templatefile hook");
149 debug("skeleton plugin told that files were deleted: @files");
155 debug("skeleton plugin told that changed files were rendered: @files");
161 debug("skeleton plugin running in cgi");
168 debug("skeleton plugin running in auth");
171 sub sessioncgi ($$) {
175 debug("skeleton plugin running in sessioncgi");
183 debug("skeleton plugin running in canedit");
186 sub canremove ($$$) {
191 debug("skeleton plugin running in canremove");
197 debug("skeleton plugin running in canrename");
200 sub checkcontent (@) {
203 debug("skeleton plugin running in checkcontent");
206 sub editcontent ($$$) {
209 debug("skeleton plugin running in editcontent");
211 return $params{content};
214 sub formbuilder_setup (@) {
217 debug("skeleton plugin running in formbuilder_setup");
220 sub formbuilder (@) {
223 debug("skeleton plugin running in formbuilder");
227 debug("skeleton plugin running in savestate");