pidgin: f43aae9c: Use a custom clientkey for AIM and ICQ f...

markdoliner at pidgin.im markdoliner at pidgin.im
Wed Jul 8 15:20:34 EDT 2009


-----------------------------------------------------------------
Revision: f43aae9cec18c240f0d3c803f3c9136fe989d1c3
Ancestor: 84ccc7a4a13b683bb091e40e212d7db1dbf78485
Author: markdoliner at pidgin.im
Date: 2009-07-08T19:15:31
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/f43aae9cec18c240f0d3c803f3c9136fe989d1c3

Modified files:
        finch/finch.c pidgin/gtkmain.c

ChangeLog: 

Use a custom clientkey for AIM and ICQ for Pidgin and Finch

-------------- next part --------------
============================================================
--- finch/finch.c	8c094d9ed8ac527472c39e24646f71cea6ccbc54
+++ finch/finch.c	3f94729b09f2e6cf53bf7c70fb939633eb587e75
@@ -66,6 +66,17 @@ static GHashTable *finch_ui_get_info(voi
 		g_hash_table_insert(ui_info, "website", "http://pidgin.im");
 		g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im");
 		g_hash_table_insert(ui_info, "client_type", "console");
+
+		/*
+		 * This is the client key for "Finch."  It is owned by the AIM
+		 * account "markdoliner."  Please don't use this key for other
+		 * applications.  You can either not specify a client key, in
+		 * which case the default "libpurple" key will be used, or you
+		 * can register for your own client key at
+		 * http://developer.aim.com/manageKeys.jsp
+		 */
+		g_hash_table_insert(ui_info, "prpl-aim-clientkey", "ma19sqWV9ymU6UYc");
+		g_hash_table_insert(ui_info, "prpl-icq-clientkey", "ma19sqWV9ymU6UYc");
 	}
 
 	return ui_info;
============================================================
--- pidgin/gtkmain.c	b9ccb31eaa81448337946cc7eeee120f96a4c3a0
+++ pidgin/gtkmain.c	21b860b1d0dc3f9bcf39ec557b9dae74118c4e97
@@ -356,6 +356,17 @@ static GHashTable *pidgin_ui_get_info(vo
 		g_hash_table_insert(ui_info, "website", "http://pidgin.im");
 		g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im");
 		g_hash_table_insert(ui_info, "client_type", "pc");
+
+		/*
+		 * This is the client key for "Pidgin."  It is owned by the AIM
+		 * account "markdoliner."  Please don't use this key for other
+		 * applications.  You can either not specify a client key, in
+		 * which case the default "libpurple" key will be used, or you
+		 * can register for your own client key at
+		 * http://developer.aim.com/manageKeys.jsp
+		 */
+		g_hash_table_insert(ui_info, "prpl-aim-clientkey", "ma1cSASNCKFtrdv9");
+		g_hash_table_insert(ui_info, "prpl-icq-clientkey", "ma1cSASNCKFtrdv9");
 	}
 
 	return ui_info;


More information about the Commits mailing list