Activator
view release on metacpan or search on metacpan
lib/Activator/Dictionary.pm view on Meta::CPAN
path as such:
<dict_files path>/<lang>/<realm>.dict
=head2 Dictionary File Format
To create a dictionary file, create a file named C<E<lt>realmE<gt>.dict>
containing key/value pairs separated by whitespace. Keys can have any
non-whitespace character in them. The amount of whitespace between key
and value can be any length and can be tab or space characters (more
specifically, any character that matches C</\s/>). Keys and values must
be on the same line.
For example:
error.bummer A bummer of an error occured
foo-html <p>this is the foo paragraph</p>
welcome_msg Welcome to Activatory::Dictionary!!
answer 42
Empty lines and any line that the first non-whitespace character is
lib/Catalyst/Plugin/Activator/Config.pm view on Meta::CPAN
=item * Joel Bernstein E<lt>rataxis@cpan.orgE<gt> - Rewrite to use L<Config::Any>
=item * David Kamholz E<lt>dkamholz@cpan.orgE<gt> - L<Data::Visitor> integration
=back
Work to this module has been generously sponsored by:
=over 4
=item * Portugal Telecom L<http://www.sapo.pt/> - Work done by Joel Bernstein
=back
=head1 COPYRIGHT AND LICENSE
Copyright 2008 by Brian Cassidy
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
share/apache2/conf.d/catalyst.conf.tt view on Meta::CPAN
[%- IF Activator.Emailer.mailer_type == 'Sendmail' %]
# put sendmail bin in the path: this is probably the wrong way to do it.
# TODO: remove this requirement when Activator::Emailer allows direct socket connections
PerlSetEnv PATH '/bin:/usr/bin/:/usr/sbin'
[%- END -%]
<VirtualHost [% apache2.Listen %]:[% apache2.ListenPort %]>
PerlModule [% apache2.PerlModule %]
<Location />
SetHandler modperl
PerlResponseHandler [% apache2.PerlModule %]
</Location>
</VirtualHost>
share/apache2/conf/httpd.conf.tt view on Meta::CPAN
#
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
#
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
#
# The configuration directives are grouped into three basic sections:
share/apache2/conf/httpd.conf.tt view on Meta::CPAN
DocumentRoot "[% apache2.DocumentRoot %]"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
share/apache2/conf/httpd.conf.tt view on Meta::CPAN
# End of proxy directives.
### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
#NameVirtualHost *:80
#
( run in 1.481 second using v1.01-cache-2.11-cpan-df04353d9ac )