# HG changeset patch # User Michael Shkutkov # Date 1181736452 0 # Node ID f10e6ba2a6195aea51a92874d08cff93c25f2a03 # Parent fa4b70c5ea9d6ff8fdb3304945630a70194ef207# Parent 452bd3baa9af28aa74098c4840bb4f4a9b864ab3 propagate from branch 'im.pidgin.pidgin' (head a1968384a452dd20568c92cd468b420fb8539ce8) to branch 'im.pidgin.soc.2007.remotelogging' (head 5a8c936703297964b5e813c5038034bfc5513342) diff -r fa4b70c5ea9d -r f10e6ba2a619 configure.ac --- a/configure.ac Mon Jun 11 14:58:27 2007 +0000 +++ b/configure.ac Wed Jun 13 12:07:32 2007 +0000 @@ -142,7 +142,7 @@ dnl If we don't have msgfmt, then po/ is going to fail -- ensure that dnl AM_GLIB_GNU_GETTEXT found it. -if test x$MSGFMT = xno -o x$GMSGFMT = x +if test x$MSGFMT = xno then AC_ERROR([ @@ -2104,6 +2104,8 @@ pidgin/pixmaps/tray/16/scalable/Makefile pidgin/pixmaps/tray/22/Makefile pidgin/pixmaps/tray/22/scalable/Makefile + pidgin/pixmaps/tray/32/Makefile + pidgin/pixmaps/tray/48/Makefile pidgin/plugins/Makefile pidgin/plugins/cap/Makefile pidgin/plugins/gestures/Makefile diff -r fa4b70c5ea9d -r f10e6ba2a619 doc/oscar/On_Sending_Files_via_OSCAR.odt diff -r fa4b70c5ea9d -r f10e6ba2a619 doc/oscar/On_Sending_Files_via_OSCAR.pdf diff -r fa4b70c5ea9d -r f10e6ba2a619 doc/oscar/Receive_Codepaths.odg diff -r fa4b70c5ea9d -r f10e6ba2a619 doc/oscar/Send_Codepaths.odg diff -r fa4b70c5ea9d -r f10e6ba2a619 libpurple/plugins/buddynote.c --- a/libpurple/plugins/buddynote.c Mon Jun 11 14:58:27 2007 +0000 +++ b/libpurple/plugins/buddynote.c Wed Jun 13 12:07:32 2007 +0000 @@ -58,6 +58,9 @@ { PurpleMenuAction *bna = NULL; + if (purple_blist_node_get_flags(node) & PURPLE_BLIST_NODE_FLAG_NO_SAVE) + return; + *m = g_list_append(*m, bna); bna = purple_menu_action_new(_("Edit Notes..."), PURPLE_CALLBACK(buddynote_edit_cb), NULL, NULL); *m = g_list_append(*m, bna); diff -r fa4b70c5ea9d -r f10e6ba2a619 libpurple/protocols/jabber/presence.c --- a/libpurple/protocols/jabber/presence.c Mon Jun 11 14:58:27 2007 +0000 +++ b/libpurple/protocols/jabber/presence.c Wed Jun 13 12:07:32 2007 +0000 @@ -379,8 +379,7 @@ } else if(xmlns && !strcmp(xmlns, "vcard-temp:x:update")) { xmlnode *photo = xmlnode_get_child(y, "photo"); if(photo) { - if(avatar_hash) - g_free(avatar_hash); + g_free(avatar_hash); avatar_hash = xmlnode_get_data(photo); } } @@ -409,8 +408,7 @@ jabber_id_free(jid); g_free(status); g_free(room_jid); - if(avatar_hash) - g_free(avatar_hash); + g_free(avatar_hash); return; } @@ -426,8 +424,7 @@ jabber_id_free(jid); g_free(status); g_free(room_jid); - if(avatar_hash) - g_free(avatar_hash); + g_free(avatar_hash); return; } @@ -510,8 +507,7 @@ purple_debug_warning("jabber", "Got presence for unknown buddy %s on account %s (%x)", buddy_name, purple_account_get_username(js->gc->account), js->gc->account); jabber_id_free(jid); - if(avatar_hash) - g_free(avatar_hash); + g_free(avatar_hash); g_free(buddy_name); g_free(status); return; @@ -568,8 +564,7 @@ } g_free(status); jabber_id_free(jid); - if(avatar_hash) - g_free(avatar_hash); + g_free(avatar_hash); } void jabber_presence_subscription_set(JabberStream *js, const char *who, const char *type) diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/gtkblist.c --- a/pidgin/gtkblist.c Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/gtkblist.c Wed Jun 13 12:07:32 2007 +0000 @@ -108,6 +108,7 @@ static guint visibility_manager_count = 0; static gboolean gtk_blist_obscured = FALSE; +static gboolean editing_blist = FALSE; static GList *pidgin_blist_sort_methods = NULL; static struct pidgin_blist_sort_method *current_sort_method = NULL; @@ -315,6 +316,12 @@ gtk_blist_join_chat(chat); } +static void gtk_blist_renderer_editing_cancelled_cb(GtkCellRenderer *renderer, PurpleBuddyList *list) +{ + editing_blist = FALSE; + pidgin_blist_refresh(list); +} + static void gtk_blist_renderer_editing_started_cb(GtkCellRenderer *renderer, GtkCellEditable *editable, gchar *path_str, @@ -351,10 +358,11 @@ GtkEntry *entry = GTK_ENTRY (editable); gtk_entry_set_text(entry, text); } + editing_blist = TRUE; } static void gtk_blist_renderer_edited_cb(GtkCellRendererText *text_rend, char *arg1, - char *arg2, gpointer nada) + char *arg2, PurpleBuddyList *list) { GtkTreeIter iter; GtkTreePath *path; @@ -362,6 +370,7 @@ PurpleBlistNode *node; PurpleGroup *dest; + editing_blist = FALSE; path = gtk_tree_path_new_from_string (arg1); gtk_tree_model_get_iter (GTK_TREE_MODEL(gtkblist->treemodel), &iter, path); gtk_tree_path_free (path); @@ -406,6 +415,7 @@ default: break; } + pidgin_blist_refresh(list); } static void gtk_blist_menu_alias_cb(GtkWidget *w, PurpleBlistNode *node) @@ -3740,8 +3750,11 @@ gboolean pidgin_blist_node_is_contact_expanded(PurpleBlistNode *node) { - if PURPLE_BLIST_NODE_IS_BUDDY(node) + if (PURPLE_BLIST_NODE_IS_BUDDY(node)) { node = node->parent; + if (node == NULL) + return FALSE; + } g_return_val_if_fail(PURPLE_BLIST_NODE_IS_CONTACT(node), FALSE); @@ -4447,7 +4460,8 @@ "markup", NAME_COLUMN, NULL); g_signal_connect(G_OBJECT(rend), "editing-started", G_CALLBACK(gtk_blist_renderer_editing_started_cb), NULL); - g_signal_connect(G_OBJECT(rend), "edited", G_CALLBACK(gtk_blist_renderer_edited_cb), NULL); + g_signal_connect(G_OBJECT(rend), "editing-canceled", G_CALLBACK(gtk_blist_renderer_editing_cancelled_cb), list); + g_signal_connect(G_OBJECT(rend), "edited", G_CALLBACK(gtk_blist_renderer_edited_cb), list); g_object_set(rend, "ypad", 0, "yalign", 0.5, NULL); #if GTK_CHECK_VERSION(2,6,0) g_object_set(rend, "ellipsize", PANGO_ELLIPSIZE_END, NULL); @@ -4789,9 +4803,10 @@ gtk_tree_path_free(newpath); - gtk_tree_store_set(gtkblist->treemodel, iter, - NODE_COLUMN, node, - -1); + if (!editing_blist) + gtk_tree_store_set(gtkblist->treemodel, iter, + NODE_COLUMN, node, + -1); if(node->parent) { GtkTreePath *expand = NULL; @@ -4824,6 +4839,9 @@ g_return_if_fail(node != NULL); + if (editing_blist) + return; + if (PURPLE_BLIST_NODE_IS_GROUP(node)) gnode = node; else if (PURPLE_BLIST_NODE_IS_BUDDY(node)) @@ -4875,7 +4893,7 @@ GROUP_EXPANDER_VISIBLE_COLUMN, TRUE, CONTACT_EXPANDER_VISIBLE_COLUMN, FALSE, BUDDY_ICON_VISIBLE_COLUMN, FALSE, - IDLE_VISIBLE_COLUMN, FALSE, + IDLE_VISIBLE_COLUMN, FALSE, EMBLEM_VISIBLE_COLUMN, FALSE, -1); g_free(title); @@ -4925,6 +4943,9 @@ gboolean biglist = purple_prefs_get_bool(PIDGIN_PREFS_ROOT "/blist/show_buddy_icons"); presence = purple_buddy_get_presence(buddy); + if (editing_blist) + return; + status = pidgin_blist_get_status_icon((PurpleBlistNode*)buddy, PIDGIN_STATUS_ICON_SMALL); @@ -4970,7 +4991,6 @@ idle = i2; } } - gtk_tree_store_set(gtkblist->treemodel, iter, STATUS_ICON_COLUMN, status, STATUS_ICON_VISIBLE_COLUMN, TRUE, @@ -4985,7 +5005,7 @@ CONTACT_EXPANDER_COLUMN, NULL, CONTACT_EXPANDER_VISIBLE_COLUMN, expanded, GROUP_EXPANDER_VISIBLE_COLUMN, FALSE, - -1); + -1); g_free(mark); g_free(idle); @@ -5004,6 +5024,9 @@ PurpleBuddy *buddy; struct _pidgin_blist_node *gtknode; + if (editing_blist) + return; + if (PURPLE_BLIST_NODE_IS_BUDDY(node)) cnode = node->parent; else @@ -5100,6 +5123,9 @@ g_return_if_fail(PURPLE_BLIST_NODE_IS_CHAT(node)); + if (editing_blist) + return; + /* First things first, update the group */ pidgin_blist_update_group(list, node->parent); diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/gtkconv.c --- a/pidgin/gtkconv.c Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/gtkconv.c Wed Jun 13 12:07:32 2007 +0000 @@ -49,6 +49,7 @@ #include "prpl.h" #include "request.h" #include "util.h" +#include "version.h" #include "gtkdnd-hints.h" #include "gtkblist.h" @@ -2091,6 +2092,9 @@ return TRUE; } +static void +regenerate_options_items(PidginWindow *win); + void pidgin_conv_switch_active_conversation(PurpleConversation *conv) { @@ -2191,6 +2195,8 @@ gray_stuff_out(gtkconv); update_typing_icon(gtkconv); + g_object_set_data(G_OBJECT(entry), "transient_buddy", NULL); + regenerate_options_items(gtkconv->win); gtk_window_set_title(GTK_WINDOW(gtkconv->win->window), gtk_label_get_text(GTK_LABEL(gtkconv->tab_label))); @@ -2953,11 +2959,45 @@ menu = gtk_item_factory_get_widget(win->menu.item_factory, N_("/Conversation/More")); - if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_CHAT) + if (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_CHAT) { chat = purple_blist_find_chat(conv->account, conv->name); - else + + if ((chat == NULL) && (gtkconv->imhtml != NULL)) { + chat = g_object_get_data(G_OBJECT(gtkconv->imhtml), "transient_chat"); + } + + if ((chat == NULL) && (gtkconv->imhtml != NULL)) { + GHashTable *components; + components = g_hash_table_new_full(g_str_hash, g_str_equal, + g_free, g_free); + g_hash_table_replace(components, g_strdup("channel"), + g_strdup(conv->name)); + chat = purple_chat_new(conv->account, NULL, components); + purple_blist_node_set_flags((PurpleBlistNode *)chat, + PURPLE_BLIST_NODE_FLAG_NO_SAVE); + g_object_set_data_full(G_OBJECT(gtkconv->imhtml), "transient_chat", + chat, (GDestroyNotify)purple_blist_remove_chat); + } + } else { buddy = purple_find_buddy(conv->account, conv->name); + /* gotta remain bug-compatible :( libpurple < 2.0.2 didn't handle + * removing "isolated" buddy nodes well */ + if (purple_version_check(2, 0, 2) == NULL) { + if ((buddy == NULL) && (gtkconv->imhtml != NULL)) { + buddy = g_object_get_data(G_OBJECT(gtkconv->imhtml), "transient_buddy"); + } + + if ((buddy == NULL) && (gtkconv->imhtml != NULL)) { + buddy = purple_buddy_new(conv->account, conv->name, NULL); + purple_blist_node_set_flags((PurpleBlistNode *)buddy, + PURPLE_BLIST_NODE_FLAG_NO_SAVE); + g_object_set_data_full(G_OBJECT(gtkconv->imhtml), "transient_buddy", + buddy, (GDestroyNotify)purple_blist_remove_buddy); + } + } + } + if (chat) node = (PurpleBlistNode *)chat; else if (buddy) diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/gtkdocklet-x11.c --- a/pidgin/gtkdocklet-x11.c Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/gtkdocklet-x11.c Wed Jun 13 12:07:32 2007 +0000 @@ -125,8 +125,12 @@ int icon_size; if (docklet_height < 22) icon_size = gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_EXTRA_SMALL); + else if (docklet_height < 32) + icon_size = gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_SMALL); + else if (docklet_height < 48) + icon_size = gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_MEDIUM); else - icon_size = gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_SMALL); + icon_size = gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_LARGE); gtk_image_set_from_stock(GTK_IMAGE(image), icon_name, icon_size); } diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/gtkmain.c --- a/pidgin/gtkmain.c Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/gtkmain.c Wed Jun 13 12:07:32 2007 +0000 @@ -108,21 +108,19 @@ }; #endif -static int +static void dologin_named(const char *name) { PurpleAccount *account; char **names; int i; - int ret = -1; if (name != NULL) { /* list of names given */ names = g_strsplit(name, ",", 64); for (i = 0; names[i] != NULL; i++) { account = purple_accounts_find(names[i], NULL); if (account != NULL) { /* found a user */ - ret = 0; - purple_account_connect(account); + purple_account_set_enabled(account, PIDGIN_UI, TRUE); } } g_strfreev(names); @@ -133,12 +131,9 @@ if (accounts != NULL) { account = (PurpleAccount *)accounts->data; - ret = 0; - purple_account_connect(account); + purple_account_set_enabled(account, PIDGIN_UI, TRUE); } } - - return ret; } #ifdef HAVE_SIGNAL_H @@ -439,7 +434,6 @@ char *opt_config_dir_arg = NULL; char *opt_login_arg = NULL; char *opt_session_arg = NULL; - int dologin_ret = -1; char *search_path; GList *accounts; #ifdef HAVE_SIGNAL_H @@ -788,14 +782,23 @@ pidgin_debug_window_show(); if (opt_login) { - dologin_ret = dologin_named(opt_login_arg); + /* disable all accounts */ + for (accounts = purple_accounts_get_all(); accounts != NULL; accounts = accounts->next) { + PurpleAccount *account = accounts->data; + purple_account_set_enabled(account, PIDGIN_UI, FALSE); + } + /* honor the startup status preference */ + if (!purple_prefs_get_bool("/purple/savedstatus/startup_current_status")) + purple_savedstatus_activate(purple_savedstatus_get_startup()); + /* now enable the requested ones */ + dologin_named(opt_login_arg); if (opt_login_arg != NULL) { g_free(opt_login_arg); opt_login_arg = NULL; } } - if (opt_nologin) + if (opt_nologin && !opt_login) { /* Set all accounts to "offline" */ PurpleSavedStatus *saved_status; @@ -811,7 +814,7 @@ /* Set the status for each account */ purple_savedstatus_activate(saved_status); } - else + else if (!opt_login) { /* Everything is good to go--sign on already */ if (!purple_prefs_get_bool("/purple/savedstatus/startup_current_status")) diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/gtkutils.c --- a/pidgin/gtkutils.c Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/gtkutils.c Wed Jun 13 12:07:32 2007 +0000 @@ -2038,6 +2038,7 @@ static void screenname_autocomplete_destroyed_cb(GtkWidget *widget, gpointer data) { + g_free(data); purple_signals_disconnect_by_handle(widget); } @@ -2119,7 +2120,7 @@ purple_signal_connect(purple_accounts_get_handle(), "account-removed", entry, PURPLE_CALLBACK(repopulate_autocomplete), cb_data); - g_signal_connect(G_OBJECT(entry), "destroy", G_CALLBACK(screenname_autocomplete_destroyed_cb), NULL); + g_signal_connect(G_OBJECT(entry), "destroy", G_CALLBACK(screenname_autocomplete_destroyed_cb), data); } void pidgin_set_cursor(GtkWidget *widget, GdkCursorType cursor_type) diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pidginstock.c --- a/pidgin/pidginstock.c Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pidginstock.c Wed Jun 13 12:07:32 2007 +0000 @@ -161,14 +161,17 @@ { PIDGIN_STOCK_TOOLBAR_SELECT_AVATAR, "toolbar", "select-avatar.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, NULL }, { PIDGIN_STOCK_TOOLBAR_SEND_FILE, "toolbar", "send-file.png", TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL }, - { PIDGIN_STOCK_TRAY_AVAILABLE, "tray", "tray-online.png", TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, NULL }, - { PIDGIN_STOCK_TRAY_INVISIBLE, "tray", "tray-invisible.png", TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, NULL }, - { PIDGIN_STOCK_TRAY_AWAY, "tray", "tray-away.png", TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, NULL }, - { PIDGIN_STOCK_TRAY_BUSY, "tray", "tray-busy.png", TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, NULL }, - { PIDGIN_STOCK_TRAY_XA, "tray", "tray-extended-away.png", TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, NULL }, - { PIDGIN_STOCK_TRAY_OFFLINE, "tray", "tray-offline.png", TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, NULL }, - { PIDGIN_STOCK_TRAY_CONNECT, "tray", "tray-connecting.png", TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, NULL }, - { PIDGIN_STOCK_TRAY_PENDING, "tray", "tray-message.png", TRUE, TRUE, FALSE, FALSE, FALSE, FALSE, NULL } + { PIDGIN_STOCK_TRAY_AVAILABLE, "tray", "tray-online.png", TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL }, + { PIDGIN_STOCK_TRAY_INVISIBLE, "tray", "tray-invisible.png", TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL }, + { PIDGIN_STOCK_TRAY_AWAY, "tray", "tray-away.png", TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL }, + { PIDGIN_STOCK_TRAY_BUSY, "tray", "tray-busy.png", TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL }, + { PIDGIN_STOCK_TRAY_XA, "tray", "tray-extended-away.png", TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL }, + { PIDGIN_STOCK_TRAY_OFFLINE, "tray", "tray-offline.png", TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL }, + { PIDGIN_STOCK_TRAY_CONNECT, "tray", "tray-connecting.png", TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL }, + { PIDGIN_STOCK_TRAY_PENDING, "tray", "tray-new-im.png", TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL } +/* Uncomment me after 2.0.2! + * { PIDGIN_STOCK_TRAY_EMAIL, "tray", "tray-message.png", TRUE, TRUE, TRUE, TRUE, FALSE, FALSE, NULL } + */ }; static gchar * diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pidginstock.h --- a/pidgin/pidginstock.h Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pidginstock.h Wed Jun 13 12:07:32 2007 +0000 @@ -136,6 +136,9 @@ #define PIDGIN_STOCK_TRAY_OFFLINE "pidgin-tray-offline" #define PIDGIN_STOCK_TRAY_CONNECT "pidgin-tray-connect" #define PIDGIN_STOCK_TRAY_PENDING "pidgin-tray-pending" +/* Uncomment me after 2.0.2! + * #define PIDGIN_STOCK_TRAY_EMAIL "pidgin-tray-email" + */ /*@}*/ diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/icons/16/pidgin.png Binary file pidgin/pixmaps/icons/16/pidgin.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/icons/16/scalable/pidgin.svg --- a/pidgin/pixmaps/icons/16/scalable/pidgin.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/icons/16/scalable/pidgin.svg Wed Jun 13 12:07:32 2007 +0000 @@ -14,7 +14,7 @@ id="svg4345" sodipodi:version="0.32" inkscape:version="0.44.1" - sodipodi:docbase="/home/hbons/Desktop/icons/16/scalable" + sodipodi:docbase="/home/hbons/Desktop/pidgin-2.0.1/pidgin/pixmaps/icons/16/scalable" sodipodi:docname="pidgin.svg" inkscape:export-filename="/home/hbons/Desktop/pidgin16.png" inkscape:export-xdpi="90" @@ -24,6 +24,54 @@ id="defs4347"> + + + + + + + + + + + + + + + + - - - - - - + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.63556,0,0,0.371995,11.16667,-5.489292)" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + transform="matrix(0.805756,0,0,1.158623,-4.194251,-20.66902)" /> + + transform="matrix(0.805755,0,0,1.158626,0.805759,-20.6691)" /> - + sodipodi:nodetypes="cccc" + transform="matrix(0.686065,0,0,0.46633,-5.019573,-4.365629)" /> + style="fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1" + d="M 4,9.1360628 C 7.7026167,9.8129047 7.1434322,8 7.6676187,8 C 8.1845929,8 8.1150542,9.7216455 10.752536,9.1373864 C 10.257681,9.8617678 8.7366795,11 8.0954601,11 C 7.4470215,11 4.8041406,10.206085 4,9.1360628 z " + id="path3987" + sodipodi:nodetypes="czczc" /> diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/icons/24/pidgin.png Binary file pidgin/pixmaps/icons/24/pidgin.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/icons/24/scalable/pidgin.svg --- a/pidgin/pixmaps/icons/24/scalable/pidgin.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/icons/24/scalable/pidgin.svg Wed Jun 13 12:07:32 2007 +0000 @@ -14,9 +14,9 @@ id="svg4345" sodipodi:version="0.32" inkscape:version="0.44.1" - sodipodi:docbase="/home/hbons/Desktop/icons/24/scalable" + sodipodi:docbase="/home/hbons/Desktop/experiment/icons/24/scalable" sodipodi:docname="pidgin.svg" - inkscape:export-filename="/home/hbons/Desktop/pidgin24-2.png" + inkscape:export-filename="/home/hbons/Desktop/pidgin24.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" version="1.0"> @@ -24,6 +24,42 @@ id="defs4347"> + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + transform="matrix(0.805757,0,0,1.158621,-2.194263,-17.66897)" /> + + style="fill:#975fa3;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 16.371022,7.8148748 C 15.47069,6.586993 14.005993,6.9141191 13.43112,7.6981356 C 12.643332,8.7725276 12.734671,10.64104 13.635002,11.868921 C 14.417404,12.93597 15.704314,13.495617 16.492103,12.421225 C 17.279892,11.346833 17.082315,8.7849447 16.371022,7.8148748 z " + id="path3132" + sodipodi:nodetypes="csssc" /> + + + + + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/icons/32/pidgin.png Binary file pidgin/pixmaps/icons/32/pidgin.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/icons/32/scalable/pidgin.svg --- a/pidgin/pixmaps/icons/32/scalable/pidgin.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/icons/32/scalable/pidgin.svg Wed Jun 13 12:07:32 2007 +0000 @@ -14,9 +14,9 @@ id="svg4345" sodipodi:version="0.32" inkscape:version="0.44.1" - sodipodi:docbase="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/icons/32/scalable" + sodipodi:docbase="/home/hbons/Desktop/experiment/icons/32/scalable" sodipodi:docname="pidgin.svg" - inkscape:export-filename="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/icons/32/pidgin.png" + inkscape:export-filename="/home/hbons/Desktop/pidgin32.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" version="1.0"> @@ -24,18 +24,131 @@ id="defs4347"> + id="linearGradient3976"> + + + + + + + + + + + + + + + + + + id="stop2818" /> + + + + + + id="stop2830" /> + + + + + + - - - - - - - - - - + + + + + - - - - + sodipodi:nodetypes="csscccssssssscssc" + transform="matrix(0.660903,0,0,0.627207,0.731515,-0.320103)" /> + sodipodi:nodetypes="csssc" + transform="matrix(1.010846,0,0,1.029732,-3.562503,-10.12874)" /> + transform="matrix(0.805757,0,0,1.158621,-0.194259,-12.66897)" /> + sodipodi:nodetypes="csssc" + transform="matrix(0.447398,-0.542185,-0.421833,-0.511203,23.06465,33.31996)" /> + transform="matrix(0.805756,0,0,1.158621,8.80575,-12.66896)" /> - + width="4.4400907" + height="1" + x="10.535856" + y="18" + rx="0.69182354" + ry="0.5" /> + style="fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1" + d="M 8,18.893438 C 13.088512,22.243015 12.655188,17 13.431469,17 C 14.197069,17 13.699301,22.201991 18,18.895644 C 17.267157,20.102946 15.014668,22 14.06507,22 C 13.104781,22 9.1908718,20.676807 8,18.893438 z " + id="path3987" + sodipodi:nodetypes="czczc" /> + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/icons/48/pidgin.png Binary file pidgin/pixmaps/icons/48/pidgin.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/icons/48/scalable/pidgin.svg --- a/pidgin/pixmaps/icons/48/scalable/pidgin.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/icons/48/scalable/pidgin.svg Wed Jun 13 12:07:32 2007 +0000 @@ -14,15 +14,63 @@ id="svg4345" sodipodi:version="0.32" inkscape:version="0.44.1" - sodipodi:docbase="/home/hbons/Desktop/icons/48/scalable" + sodipodi:docbase="/home/hbons/Desktop/experiment/icons/48/scalable" sodipodi:docname="pidgin.svg" - inkscape:export-filename="/home/hbons/Desktop/pidgin.png" + inkscape:export-filename="/home/hbons/Desktop/pidgin48.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"> + + + + + + + + + + + + + + + + - - - - - + y2="47.370037" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.988192,0.5625,-1.39645)" /> - + + + + @@ -267,15 +325,14 @@ inkscape:label="Layer 1" inkscape:groupmode="layer"> + width="36.000004" + height="2.9999979" + x="-4.4446878" + y="57.424854" + rx="2.0412357" + ry="1.4999989" /> - - - + transform="matrix(1.208632,0,0,1.544828,-0.791354,-13.55863)" /> + transform="matrix(0.402878,0,0,0.514947,7.402881,11.48034)" /> + transform="matrix(1.208632,0,0,1.598777,13.15599,-14.94012)" /> + transform="matrix(0.402878,0,0,0.53293,21.35023,10.97329)" /> + width="7" + height="1.8602936" + x="15" + y="27.000017" + rx="0.81387848" + ry="0.93014681" /> diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/16/available.png Binary file pidgin/pixmaps/status/16/available.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/16/away.png Binary file pidgin/pixmaps/status/16/away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/16/busy.png Binary file pidgin/pixmaps/status/16/busy.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/16/invisible.png Binary file pidgin/pixmaps/status/16/invisible.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/16/offline.png Binary file pidgin/pixmaps/status/16/offline.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/16/scalable/available.svg --- a/pidgin/pixmaps/status/16/scalable/available.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/16/scalable/available.svg Wed Jun 13 12:07:32 2007 +0000 @@ -7,23 +7,53 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="16" height="16" id="svg2" sodipodi:version="0.32" - inkscape:version="0.43" + inkscape:version="0.44.1" version="1.0" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/16/available16.png" + inkscape:export-filename="/home/hbons/GUI/Tango/Gaim Refresh/status/16/available.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/status/16/scalable" - sodipodi:docname="available16.svg"> + sodipodi:docbase="/home/hbons/Desktop/experiment/status/16/scalable" + sodipodi:docname="available.svg"> + + + + + + + + + + + + + + + + + + + + + + + + + + + inkscape:window-width="1274" + inkscape:window-height="844" + inkscape:window-x="3" + inkscape:window-y="0" /> @@ -126,37 +268,19 @@ sodipodi:rx="8.6620579" sodipodi:cy="19.008621" sodipodi:cx="31.112698" - id="path4318" - style="opacity:0.7;color:#000000;fill:url(#radialGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" - sodipodi:type="arc" - transform="matrix(0.923568,0,0,0.288615,-20.73469,8.013827)" /> - - + transform="matrix(0.923568,0,0,0.173169,-20.73469,11.2083)" /> + transform="matrix(0.538297,0,0,0.538297,-1.630177,-1.459246)" + style="fill:url(#linearGradient4738);fill-opacity:1;fill-rule:evenodd;stroke:#306300;stroke-width:1.85770929;stroke-miterlimit:4;stroke-opacity:1" + d="M 31.822886,17.572527 C 31.822886,25.263442 25.580983,31.505344 17.890068,31.505344 C 10.199153,31.505344 3.9572506,25.263442 3.9572506,17.572527 C 3.9572506,9.8816117 10.199153,3.6397095 17.890068,3.6397095 C 25.580983,3.6397095 31.822886,9.8816117 31.822886,17.572527 z " + id="path4331" /> + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/16/scalable/away.svg --- a/pidgin/pixmaps/status/16/scalable/away.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/16/scalable/away.svg Wed Jun 13 12:07:32 2007 +0000 @@ -7,43 +7,45 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="16" height="16" id="svg2" sodipodi:version="0.32" - inkscape:version="0.43" + inkscape:version="0.44.1" version="1.0" inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/16/available16.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/status/16/scalable" - sodipodi:docname="away16.svg"> + sodipodi:docbase="/home/hbons/Desktop/experiment/status/16/scalable" + sodipodi:docname="away.svg"> + id="linearGradient2812"> + id="stop2814" /> + id="stop2816" /> + id="linearGradient2804"> + + + - - - - - + + + inkscape:window-width="1434" + inkscape:window-height="844" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:object-paths="false" + inkscape:grid-bbox="true" + inkscape:guide-bbox="false" + inkscape:grid-points="true" /> @@ -149,20 +151,12 @@ sodipodi:cy="19.008621" sodipodi:cx="31.112698" id="path4318" - style="opacity:0.7;color:#000000;fill:url(#radialGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + style="opacity:1;color:black;fill:url(#radialGradient2818);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" - transform="matrix(0.923568,0,0,0.288615,-20.73469,8.013827)" /> - + transform="matrix(0.923568,0,0,0.173169,-20.73469,11.2083)" /> + + transform="matrix(0.383404,0,0,0.383404,2.022641,1.646167)" /> + - + style="opacity:0.76704544;fill:none;fill-opacity:1;stroke:url(#linearGradient2810);stroke-width:0.80677563;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2802" + sodipodi:cx="7.5" + sodipodi:cy="7" + sodipodi:rx="5.5" + sodipodi:ry="5" + d="M 13 7 A 5.5 5 0 1 1 2,7 A 5.5 5 0 1 1 13 7 z" + transform="matrix(1.18182,0,0,1.3,-0.86365,-1.1)" /> + + + - + + + id="rect2846" + width="1" + height="1" + x="-11" + y="-11" + transform="matrix(0,-1,-1,0,0,0)" /> + + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/16/scalable/busy.svg --- a/pidgin/pixmaps/status/16/scalable/busy.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/16/scalable/busy.svg Wed Jun 13 12:07:32 2007 +0000 @@ -7,23 +7,68 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="16" height="16" id="svg2" sodipodi:version="0.32" - inkscape:version="0.43" + inkscape:version="0.44.1" version="1.0" inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/16/available16.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/status/16/scalable" - sodipodi:docname="busy16.svg"> + sodipodi:docbase="/home/hbons/Desktop/experiment/status/16/scalable" + sodipodi:docname="busy.svg"> + + + + + + + + + + + inkscape:window-y="0" /> @@ -170,18 +215,10 @@ sodipodi:rx="8.6620579" sodipodi:cy="19.008621" sodipodi:cx="31.112698" - id="path4318" - style="opacity:0.7;color:#000000;fill:url(#radialGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path2969" + style="color:black;fill:url(#radialGradient3025);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" - transform="matrix(0.923568,0,0,0.288615,-20.73469,8.013827)" /> - + transform="matrix(0.923568,0,0,0.173169,-20.73469,11.2083)" /> - + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/16/scalable/offline.svg --- a/pidgin/pixmaps/status/16/scalable/offline.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/16/scalable/offline.svg Wed Jun 13 12:07:32 2007 +0000 @@ -15,10 +15,10 @@ sodipodi:version="0.32" inkscape:version="0.44.1" version="1.0" - inkscape:export-filename="/home/hbons/GUI/Tango/Gaim Refresh/status/16/offline.png" + inkscape:export-filename="/home/hbons/Desktop/offline.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/status/16/scalable" + sodipodi:docbase="/home/hbons/Desktop/experiment/status/16/scalable" sodipodi:docname="offline.svg"> @@ -160,16 +160,16 @@ inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="25.992076" - inkscape:cx="16.806787" - inkscape:cy="8.1469775" + inkscape:cx="26.27121" + inkscape:cy="5.5692688" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" fill="#eeeeec" - inkscape:window-width="1268" - inkscape:window-height="968" - inkscape:window-x="6" - inkscape:window-y="23" /> + inkscape:window-width="1434" + inkscape:window-height="844" + inkscape:window-x="0" + inkscape:window-y="0" /> @@ -195,14 +195,6 @@ style="opacity:0.7;color:#000000;fill:url(#radialGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" transform="matrix(0.923568,0,0,0.288615,-20.73469,8.013827)" /> - + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:#555753;stroke-width:1.00000036;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 11.54182,4.2658182 C 10.931116,3.6551131 10.447965,3.347327 9.8372602,3.9580321 L 8.0000001,5.7952921 L 6.1627401,3.9580321 C 5.5520351,3.3473271 4.9919392,3.7705329 4.381234,4.381238 C 3.770529,4.991943 3.347323,5.5520393 3.9580281,6.1627441 L 5.7952881,8.0000041 L 3.9580281,9.8372641 C 3.3473229,10.447969 3.6935827,10.969592 4.3042875,11.580298 C 4.9149927,12.191002 5.5520349,12.652681 6.1627401,12.041977 L 8.0000001,10.204716 L 9.8372602,12.041977 C 10.447965,12.652681 11.046535,12.306422 11.657239,11.695718 C 12.267944,11.085012 12.652677,10.447969 12.041972,9.8372641 L 10.204713,8.0000041 L 12.041972,6.1627441 C 12.652677,5.552039 12.152526,4.8765236 11.54182,4.2658182 z " + id="rect2920" + sodipodi:nodetypes="ccccscccscccscccc" /> diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/22/available.png Binary file pidgin/pixmaps/status/22/available.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/22/away.png Binary file pidgin/pixmaps/status/22/away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/22/invisible.png Binary file pidgin/pixmaps/status/22/invisible.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/22/offline.png Binary file pidgin/pixmaps/status/22/offline.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/22/scalable/available.svg --- a/pidgin/pixmaps/status/22/scalable/available.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/22/scalable/available.svg Wed Jun 13 12:07:32 2007 +0000 @@ -7,19 +7,19 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="24" height="24" id="svg2" sodipodi:version="0.32" - inkscape:version="0.43" + inkscape:version="0.44.1" version="1.0" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/22/available22.png" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/32/available32.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/status/22" - sodipodi:docname="available22.svg"> + sodipodi:docbase="/home/hbons/Desktop/experiment/22/scalable" + sodipodi:docname="available.svg"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + y2="40.032413" /> + + + + + + + + + + + + + + + + inkscape:window-width="1434" + inkscape:window-height="844" + inkscape:window-x="0" + inkscape:window-y="0" + height="24px" + width="24px" /> @@ -134,37 +811,17 @@ sodipodi:rx="8.6620579" sodipodi:cy="19.008621" sodipodi:cx="31.112698" - id="path4318" - style="opacity:0.7;color:#000000;fill:url(#radialGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" - sodipodi:type="arc" - transform="matrix(1.385352,0,0,0.634953,-31.10204,6.430418)" /> - - + transform="matrix(1.269906,0,0,0.346338,-27.5102,14.41659)" /> + style="fill:url(#linearGradient2189);fill-opacity:1;fill-rule:evenodd;stroke:#306300;stroke-width:0.99999911;stroke-miterlimit:4;stroke-opacity:1" + d="M 22.500011,11.499997 C 22.500011,17.571995 17.57201,22.499994 11.500011,22.499994 C 5.428011,22.499994 0.50001162,17.571995 0.50001162,11.499997 C 0.50001162,5.4279975 5.428011,0.4999987 11.500011,0.4999987 C 17.57201,0.4999987 22.500011,5.4279975 22.500011,11.499997 z " + id="path4331" /> + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/22/scalable/away.svg --- a/pidgin/pixmaps/status/22/scalable/away.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/22/scalable/away.svg Wed Jun 13 12:07:32 2007 +0000 @@ -7,23 +7,47 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="24" height="24" id="svg1331" sodipodi:version="0.32" - inkscape:version="0.43" + inkscape:version="0.44.1" version="1.0" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/away.png" + inkscape:export-filename="/home/hbons/Desktop/away.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/status/22/scalable" - sodipodi:docname="away22.svg"> + sodipodi:docbase="/home/hbons/Desktop/experiment/status/22/scalable" + sodipodi:docname="away.svg"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + r="8.6620579" + fy="19.008621" + fx="31.112698" + cy="19.008621" + cx="31.112698" + id="radialGradient2032" + xlink:href="#linearGradient3816" + inkscape:collect="always" /> + + + + inkscape:window-width="1434" + inkscape:window-height="844" + inkscape:window-x="0" + inkscape:window-y="0" /> @@ -130,63 +319,162 @@ sodipodi:rx="8.6620579" sodipodi:cy="19.008621" sodipodi:cx="31.112698" - id="path4318" - style="opacity:0.7;color:#000000;fill:url(#radialGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path1948" + style="color:black;fill:url(#radialGradient1985);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" - transform="matrix(1.385352,0,0,0.634953,-31.10204,6.430418)" /> + transform="matrix(1.269906,0,0,0.346338,-27.5102,14.41659)" /> + transform="matrix(0.766665,0,0,0.766715,-0.450429,-1.204777)" /> + + transform="matrix(0.627389,0,0,0.627389,1.718859,1.102807)" /> + style="fill:#dcdcd8;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2796" + sodipodi:cx="6.0403023" + sodipodi:cy="7.5551186" + sodipodi:rx="1.615877" + sodipodi:ry="1.3273276" + d="M 7.6561793 7.5551186 A 1.615877 1.3273276 0 1 1 4.4244252,7.5551186 A 1.615877 1.3273276 0 1 1 7.6561793 7.5551186 z" + transform="matrix(5.2603,0,0,6.403843,-20.2738,-36.88179)" /> + sodipodi:type="arc" + style="opacity:0.76704544;fill:none;fill-opacity:1;stroke:url(#linearGradient1983);stroke-width:0.52440464;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2802" + sodipodi:cx="7.5" + sodipodi:cy="7" + sodipodi:rx="5.5" + sodipodi:ry="5" + d="M 13 7 A 5.5 5 0 1 1 2,7 A 5.5 5 0 1 1 13 7 z" + transform="matrix(1.818182,0,0,2,-2.136362,-2.499999)" /> - + style="fill:url(#radialGradient2817);fill-opacity:1.0;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2852" + sodipodi:cx="6.0403023" + sodipodi:cy="7.5551186" + sodipodi:rx="1.615877" + sodipodi:ry="1.3273276" + d="M 4.835244,8.4394021 A 1.615877,1.3273276 0 0 1 6.0776839,6.2281462 L 6.0403023,7.5551186 z" + transform="matrix(3.941577,0,0,4.521472,-12.44011,-23.15852)" + sodipodi:start="2.4124729" + sodipodi:end="4.735525" /> + + + + + + + + + + + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/22/scalable/offline.svg --- a/pidgin/pixmaps/status/22/scalable/offline.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/22/scalable/offline.svg Wed Jun 13 12:07:32 2007 +0000 @@ -7,16 +7,16 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="24" height="24" id="svg2" sodipodi:version="0.32" - inkscape:version="0.43" + inkscape:version="0.44.1" version="1.0" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/status/22/scalable" - sodipodi:docname="offline22.svg" + sodipodi:docbase="/home/hbons/Desktop/experiment/status/22/scalable" + sodipodi:docname="offline.svg" inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/offline.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"> @@ -24,6 +24,30 @@ id="defs4"> + + + + + + + + + y2="12.421011" + gradientTransform="translate(-14.51828,-0.483273)" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inkscape:window-width="1434" + inkscape:window-height="844" + inkscape:window-x="0" + inkscape:window-y="0" + showguides="true" + inkscape:guide-bbox="true" /> @@ -149,39 +1357,29 @@ sodipodi:rx="8.6620579" sodipodi:cy="19.008621" sodipodi:cx="31.112698" - id="path4318" - style="opacity:0.7;color:#000000;fill:url(#radialGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path1948" + style="color:black;fill:url(#radialGradient3021);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" - transform="matrix(1.385352,0,0,0.634953,-31.10204,6.430418)" /> + transform="matrix(1.269906,0,0,0.346338,-27.5102,14.41659)" /> + style="opacity:0.4;fill:url(#linearGradient2231);fill-opacity:1;stroke:white;stroke-width:0.99999809;stroke-miterlimit:4;stroke-opacity:1" + d="M 11.5,1.5 C 8.9408673,1.500267 6.3904601,2.4845389 4.4375,4.4375 C 0.53092837,8.3440732 0.53180564,14.656804 4.4375,18.5625 C 8.3431938,22.468195 14.655929,22.469073 18.5625,18.5625 C 22.469072,14.655927 22.468194,8.3431958 18.5625,4.4375 C 16.609962,2.4849619 14.058743,1.4997331 11.5,1.5 z " + id="path2215" /> + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 15.527292,4.7878577 C 15.153659,4.4142246 14.558496,4.4142246 14.184863,4.7878577 L 11.500003,7.4727164 L 8.7941693,4.7668822 C 8.4383282,4.4110411 7.849532,4.4110411 7.4936909,4.7668822 L 4.7668812,7.4936919 C 4.4110402,7.8495329 4.4110401,8.4383292 4.7668812,8.7941703 L 7.4727154,11.500004 L 4.7878567,14.184864 C 4.4142238,14.558497 4.4142236,15.15366 4.7878567,15.527293 L 7.4727154,18.212151 C 7.8463484,18.585784 8.4415118,18.585784 8.8151448,18.212151 L 11.500003,15.527293 L 14.205838,18.233126 C 14.561679,18.588967 15.150475,18.588967 15.506317,18.233126 L 18.233125,15.506318 C 18.588966,15.150476 18.588965,14.56168 18.233125,14.205839 L 15.527292,11.500004 L 18.21215,8.8151458 C 18.585783,8.4415126 18.585784,7.84635 18.21215,7.4727164 L 15.527292,4.7878577 z " + id="path3032" /> + style="opacity:1;fill:url(#linearGradient3040);fill-opacity:1.0;stroke:#555753;stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 15.527292,4.7878577 C 15.153659,4.4142246 14.558496,4.4142246 14.184863,4.7878577 L 11.500003,7.4727164 L 8.7941693,4.7668822 C 8.4383282,4.4110411 7.849532,4.4110411 7.4936909,4.7668822 L 4.7668812,7.4936919 C 4.4110402,7.8495329 4.4110401,8.4383292 4.7668812,8.7941703 L 7.4727154,11.500004 L 4.7878567,14.184864 C 4.4142238,14.558497 4.4142236,15.15366 4.7878567,15.527293 L 7.4727154,18.212151 C 7.8463484,18.585784 8.4415118,18.585784 8.8151448,18.212151 L 11.500003,15.527293 L 14.205838,18.233126 C 14.561679,18.588967 15.150475,18.588967 15.506317,18.233126 L 18.233125,15.506318 C 18.588966,15.150476 18.588965,14.56168 18.233125,14.205839 L 15.527292,11.500004 L 18.21215,8.8151458 C 18.585783,8.4415126 18.585784,7.84635 18.21215,7.4727164 L 15.527292,4.7878577 z " + id="rect3024" /> + style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1" + d="M 8.15625,5.625 L 5.625,8.15625 L 8.21875,10.78125 C 8.6216689,11.187934 8.6216689,11.843316 8.21875,12.25 L 5.625,14.875 L 8.125,17.375 L 10.75,14.78125 C 11.156684,14.378331 11.812066,14.378331 12.21875,14.78125 L 14.84375,17.375 L 17.375,14.84375 L 14.78125,12.21875 C 14.378331,11.812066 14.378331,11.156684 14.78125,10.75 L 17.375,8.125 L 14.875,5.625 L 12.25,8.21875 C 11.843316,8.6216689 11.187934,8.6216689 10.78125,8.21875 L 8.15625,5.625 z " + id="path3050" /> diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/32/available.png Binary file pidgin/pixmaps/status/32/available.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/32/away.png Binary file pidgin/pixmaps/status/32/away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/32/busy.png Binary file pidgin/pixmaps/status/32/busy.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/32/invisible.png Binary file pidgin/pixmaps/status/32/invisible.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/32/offline.png Binary file pidgin/pixmaps/status/32/offline.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/32/scalable/available.svg --- a/pidgin/pixmaps/status/32/scalable/available.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/32/scalable/available.svg Wed Jun 13 12:07:32 2007 +0000 @@ -7,19 +7,19 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="32" height="32" id="svg2" sodipodi:version="0.32" - inkscape:version="0.43" + inkscape:version="0.44.1" version="1.0" inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/32/available32.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/status/32/scalable" - sodipodi:docname="available32.svg"> + sodipodi:docbase="/home/hbons/Desktop/experiment/status/32/scalable" + sodipodi:docname="available.svg"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inkscape:window-width="1434" + inkscape:window-height="844" + inkscape:window-x="0" + inkscape:window-y="0" /> @@ -120,42 +539,22 @@ inkscape:groupmode="layer" id="layer1"> - + style="color:black;fill:url(#radialGradient2148);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path2173" + sodipodi:cx="31.112698" + sodipodi:cy="19.008621" + sodipodi:rx="8.6620579" + sodipodi:ry="8.6620579" + d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" /> - + style="fill:url(#linearGradient1986);fill-opacity:1;fill-rule:evenodd;stroke:#306300;stroke-width:0.99999946;stroke-miterlimit:4;stroke-opacity:1" + d="M 30.500005,15.500002 C 30.500005,23.780003 23.780005,30.500004 15.500008,30.500004 C 7.2200097,30.500004 0.50001191,23.780003 0.50001191,15.500002 C 0.50001191,7.2200001 7.2200097,0.49999934 15.500008,0.49999934 C 23.780005,0.49999934 30.500005,7.2200001 30.500005,15.500002 z " + id="path4331" /> + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/32/scalable/away.svg --- a/pidgin/pixmaps/status/32/scalable/away.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/32/scalable/away.svg Wed Jun 13 12:07:32 2007 +0000 @@ -7,23 +7,47 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="32" height="32" id="svg1331" sodipodi:version="0.32" - inkscape:version="0.43" + inkscape:version="0.44.1" version="1.0" - inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/32/away32.png" + inkscape:export-filename="/home/hbons/GUI/Tango/Gaim Refresh/status/22/away.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/status/32/scalable" - sodipodi:docname="away32.svg"> + sodipodi:docbase="/home/hbons/Desktop/experiment/status/32/scalable" + sodipodi:docname="away.svg"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + x2="15.602553" + y2="21.045444" /> + + inkscape:window-width="1434" + inkscape:window-height="844" + inkscape:window-x="0" + inkscape:window-y="0" + width="32px" + height="32px" /> @@ -109,63 +301,101 @@ sodipodi:rx="8.6620579" sodipodi:cy="19.008621" sodipodi:cx="31.112698" - id="path4318" - style="opacity:1;color:#000000;fill:url(#radialGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path1948" + style="color:black;fill:url(#radialGradient1985);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" sodipodi:type="arc" - transform="matrix(1.847136,0,0,0.865845,-41.46939,8.04148)" /> + transform="matrix(1.731691,0,0,0.461784,-37.87757,19.22211)" /> + transform="matrix(1.045505,0,0,1.045554,-0.797598,-1.825749)" /> + + transform="matrix(0.836518,0,0,0.836518,2.458491,1.637077)" /> + + + - - - + transform="matrix(0.13942,0,0,0.139419,13.32641,13.18954)" /> + + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/32/scalable/busy.svg --- a/pidgin/pixmaps/status/32/scalable/busy.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/32/scalable/busy.svg Wed Jun 13 12:07:32 2007 +0000 @@ -7,19 +7,19 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="32" height="32" id="svg1331" sodipodi:version="0.32" - inkscape:version="0.43" + inkscape:version="0.44.1" version="1.0" inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/status/32/busy32.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/status/32/scalable" - sodipodi:docname="busy32.svg"> + sodipodi:docbase="/home/hbons/Desktop/experiment/32/scalable" + sodipodi:docname="busy.svg"> - @@ -68,26 +58,554 @@ offset="1" id="stop2243" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cx="31.112698" + cy="19.008621" + fx="31.112698" + fy="19.008621" + r="8.6620579" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + gradientTransform="matrix(3.048768,0,0,3.033857,-3.920843,-3.729339)" + x1="3.3119085" + y1="-0.76356995" + x2="9.0812168" + y2="10.792614" /> + + inkscape:window-width="1440" + inkscape:window-height="849" + inkscape:window-x="0" + inkscape:window-y="0" /> @@ -124,43 +642,47 @@ inkscape:label="Layer 1" inkscape:groupmode="layer"> + sodipodi:cy="19.008621" + sodipodi:rx="8.6620579" + sodipodi:ry="8.6620579" + d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" /> + transform="matrix(0.936036,0,0,0.936032,1.023071,0.100614)" /> + transform="matrix(1.045648,0,0,1.045648,-0.801887,-1.828653)" /> - + style="opacity:0.6;color:black;fill:url(#linearGradient2208);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2210);stroke-width:0.99999946px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 29.499988,15.499986 C 29.499988,23.227979 23.227989,29.499978 15.49999,29.499978 C 7.7719953,29.499978 1.4999991,23.227979 1.4999991,15.499986 C 1.4999991,7.7719948 7.7719953,1.4999985 15.49999,1.4999985 C 23.227989,1.4999985 29.499988,7.7719948 29.499988,15.499986 z " + id="path2199" /> + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/status/32/scalable/offline.svg --- a/pidgin/pixmaps/status/32/scalable/offline.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/status/32/scalable/offline.svg Wed Jun 13 12:07:32 2007 +0000 @@ -15,7 +15,7 @@ sodipodi:version="0.32" inkscape:version="0.44.1" version="1.0" - sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/status/32/scalable" + sodipodi:docbase="/home/hbons/Desktop/experiment/status/32/scalable" sodipodi:docname="offline.svg" inkscape:export-filename="/home/hbons/GUI/Tango/Gaim Refresh/status/32/offline.png" inkscape:export-xdpi="90" @@ -106,10 +106,498 @@ id="linearGradient2270" gradientUnits="userSpaceOnUse" x1="12.00096" - y1="18.000015" + y1="17.203793" x2="12.00096" - y2="12.421011" - gradientTransform="matrix(1.318182,0,0,1.318182,-2.3895e-2,0.33147)" /> + y2="9.1482677" + gradientTransform="matrix(1.40375,0,0,1.403934,-1.668488,-1.296374)" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inkscape:window-width="1440" + inkscape:window-height="849" + inkscape:window-x="0" + inkscape:window-y="0" /> @@ -145,6 +633,16 @@ inkscape:groupmode="layer" id="layer1"> + - + style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1.00000036;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 20.92264,5.5294893 L 15.440071,10.599712 L 10.134222,5.2349563 L 5.3520274,10.017152 L 10.598969,15.440813 L 5.6452582,20.865777 L 9.8972946,25.942506 L 15.322258,20.340822 L 20.894813,25.442125 L 25.618102,21.013369 L 20.222267,15.49972 L 25.469209,10.252778 L 20.92264,5.5294893 z " + id="path2233" + sodipodi:nodetypes="ccccccccccccc" /> + style="opacity:0.4;fill:url(#linearGradient2231);fill-opacity:1;stroke:white;stroke-width:0.99999809;stroke-miterlimit:4;stroke-opacity:1" + d="M 15.5,1.5 C 11.919821,1.5003735 8.3615884,2.8884111 5.625,5.625 C 0.15534426,11.094657 0.15654704,19.906546 5.625,25.375 C 11.093454,30.843452 19.905345,30.844655 25.375,25.375 C 30.844655,19.905343 30.843452,11.093454 25.375,5.625 C 22.638996,2.8889961 19.07979,1.4996266 15.5,1.5 z " + id="path2215" /> + style="fill:none;fill-opacity:1;stroke:#e1e1e1;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1" + d="M 10.21875,6.6875 L 6.75,10.09375 L 11.3125,14.71875 C 11.697174,15.10858 11.697174,15.73517 11.3125,16.125 L 6.6875,21 L 9.96875,24.28125 L 14.71875,19.46875 C 14.907298,19.274258 15.166617,19.164481 15.4375,19.164481 C 15.708383,19.164481 15.967702,19.274258 16.15625,19.46875 L 20.96875,24.21875 L 24.25,21 L 19.5,16.125 C 19.123854,15.726673 19.137781,15.099974 19.53125,14.71875 L 24.3125,10.1875 L 20.9375,6.71875 L 16.125,11.375 C 15.726673,11.751146 15.099974,11.737219 14.71875,11.34375 L 10.21875,6.6875 z " + id="path2268" /> diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/16/Makefile.am --- a/pidgin/pixmaps/tray/16/Makefile.am Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/tray/16/Makefile.am Wed Jun 13 12:07:32 2007 +0000 @@ -6,6 +6,7 @@ tray-connecting.png \ tray-extended-away.png \ tray-message.png \ + tray-new-im.png \ tray-offline.png \ tray-online.png diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/16/scalable/tray-away.svg --- a/pidgin/pixmaps/tray/16/scalable/tray-away.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/tray/16/scalable/tray-away.svg Wed Jun 13 12:07:32 2007 +0000 @@ -14,7 +14,7 @@ id="svg1872" sodipodi:version="0.32" inkscape:version="0.44.1" - sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docbase="/home/hbons/Desktop/experiment/tray/16/scalable" sodipodi:docname="tray-away.svg"> @@ -549,37 +549,6 @@ offset="1" style="stop-color:#eeeeec;stop-opacity:0;" /> - - - - - + + + + + + xlink:href="#linearGradient2851" + id="linearGradient2060" + x1="6.878005" + y1="11.789385" + x2="12.233074" + y2="27.77807" + gradientUnits="userSpaceOnUse" /> + id="linearGradient2062" + x1="4.5264969" + y1="2.7991772" + x2="10.623409" + y2="11.024895" + gradientUnits="userSpaceOnUse" /> + + + + + + + + + + + + + + + + + + + + cy="17.588654" + cx="11.756953" + id="radialGradient2266" + xlink:href="#linearGradient2260" + inkscape:collect="always" /> + + + + + + + + + + + + + + + + + + + + + + + x1="1.5769236" + y1="1.3319674" + x2="10.043059" + y2="10.018044" /> - - - - - - - - - - - - - - + style="fill:#efefef;fill-opacity:1;fill-rule:evenodd;stroke:#787878;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 33.877402,-6.5000005 C 34.782108,-6.5000005 35.499998,-5.7936619 35.499998,-4.8953494 L 35.499998,4.174417 C 35.499998,5.07273 34.78211,5.491987 33.877402,5.491987 L 27.20673,5.491987 L 23.519125,8.212917 L 23.519125,5.491987 L 22.122596,5.491987 C 21.217889,5.491987 20.499999,5.07273 20.5,4.174417 L 20.5,-4.8953494 C 20.5,-5.7936619 21.217889,-6.5000005 22.122596,-6.5000005 L 33.877402,-6.5000005 z " + id="path2198" + sodipodi:nodetypes="cccccccccccc" /> + + transform="matrix(0.348549,0,0,0.348549,5.066037,4.723781)" /> + + sodipodi:type="arc" + style="fill:#dcdcd8;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path2796" + sodipodi:cx="6.0403023" + sodipodi:cy="7.5551186" + sodipodi:rx="1.615877" + sodipodi:ry="1.3273276" + d="M 7.6561793 7.5551186 A 1.615877 1.3273276 0 1 1 4.4244252,7.5551186 A 1.615877 1.3273276 0 1 1 7.6561793 7.5551186 z" + transform="matrix(2.784865,0,0,3.390272,-6.321424,-15.11391)" /> + y="-11" + transform="matrix(0,1,-1,0,0,0)" /> + + + transform="matrix(0,1,-1,0,0,0)" /> + diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/16/scalable/tray-online.svg --- a/pidgin/pixmaps/tray/16/scalable/tray-online.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/tray/16/scalable/tray-online.svg Wed Jun 13 12:07:32 2007 +0000 @@ -14,7 +14,7 @@ id="svg1872" sodipodi:version="0.32" inkscape:version="0.44.1" - sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docbase="/home/hbons/Desktop/experiment/tray/16/scalable" sodipodi:docname="tray-online.svg"> @@ -150,6 +150,573 @@ y1="48.000977" x2="21.875" y2="40" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + style="fill:url(#linearGradient2122);fill-opacity:1;fill-rule:evenodd;stroke:#306300;stroke-width:0.99999887;stroke-miterlimit:4;stroke-opacity:1" + d="M 15.500002,10.5 C 15.500002,13.26 13.260001,15.5 10.500001,15.5 C 7.7400006,15.5 5.4999996,13.26 5.4999996,10.5 C 5.4999996,7.739999 7.7400006,5.4999989 10.500001,5.4999989 C 13.260001,5.4999989 15.500002,7.739999 15.500002,10.5 z " + id="path4331" /> + style="opacity:0.6;fill:url(#linearGradient2119);fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999845;stroke-miterlimit:4;stroke-opacity:1" + d="M 14.500006,10.500002 C 14.500006,12.708002 12.708005,14.500003 10.500003,14.500003 C 8.2920011,14.500003 6.4999992,12.708002 6.4999992,10.500002 C 6.4999992,8.2920001 8.2920011,6.4999996 10.500003,6.4999996 C 12.708005,6.4999996 14.500006,8.2920001 14.500006,10.500002 z " + id="path4333" /> diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/16/tray-away.png Binary file pidgin/pixmaps/tray/16/tray-away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/16/tray-new-im.png Binary file pidgin/pixmaps/tray/16/tray-new-im.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/16/tray-online.png Binary file pidgin/pixmaps/tray/16/tray-online.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/Makefile.am --- a/pidgin/pixmaps/tray/22/Makefile.am Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/tray/22/Makefile.am Wed Jun 13 12:07:32 2007 +0000 @@ -6,6 +6,7 @@ tray-extended-away.png \ tray-invisible.png \ tray-message.png \ + tray-new-im.png \ tray-offline.png \ tray-online.png diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/scalable/tray-invisible.svg --- a/pidgin/pixmaps/tray/22/scalable/tray-invisible.svg Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/tray/22/scalable/tray-invisible.svg Wed Jun 13 12:07:32 2007 +0000 @@ -11,71 +11,62 @@ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="24" height="24" - id="svg4403" + id="svg2" sodipodi:version="0.32" inkscape:version="0.44.1" version="1.0" - sodipodi:docbase="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/tray/22/scalable" + sodipodi:docbase="/home/hbons/Desktop" sodipodi:docname="tray-invisible.svg" - inkscape:export-filename="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/tray/22/tray-invisible.png" + inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/notification-area/tray-busy.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90"> + id="defs4"> + inkscape:collect="always" + id="linearGradient2989"> + id="stop2991" /> - - - - + id="stop2993" /> - + + + + + + + + - + gradientTransform="matrix(-0.977228,0,0,0.995878,50.60272,9.115637)" + x1="35.003674" + y1="10.957423" + x2="27.273300" + y2="24.143761" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + y2="27.77807" + x2="12.233074" + y1="11.789385" + x1="6.878005" + id="linearGradient3066" + xlink:href="#linearGradient2851" + inkscape:collect="always" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id="metadata7"> @@ -177,53 +875,55 @@ + inkscape:groupmode="layer" + id="layer1"> + + + - - - + id="g3200" + inkscape:label="Layer 1" + transform="translate(6.999999,7.000001)"> + + + + + - - - - diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/tray-away.png Binary file pidgin/pixmaps/tray/22/tray-away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/tray-busy.png Binary file pidgin/pixmaps/tray/22/tray-busy.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/tray-connecting.png Binary file pidgin/pixmaps/tray/22/tray-connecting.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/tray-extended-away.png Binary file pidgin/pixmaps/tray/22/tray-extended-away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/tray-invisible.png Binary file pidgin/pixmaps/tray/22/tray-invisible.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/tray-message.png Binary file pidgin/pixmaps/tray/22/tray-message.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/tray-new-im.png Binary file pidgin/pixmaps/tray/22/tray-new-im.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/22/tray-offline.png Binary file pidgin/pixmaps/tray/22/tray-offline.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/tray/32/Makefile.am Wed Jun 13 12:07:32 2007 +0000 @@ -0,0 +1,13 @@ +TRAY_ICONS = tray-away.png \ + tray-busy.png \ + tray-connecting.png \ + tray-extended-away.png \ + tray-invisible.png \ + tray-new-im.png \ + tray-offline.png \ + tray-online.png + +EXTRA_DIST = $(TRAY_ICONS) + +pidgintraypixdir = $(datadir)/pixmaps/pidgin/tray/32 +pidgintraypix_DATA = $(TRAY_ICONS) diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/tray-away.png Binary file pidgin/pixmaps/tray/32/tray-away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/tray-busy.png Binary file pidgin/pixmaps/tray/32/tray-busy.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/tray-connecting.png Binary file pidgin/pixmaps/tray/32/tray-connecting.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/tray-extended-away.png Binary file pidgin/pixmaps/tray/32/tray-extended-away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/tray-invisible.png Binary file pidgin/pixmaps/tray/32/tray-invisible.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/tray-message.png Binary file pidgin/pixmaps/tray/32/tray-message.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/tray-new-im.png Binary file pidgin/pixmaps/tray/32/tray-new-im.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/tray-offline.png Binary file pidgin/pixmaps/tray/32/tray-offline.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/32/tray-online.png Binary file pidgin/pixmaps/tray/32/tray-online.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/tray/48/Makefile.am Wed Jun 13 12:07:32 2007 +0000 @@ -0,0 +1,13 @@ +TRAY_ICONS = tray-away.png \ + tray-busy.png \ + tray-connecting.png \ + tray-extended-away.png \ + tray-invisible.png \ + tray-new-im.png \ + tray-offline.png \ + tray-online.png + +EXTRA_DIST = $(TRAY_ICONS) + +pidgintraypixdir = $(datadir)/pixmaps/pidgin/tray/48 +pidgintraypix_DATA = $(TRAY_ICONS) diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/tray-away.png Binary file pidgin/pixmaps/tray/48/tray-away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/tray-busy.png Binary file pidgin/pixmaps/tray/48/tray-busy.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/tray-connecting.png Binary file pidgin/pixmaps/tray/48/tray-connecting.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/tray-extended-away.png Binary file pidgin/pixmaps/tray/48/tray-extended-away.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/tray-invisible.png Binary file pidgin/pixmaps/tray/48/tray-invisible.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/tray-message.png Binary file pidgin/pixmaps/tray/48/tray-message.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/tray-new-im.png Binary file pidgin/pixmaps/tray/48/tray-new-im.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/tray-offline.png Binary file pidgin/pixmaps/tray/48/tray-offline.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/48/tray-online.png Binary file pidgin/pixmaps/tray/48/tray-online.png has changed diff -r fa4b70c5ea9d -r f10e6ba2a619 pidgin/pixmaps/tray/Makefile.am --- a/pidgin/pixmaps/tray/Makefile.am Mon Jun 11 14:58:27 2007 +0000 +++ b/pidgin/pixmaps/tray/Makefile.am Wed Jun 13 12:07:32 2007 +0000 @@ -1,4 +1,4 @@ -SUBDIRS = 16 22 +SUBDIRS = 16 22 32 48 EXTRA_DIST = \ Makefile.mingw \ diff -r fa4b70c5ea9d -r f10e6ba2a619 po/id.po diff -r fa4b70c5ea9d -r f10e6ba2a619 po/ne.po diff -r fa4b70c5ea9d -r f10e6ba2a619 po/ps.po diff -r fa4b70c5ea9d -r f10e6ba2a619 po/stats.pl --- a/po/stats.pl Mon Jun 11 14:58:27 2007 +0000 +++ b/po/stats.pl Wed Jun 13 12:07:32 2007 +0000 @@ -33,6 +33,7 @@ $lang{pt_BR} = "Portuguese (Brazilian)"; $lang{'sr@Latn'} = "Serbian (Latin)"; $lang{zh_CN} = "Chinese (Simplified)"; +$lang{zh_HK} = "Chinese (Hong Kong)"; $lang{zh_TW} = "Chinese (Traditional)"; opendir(DIR, ".") || die "can't open directory: $!"; diff -r fa4b70c5ea9d -r f10e6ba2a619 po/zh_HK.po