NAME Catalyst::Plugin::Flavour - Catalyst plugin for request flavours. SYNOPSIS use Catalyst qw/Flavour/; __PACKAGE__->config( flavour => { 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_path. So you can handle several flavours same controllers. EXTENDED METHODS prepare_path SEE ALSO Catalyst http://www.blosxom.com/ AUTHOR Daisuke Murase 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.