NAME
    Catalyst::Plugin::Flavour - Catalyst plugin for request flavours.

SYNOPSIS
        use Catalyst qw/Flavour/;
    
        __PACKAGE__->config(
            flavours        => [qw/html rss json/],
            default_flavour => 'html',
        );

DESCRIPTION
    This plugin allows you to handle request flavours like Blosxom.

    When top level path token in request match your flavour, that is stored
    in $c->flavour and deleted $c->path while $c->prepare_action. So you can
    handle several flavours same controllers.

NOTICE
    This plugin re-map $c->req->path in prepare_action chain, therefore
    there may be some plugin work incorrectly.

EXTENDED METHODS
  prepare_action
SEE ALSO
    Catalyst

    http://www.blosxom.com/

AUTHOR
    Daisuke Murase <typester@cpan.org>

COPYRIGHT
    This program is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.

    The full text of the license can be found in the LICENSE file included
    with this module.