mod_perl logo
perl icon







previous page: Apache::Access - A Perl API for Apache request objectpage up: mod_perl APIsnext page: Apache::Command - Perl API for XXX


Apache::CmdParms - Perl API for XXX











Writing Apache Modules with Perl and C

Writing Apache Modules with Perl and C

By Lincoln Stein, Doug MacEachern
Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams
Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet


Table of Contents

Synopsis

  use Apache::CmdParms ();

META: to be completed



TOP

Description

META: to be completed



TOP

API

Apache::CmdParms provides the following functions and/or methods:



TOP

info

META: Autogenerated - needs to be reviewed/completed

Argument to command from cmd_table

  $obj->info($newval);


TOP

override

META: Autogenerated - needs to be reviewed/completed

Which allow-override bits are set

  $obj->override($newval);


TOP

limited

META: Autogenerated - needs to be reviewed/completed

Which methods are <Limit>ed

  $obj->limited($newval);


TOP

limited_xmethods

META: Autogenerated - needs to be reviewed/completed

methods which are limited

  $obj->limited_xmethods($newval);


TOP

xlimited

META: Autogenerated - needs to be reviewed/completed

methods which are xlimited

  $obj->xlimited($newval);


TOP

config_file

META: Autogenerated - needs to be reviewed/completed

Config file structure.

  $obj->config_file($newval);


TOP

directive

META: Autogenerated - needs to be reviewed/completed

the directive specifying this command

  $obj->directive($newval);


TOP

pool

META: Autogenerated - needs to be reviewed/completed

Pool to allocate new storage in

  $obj->pool($newval);


TOP

temp_pool

META: Autogenerated - needs to be reviewed/completed

Pool for scratch memory; persists during configuration, but wiped before the first request is served...

  $obj->temp_pool($p);


TOP

server

META: Autogenerated - needs to be reviewed/completed

server_rec being configured for

  $obj->server($s);


TOP

path

META: Autogenerated - needs to be reviewed/completed

If configuring for a directory, pathname of that directory. NOPE! That's what it meant previous to the existance of <Files>, <Location> and regex matching. Now the only usefulness that can be derived from this field is whether a command is being called in a server context (path == NULL) or being called in a dir context (path != NULL).

  $obj->path($newval);


TOP

cmd

META: Autogenerated - needs to be reviewed/completed

configuration command

  $obj->cmd($newval);


TOP

context

META: Autogenerated - needs to be reviewed/completed

per_dir_config vector passed to handle_command

  $obj->context($newval);


TOP

err_directive

META: Autogenerated - needs to be reviewed/completed

directive with syntax error

  $obj->err_directive($newval);


TOP

See Also

mod_perl 2.0 documentation.



TOP

Copyright

mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 1.1.



TOP

Authors

The mod_perl development team and numerous contributors.







TOP
previous page: Apache::Access - A Perl API for Apache request objectpage up: mod_perl APIsnext page: Apache::Command - Perl API for XXX