ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-XMPP2/lib/Net/XMPP2/Ext.pm
Revision: 1.3
Committed: Thu Jul 5 17:33:59 2007 UTC (19 years, 2 months ago) by elmex
Branch: MAIN
Changes since 1.2: +1 -1 lines
Log Message:
fixed some broken links in the documentation and moved errors
to seperate files.

File Contents

# User Rev Content
1 elmex 1.1 package Net::XMPP2::Ext;
2     use warnings;
3     use strict;
4    
5     =head1 NAME
6    
7     Net::XMPP2::Ext - The set of extensions for Net::XMPP2
8    
9     =head1 DESCRIPTION
10    
11     This module only has documentation about the supported extensions.
12    
13     =head1 Supportet extensions
14    
15     This is the list of supported XMPP extensions:
16    
17     =over 4
18    
19     =item XEP-0086 - Error Condition Mappings
20    
21     "A mapping to enable legacy entities to correctly handle errors from XMPP-aware entities."
22    
23     This extension will enable sending of the old error codes when generating a stanza
24 elmex 1.3 error with for example the C<write_error_tag> method of L<Net::XMPP2::Writer>.
25 elmex 1.1
26     =item XEP-0030 - Service Discovery
27    
28     This extension allows you to send service discovery requests and
29     define a set of discoverable information. See also L<Net::XMPP2::Ext::Disco>.
30    
31     =item XEP-0077 - In-Band Registration
32    
33     This extension lets you register new accounts "in-band".
34     To use this look at the description of the C<register> option to the C<new>
35     method of L<Net::XMPP2::Connection>.
36    
37     =back
38    
39     =cut
40    
41     =head1 AUTHOR
42    
43 elmex 1.2 Robin Redeker, C<< <elmex at ta-sa.org> >>, JID: C<< <elmex at jabber.org> >>
44 elmex 1.1
45     =head1 COPYRIGHT & LICENSE
46    
47     Copyright 2007 Robin Redeker, all rights reserved.
48    
49     This program is free software; you can redistribute it and/or modify it
50     under the same terms as Perl itself.
51    
52     =cut
53    
54     1; # End of Net::XMPP2