line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HTTP::Soup::Gnome; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
HTTP::Soup::Gnome - GNOME extensions for libsoup (HTTP::Soup) |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 SYNOPSIS |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
use HTTP::Soup; |
10
|
|
|
|
|
|
|
use HTTP::Soup:::Gnome; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 DESCRIPTION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
This module provides the Perl bindings for the GNOME extensions of the C |
15
|
|
|
|
|
|
|
library I. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
For more information about libsoup refer to the library's web site: |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
http://live.gnome.org/LibSoup |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=cut |
22
|
|
|
|
|
|
|
|
23
|
1
|
|
|
1
|
|
26536
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
24
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
80
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
our $VERSION = '0.02'; |
27
|
|
|
|
|
|
|
|
28
|
1
|
|
|
1
|
|
218
|
use Glib::Object::Introspection; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Glib::Object::Introspection->setup( |
31
|
|
|
|
|
|
|
basename => 'SoupGNOME', |
32
|
|
|
|
|
|
|
version => '2.4', |
33
|
|
|
|
|
|
|
package => __PACKAGE__, |
34
|
|
|
|
|
|
|
); |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
1; |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 BUGS |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
For any kind of help or support simply send a mail to the gtk-perl mailing |
41
|
|
|
|
|
|
|
list (gtk-perl-list@gnome.org). |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 AUTHORS |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Emmanuel Rodriguez Epotyl@cpan.orgE. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Copyright (C) 2012 by Emmanuel Rodriguez. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
52
|
|
|
|
|
|
|
it under the same terms of: |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=over 4 |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=item the GNU Lesser General Public License, version 2.1; or |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=item the Artistic License, version 2.0. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=back |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
This module is distributed in the hope that it will be useful, |
63
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
64
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public |
67
|
|
|
|
|
|
|
License along with this module; if not, see L. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
For the terms of The Artistic License, see L. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=cut |