/usr/share/perl5/Text/MicroMason/ServerPages.pm is in libtext-micromason-perl 2.21-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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | package Text::MicroMason::ServerPages;
use strict;
use Carp;
use Safe;
######################################################################
my %block_types = (
'' => 'perl', # <% perl statements %>
'=' => 'expr', # <%= perl expression %>
'--' => 'doc', # <%-- this text will not appear in the output --%>
'&' => 'file', # <%& filename argument %>
);
my $re_eol = "(?:\\r\\n|\\r|\\n|\\z)";
my $re_tag = "perl|args|once|init|cleanup|doc|text|expr|file";
sub lex_token {
# Blocks in <%word> ... <%word> tags.
/\G \<\%($re_tag)\> (.*?) \<\/\%\1\> $re_eol? /xcogs ? ( $1 => $2 ) :
# Blocks in <% ... %> tags.
/\G \<\% (\=|\&)? ( .*? ) \%\> /gcxs ? ( $block_types{$1 || ''} => $2 ) :
# Blocks in <%-- ... --%> tags.
/\G \<\% \-\- ( .*? ) \-\- \%\> /gcxs ? ( 'doc' => $1 ) :
# Things that don't match the above
/\G ( (?: [^\<]+ | \<(?!\%) )? ) /gcxs ? ( 'text' => $1 ) :
# Lexer error
()
}
######################################################################
1;
__END__
######################################################################
=head1 NAME
Text::MicroMason::ServerPages - Alternate Syntax like ASP/JSP Templates
=head1 SYNOPSIS
Instead of using this class directly, pass its name to be mixed in:
use Text::MicroMason;
my $mason = Text::MicroMason::Base->new( -ServerPages );
Use the standard compile and execute methods to parse and evaluate templates:
print $mason->compile( text=>$template )->( @%args );
print $mason->execute( text=>$template, @args );
Server Pages syntax provides another way to mix Perl into a text template:
<% my $name = $ARGS{name};
if ( $name eq 'Dave' ) { %>
I'm sorry <%= $name %>, I'm afraid I can't do that right now.
<% } else {
my $hour = (localtime)[2];
my $daypart = ( $hour > 11 ) ? 'afternoon' : 'morning';
%>
Good <%= $daypart %>, <%= $name %>!
<% } %>
=head1 DESCRIPTION
This subclass replaces MicroMason's normal lexer with one that supports a syntax similar to Active Server Pages and Java Server Pages.
=head2 Compatibility with Apache::ASP
Apache::ASP is a full-featured application server toolkit with many fatures, of which only the templating functionality is emulated.
This is not a drop-in replacement for Apache::ASP, as the implementation is quite different, but it should be able to process some existing templates without major changes.
The following features of EmbPerl syntax are supported:
=over 4
=item *
Angle-bracket markup tags
=back
The following syntax features of are B<not> supported:
=over 4
=item *
Dynamic XML/XSL processing.
=item *
Web server objects such as $Session, $Request, $Response, and $Application.
=item *
Application events such as Application_OnStart, Script_OnStart, and other gloga.asa features.
=back
=head2 Template Syntax
The following elements are recognized by the ServerPages lexer:
=over 4
=item *
E<lt>% perl statements %E<gt>
Arbitrary Perl code to be executed at this point in the template.
=item *
E<lt>%= perl expression %E<gt>
A Perl expression to be evaluated and included in the output.
=item *
E<lt>%& file, arguments %E<gt>
Includes an external template file.
=item *
E<lt>%-- comment --%E<gt>
Documentation or inactive code to be skipped over silently. Can also be used to quickly comment out part of a template.
=item *
E<lt>%I<name>E<gt> ... E<lt>/%I<name>E<gt>
Supported block names are: 'perl', 'args', 'once', 'init', 'cleanup', and 'doc'.
=back
=head2 Private Methods
=over 4
=item lex_token
( $type, $value ) = $mason->lex_token();
Lexer for <% ... %> tags.
Attempts to parse a token from the template text stored in the global $_ and returns a token type and value. Returns an empty list if unable to parse further due to an error.
=back
=cut
=head1 SEE ALSO
For an overview of this templating framework, see L<Text::MicroMason>.
This is a mixin class intended for use with L<Text::MicroMason::Base>.
For distribution, installation, support, copyright and license
information, see L<Text::MicroMason::Docs::ReadMe>.
=cut
|