File Coverage

blib/lib/HTTP/Throwable/Role/Status/TemporaryRedirect.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 2 0.0
total 12 14 85.7


line stmt bran cond sub pod time code
1             package HTTP::Throwable::Role::Status::TemporaryRedirect 0.028;
2             our $AUTHORITY = 'cpan:STEVAN';
3              
4 1     1   653 use Moo::Role;
  1         3  
  1         7  
5              
6             with(
7             'HTTP::Throwable',
8             'HTTP::Throwable::Role::BoringText',
9             'HTTP::Throwable::Role::Redirect',
10             );
11              
12 2     2 0 82 sub default_status_code { 307 }
13 2     2 0 8960 sub default_reason { 'Temporary Redirect' }
14              
15 1     1   481 no Moo::Role; 1;
  1         2  
  1         5  
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             HTTP::Throwable::Role::Status::TemporaryRedirect - 307 Temporary Redirect
24              
25             =head1 VERSION
26              
27             version 0.028
28              
29             =head1 DESCRIPTION
30              
31             The requested resource resides temporarily under a different URI.
32             Since the redirection MAY be altered on occasion, the client
33             SHOULD continue to use the Request-URI for future requests.
34             This response is only cacheable if indicated by a Cache-Control
35             or Expires header field.
36              
37             The temporary URI SHOULD be given by the Location field in the
38             response. Unless the request method was HEAD, the entity of the
39             response SHOULD contain a short hypertext note with a hyperlink
40             to the new URI(s), since many pre-HTTP/1.1 user agents do not
41             understand the 307 status. Therefore, the note SHOULD contain
42             the information necessary for a user to repeat the original
43             request on the new URI.
44              
45             =head1 PERL VERSION
46              
47             This library should run on perls released even a long time ago. It should work
48             on any version of perl released in the last five years.
49              
50             Although it may work on older versions of perl, no guarantee is made that the
51             minimum required version will not be increased. The version may be increased
52             for any reason, and there is no promise that patches will be accepted to lower
53             the minimum required perl.
54              
55             =head1 AUTHORS
56              
57             =over 4
58              
59             =item *
60              
61             Stevan Little
62              
63             =item *
64              
65             Ricardo Signes
66              
67             =back
68              
69             =head1 COPYRIGHT AND LICENSE
70              
71             This software is copyright (c) 2011 by Infinity Interactive, Inc.
72              
73             This is free software; you can redistribute it and/or modify it under
74             the same terms as the Perl 5 programming language system itself.
75              
76             =cut
77              
78             __END__