Revision 4cf756d3
Von Moritz Bunkus vor mehr als 7 Jahren hinzugefügt
SL/Template/LaTeX.pm | ||
---|---|---|
450 | 450 |
|
451 | 451 |
my $globals = global_vars(); |
452 | 452 |
|
453 |
$::form->init_template->process(\$contents, { %$form, %$globals }, \$new_contents) || die $::form->template->error;
|
|
453 |
$::form->template->process(\$contents, { %$form, %$globals }, \$new_contents) || die $::form->template->error; |
|
454 | 454 |
} else { |
455 | 455 |
$new_contents = $self->parse_block($contents); |
456 | 456 |
} |
SL/Template/OpenDocument.pm | ||
---|---|---|
382 | 382 |
if ($self->{use_template_toolkit}) { |
383 | 383 |
my $additional_params = $::form; |
384 | 384 |
|
385 |
$::form->init_template->process(\$contents, $additional_params, \$new_contents) || die $::form->template->error;
|
|
385 |
$::form->template->process(\$contents, $additional_params, \$new_contents) || die $::form->template->error; |
|
386 | 386 |
} else { |
387 | 387 |
$self->{tag_stack} = []; |
388 | 388 |
$new_contents = $self->parse_block($contents); |
Auch abrufbar als: Unified diff
SL::Template::*: Form::template direkt nutzen, nicht mehr Form::init_template
Form::init_template wurde bei der Umstellung entfernt, bei der nur
noch die eine Template-Instanz im SL::Presenter genutzt wird, und Form
keine eigene mehr beinhaltet.