log

age author description
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:56:30 +0000 Andreas Monitzer Fixed a few bugs in the caps implementation, it should work properly now.
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 20:07:31 +0000 Andreas Monitzer Now all ad-hoc commands have to be sent through jabber_adhoc_execute to be properly executed (including the form steps). This cleans up the code a bit, and avoids DOS attacks by flooding the client with malicious ad-hoc command forms that were not requested.
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).
Sat, 23 Jun 2007 02:57:21 +0000 Andreas Monitzer Implemented ad-hoc commands for the buddy action menu (untested), implemented the receiving end of XEP-0115: Entity Capabilities. Note that this seems not to be reliable right now, since some clients seem to have a very broken [read: completely non-functional] implementation (most notably Gajim and the py-transports).
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.
Wed, 20 Jun 2007 00:25:37 +0000 Andreas Monitzer Forgot to implement XEP-0203 for presence packets, too.
Wed, 20 Jun 2007 00:22:16 +0000 Andreas Monitzer Implemented XEP-0203: Delayed Delivery
Wed, 20 Jun 2007 00:13:02 +0000 Andreas Monitzer Fixed a leak: The XML parser was never cleaned up on disconnect.
Tue, 19 Jun 2007 23:54:52 +0000 Andreas Monitzer Fixed a leak in the PEP code that leaked PEP nodes when the server doesn't support this XEP.
Tue, 19 Jun 2007 23:34:16 +0000 Andreas Monitzer Implemented logging in/out of gateways, as explained in XEP-0100.
Tue, 19 Jun 2007 16:10:36 +0000 Andreas Monitzer Exposed the user search function, so that directory searches can be performed directly when the jid is known.
Tue, 19 Jun 2007 14:50:22 +0000 Andreas Monitzer Added the ability to register gateways, re-using most of the account registration code for this.
Tue, 19 Jun 2007 02:53:24 +0000 Andreas Monitzer Implemented XEP-0050: Ad-Hoc Commands. Note that this XEP requires sending an initial command to the peer, which is not implemented in libpurple itself (since this requires a discovery browser or equivalent).
Mon, 18 Jun 2007 15:05:39 +0000 Andreas Monitzer User Nickname now sets the buddy's server_alias, which means that no UI changes are required for supporting this XEP. Also forgot to add usernick.[hc].
Mon, 18 Jun 2007 14:45:17 +0000 Andreas Monitzer Implemented XEP-0172: User Nickname, fixed some potential crashers in the other PEP callbacks.
Mon, 18 Jun 2007 13:54:26 +0000 Andreas Monitzer Removed some C99-code
Mon, 18 Jun 2007 12:48:16 +0000 Andreas Monitzer fixed a bug in the status change tracking code
Mon, 18 Jun 2007 12:37:29 +0000 Andreas Monitzer Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Mon, 18 Jun 2007 03:25:22 +0000 Andreas Monitzer Removed one padding field from PurplePluginProtocolInfo to stay source compatible.
Mon, 18 Jun 2007 03:14:45 +0000 Andreas Monitzer Fixed weird bug that caused not supplying the account when searching for users.
Mon, 18 Jun 2007 02:57:22 +0000 Andreas Monitzer Fixed embarrassing typos. Maybe I shouldn't code while half asleep.
Mon, 18 Jun 2007 02:46:44 +0000 Andreas Monitzer Forgot to initialize the user tune
Mon, 18 Jun 2007 02:19:17 +0000 Andreas Monitzer svn revision 728 of Psi fixes the avatar namespace issue, so I can remove this workaround.
Mon, 18 Jun 2007 01:55:54 +0000 Andreas Monitzer Minor compilation fixes and corrected some typos on user tune. Added convenience function for setting the user tune.
Mon, 18 Jun 2007 00:56:00 +0000 Andreas Monitzer Removed a stale include
Sun, 17 Jun 2007 21:04:15 +0000 Andreas Monitzer Fixed a bug that resulted in not being able to receive any messages.
Sun, 17 Jun 2007 20:31:01 +0000 Andreas Monitzer Implemented user tune, currently untested.
Sun, 17 Jun 2007 19:38:24 +0000 Andreas Monitzer Fixed a minor mistake which could leave the usermood to be parsed incompletely.
Sun, 17 Jun 2007 04:05:28 +0000 Andreas Monitzer Turns out the example in XEP-0084 is wrong. Fixed my implementation to not try to work around an issue that isn't one.
Sun, 17 Jun 2007 03:51:19 +0000 Andreas Monitzer Implemented receiving other people's avatars via XEP-0084. Note that this code now includes a workaround for a non-spec incompatibility for the current ejabberd PEP implementation, and doesn't use the correct namespace due to Psi using the wrong one (outdated?). Works fine though, and the vcard-based approach is retained.
Sun, 17 Jun 2007 01:16:55 +0000 Andreas Monitzer Added support for setting the avatar via XEP-0084. Receiving other people's avatar is up next.
Fri, 15 Jun 2007 21:09:22 +0000 Andreas Monitzer Fixed usermood memory management and removed publishing empty <text/>s.
Fri, 15 Jun 2007 11:00:46 +0000 Andreas Monitzer Minor syntactic sugar.
Fri, 15 Jun 2007 07:44:05 +0000 Andreas Monitzer Implemented setting the User Mood. Currently untested since it requires the fields request API, which isn't implemented in Adium yet.
Fri, 15 Jun 2007 07:13:41 +0000 Andreas Monitzer PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Wed, 13 Jun 2007 16:03:11 +0000 Andreas Monitzer Implemented a mood menu action (non-functional right now for some reason)
Tue, 12 Jun 2007 23:43:06 +0000 Andreas Monitzer Removed the huge enum for the user mood states, since it's now passed as localized strings anyways
Tue, 12 Jun 2007 03:19:42 +0000 Andreas Monitzer Fixed a few small mistakes I discovered while testing user mood in Adium.
Tue, 12 Jun 2007 01:25:46 +0000 Andreas Monitzer Fixed whitespace to match the coding convention used in libpurple
Tue, 12 Jun 2007 00:37:50 +0000 Andreas Monitzer Some more code style changes
Tue, 12 Jun 2007 00:28:06 +0000 Andreas Monitzer Fixed naming to adhere to the libpurple convention
Tue, 12 Jun 2007 00:00:53 +0000 Andreas Monitzer forgot to add usermood.[hc]
Mon, 11 Jun 2007 23:33:39 +0000 Andreas Monitzer implemented user mood, still missing the front end interface
Sun, 10 Jun 2007 12:22:39 +0000 Andreas Monitzer Implemented <required/> for x-data forms, simplified malloc/sprintf, message type headline is not a requirement for incoming PEP messages (it is just recommended to avoid offline message storage).
Wed, 06 Jun 2007 02:07:53 +0000 Andreas Monitzer Implemented adding callbacks for PEP events. Moved the feature list to be application-global instead of per-connection (makes more sense).
Wed, 06 Jun 2007 01:37:28 +0000 Andreas Monitzer Implemented publishing events
Wed, 06 Jun 2007 01:23:18 +0000 Andreas Monitzer Small fix for caps
Wed, 06 Jun 2007 01:19:49 +0000 Andreas Monitzer Added the ability to define extensions to caps
Wed, 06 Jun 2007 00:04:29 +0000 Andreas Monitzer applied patch for supporting XEP-0199: XMPP Ping
Wed, 06 Jun 2007 00:01:15 +0000 Andreas Monitzer added preliminary frame for pep-support
Tue, 05 Jun 2007 16:31:20 +0000 Andreas Monitzer New API name change, per request of Sean.
Tue, 05 Jun 2007 15:33:36 +0000 Andreas Monitzer Fixed binary compatibility
Tue, 05 Jun 2007 15:18:30 +0000 Andreas Monitzer Fixed one of the issues in the ssl stuff, allowing CN cert checks for starttls-connections in XMPP.
Sun, 03 Jun 2007 23:28:04 +0000 Andreas Monitzer Set up .mtnignore to ignore the svn directories.
Fri, 01 Jun 2007 04:22:16 +0000 Sean Egan merge of '10b1053a68924a00cad9c1ed655c2528d95e6b36'
Fri, 01 Jun 2007 04:20:37 +0000 Sean Egan merge of '27642feec9fb0de47fa600a01c447c8030505350'
Fri, 01 Jun 2007 03:21:28 +0000 Sean Egan Add insert.png
Fri, 01 Jun 2007 03:20:38 +0000 Sean Egan merge of '1f2acb75f934f19f04262b06c2907dece2731ed2'
Fri, 01 Jun 2007 01:36:16 +0000 Daniel Atallah Fix the "transfer file or embed image" message (it looks like it was copied and pasted incorrectly).
Fri, 01 Jun 2007 01:20:32 +0000 Daniel Atallah Link pidgin against gthread again (I only just removed it a few days ago and now it is needed again).
Wed, 06 Jun 2007 00:30:15 +0000 Sean Egan disapproval of revision '1f2acb75f934f19f04262b06c2907dece2731ed2'
Fri, 01 Jun 2007 03:20:34 +0000 Sean Egan Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Fri, 01 Jun 2007 00:50:19 +0000 Sean Egan merge of '65a2625990bbafe0f7d435e23be894ec9a7dc189'
Thu, 31 May 2007 21:24:43 +0000 Daniel Atallah Under some conditions, we're getting "BPR MOB Y" when there hasn't previously been a user to attach it to. This prevents crashing. Fixes #1474. Someone more familiar with MSN may want to look into why we might be receiving the unexpected BPR.
Thu, 31 May 2007 20:24:27 +0000 Sean Egan merge of 'a07c6d482eb3c45f4ce691c86eb09a2a79786cd9'
Thu, 31 May 2007 18:28:09 +0000 Sean Egan merge of '8ae64558f2dc02cbc051dda2e2e6e4270b03f7f3'
Thu, 31 May 2007 18:28:05 +0000 Sean Egan disapproval of revision '3ac5981b26be545a8c546e09b6689c2359fad1bb'
Mon, 04 Jun 2007 05:05:42 +0000 Sadrul Habib Chowdhury Make sure of we _hide and _draw, it works.
Mon, 04 Jun 2007 03:08:59 +0000 Eric Polino Changed a malloc use to g_new0
Mon, 04 Jun 2007 03:00:09 +0000 Eric Polino Fixed some curlies for functions
Mon, 04 Jun 2007 02:49:22 +0000 Eric Polino Created a new window that will be used for key-rebinding. Right now it doesn't rebind the keys, but that can be added soon. A bit of esthetical work remains.
Wed, 30 May 2007 23:38:22 +0000 Eric Polino 1. Cleaned up a bit of dirty formatting in the _register_action lines in _class_init
Mon, 21 May 2007 20:14:15 +0000 Eric Polino Cleaned up some comment garbage
Mon, 21 May 2007 16:53:04 +0000 Eric Polino Added myself to COPYRIGHT
Mon, 21 May 2007 16:36:10 +0000 Eric Polino Changed a comment block from // to /* */
Mon, 21 May 2007 14:50:01 +0000 Eric Polino Added a few lines to gnt_main::io_invoke to deal with ALT not sending ESC.
Thu, 31 May 2007 08:12:19 +0000 Sadrul Habib Chowdhury New function purple_blist_node_get_type.
Thu, 31 May 2007 05:11:46 +0000 Sadrul Habib Chowdhury merge of '8ae64558f2dc02cbc051dda2e2e6e4270b03f7f3'
Wed, 30 May 2007 06:23:06 +0000 Sadrul Habib Chowdhury If there's no account at startup, sohw the 'New Account' dialog too.
Wed, 30 May 2007 02:00:31 +0000 Sadrul Habib Chowdhury merge of '072dda917fc312048b89471565db49dbffa435f2'
Wed, 30 May 2007 01:41:53 +0000 Sadrul Habib Chowdhury merge of '0a38e9dc34b72b02921967bb5ac7d827ed8638b1'
Tue, 29 May 2007 21:48:43 +0000 Sadrul Habib Chowdhury Do not send typing notification if you are typing a /-command.
Mon, 28 May 2007 00:21:27 +0000 Sadrul Habib Chowdhury Fix libgnt compilation on BSD and solaris. This references #516.
Sun, 27 May 2007 21:35:47 +0000 Sadrul Habib Chowdhury Add new function purple_xfer_get_remote_user.
Sun, 27 May 2007 18:31:40 +0000 Sadrul Habib Chowdhury Make sure if some plugin used pidgin_protocol_option_menu_new, they continue
Sun, 27 May 2007 17:45:43 +0000 Sadrul Habib Chowdhury merge of '15c67573c5441bdd943fcf07e496016c58492c19'
Sun, 27 May 2007 02:11:53 +0000 Sadrul Habib Chowdhury merge of '5161434de87f4642ea96466bde679769f874d68b'
Sat, 26 May 2007 23:57:42 +0000 Sadrul Habib Chowdhury merge of '73e35014c64a318321f84ca240fbc590a80e4bec'
Sat, 26 May 2007 18:45:34 +0000 Sadrul Habib Chowdhury merge of '2438302de25c5f5131f0c555507a057550b51c0f'
Sat, 26 May 2007 08:23:15 +0000 Sadrul Habib Chowdhury Remove the confusing 'OK' button from the auth dialog.
Sat, 26 May 2007 08:08:04 +0000 Sadrul Habib Chowdhury Show information about the user requesting authorization.
Fri, 25 May 2007 22:45:43 +0000 Sadrul Habib Chowdhury Fix #1284. "Pressing Ctrl+C while editing a buddy list alias shouldn't "Join a chat""
Fri, 25 May 2007 22:06:53 +0000 Sadrul Habib Chowdhury merge of '371fb91ec4fdb33fa482efe55111fe58d8758c3b'
Fri, 25 May 2007 22:04:18 +0000 Sadrul Habib Chowdhury Allow formatted text in the pounce dialog. Also, use the same code to
Fri, 25 May 2007 20:05:01 +0000 Sadrul Habib Chowdhury Fix the last merge.
Fri, 25 May 2007 19:51:22 +0000 Sadrul Habib Chowdhury merge of '2f10c41a04555ebc895ec5168c3c2996c738cbd9'
Sat, 26 May 2007 13:48:41 +0000 Gabriel Schulhof Forgot to remove spaces from before ;s
Sat, 26 May 2007 13:37:54 +0000 Gabriel Schulhof Coding style.
Sat, 26 May 2007 10:20:54 +0000 Gabriel Schulhof Minor change
Sat, 26 May 2007 10:19:27 +0000 Gabriel Schulhof Minor fix
Sat, 26 May 2007 10:03:55 +0000 Gabriel Schulhof Close smiley dialog on GDK_Escape or button 1 press.
Thu, 31 May 2007 00:40:46 +0000 William Ehlhardt merge of '03ea20ce538dad585a5a2d40778f242a1fd85a4b'
Thu, 31 May 2007 00:40:36 +0000 William Ehlhardt merge of 'b30d119437548516a2f7b28d4172f8fcd6238d10'
Thu, 31 May 2007 00:40:23 +0000 William Ehlhardt merge of '4538f6c33c0f8ed2d8e1f9124fb52bce0d676e63'
Thu, 31 May 2007 00:40:09 +0000 William Ehlhardt merge of '4b282994660451b15a8a393ef032d32e9bf00d2e'
Wed, 30 May 2007 23:39:44 +0000 William Ehlhardt - Added a description of preference grouping to the Prefs API code
Wed, 30 May 2007 03:55:56 +0000 William Ehlhardt - Add documentation for the internal CipherContext struct
Thu, 31 May 2007 00:37:10 +0000 William Ehlhardt disapproval of revision 'b0f6005b1330af13bce0bcb189a2c887036b5ea3'
Tue, 29 May 2007 21:51:53 +0000 William Ehlhardt Cosmetics
Thu, 31 May 2007 00:37:50 +0000 William Ehlhardt disapproval of revision 'e16819f96b34e350f6991bf0fab3d4fd7d0f91e7'
Tue, 29 May 2007 21:11:08 +0000 William Ehlhardt - Fixed the lack of callbackness
Thu, 31 May 2007 00:38:18 +0000 William Ehlhardt disapproval of revision '0c0e615a3bd08e34aba58d7249e23c3738c87341'
Tue, 29 May 2007 21:00:08 +0000 William Ehlhardt - Eliminate some warnings
Thu, 31 May 2007 00:39:01 +0000 William Ehlhardt disapproval of revision '38e35430b0f7a8b7d764fca702732e7f1c652d02'
Tue, 29 May 2007 20:50:06 +0000 William Ehlhardt - Added PURPLE_SSL_PEER_AUTH_FAILED to show that an SSL connection was