# HG changeset patch # User Elliott Sales de Andrade # Date 1329979677 0 # Node ID 5558d0751d75fb52c697d36e74348cfc36d0aff0 # Parent efb369d5ff2984ac6a33a37af2de347902c3c24a Update the HTML in the Plugin Information dialog. diff -r efb369d5ff29 -r 5558d0751d75 pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Thu Feb 23 06:23:50 2012 +0000 +++ b/pidgin/gtkdialogs.c Thu Feb 23 06:47:57 2012 +0000 @@ -814,8 +814,7 @@ str = g_string_sized_new(4096); - g_string_append_printf(str, "%s
", - _("Plugin Information")); + g_string_append_printf(str, "

%s

", _("Plugin Information")); for(l = purple_plugins_get_all(); l; l = l->next) { plugin = (PurplePlugin *)l->data; @@ -830,19 +829,25 @@ ploaded = purple_plugin_is_loaded(plugin); g_string_append_printf(str, - "%s
" - "\tAuthor: %s
\tVersion: %s
" - "\tWebsite: %s
\tID String: %s
" - "\tLoadable: %s
\tLoaded: %s
" - "
", pname, pauthor ? pauthor : "(null)", + "
%s
" + "Author: %s
" + "Version: %s
" + "Website: %s
" + "ID String: %s
" + "Loadable: %s
" + "Loaded: %s" + "

", + pname, pauthor ? pauthor : "(null)", pver, pwebsite, pid, - punloadable ? "No" : "Yes", + punloadable ? "No" : "Yes", ploaded ? "Yes" : "No"); g_free(pname); g_free(pauthor); } + g_string_append(str, "
"); + plugins_info = pidgin_build_help_dialog(title, "plugins_info", str); g_signal_connect(G_OBJECT(plugins_info), "destroy", G_CALLBACK(gtk_widget_destroyed), &plugins_info);