NAME
    FML::Restriction::CGI -- define safe data regexp for CGI modules.

SYNOPSIS
        use FML::Restriction::CGI;
        $safe = new FML::Restriction::CGI;
        my $regexp = $safe->method_regexp();

        if ($data =~ /^($regexp)$/) {
            # o.k. do something ...
        }

DESCRIPTION
    FML::Restriction::CGI provides data type considered as safe.

METHODS
Safe Parameter Definition for CGI use
    Please extract regexp hash { varname => allowed_regexp } as HASH
    REFERENCE via the following access method:

        param_regexp()
        method_regexp()

CODING STYLE
    See "http://www.fml.org/software/FNF/" on fml coding style guide.

AUTHOR
    Ken'ichi Fukamachi

COPYRIGHT
    Copyright (C) 2001,2002,2004,2005 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.

HISTORY
    FML::Process::Configure first appeared in fml8 mailing list driver
    package. See "http://www.fml.org/" for more details.

