pidgin: 92326134: '/debug plugins' will announce the list ..
sadrul at pidgin.im
sadrul at pidgin.im
Tue Sep 15 02:31:06 EDT 2009
-----------------------------------------------------------------
Revision: 92326134e1f30c2e603c4ae93cfb960a688e6f7d
Ancestor: 2e8917ccda7f557d10ad1fb19e35dd3ac5cc7698
Author: sadrul at pidgin.im
Date: 2009-09-15T06:27:29
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/92326134e1f30c2e603c4ae93cfb960a688e6f7d
Modified files:
ChangeLog finch/gntconv.c pidgin/gtkconv.c
ChangeLog:
'/debug plugins' will announce the list of loaded plugins.
This should help users answer the 'What plugins are you using?'
question. The list includes protocol plugins and plugin loaders, since
often they are the source of the bug reports.
-------------- next part --------------
============================================================
--- ChangeLog 6e78b15060f29fe30ae1b695f61248014b305d49
+++ ChangeLog 35beb512fffcbf750ac4a295364b13e0c69b506e
@@ -4,6 +4,10 @@ version 2.6.3 (??/??/20??):
XMPP:
* Fix a crash when attempting to validate an invalid JID.
+ General:
+ * New 'plugins' sub-command to 'debug' command (i.e. '/debug plugins')
+ to announce the list of loaded plugins (in both Finch and Pidgin).
+
version 2.6.2 (09/05/2009):
libpurple:
* Fix --disable-avahi to actually disable it in configure, as opposed
============================================================
--- finch/gntconv.c 8d956d412f7a6210a44a80bf81646117aa1f2fc3
+++ finch/gntconv.c 5141f6be80df150f6710eb48b545d734ec5f2251
@@ -29,6 +29,7 @@
#include <internal.h>
#include <cmds.h>
+#include <core.h>
#include <idle.h>
#include <prefs.h>
#include <util.h>
@@ -1181,22 +1182,43 @@ debug_command_cb(PurpleConversation *con
const char *cmd, char **args, char **error, void *data)
{
char *tmp, *markup;
- PurpleCmdStatus status;
if (!g_ascii_strcasecmp(args[0], "version")) {
- tmp = g_strdup_printf("me is using Finch v%s.", DISPLAY_VERSION);
- markup = g_markup_escape_text(tmp, -1);
+ tmp = g_strdup_printf("Using Finch v%s with libpurple v%s.",
+ DISPLAY_VERSION, purple_core_get_version());
+ } else if (!g_ascii_strcasecmp(args[0], "plugins")) {
+ /* Show all the loaded plugins, including the protocol plugins and plugin loaders.
+ * This is intentional, since third party prpls are often sources of bugs, and some
+ * plugin loaders (e.g. mono) can also be buggy.
+ */
+ GString *str = g_string_new("Loaded Plugins: ");
+ const GList *plugins = purple_plugins_get_loaded();
+ if (plugins) {
+ for (; plugins; plugins = plugins->next) {
+ str = g_string_append(str, purple_plugin_get_name(plugins->data));
+ if (plugins->next)
+ str = g_string_append(str, ", ");
+ }
+ } else {
+ str = g_string_append(str, "(none)");
+ }
- status = purple_cmd_do_command(conv, tmp, markup, error);
-
- g_free(tmp);
- g_free(markup);
- return status;
+ tmp = g_string_free(str, FALSE);
} else {
- purple_conversation_write(conv, NULL, _("Supported debug options are: version"),
+ purple_conversation_write(conv, NULL, _("Supported debug options are: plugins version"),
PURPLE_MESSAGE_NO_LOG|PURPLE_MESSAGE_ERROR, time(NULL));
return PURPLE_CMD_STATUS_OK;
}
+
+ markup = g_markup_escape_text(tmp, -1);
+ if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_IM)
+ purple_conv_im_send(PURPLE_CONV_IM(conv), markup);
+ else if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_CHAT)
+ purple_conv_chat_send(PURPLE_CONV_CHAT(conv), markup);
+
+ g_free(tmp);
+ g_free(markup);
+ return PURPLE_CMD_STATUS_OK;
}
/* Xerox */
============================================================
--- pidgin/gtkconv.c 47d07cd5ee991fa45a6ef95ddb51308e998f6f7f
+++ pidgin/gtkconv.c 49006166b12c6ee30afeea2b5b281c30f7b6c5b7
@@ -327,23 +327,43 @@ debug_command_cb(PurpleConversation *con
const char *cmd, char **args, char **error, void *data)
{
char *tmp, *markup;
- PurpleCmdStatus status;
if (!g_ascii_strcasecmp(args[0], "version")) {
- tmp = g_strdup_printf("me is using Pidgin v%s with libpurple v%s.",
+ tmp = g_strdup_printf("Using Pidgin v%s with libpurple v%s.",
DISPLAY_VERSION, purple_core_get_version());
- markup = g_markup_escape_text(tmp, -1);
+ } else if (!g_ascii_strcasecmp(args[0], "plugins")) {
+ /* Show all the loaded plugins, including the protocol plugins and plugin loaders.
+ * This is intentional, since third party prpls are often sources of bugs, and some
+ * plugin loaders (e.g. mono) can also be buggy.
+ */
+ GString *str = g_string_new("Loaded Plugins: ");
+ const GList *plugins = purple_plugins_get_loaded();
+ if (plugins) {
+ for (; plugins; plugins = plugins->next) {
+ str = g_string_append(str, purple_plugin_get_name(plugins->data));
+ if (plugins->next)
+ str = g_string_append(str, ", ");
+ }
+ } else {
+ str = g_string_append(str, "(none)");
+ }
- status = purple_cmd_do_command(conv, tmp, markup, error);
-
- g_free(tmp);
- g_free(markup);
- return status;
+ tmp = g_string_free(str, FALSE);
} else {
- purple_conversation_write(conv, NULL, _("Supported debug options are: version"),
+ purple_conversation_write(conv, NULL, _("Supported debug options are: plugins version"),
PURPLE_MESSAGE_NO_LOG|PURPLE_MESSAGE_ERROR, time(NULL));
return PURPLE_CMD_STATUS_OK;
}
+
+ markup = g_markup_escape_text(tmp, -1);
+ if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_IM)
+ purple_conv_im_send(PURPLE_CONV_IM(conv), markup);
+ else if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_CHAT)
+ purple_conv_chat_send(PURPLE_CONV_CHAT(conv), markup);
+
+ g_free(tmp);
+ g_free(markup);
+ return PURPLE_CMD_STATUS_OK;
}
static void clear_conversation_scrollback(PurpleConversation *conv)
More information about the Commits
mailing list