line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Catalyst::Request::REST::ForBrowsers; |
2
|
|
|
|
|
|
|
$Catalyst::Request::REST::ForBrowsers::VERSION = '1.20'; |
3
|
7
|
|
|
7
|
|
987197
|
use Moose; |
|
7
|
|
|
|
|
17
|
|
|
7
|
|
|
|
|
48
|
|
4
|
|
|
|
|
|
|
|
5
|
7
|
|
|
7
|
|
45638
|
use namespace::autoclean; |
|
7
|
|
|
|
|
8208
|
|
|
7
|
|
|
|
|
57
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
extends 'Catalyst::Request::REST'; |
8
|
|
|
|
|
|
|
with 'Catalyst::TraitFor::Request::REST::ForBrowsers'; |
9
|
|
|
|
|
|
|
|
10
|
5
|
|
|
5
|
|
21
|
sub _related_role { 'Catalyst::TraitFor::Request::REST::ForBrowsers' } |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
__END__ |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=pod |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Catalyst::Request::REST::ForBrowsers - A Catalyst::Request::REST subclass for dealing with browsers |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 SYNOPSIS |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
package MyApp; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
use Catalyst::Request::REST::ForBrowsers; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
MyApp->request_class( 'Catalyst::Request::REST::ForBrowsers' ); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 DESCRIPTION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This class has been deprecated in favor of |
35
|
|
|
|
|
|
|
L<Catalyst::TraitFor::Request::REST::ForBrowsers>. Please see that class for |
36
|
|
|
|
|
|
|
details on methods and attributes. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 AUTHOR |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Dave Rolsky, C<< <autarch@urth.org> >> |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 BUGS |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Please report any bugs or feature requests to |
45
|
|
|
|
|
|
|
C<bug-catalyst-request-rest-forbrowsers@rt.cpan.org>, or through the |
46
|
|
|
|
|
|
|
web interface at L<http://rt.cpan.org>. I will be notified, and then |
47
|
|
|
|
|
|
|
you'll automatically be notified of progress on your bug as I make |
48
|
|
|
|
|
|
|
changes. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Copyright 2008-2009 Dave Rolsky, All Rights Reserved. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify |
55
|
|
|
|
|
|
|
it under the same terms as Perl itself. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=cut |