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);
32 foreach my $page (keys %pagestate) {
33 if (exists $pagestate{$page}{edittemplate}) {
34 if (exists $pagesources{$page} &&
35 grep { $_ eq $pagesources{$page} } @$needsbuild) {
36 # remove state, it will be re-added
37 # if the preprocessor directive is still
38 # there during the rebuild
39 delete $pagestate{$page}{edittemplate};
48 return "" if $params{page} ne $params{destpage};
50 if (! exists $params{template} || ! length($params{template})) {
51 error gettext("template not specified")
53 if (! exists $params{match} || ! length($params{match})) {
54 error gettext("match not specified")
57 my $link=linkpage($params{template});
58 my $bestlink=bestlink($params{page}, $link);
59 $pagestate{$params{page}}{edittemplate}{$params{match}}=$bestlink;
61 return "" if ($params{silent} && IkiWiki::yesno($params{silent}));
62 add_depends($params{page}, $link, deptype("presence"));
63 return sprintf(gettext("edittemplate %s registered for %s"),
64 htmllink($params{page}, $params{destpage}, $link),
70 my $form=$params{form};
72 return if $form->field("do") ne "create" ||
73 (defined $form->field("editcontent") && length $form->field("editcontent"));
75 my $page=$form->field("page");
77 # The tricky bit here is that $page is probably just the base
78 # page name, without any subdir, but the pagespec for a template
79 # probably does include the subdir (ie, "bugs/*"). We don't know
80 # what subdir the user will pick to put the page in. So, try them
81 # all, starting with the one that was made default.
83 foreach my $field ($form->field) {
84 if ($field eq 'page') {
85 @page_locs=$field->def_value;
87 # FormBuilder is on the bad crack. See #551499
88 my @options=map { ref $_ ? @$_ : $_ } $field->options;
90 push @page_locs, @options;
93 foreach my $p (@page_locs) {
94 foreach my $registering_page (keys %pagestate) {
95 if (exists $pagestate{$registering_page}{edittemplate}) {
96 foreach my $pagespec (sort keys %{$pagestate{$registering_page}{edittemplate}}) {
97 if (pagespec_match($p, $pagespec, location => $registering_page)) {
98 my $template=$pagestate{$registering_page}{edittemplate}{$pagespec};
99 $form->field(name => "editcontent",
100 value => filltemplate($template, $page));
101 $form->field(name => "type",
102 value => pagetype($pagesources{$template}))
103 if $pagesources{$template};
112 sub filltemplate ($$) {
113 my $template_page=shift;
116 my $template_file=$pagesources{$template_page};
117 if (! defined $template_file) {
123 $template=HTML::Template->new(
125 my $text_ref = shift;
126 $$text_ref=&Encode::decode_utf8($$text_ref);
129 filename => srcfile($template_file),
130 die_on_bad_params => 0,
135 # Indicate that the earlier preprocessor directive set
136 # up a template that doesn't work.
137 return "[[!pagetemplate ".gettext("failed to process")." $@]]";
140 $template->param(name => $page);
142 return $template->output;