log libpurple/protocols/jabber/jabber.c @ 18948:22838745420a

age author description
Mon, 25 Jun 2007 21:38:40 +0000 William Ehlhardt propagate from branch 'im.pidgin.pidgin' (head 704b8c18f7c29f1fc8bfcf640275d2a9928ed03c)
Thu, 21 Jun 2007 19:21:47 +0000 William Ehlhardt applied changes from e52b685d84ca8874da6e3e71199829e513500642
Wed, 08 Aug 2007 21:01:42 +0000 Andreas Monitzer Updated attention namespace to adhere to my new XEP-0224: Attention
Tue, 31 Jul 2007 15:01:14 +0000 Andreas Monitzer Mixed up TRUE and FALSE.
Tue, 31 Jul 2007 03:50:41 +0000 Andreas Monitzer Implemented a callback for unregistering, mirroring the registration callback. Since this is a new API, I can do it properly by passing it right in the unregister function call, instead of having a separate function for setting it.
Mon, 30 Jul 2007 00:05:02 +0000 Andreas Monitzer propagate from branch 'im.pidgin.pidgin' (head cd20365dc59b48132f198784fbca95b91d1fc5c9)
Thu, 09 Aug 2007 18:58:07 +0000 Daniel Atallah Fix uninitialized variable access.
Sun, 29 Jul 2007 06:10:24 +0000 Mark Doliner Fix a bunch of possible crashes in jabber when using slash commands in
Mon, 30 Jul 2007 00:01:08 +0000 Andreas Monitzer Added unregistering XMPP accounts. This requires a new prpl-struct entry, but I got an ok for that on the mailing list.
Mon, 16 Jul 2007 13:56:22 +0000 Andreas Monitzer Added the ability to unregister from a gateway.
Wed, 11 Jul 2007 22:27:44 +0000 Andreas Monitzer propagate from branch 'im.pidgin.pidgin' (head b195e262642015df66e36d33e9dd16ecae5df9d5)
Wed, 27 Jun 2007 21:41:04 +0000 Sean Egan Make password fileds in Jabber's Change Password dialog required. Fixes #1907
Sat, 23 Jun 2007 06:01:30 +0000 Sadrul Habib Chowdhury Fix a crash when you have an IM window open on a jabber account and the
Sun, 17 Jun 2007 15:27:35 +0000 Nathan Walp server-side jabber vcards now take precedence over local vcards, so
Fri, 08 Jun 2007 12:38:30 +0000 Nathan Walp merge of '4b50880d8517570eaa67d4cd9d88c5934bb832f1'
Fri, 08 Jun 2007 12:38:21 +0000 Nathan Walp if we don't have an icon, lets not clear the icon on login (fixes #788)
Thu, 07 Jun 2007 06:22:37 +0000 Mark Doliner Better error message for when a Jabber connection fails
Wed, 11 Jul 2007 00:17:11 +0000 Andreas Monitzer Fixed bug that caused incorrect stream negotiation, which ejabberd and openfire tolerate, but gtalk does not.
Sun, 08 Jul 2007 22:52:48 +0000 Andreas Monitzer Added an option to require SSL or TLS when connecting to an XMPP server.
Tue, 03 Jul 2007 23:51:26 +0000 Andreas Monitzer Fixed a bug in the XMPP parser involving event handlers that replace the xmlnode packet. This caused double frees in this situation. The replacing function must free the xmlnode, since multiple event handlers could do this, and the intermediate xml trees would leak otherwise.
Tue, 03 Jul 2007 15:50:24 +0000 Andreas Monitzer Fixed copy/paste error.
Tue, 03 Jul 2007 13:37:25 +0000 Andreas Monitzer Added the option to enable/disable buzz via a status setting. It's default off for the pidgin folks.
Tue, 03 Jul 2007 11:04:50 +0000 Andreas Monitzer Switched buzz namespace and tag name to be libpurple-specific and use a more professionally-sounding name ('attention' instead of 'buzz').
Fri, 29 Jun 2007 21:44:42 +0000 Andreas Monitzer disapproval of revision '217714a0fa711773c0d419f8cd82297ffc339507'
Thu, 28 Jun 2007 13:22:13 +0000 Andreas Monitzer Removed buzz support.
Wed, 27 Jun 2007 03:23:52 +0000 Andreas Monitzer Added buzz support using a private extension. Maybe I should write a XEP about that.
Mon, 25 Jun 2007 19:08:16 +0000 Andreas Monitzer The server's ad-hoc commands are now listed in the account's action menu. Note that this requires an additional field in the _PurplePluginAction struct. There's no other way, since there was no way to supply user_data, and dynamically created functions are not supported by C. This should be fine, since that struct is only malloced in purple_plugin_action_new, which is part of the core. Applications have to either pass the struct unmodified, or restore the user_data pointer if the action is recreated when necessary (as is the case in Adium).
Fri, 22 Jun 2007 11:52:50 +0000 Andreas Monitzer Simplified registration callback per request of Sean.
Fri, 22 Jun 2007 00:05:35 +0000 Andreas Monitzer Implemented a callback for a successful registration, supplying the username and password to the application when available, in the way explained by Sean.
Wed, 20 Jun 2007 10:18:52 +0000 Andreas Monitzer Introduced an additional connection stage to the jabber connection progress in order to be able to tell in the application, whether SSL/TLS is enabled, so it can display a lock icon next to the connection.