+
+ # The tricky bit here is that $page is probably just the base
+ # page name, without any subdir, but the pagespec for a template
+ # probably does include the subdir (ie, "bugs/*"). We don't know
+ # what subdir the user will pick to put the page in. So, try them
+ # all, starting with the one that was made default.
+ my @page_locs=$page;
+ foreach my $field ($form->field) {
+ if ($field eq 'page') {
+ @page_locs=$field->def_value;
+
+ # FormBuilder is on the bad crack. See #551499
+ my @options=map { ref $_ ? @$_ : $_ } $field->options;
+
+ push @page_locs, @options;
+ }
+ }
+ foreach my $p (@page_locs) {
+ foreach my $registering_page (keys %pagestate) {
+ if (exists $pagestate{$registering_page}{edittemplate}) {
+ foreach my $pagespec (sort keys %{$pagestate{$registering_page}{edittemplate}}) {
+ if (pagespec_match($p, $pagespec, location => $registering_page)) {
+ my $template=$pagestate{$registering_page}{edittemplate}{$pagespec};
+ $form->field(name => "editcontent",
+ value => filltemplate($template, $page));
+ my $type=pagetype($pagesources{$template})
+ if $pagesources{$template};
+ $form->field(name => "type",
+ value => $type)
+ if defined $type;
+ return;
+ }
+ }
+ }
+ }
+ }
+}
+
+sub filltemplate ($$) {
+ my $template_page=shift;
+ my $page=shift;
+
+ my $template;
+ eval {
+ # force page name absolute so it doesn't look in templates/
+ $template=template("/".$template_page);
+ };
+ if ($@) {
+ # Indicate that the earlier preprocessor directive set
+ # up a template that doesn't work.
+ return "[[!pagetemplate ".gettext("failed to process template:")." $@]]";
+ }