line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Labyrinth::Query::CGI; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
5403
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
48
|
|
4
|
2
|
|
|
2
|
|
8
|
use strict; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
45
|
|
5
|
|
|
|
|
|
|
|
6
|
2
|
|
|
2
|
|
6
|
use vars qw($VERSION); |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
74
|
|
7
|
|
|
|
|
|
|
$VERSION = '5.32'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Labyrinth::Query::CGI - Environment Handler via CGI for Labyrinth. |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 SYNOPSIS |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
use Labyrinth::Query::CGI; |
16
|
|
|
|
|
|
|
my $cgi = Labyrinth::Query::CGI->new(); |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
$cgi->Vars(); |
19
|
|
|
|
|
|
|
$cgi->cookie(); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 DESCRIPTION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
A very thin wrapper around CGI.pm. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=cut |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
# ------------------------------------- |
28
|
|
|
|
|
|
|
# Library Modules |
29
|
|
|
|
|
|
|
|
30
|
2
|
|
|
2
|
|
7
|
use base qw(CGI); |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
2254
|
|
31
|
2
|
|
|
2
|
|
16743
|
use CGI::Cookie; |
|
2
|
|
|
|
|
2758
|
|
|
2
|
|
|
|
|
42
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
# ------------------------------------- |
34
|
|
|
|
|
|
|
# The Subs |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 METHODS |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
All methods are as per CGI.pm. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
__END__ |