Thu, 10 Apr 2014 20:36:21 +0200
Image store: fix build (perl again)
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
1 | package Pidgin; |
| 14478 | 2 | |
| 3 | use 5.008; | |
| 4 | use strict; | |
| 5 | use warnings; | |
| 6 | use Carp; | |
| 7 | ||
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
8 | use Purple; |
| 14478 | 9 | |
| 10 | require XSLoader; | |
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
11 | XSLoader::load('Pidgin', $VERSION); |
| 14478 | 12 | |
| 13 | 1; | |
| 14 | __END__ | |
| 15 | ||
| 16 | =head1 NAME | |
| 17 | ||
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
18 | Pidgin - Perl extension for the Pidgin instant messenger. |
| 14478 | 19 | |
| 20 | =head1 SYNOPSIS | |
| 21 | ||
|
16529
1d0da9270ff9
This is mostly moving Purple::GtkUI:: -> Pidgin:: which has the side effect of
Etan Reisner <deryni@pidgin.im>
parents:
15899
diff
changeset
|
22 | use Pidgin; |
| 14478 | 23 | |
| 24 | =head1 ABSTRACT | |
| 25 | ||
| 26 | This module provides the interface for using perl scripts as plugins in | |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
27 | Pidgin, with access to the Pidgin Gtk interface functions. |
| 14478 | 28 | |
| 29 | =head1 DESCRIPTION | |
| 30 | ||
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
31 | This module provides the interface for using perl scripts as plugins in Pidgin, |
|
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
32 | with access to the Pidgin Gtk interface functions. With this, developers can |
|
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
33 | write perl scripts that can be loaded in Pidgin as plugins. The script can |
|
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
34 | interact with IMs, chats, accounts, the buddy list, pidgin signals, and more. |
| 14478 | 35 | |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
36 | The API for the perl interface is very similar to that of the Pidgin C API, |
|
33955
55aa58076485
Use https URLs for pidgin.im and developer.pidgin.im.
Mark Doliner <mark@kingant.net>
parents:
16623
diff
changeset
|
37 | which can be viewed at https://developer.pidgin.im/doxygen/ or in the header files |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
38 | in the Pidgin source tree. |
| 14478 | 39 | |
| 40 | =head1 FUNCTIONS | |
| 41 | ||
| 42 | =over | |
| 43 | ||
| 44 | =back | |
| 45 | ||
| 46 | =head1 SEE ALSO | |
|
33955
55aa58076485
Use https URLs for pidgin.im and developer.pidgin.im.
Mark Doliner <mark@kingant.net>
parents:
16623
diff
changeset
|
47 | Pidgin C API documentation - https://developer.pidgin.im/doxygen/ |
| 14478 | 48 | |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15435
diff
changeset
|
49 | The Pidgin perl module. |
| 14478 | 50 | |
|
33955
55aa58076485
Use https URLs for pidgin.im and developer.pidgin.im.
Mark Doliner <mark@kingant.net>
parents:
16623
diff
changeset
|
51 | Pidgin website - https://pidgin.im/ |
| 14478 | 52 | |
| 53 | =head1 AUTHOR | |
| 54 | ||
| 55 | Etan Reisner, E<lt>deryni@gmail.comE<gt> | |
| 56 | ||
| 57 | =head1 COPYRIGHT AND LICENSE | |
| 58 | ||
| 59 | Copyright 2006 by Etan Reisner |