plugins/perl/common/Gaim.pm

changeset 6594
7217bb99c3f5
parent 6588
187c6026c574
child 6598
13f98c3c9362
equal deleted inserted replaced
6593:8f73eb37a5cc 6594:7217bb99c3f5
52 XSLoader::load('Gaim', $VERSION); 52 XSLoader::load('Gaim', $VERSION);
53 53
54 # Preloaded methods go here. 54 # Preloaded methods go here.
55 55
56 1; 56 1;
57 __END__
58 # Below is stub documentation for your module. You'd better edit it!
59 57
60 =head1 NAME 58 =head1 NAME
61 59
62 Gaim - Perl extension for blah blah blah 60 Gaim - Perl extension the Gaim instant messenger.
63 61
64 =head1 SYNOPSIS 62 =head1 SYNOPSIS
65 63
66 use Gaim; 64 use Gaim;
67 blah blah blah
68 65
69 =head1 ABSTRACT 66 =head1 ABSTRACT
70 67
71 This should be the abstract for Gaim. 68 This module provides the interface for using perl scripts as plugins
72 The abstract is used when making PPD (Perl Package Description) files. 69 in Gaim.
73 If you don't want an ABSTRACT you should also edit Makefile.PL to
74 remove the ABSTRACT_FROM option.
75 70
76 =head1 DESCRIPTION 71 =head1 DESCRIPTION
77 72
78 Stub documentation for Gaim, created by h2xs. It looks like the 73 This module provides the interface for using perl scripts as plugins
79 author of the extension was negligent enough to leave the stub 74 in Gaim. With this, developers can write perl scripts that can be
80 unedited. 75 loaded in Gaim as plugins. The scripts can interact with IMs, chats,
76 accounts, the buddy list, gaim signals, and more.
81 77
82 Blah blah blah. 78 The API for the perl interface is very similar to that of the Gaim C
83 79 API, which can be viewed at http://gaim.sourceforge.net/api/ or in
84 =head2 EXPORT 80 the header files in the Gaim source tree.
85
86 None by default.
87
88
89 81
90 =head1 SEE ALSO 82 =head1 SEE ALSO
91 83
92 Mention other useful documentation such as the documentation of 84 Gaim C API documentation - http//gaim.sourceforge.net/api/
93 related modules or operating system documentation (such as man pages
94 in UNIX), or any relevant external documentation such as RFCs or
95 standards.
96 85
97 If you have a mailing list set up for your module, mention it here. 86 Gaim website - http://gaim.sourceforge.net/
98
99 If you have a web site set up for your module, mention it here.
100 87
101 =head1 AUTHOR 88 =head1 AUTHOR
102 89
103 Christian Hammond, E<lt>chipx86@gnupdate.orgE<gt> 90 Christian Hammond, E<lt>chipx86@gnupdate.orgE<gt>
104 91
105 =head1 COPYRIGHT AND LICENSE 92 =head1 COPYRIGHT AND LICENSE
106 93
107 Copyright 2003 by Christian Hammond 94 Copyright 2003 by Christian Hammond
108 95
109 This library is free software; you can redistribute it and/or modify 96 This library is free software; you can redistribute it and/or modify
110 it under the same terms as Perl itself. 97 it under the terms of the General Public License (GPL). For
98 more information, see http://www.fsf.org/licenses/gpl.txt
111 99
112 =cut 100 =cut

mercurial