Sangeeth Saravanaraj
8afba7de85
renamed example for convenience.
2015-01-22 16:38:16 +05:30
Sangeeth Saravanaraj
1ce42d3a2f
Boilerplate example.
2015-01-22 11:30:38 +05:30
Sangeeth Saravanaraj
2f4d811db4
Fixed a typo in docs/guide_xep_0030.rst
2015-01-22 11:13:03 +05:30
Sangeeth Saravanaraj
61127f521d
Added PyCharm's .idea folder to .gitignore
2015-01-22 11:09:47 +05:30
Lance Stout
27582f6fd2
Merge pull request #326 from s-m-b/patch-1
...
Typo fix of parameter name 'data' it is now 'iq'
2014-11-10 09:07:32 -08:00
s-m-b
e328ff4833
Typo fix of parameter name 'data' it is now 'iq'
...
Code was broken during refactoring
2014-11-09 04:36:38 +03:00
Lance Stout
403462fdb8
Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop
2014-09-09 08:50:24 -07:00
Lance Stout
f22d8e67b4
Preserve ID for error responses
...
Fixes #319
2014-09-09 08:49:37 -07:00
Lance Stout
c9f8ddff65
Merge pull request #315 from louiz/develop
...
Fix saslprep on the username
2014-08-24 16:19:15 -07:00
Florent Le Coz
f5ae98aaf1
Fix saslprep on the username
...
Two issues fixed here:
- ints are not comparable with bytes, so char was never == to b',', which
renders the whole function pointless
- The bytes were converted back to “characters” by using chr(), which
doesn’t make sense if the username contains characters that fit on more
than one bytes. This would trigger an “invalid username” error from the
server when using a non-ascii JID.
2014-08-25 01:08:13 +02:00
Lance Stout
aabec8b993
Fix some more Unicode in **kwargs issues in Py2.6
2014-08-21 10:05:42 -07:00
Lance Stout
e5e2fbb16b
Merge pull request #311 from Mayflower/develop
...
Revert "cleanup semicolons, whitespace and mutable default arguments"
2014-08-18 13:34:15 -07:00
Robin Gloster
3dd379cdf1
Revert "cleanup semicolons, whitespace and mutable default arguments"
...
This reverts commit 7265682a4d
.
2014-08-18 15:15:14 +02:00
Lance Stout
a20582aba4
Merge pull request #309 from Mayflower/whitespace_keepalive
...
only schedule whitespace keepalive if enabled
2014-08-17 17:21:25 -07:00
Lance Stout
09cdbf1b76
Merge pull request #308 from Mayflower/develop
...
Serialize JID to allow json serializing
2014-08-17 17:20:45 -07:00
Lance Stout
ca306e7cec
Merge pull request #310 from Mayflower/cleanup
...
Cleanup
2014-08-17 17:20:26 -07:00
Robin Gloster
1bf34f7fe6
fix mutable default arguments 💥
2014-08-18 00:55:10 +02:00
Robin Gloster
4144d60017
cleanup semicolons, whitespace and mutable default arguments
2014-08-18 00:55:10 +02:00
Robin Gloster
7265682a4d
cleanup semicolons, whitespace and mutable default arguments
2014-08-18 00:52:24 +02:00
Robin Gloster
08c62a6bf1
fix mutable default arguments 💥
2014-08-18 00:18:10 +02:00
Robin Gloster
d61f1cd035
only schedule whitespace keepalive if enabled
2014-08-17 23:38:07 +02:00
Robin Gloster
1063feb33b
only schedule whitespace keepalive if enabled
2014-08-17 23:37:19 +02:00
Robin Gloster
79f3c1ac8f
serialize JID to allow json serializing
2014-08-17 23:13:56 +02:00
Lance Stout
a5c03b763a
Merge pull request #305 from trinque/develop
...
Added wait param to XEP_0009 RemoteSession.close
2014-08-11 14:08:56 -07:00
Michael Trinque
3670d82f1c
Added wait param to XEP_0009 RemoteSession.close
...
This parameter is False by default to preserve existing behavior.
2014-08-10 16:02:10 -07:00
Lance Stout
e5582694c0
Bump to 1.3.1
2014-06-09 08:30:31 -07:00
Lance Stout
768136e493
Fix things again, this time for python3
2014-06-09 08:29:48 -07:00
Lance Stout
753cb3580e
Bump to 1.3.0
2014-06-08 20:01:07 -07:00
Lance Stout
60b050b82a
Make ssl args work in Python <=2.6.4
2014-06-08 19:59:40 -07:00
Lance Stout
ad91a8cd5e
Bring back use of dnspython for A/AAAA resolution.
...
This is behind a use_dnspython flag, however, so it can be disabled as
desired.
2014-06-08 19:51:57 -07:00
Lance Stout
02f79fc94b
Only request auto-receipts for messages with bodies
2014-06-07 20:20:42 -07:00
Lance Stout
230a73fad2
Fix own_host in ping plugin
2014-06-07 20:06:17 -07:00
Lance Stout
d94dd486fe
Merge pull request #294 from mofrank/develop
...
Fixes log.debug message in _connect_proxy
2014-05-16 08:43:39 -07:00
Lance Stout
6ecc39b816
Merge pull request #292 from 4gra/develop
...
Fix support for jabberd2 with GSSAPI
2014-05-16 08:43:26 -07:00
mofrank
9c240df9db
Fixes log.debug message in _connect_proxy
2014-05-16 08:49:01 -05:00
Graham
a918bf3a95
Support jabberd2 SASL with really empty response
...
Despite http://xmpp.org/rfcs/rfc3920.html#rfc.section.6.2 , jabberd version 2.2.14 cannot accept the typical "<response xmlns="urn:ietf:params:xml:ns:xmpp-sasl">=</response>". Instead it must be truly empty, so we force an empty response for this stanza only.
2014-05-14 22:32:51 +01:00
Graham
9434ae267f
support 'success' phase correctly
...
When the GSSAPI mechanism's process() function is invoked for the third time (on success) it must not attempt further processing. Instead it should clean the context and return an empty response.
2014-05-14 22:25:09 +01:00
Graham
94187d215a
don't use the kerberos.GSSError.message attribute
...
Replaced the reference to kerberos.GSSError.message in any raised exception, because:
DeprecationWarning: BaseException.message has been deprecated as of Python 2.6
and its natural repr is probably the most desirable output.
2014-05-14 17:47:34 +01:00
Lance Stout
ef2f5d2978
Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop
2014-04-20 18:10:22 -07:00
Lance Stout
62671e0f56
Fix using SCRAM with ejabberd
2014-04-20 18:09:20 -07:00
Lance Stout
93869f77a0
Merge pull request #285 from lovesnow/develop
...
Fix Don't process vCard avatars for MUC occupants caused TypeError
2014-04-20 18:06:04 -07:00
Lance Stout
8282d135cc
Bump version
2014-04-20 18:05:27 -07:00
Lance Stout
9acc78c81d
Merge pull request #288 from tpltnt/develop
...
doc typo fixed
2014-04-20 17:56:56 -07:00
tpltnt
3642469630
doc typo fixed
2014-04-19 19:12:09 +02:00
lovesnow
34cd20339c
Fix Don't process vCard avatars for MUC occupants caused TypeError
2014-02-21 10:31:04 +08:00
Lance Stout
7548f44047
Bump version
2014-02-14 13:53:25 -08:00
Lance Stout
7cf55ef695
Allow IQ processing based on only id value before the session is bound.
...
See issue #278
2014-02-14 13:50:21 -08:00
Lance Stout
543250da13
Bump version
2014-02-09 14:39:50 -08:00
Lance Stout
69e55d7316
Merge pull request #280 from allan-simon/develop
...
fixed setRole function,
2014-02-09 14:39:08 -08:00
Lance Stout
158411e918
Include stanza dirs
2014-02-09 14:36:36 -08:00