%# Change the color of
to make it stand out.FilterProxy::Skeleton Config FilterProxy::Skeleton Config
Back to FilterProxy main configuration.
Skeleton is a bare-bones module intended for people that might want to write their own modules. It is heavily commented, and should explain the basic workings of modules. Take a look at this file (html/Skeleton.html) and the Skeleton module, FilterProxy/Skeleton.pm.
You can handle configuration requests either in Skeleton.pm, in the method Config, or here, using the CGI object. Try This URL to see how your parameters would appear. The data that is passed in follows:
Variables:
$MESSAGE = '<% $MESSAGE %>'.
$SITE = '<% $SITE %>'.
$VERSION = '<% $VERSION %>'.
CGI/1.1 variables:
$AUTH_TYPE = '<% $AUTH_TYPE %>'.
$CONTENT_LENGTH = '<% $CONTENT_LENGTH %>'.
$CONTENT_TYPE = '<% $CONTENT_TYPE %>'.
$GATEWAY_INTERFACE = '<% $GATEWAY_INTERFACE %>'.
$PATH_TRANSLATED = '<% $PATH_TRANSLATED %>'.
$PATH_INFO = '<% $PATH_INFO %>'.
$QUERY_STRING = '<% $QUERY_STRING %>'.
$REMOTE_PORT = '<% $REMOTE_PORT %>'.
$REMOTE_ADDR = '<% $REMOTE_ADDR %>'.
$REMOTE_HOST = '<% $REMOTE_HOST %>'.
$REMOTE_USER = '<% $REMOTE_USER %>'.
$REQUEST_METHOD = '<% $REQUEST_METHOD %>'.
$SCRIPT_NAME = '<% $SCRIPT_NAME %>'.
$SERVER_NAME = '<% $SERVER_NAME %>'.
$SERVER_PORT = '<% $SERVER_PORT %>'.
$SERVER_PROTOCOL = '<% $SERVER_PROTOCOL %>'.
$SERVER_SOFTWARE = '<% $SERVER_SOFTWARE %>'.
List ref variables:
<% Data::Dumper->Dump([$r], [qw(r)]) %>
<% Data::Dumper->Dump([$SITECONFIG], [qw(SITECONFIG)]) %>
<% Data::Dumper->Dump([$MODULECONFIG], [qw(MODULECONFIG)]) %>
<% Data::Dumper->Dump([$CGI], [qw(CGI)]) %>
<% Data::Dumper->Dump([$MODULES], [qw(MODULES)]) %>