blob: c6ef4e3b920de89daeaba4dffd19958bda93940b (
plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#-*- perl -*-
#
# Copyright (C) 2001 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $FML: Configure.pm,v 1.2 2001/04/03 09:45:41 fukachan Exp $
#
package FML::CGI::Configure;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
use Carp;
use CGI qw/:standard/; # load standard CGI routines
use FML::Process::CGI;
@ISA = qw(FML::Process::CGI);
=head1 NAME
FML::CGI::Configure - provides functions for makefml CGI interface
XXX NOT YET IMPLEMENTED
=head1 SYNOPSIS
$makefml = new FML::CGI::Configure;
$makefml->new();
$makefml->run();
See L<FML::Process::Flow> for flow details.
=head1 DESCRIPTION
C<NOT YET IMPLEMENTED>.
=head2 CLASS HIERARCHY
C<FML::CGI::Configure> is a subclass of C<FML::Process::CGI>.
FML::Process::Kernel
|
A
FML::Process::CGI
|
A
-----------------------
| |
A A
FML::CGI::Configure
=head1 METHODS
Almost methods common for CGI or HTML are forwarded to
C<FML::Process::CGI> base class.
This module has routines needed for CGI.
=head1 SEE ALSO
L<CGI>,
L<FML::Process::CGI>
and
L<FML::Process::Flow>
=head1 AUTHOR
Ken'ichi Fukamachi
=head1 COPYRIGHT
Copyright (C) 2001 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 HISTORY
FML::CGI::Configure appeared in fml5 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|