| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Net::OpenSocial::Client::Container::Orkut; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
5
|
use Any::Moose; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
|
|
extends 'Net::OpenSocial::Client::Container'; |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
sub BUILDARGS { |
|
7
|
0
|
|
|
0
|
1
|
|
my ( $self, @args ) = @_; |
|
8
|
|
|
|
|
|
|
return { |
|
9
|
0
|
|
|
|
|
|
rest_endpoint => q{http://www.orkut.com/social/rest}, |
|
10
|
|
|
|
|
|
|
rpc_endpoint => q{http://www.orkut.com/social/rpc}, |
|
11
|
|
|
|
|
|
|
use_request_body_hash => 1, |
|
12
|
|
|
|
|
|
|
}; |
|
13
|
|
|
|
|
|
|
} |
|
14
|
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
469
|
no Any::Moose; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
5
|
|
|
16
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
|
17
|
|
|
|
|
|
|
1; |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Net::OpenSocial::Client::Container::Orkut - orkut |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 METHODS |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 BUILDARGS |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
See L, L |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 AUTHOR |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Lyo Kato, Elyo.kato@gmail.comE |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Copyright (C) 2009 by Lyo Kato |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
|
42
|
|
|
|
|
|
|
it under the same terms as Perl itself, either Perl version 5.8.8 or, |
|
43
|
|
|
|
|
|
|
at your option, any later version of Perl 5 you may have available. |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=cut |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|