File: Options.pm

package info (click to toggle)
libapache-mod-perl 1.16-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,580 kB
  • ctags: 1,064
  • sloc: ansic: 4,489; perl: 4,415; sh: 305; makefile: 137
file content (45 lines) | stat: -rw-r--r-- 822 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package Apache::Options;
use Apache::Constants ();
@ISA = qw(Apache::Constants);
*EXPORT = $Apache::Constants::EXPORT_TAGS{options};
$VERSION = (qw$Revision: 1.6 $)[1];

1;

__END__

=head1 NAME

Apache::Options - OPT_* defines from httpd_core.h

=head1 SYNOPSIS

    use Apache::Options;

=head1 DESCRIPTION

The B<Apache::Options> module will export the following bitmask
constants:

   OPT_NONE
   OPT_INDEXES
   OPT_INCLUDES 
   OPT_SYMLINKS
   OPT_EXECCGI
   OPT_UNSET
   OPT_INCNOEXEC
   OPT_SYM_OWNER
   OPT_MULTI
   OPT_ALL

These constants can be used to check the return value from
Apache->request->allow_options() method.

This module is simply a stub which imports from L<Apache::Constants>,
just as if you had said C<use Apache::Constants ':options';>.

=head1 SEE ALSO

L<Apache>, L<Apache::Constants>

=cut