Catalyst::Plugin::Authentication::CDBI::Basic - (DEPRECATED) Basic Authorization with Catalyst


Catalyst-Plugin-Authentication-CDBI-Basic documentation  | view source Contained in the Catalyst-Plugin-Authentication-CDBI-Basic distribution.

Index


NAME

Top

Catalyst::Plugin::Authentication::CDBI::Basic - (DEPRECATED) Basic Authorization with Catalyst

SYNOPSIS

Top

    use Catalyst qw/Session::FastMmap Authentication::CDBI Authentication::CDBI::Basic/;

    __PACKAGE__->config(
        authentication => {
            # Configure Autentication::CDBI
            :
            # and
            basic => {
                realm => 'Require Authorization', # Basic realm

                no_session => 1,                  # disable auth caching (optional)

                # auto error responsing
                #   use View::TT
                template => '401.tt',
                view     => 'MyApp::V::TT',

                #   or plain text
                error_msg => 'Authentication Failed !',
            },
        },
    );

DEPRECATION NOTICE

Top

This module has been deprecated. The use of a new Authentication style is recommended.

See Catalyst::Plugin::Authetnication for detail.

DESCRIPTION

Top

This plugin privide Basic Authorization mechanism for Catalyst Application.

This plugin is required C::P::Authentication::CDBI, for users info. And also use Session Plugin for authorization caching (optional but recommanded).

METHODS

Top

prepare

AUTHOR

Top

Daisuke Murase <typester@cpan.org>

COPYRIGHT

Top

SEE ALSO

Top

Catalyst::Plugin::Authentication::CDBI


Catalyst-Plugin-Authentication-CDBI-Basic documentation  | view source Contained in the Catalyst-Plugin-Authentication-CDBI-Basic distribution.