| Catalyst-Action-REST documentation | Contained in the Catalyst-Action-REST distribution. |
Catalyst::Request::REST::ForBrowsers - A Catalyst::Request::REST subclass for dealing with browsers
package MyApp;
use Catalyst::Request::REST::ForBrowsers;
MyApp->request_class( 'Catalyst::Request::REST::ForBrowsers' );
This class has been deprecated in favor of Catalyst::TraitFor::Request::REST::ForBrowsers. Please see that class for details on methods and attributes.
Dave Rolsky, <autarch@urth.org>
Please report any bugs or feature requests to
bug-catalyst-request-rest-forbrowsers@rt.cpan.org, or through the
web interface at http://rt.cpan.org. I will be notified, and then
you'll automatically be notified of progress on your bug as I make
changes.
Copyright 2008-2009 Dave Rolsky, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-Action-REST documentation | Contained in the Catalyst-Action-REST distribution. |
package Catalyst::Request::REST::ForBrowsers; use Moose; use namespace::autoclean; our $VERSION = '0.90'; $VERSION = eval $VERSION; extends 'Catalyst::Request::REST'; with 'Catalyst::TraitFor::Request::REST::ForBrowsers'; sub _related_role { 'Catalyst::TraitFor::Request::REST::ForBrowsers' } __PACKAGE__->meta->make_immutable; 1; __END__