2 package IkiWiki::Plugin::edittemplate;
11 hook(type => "getsetup", id => "edittemplate",
13 hook(type => "needsbuild", id => "edittemplate",
14 call => \&needsbuild);
15 hook(type => "preprocess", id => "edittemplate",
16 call => \&preprocess);
17 hook(type => "formbuilder", id => "edittemplate",
18 call => \&formbuilder);
33 foreach my $page (keys %pagestate) {
34 if (exists $pagestate{$page}{edittemplate}) {
35 if (exists $pagesources{$page} &&
36 grep { $_ eq $pagesources{$page} } @$needsbuild) {
37 # remove state, it will be re-added
38 # if the preprocessor directive is still
39 # there during the rebuild
40 delete $pagestate{$page}{edittemplate};
49 return "" if $params{page} ne $params{destpage};
51 if (! exists $params{template} || ! length($params{template})) {
52 error gettext("template not specified")
54 if (! exists $params{match} || ! length($params{match})) {
55 error gettext("match not specified")
58 my $link=linkpage($params{template});
59 my $bestlink=bestlink($params{page}, $link);
60 $pagestate{$params{page}}{edittemplate}{$params{match}}=$bestlink;
62 add_depends($params{page}, $link, deptype("presence"));
63 return "" if ($params{silent} && IkiWiki::yesno($params{silent})) &&
65 return sprintf(gettext("edittemplate %s registered for %s"),
66 htmllink($params{page}, $params{destpage}, $link),
72 my $form=$params{form};
74 return if $form->field("do") ne "create" ||
75 (defined $form->field("editcontent") && length $form->field("editcontent"));
77 my $page=$form->field("page");
79 # The tricky bit here is that $page is probably just the base
80 # page name, without any subdir, but the pagespec for a template
81 # probably does include the subdir (ie, "bugs/*"). We don't know
82 # what subdir the user will pick to put the page in. So, try them
83 # all, starting with the one that was made default.
85 foreach my $field ($form->field) {
86 if ($field eq 'page') {
87 @page_locs=$field->def_value;
89 # FormBuilder is on the bad crack. See #551499
90 my @options=map { ref $_ ? @$_ : $_ } $field->options;
92 push @page_locs, @options;
95 foreach my $p (@page_locs) {
96 foreach my $registering_page (keys %pagestate) {
97 if (exists $pagestate{$registering_page}{edittemplate}) {
98 foreach my $pagespec (sort keys %{$pagestate{$registering_page}{edittemplate}}) {
99 if (pagespec_match($p, $pagespec, location => $registering_page)) {
100 my $template=$pagestate{$registering_page}{edittemplate}{$pagespec};
101 $form->field(name => "editcontent",
102 value => filltemplate($template, $page));
103 $form->field(name => "type",
104 value => pagetype($pagesources{$template}))
105 if $pagesources{$template};
114 sub filltemplate ($$) {
115 my $template_page=shift;
120 # force page name absolute so it doesn't look in templates/
121 $template=template("/".$template_page);
124 # Indicate that the earlier preprocessor directive set
125 # up a template that doesn't work.
126 return "[[!pagetemplate ".gettext("failed to process template:")." $@]]";
128 if (! defined $template) {
132 $template->param(name => $page);
134 return $template->output;