1 | NAME |
1 | NAME |
2 | Net::XMPP2 - An implementation of the XMPP Protocol |
2 | Net::XMPP2 - An implementation of the XMPP Protocol |
3 | |
3 | |
4 | VERSION |
4 | VERSION |
5 | Version 0.03 |
5 | Version 0.04 |
6 | |
6 | |
7 | SYNOPSIS |
7 | SYNOPSIS |
8 | use Net::XMPP2::Connection; |
8 | use Net::XMPP2::Connection; |
9 | |
9 | |
10 | or: |
10 | or: |
… | |
… | |
86 | |
86 | |
87 | RELEASE NOTES |
87 | RELEASE NOTES |
88 | Here are some notes to the releases (release of this version is at top): |
88 | Here are some notes to the releases (release of this version is at top): |
89 | |
89 | |
90 | Version |
90 | Version |
|
|
91 | * 0.04 |
|
|
92 | After realizing that in band registration in Net::XMPP2::Ext was |
|
|
93 | already in in version 0.03 I had to implement it quick. |
|
|
94 | |
|
|
95 | While implementing in band registration I implemented XEP-0066: Out |
|
|
96 | of Band Data. You can now receive and send URLs from and to others. |
|
|
97 | See also Net::XMPP2::Ext::OOB. |
|
|
98 | |
|
|
99 | I also fixed some bugs in Net::XMPP2::Ext::Disco. |
|
|
100 | |
91 | * 0.03 |
101 | * 0.03 |
92 | This release adds new events for attaching information to "XML" |
102 | This release adds new events for attaching information to "XML" |
93 | stanzas that are in transmission to the server. See also the events |
103 | stanzas that are in transmission to the server. See also the events |
94 | "send_*_hook" in Net::XMPP2::Connection. |
104 | "send_*_hook" in Net::XMPP2::Connection. |
95 | |
105 | |
… | |
… | |
228 | is a module that handles request-throttling (You don't want to flood |
238 | is a module that handles request-throttling (You don't want to flood |
229 | the server and risk getting the admins attention :). |
239 | the server and risk getting the admins attention :). |
230 | |
240 | |
231 | samples/simple_component |
241 | samples/simple_component |
232 | This is a (basic) skeleton for a jabber component. |
242 | This is a (basic) skeleton for a jabber component. |
|
|
243 | |
|
|
244 | samples/simple_oob_retriever |
|
|
245 | This is a simple out of band file transfer receiver bot. It uses |
|
|
246 | "curl" to fetch the files and also has the sample functionality of |
|
|
247 | sending a file url for someone who sends the bot a 'send <filename>' |
|
|
248 | message. |
|
|
249 | |
|
|
250 | samples/simple_register_example |
|
|
251 | This is a example script which allows you to register, unregister |
|
|
252 | and change your password for accounts. Execute it without arguments |
|
|
253 | for more details. |
233 | |
254 | |
234 | For others, which the author might forgot or didn't want to list here |
255 | For others, which the author might forgot or didn't want to list here |
235 | see the "samples/" directory. |
256 | see the "samples/" directory. |
236 | |
257 | |
237 | More examples will be included in later releases, please feel free to |
258 | More examples will be included in later releases, please feel free to |