line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::OpenMicroBlogging::Message; |
2
|
1
|
|
|
1
|
|
7
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
28
|
|
3
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
24
|
|
4
|
1
|
|
|
1
|
|
958
|
use NEXT; |
|
1
|
|
|
|
|
3159
|
|
|
1
|
|
|
|
|
150
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
sub init_omb_message { |
7
|
5
|
|
|
5
|
0
|
16
|
my $class = shift; |
8
|
5
|
|
|
|
|
66
|
$class->add_extension_param_pattern(qr/^omb_/); |
9
|
|
|
|
|
|
|
} |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub set_defaults { |
12
|
5
|
|
|
5
|
0
|
17223
|
my $self = shift; |
13
|
5
|
|
|
|
|
63
|
$self->{omb_version} = 'http://openmicroblogging.org/protocol/0.1'; |
14
|
5
|
|
|
|
|
54
|
$self->NEXT::set_defaults; |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Net::OpenMicroBlogging::Message - An OpenMicroBlogging message |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 SEE ALSO |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
L, L |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 AUTHOR |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Keith Grennan, C<< >> |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Copyright 2007 Keith Grennan, all rights reserved. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
34
|
|
|
|
|
|
|
under the same terms as Perl itself. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
1; |