Fix template preview to work with chunked content and template post-processing (in Layout, for instance)

This commit is contained in:
Paul Driver 2011-01-06 11:58:29 -06:00
parent b3a1e6cfa3
commit 61245baaaa
3 changed files with 90 additions and 38 deletions

View file

@ -75,7 +75,14 @@ $in->{$hname} = $template->getId;
# processRaw sets some session variables (including username), so we need to
# re-do it.
WebGUI::Asset::Template->processRaw($session,$tmplText,\%var);
my $output = $template->process(\%var);
# This has to get called to set up the stow good and proper
WebGUI::Asset::Template->processVariableHeaders($session);
$template->process(\%var);
my $output = WebGUI::Asset::Template->getVariableJson($session);
delete $in->{$hname};
my $start = delete $out->{"$hname-Start"};
my $end = delete $out->{"$hname-End"};