CatalystX-ASP
view release on metacpan or search on metacpan
lib/CatalystX/ASP.pm view on Meta::CPAN
=item GlobalPackage
Perl package namespace that all scripts, includes, & global.asa events are
compiled into. By default, GlobalPackage is some obscure name that is uniquely
generated from the file path of the Global directory, and global.asa file. The
use of explicitly naming the GlobalPackage is to allow scripts access to globals
and subs defined in a perl module that is included with commands like:
__PACKAGE__->config('CatalystX::ASP' => {
GlobalPackage => 'MyApp' });
=cut
has 'GlobalPackage' => (
is => 'ro',
isa => 'Str',
);
=item IncludesDir
No default. If set, this directory will also be used to look for includes when
compiling scripts. By default the directory the script is in, and the Global
directory are checked for includes.
This extension was added so that includes could be easily shared between ASP
applications, whereas placing includes in the Global directory only allows
sharing between scripts in an application.
__PACKAGE__->config('CatalystX::ASP' => {
IncludeDirs => '.' });
Also, multiple includes directories may be set:
__PACKAGE__->config('CatalystX::ASP' => {
IncludeDirs => ['../shared', '/usr/local/asp/shared'] });
Using IncludesDir in this way creates an includes search path that would look
like C<.>, C<Global>, C<../shared>, C</usr/local/asp/shared>. The current
directory of the executing script is checked first whenever an include is
specified, then the C<Global> directory in which the F<global.asa> resides, and
finally the C<IncludesDir> setting.
=cut
has 'IncludesDir' => (
is => 'rw',
isa => Paths,
coerce => 1,
lazy => 1,
default => sub { [ shift->Global() ] },
);
=item MailHost
The mail host is the SMTP server that the below Mail* config directives will
use when sending their emails. By default L<Net::SMTP> uses SMTP mail hosts
configured in L<Net::Config>, which is set up at install time, but this setting
can be used to override this config.
The mail hosts specified in the Net::Config file will be used as backup SMTP
servers to the C<MailHost> specified here, should this primary server not be
working.
__PACKAGE__->config('CatalystX::ASP' => {
MailHost => 'smtp.yourdomain.com.foobar' });
=cut
has 'MailHost' => (
is => 'ro',
isa => 'Str',
default => 'localhost',
);
=item MailFrom
No default. Set this to specify the default mail address placed in the C<From:>
mail header for the C<< $Server->Mail() >> API extension
__PACKAGE__->config('CatalystX::ASP' => {
MailFrom => 'youremail@yourdomain.com.foobar' });
=cut
has 'MailFrom' => (
is => 'ro',
isa => 'Str',
default => '',
);
=item XMLSubsMatch
Default is not defined. Set to some regexp pattern that will match all XML and
HTML tags that you want to have perl subroutines handle. The is
L<Apache::ASP/XMLSubs>'s custom tag technology ported to CatalystX::ASP, and can
be used to create powerful extensions to your XML and HTML rendering.
Please see XML/XSLT section for instructions on its use.
__PACKAGE__->config('CatalystX::ASP' => {
XMLSubsMatch => 'my:[\w\-]+' });
=cut
subtype 'XMLSubsRegexp' => as 'Regexp';
coerce 'XMLSubsRegexp'
=> from 'Str'
=> via {
$_ =~ s/\(\?\:([^\)]*)\)/($1)/isg;
$_ =~ s/\(([^\)]*)\)/(?:$1)/isg;
qr/$_/;
};
has 'XMLSubsMatch' => (
is => 'ro',
isa => 'XMLSubsRegexp',
coerce => 1,
);
( run in 2.624 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )