line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HTTP::Throwable::Role::Status::Found; |
2
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:STEVAN'; |
3
|
|
|
|
|
|
|
$HTTP::Throwable::Role::Status::Found::VERSION = '0.027'; |
4
|
1
|
|
|
1
|
|
744
|
use Moo::Role; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
10
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
with( |
7
|
|
|
|
|
|
|
'HTTP::Throwable', |
8
|
|
|
|
|
|
|
'HTTP::Throwable::Role::Redirect', |
9
|
|
|
|
|
|
|
'HTTP::Throwable::Role::BoringText', |
10
|
|
|
|
|
|
|
); |
11
|
|
|
|
|
|
|
|
12
|
2
|
|
|
2
|
0
|
81
|
sub default_status_code { 302 } |
13
|
2
|
|
|
2
|
0
|
9137
|
sub default_reason { 'Found' } |
14
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
461
|
no Moo::Role; 1; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=pod |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=encoding UTF-8 |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
HTTP::Throwable::Role::Status::Found - 302 Found |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 VERSION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
version 0.027 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 DESCRIPTION |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The requested resource resides temporarily under a different URI. |
32
|
|
|
|
|
|
|
Since the redirection might be altered on occasion, the client |
33
|
|
|
|
|
|
|
SHOULD continue to use the Request-URI for future requests. This |
34
|
|
|
|
|
|
|
response is only cacheable if indicated by a Cache-Control or |
35
|
|
|
|
|
|
|
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). |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 location |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
This is a required string, which will be used in the Location header |
47
|
|
|
|
|
|
|
when creating a PSGI response. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 AUTHORS |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=over 4 |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=item * |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Stevan Little |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=item * |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Ricardo Signes |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=back |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
This software is copyright (c) 2011 by Infinity Interactive, Inc. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
68
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
__END__ |