2009-10-16 13:32:35 by Ulrich Habel | Files touched by this commit (1) |
Log message:
Fixed a typo in DEPENDS - Moose is required
|
2009-10-16 13:20:32 by Ulrich Habel | Files touched by this commit (2) | |
Log message:
- updated to 0.78
ChangeLog:
Mon 28 Sep 15:01:03 BST 2009 - Release 0.78
Require Moose for the tests (RT#50066).
|
2009-09-24 08:50:22 by Jens Rehsack | Files touched by this commit (116) |
Log message:
Bumping revision of packages which depend direct or indirect on
devel/p5-Class-MOP. A late detected incompible change forced it.
|
2009-09-13 22:28:08 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating www/p5-Catalyst-Action-REST from 0.76 to 0.77
pkgsrc changes:
- Module::Pluggable is in version 3.6 include in Perl 5.10.0
--> using this one as dependency
Upstream changes:
Thu 27 Aug 02:21:09 BST 2009 - Release 0.77
Allow dispatching to Catalyst Actions, for use with ActionClasses
etc - fREW
Fix test if CATALYST_DEBUG environment variable is set
|
2009-08-27 12:37:24 by David Brownlee | Files touched by this commit (3) | |
Log message:
Added www/p5-Catalyst-Action-REST version 0.76
This Action handles doing automatic method dispatching for REST
requests. It takes a normal Catalyst action, and changes the dispatch
to append an underscore and method name.
For example, in the synopsis above, calling GET on "/foo" would
result in the foo_GET method being dispatched.
If a method is requested that is not implemented, this action will
return a status 405 (Method Not Found). It will populate the "Allow"
header with the list of implemented request methods. You can override
this behavior by implementing a custom 405 handler like so:
sub foo_not_implemented {
... handle not implemented methods ...
}
If you do not provide an _OPTIONS subroutine, we will automatically
respond with a 200 OK. The "Allow" header will be populated with
the list of implemented request methods.
It is likely that you really want to look at Catalyst::Controller::REST,
which brings this class together with automatic Serialization of
requests and responses.
|