Apache-SSI
view release on metacpan or search on metacpan
lib/Apache/SSI.pm view on Meta::CPAN
{
'text' => $text,
'_r' => $r,
'suspend' => [0],
'if_state' => [1], # A stack reflecting the current state of if/else parser.
# Each entry is 1 when we've seen a true condition in this if-chain,
# 0 when we haven't. Initially it's as if we're in a big true
# if-block with no else.
'errmsg' => "[an error occurred while processing this directive]",
'sizefmt' => 'abbrev',
'timefmt' => undef, # undef means the current locale's default
}, $pack;
}
sub text {
my $self = shift;
if (@_) {
$self->{'text'} = shift;
}
return $self->{'text'};
}
( run in 0.546 second using v1.01-cache-2.11-cpan-ceb78f64989 )