You are using a browser which doesn't fully support Cascading Style Sheets. This site will look much better in a browser that supports web standards, but its content is accessible to any browser or Internet device.
Set up Active Contents handling
If the special opcode
ALL
was passed, all embedded Perl operations are permitted and there's no need to perform them in a compartment provided by the
Safe
module. This is flagged by a true
scalar value. Otherwise, we need to construct a
Safe
object and to configure it according to the opcode settings.
# Set up active contents handling. By default, we use a Safe object. my $safe=new Safe; if (exists $options{safeOpcode}) { unless (grep($_ eq 'ALL', @{$options{safeOpcode}})) { # configure compartment $safe->permit(@{$options{safeOpcode}}); } else { # simply flag that we want to execute active contents $safe=1; } }
The variable
$safe
which is prepared by this code is intended to be passed to the parser soon.