X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FResponse.pm;h=e0d1a3bc474f5231d17bcdc126e5385f11e41f81;hp=2d83a4801384538883baab581448709f64cd522a;hb=21465c884872c1ec8c30acd72796445f9eaacb31;hpb=e060fe05e8770527de1f433b4ae4bc2cd1e8c303 diff --git a/lib/Catalyst/Response.pm b/lib/Catalyst/Response.pm index 2d83a48..e0d1a3b 100644 --- a/lib/Catalyst/Response.pm +++ b/lib/Catalyst/Response.pm @@ -3,7 +3,7 @@ package Catalyst::Response; use strict; use base 'Class::Accessor::Fast'; -__PACKAGE__->mk_accessors(qw/cookies body headers redirect status/); +__PACKAGE__->mk_accessors(qw/cookies body headers location status/); *output = \&body; @@ -79,11 +79,28 @@ Returns a L object containing the headers. Shortcut to $resp->body -=item $resp->redirect($url) +=item $resp->redirect( $url, $status ) Contains a location to redirect to. - $c->response->redirect('http://slashdot.org'); + $c->response->redirect( 'http://slashdot.org' ); + $c->response->redirect( 'http://slashdot.org', 307 ); + +=cut + +sub redirect { + my $self = shift; + + if ( @_ ) { + my $location = shift; + my $status = shift || 302; + + $self->location($location); + $self->status($status); + } + + return $self->location; +} =item status