X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FController%2FREST.pm;h=9c21319cbdc9fd41b461e2c822cb0b3c454625a6;hb=aa931a573f75b32d77c8b30df09cb9a1e7eaf1c6;hp=fc12ab00319396214b0cd8a58f9fd070fc1f4ede;hpb=44fa7f9429568532ea892e2020c20177b71cb736;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Controller/REST.pm b/lib/Catalyst/Controller/REST.pm index fc12ab0..9c21319 100644 --- a/lib/Catalyst/Controller/REST.pm +++ b/lib/Catalyst/Controller/REST.pm @@ -2,7 +2,7 @@ package Catalyst::Controller::REST; use Moose; use namespace::autoclean; -our $VERSION = '1.04'; +our $VERSION = '1.13'; $VERSION = eval $VERSION; =head1 NAME @@ -175,14 +175,6 @@ Uses the L module to generate L output. Uses the L module to generate L output. -=item * C => C - -Uses the L module to generate L output. - -=item * C => C - -Uses the L module to generate L output. - =item * C => C Uses the L module to generate L output. @@ -299,18 +291,9 @@ __PACKAGE__->mk_accessors(qw(serialize)); __PACKAGE__->config( 'stash_key' => 'rest', 'map' => { - 'text/html' => 'YAML::HTML', 'text/xml' => 'XML::Simple', - 'text/x-yaml' => 'YAML', 'application/json' => 'JSON', 'text/x-json' => 'JSON', - 'text/x-data-dumper' => [ 'Data::Serializer', 'Data::Dumper' ], - 'text/x-data-denter' => [ 'Data::Serializer', 'Data::Denter' ], - 'text/x-data-taxi' => [ 'Data::Serializer', 'Data::Taxi' ], - 'application/x-storable' => [ 'Data::Serializer', 'Storable' ], - 'application/x-freezethaw' => [ 'Data::Serializer', 'FreezeThaw' ], - 'text/x-config-general' => [ 'Data::Serializer', 'Config::General' ], - 'text/x-php-serialization' => [ 'Data::Serializer', 'PHP::Serialization' ], }, );