/usr/share/perl5/Tenjin/Preprocessor.pm is in libtenjin-perl 1.000001-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | package Tenjin::Preprocessor;
use strict;
use warnings;
our $VERSION = "1.000001";
$VERSION = eval $VERSION;
our @ISA = ('Tenjin::Template');
=head1 NAME
Tenjin::Preprocessor - Preprocessing Tenjin templates
=head1 SYNOPSIS
used internally.
=head1 DESCRIPTION
This module provides some methods needed for preprocessing templates.
=head1 INTERNAL METHODS
=head2 stmt_pattern()
=cut
sub stmt_pattern {
return shift->SUPER::compile_stmt_pattern('PL');
}
=head2 expr_pattern()
=cut
sub expr_pattern {
return qr/\[\*=(=?)(.*?)(=?)=\*\]/s;
}
=head2 add_expr()
=cut
sub add_expr {
my ($self, $bufref, $expr, $flag_escape) = @_;
$expr = "decode_params($expr)";
$self->SUPER::add_expr($bufref, $expr, $flag_escape);
}
1;
=head1 SEE ALSO
L<Tenjin>, L<Tenjin::Template>.
=head1 AUTHOR, LICENSE AND COPYRIGHT
See L<Tenjin>.
=cut
|