=== removed directory '.pc'
=== removed file '.pc/.quilt_patches'
--- .pc/.quilt_patches	2013-07-07 10:54:09 +0000
+++ .pc/.quilt_patches	1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
-debian/patches

=== removed file '.pc/.quilt_series'
--- .pc/.quilt_series	2013-07-07 10:54:09 +0000
+++ .pc/.quilt_series	1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
-series

=== removed file '.pc/.version'
--- .pc/.version	2011-10-25 22:08:55 +0000
+++ .pc/.version	1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
-2

=== removed directory '.pc/01_support-non-multiarch-modules.patch'
=== removed directory '.pc/01_support-non-multiarch-modules.patch/panel'
=== removed file '.pc/01_support-non-multiarch-modules.patch/panel/panel-module.c'
--- .pc/01_support-non-multiarch-modules.patch/panel/panel-module.c	2011-10-14 18:57:33 +0000
+++ .pc/01_support-non-multiarch-modules.patch/panel/panel-module.c	1970-01-01 00:00:00 +0000
@@ -1,641 +0,0 @@
-/*
- * Copyright (C) 2008-2010 Nick Schermer <nick@xfce.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <gmodule.h>
-#include <exo/exo.h>
-#include <glib/gstdio.h>
-#include <libxfce4util/libxfce4util.h>
-
-#include <common/panel-private.h>
-#include <common/panel-debug.h>
-#include <libxfce4panel/libxfce4panel.h>
-#include <libxfce4panel/xfce-panel-plugin-provider.h>
-
-#include <panel/panel-module.h>
-#include <panel/panel-module-factory.h>
-#include <panel/panel-plugin-external-wrapper.h>
-#include <panel/panel-plugin-external-46.h>
-
-#define PANEL_PLUGINS_LIB_DIR (LIBDIR G_DIR_SEPARATOR_S "panel" G_DIR_SEPARATOR_S "plugins")
-#define PANEL_PLUGINS_LIB_DIR_OLD (LIBDIR G_DIR_SEPARATOR_S "panel-plugins")
-
-
-typedef enum _PanelModuleRunMode PanelModuleRunMode;
-typedef enum _PanelModuleUnique  PanelModuleUnique;
-
-
-
-static void      panel_module_dispose          (GObject          *object);
-static void      panel_module_finalize         (GObject          *object);
-static gboolean  panel_module_load             (GTypeModule      *type_module);
-static void      panel_module_unload           (GTypeModule      *type_module);
-static void      panel_module_plugin_destroyed (gpointer          user_data,
-                                                GObject          *where_the_plugin_was);
-
-
-
-struct _PanelModuleClass
-{
-  GTypeModuleClass __parent__;
-};
-
-enum _PanelModuleRunMode
-{
-  UNKNOWN,    /* Unset */
-  INTERNAL,   /* plugin library will be loaded in the panel */
-  WRAPPER,    /* external library with comunication through PanelPluginExternal */
-  EXTERNAL_46 /* external executable with comunication through PanelPluginExternal46 */
-};
-
-enum _PanelModuleUnique
-{
-  UNIQUE_FALSE,
-  UNIQUE_TRUE,
-  UNIQUE_SCREEN
-};
-
-struct _PanelModule
-{
-  GTypeModule __parent__;
-
-  /* module type */
-  PanelModuleRunMode   mode;
-
-  /* filename to the library or executable
-   * for an old 4.6 plugin */
-  gchar               *filename;
-
-  /* plugin information from the desktop file */
-  gchar               *display_name;
-  gchar               *comment;
-  gchar               *icon_name;
-
-  /* unique handling */
-  guint                use_count;
-  PanelModuleUnique    unique_mode;
-
-  /* module location (null for 4.6 plugins) */
-  GModule             *library;
-
-  /* for non-gobject plugin */
-  PluginConstructFunc  construct_func;
-
-  /* for gobject plugins */
-  GType                plugin_type;
-};
-
-
-
-static GQuark module_quark = 0;
-
-
-
-G_DEFINE_TYPE (PanelModule, panel_module, G_TYPE_TYPE_MODULE)
-
-
-
-static void
-panel_module_class_init (PanelModuleClass *klass)
-{
-  GObjectClass     *gobject_class;
-  GTypeModuleClass *gtype_module_class;
-
-  gobject_class = G_OBJECT_CLASS (klass);
-  gobject_class->dispose = panel_module_dispose;
-  gobject_class->finalize = panel_module_finalize;
-
-  gtype_module_class = G_TYPE_MODULE_CLASS (klass);
-  gtype_module_class->load = panel_module_load;
-  gtype_module_class->unload = panel_module_unload;
-
-  module_quark = g_quark_from_static_string ("panel-module");
-}
-
-
-
-static void
-panel_module_init (PanelModule *module)
-{
-  module->mode = UNKNOWN;
-  module->filename = NULL;
-  module->display_name = NULL;
-  module->comment = NULL;
-  module->icon_name = NULL;
-  module->use_count = 0;
-  module->unique_mode = UNIQUE_FALSE;
-  module->library = NULL;
-  module->construct_func = NULL;
-  module->plugin_type = G_TYPE_NONE;
-}
-
-
-
-static void
-panel_module_dispose (GObject *object)
-{
-  /* Do nothing to avoid problems with dispose in GTypeModule when
-   * types are registered.
-   *
-   * For us this is not a problem since the modules are released when
-   * everything is destroyed. So we really want that last unref before
-   * closing the application. */
-}
-
-
-
-static void
-panel_module_finalize (GObject *object)
-{
-  PanelModule *module = PANEL_MODULE (object);
-
-  g_free (module->filename);
-  g_free (module->display_name);
-  g_free (module->comment);
-  g_free (module->icon_name);
-
-  (*G_OBJECT_CLASS (panel_module_parent_class)->finalize) (object);
-}
-
-
-
-static gboolean
-panel_module_load (GTypeModule *type_module)
-{
-  PanelModule    *module = PANEL_MODULE (type_module);
-  PluginInitFunc  init_func;
-  gboolean        make_resident = TRUE;
-  gpointer        foo;
-
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), FALSE);
-  panel_return_val_if_fail (G_IS_TYPE_MODULE (module), FALSE);
-  panel_return_val_if_fail (module->mode == INTERNAL, FALSE);
-  panel_return_val_if_fail (module->library == NULL, FALSE);
-  panel_return_val_if_fail (module->plugin_type == G_TYPE_NONE, FALSE);
-  panel_return_val_if_fail (module->construct_func == NULL, FALSE);
-
-  /* open the module */
-  module->library = g_module_open (module->filename, G_MODULE_BIND_LOCAL);
-  if (G_UNLIKELY (module->library == NULL))
-    {
-      g_critical ("Failed to load module \"%s\": %s.",
-                  module->filename,
-                  g_module_error ());
-      return FALSE;
-    }
-
-    /* check if there is a preinit function */
-  if (g_module_symbol (module->library, "xfce_panel_module_preinit", &foo))
-    {
-      /* large message, but technically never shown to normal users */
-      g_warning ("The plugin \"%s\" is marked as internal in the desktop file, "
-                 "but the developer has defined an pre-init function, which is "
-                 "not supported for internal plugins. " PACKAGE_NAME " will force "
-                 "the plugin to run external.", module->filename);
-
-      panel_module_unload (type_module);
-
-      /* from now on, run this plugin in a wrapper */
-      module->mode = WRAPPER;
-
-      return FALSE;
-    }
-
-  /* try to link the contruct function */
-  if (g_module_symbol (module->library, "xfce_panel_module_init", (gpointer) &init_func))
-    {
-      /* initialize the plugin */
-      module->plugin_type = init_func (type_module, &make_resident);
-
-      /* whether to make this plugin resident or not */
-      if (make_resident)
-        g_module_make_resident (module->library);
-    }
-  else if (!g_module_symbol (module->library, "xfce_panel_module_construct",
-                             (gpointer) &module->construct_func))
-    {
-      g_critical ("Module \"%s\" lacks a plugin register function.",
-                  module->filename);
-
-      panel_module_unload (type_module);
-
-      return FALSE;
-    }
-
-  return TRUE;
-}
-
-
-
-static void
-panel_module_unload (GTypeModule *type_module)
-{
-  PanelModule *module = PANEL_MODULE (type_module);
-
-  panel_return_if_fail (PANEL_IS_MODULE (module));
-  panel_return_if_fail (G_IS_TYPE_MODULE (module));
-  panel_return_if_fail (module->mode == INTERNAL);
-  panel_return_if_fail (module->library != NULL);
-  panel_return_if_fail (module->plugin_type != G_TYPE_NONE
-                        || module->construct_func != NULL);
-
-  g_module_close (module->library);
-
-  /* reset plugin state */
-  module->library = NULL;
-  module->construct_func = NULL;
-  module->plugin_type = G_TYPE_NONE;
-}
-
-
-
-static void
-panel_module_plugin_destroyed (gpointer  user_data,
-                               GObject  *where_the_plugin_was)
-{
-  PanelModule *module = PANEL_MODULE (user_data);
-
-  panel_return_if_fail (PANEL_IS_MODULE (module));
-  panel_return_if_fail (G_IS_TYPE_MODULE (module));
-  panel_return_if_fail (module->use_count > 0);
-
-  /* decrease counter */
-  module->use_count--;
-
-  /* unuse the library if the plugin runs internal */
-  if (module->mode == INTERNAL)
-    g_type_module_unuse (G_TYPE_MODULE (module));
-
-  /* emit signal unique signal in the factory */
-  if (module->unique_mode != UNIQUE_FALSE)
-    panel_module_factory_emit_unique_changed (module);
-}
-
-
-
-PanelModule *
-panel_module_new_from_desktop_file (const gchar *filename,
-                                    const gchar *name,
-                                    gboolean     force_external)
-{
-  PanelModule *module = NULL;
-  XfceRc      *rc;
-  const gchar *module_name;
-  gchar       *path;
-  const gchar *module_exec;
-  const gchar *module_unique;
-  gboolean     found;
-
-  panel_return_val_if_fail (!exo_str_is_empty (filename), NULL);
-  panel_return_val_if_fail (!exo_str_is_empty (name), NULL);
-
-  rc = xfce_rc_simple_open (filename, TRUE);
-  if (G_UNLIKELY (rc == NULL))
-    {
-      g_critical ("Plugin %s: Unable to read from desktop file \"%s\"",
-                  name, filename);
-      return NULL;
-    }
-
-  if (!xfce_rc_has_group (rc, "Xfce Panel"))
-    {
-      g_critical ("Plugin %s: Desktop file \"%s\" has no "
-                  "\"Xfce Panel\" group", name, filename);
-      xfce_rc_close (rc);
-      return NULL;
-    }
-
-  xfce_rc_set_group (rc, "Xfce Panel");
-
-  /* read module location from the desktop file */
-  module_name = xfce_rc_read_entry_untranslated (rc, "X-XFCE-Module", NULL);
-  if (G_LIKELY (module_name != NULL))
-    {
-#ifndef NDEBUG
-      if (xfce_rc_has_entry (rc, "X-XFCE-Module-Path"))
-        {
-          /* show a messsage if the old module path key still exists */
-          g_message ("Plugin %s: The \"X-XFCE-Module-Path\" key is "
-                     "ignored in \"%s\", the panel will look for the "
-                     "module in %s. See bug #5455 why this decision was made",
-                     name, filename, PANEL_PLUGINS_LIB_DIR);
-        }
-#endif
-
-      path = g_module_build_path (PANEL_PLUGINS_LIB_DIR, module_name);
-      found = g_file_test (path, G_FILE_TEST_EXISTS);
-
-      if (!found)
-        {
-          /* deprecated location for module plugin directories */
-          g_free (path);
-          path = g_module_build_path (PANEL_PLUGINS_LIB_DIR_OLD, module_name);
-          found = g_file_test (path, G_FILE_TEST_EXISTS);
-        }
-
-      if (G_LIKELY (found))
-        {
-          /* create new module */
-          module = g_object_new (PANEL_TYPE_MODULE, NULL);
-          module->filename = path;
-
-          /* run mode of the module, by default everything runs in
-           * the wrapper, unless defined otherwise */
-          if (force_external || !xfce_rc_read_bool_entry (rc, "X-XFCE-Internal", FALSE))
-            module->mode = WRAPPER;
-          else
-            module->mode = INTERNAL;
-        }
-      else
-        {
-          g_critical ("Plugin %s: There was no module found at \"%s\"",
-                      name, path);
-          g_free (path);
-        }
-    }
-  else
-    {
-      /* yeah, we support ancient shizzle too... */
-      module_exec = xfce_rc_read_entry_untranslated (rc, "X-XFCE-Exec", NULL);
-      if (module_exec != NULL
-          && g_path_is_absolute (module_exec)
-          && g_file_test (module_exec, G_FILE_TEST_EXISTS))
-        {
-          module = g_object_new (PANEL_TYPE_MODULE, NULL);
-          module->filename = g_strdup (module_exec);
-          module->mode = EXTERNAL_46;
-        }
-      else
-        {
-          g_critical ("Plugin %s: There was no executable found at \"%s\"",
-                      name, module_exec);
-        }
-    }
-
-  if (G_LIKELY (module != NULL))
-    {
-      g_type_module_set_name (G_TYPE_MODULE (module), name);
-      panel_assert (module->mode != UNKNOWN);
-
-      /* read the remaining information */
-      module->display_name = g_strdup (xfce_rc_read_entry (rc, "Name", name));
-      module->comment = g_strdup (xfce_rc_read_entry (rc, "Comment", NULL));
-      module->icon_name = g_strdup (xfce_rc_read_entry_untranslated (rc, "Icon", NULL));
-
-      module_unique = xfce_rc_read_entry (rc, "X-XFCE-Unique", NULL);
-      if (G_LIKELY (module_unique == NULL))
-        module->unique_mode = UNIQUE_FALSE;
-      else if (strcasecmp (module_unique, "screen") == 0)
-        module->unique_mode = UNIQUE_SCREEN;
-      else if (strcasecmp (module_unique, "true") == 0)
-        module->unique_mode = UNIQUE_TRUE;
-      else
-        module->unique_mode = UNIQUE_FALSE;
-
-       panel_debug_filtered (PANEL_DEBUG_MODULE, "new module %s, filename=%s, internal=%s",
-                             name, module->filename,
-                             PANEL_DEBUG_BOOL (module->mode == INTERNAL));
-    }
-
-  xfce_rc_close (rc);
-
-  return module;
-}
-
-
-
-GtkWidget *
-panel_module_new_plugin (PanelModule  *module,
-                         GdkScreen    *screen,
-                         gint          unique_id,
-                         gchar       **arguments)
-{
-  GtkWidget   *plugin = NULL;
-  const gchar *debug_type = NULL;
-
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), NULL);
-  panel_return_val_if_fail (G_IS_TYPE_MODULE (module), NULL);
-  panel_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
-  panel_return_val_if_fail (unique_id != -1, NULL);
-  panel_return_val_if_fail (module->mode != UNKNOWN, NULL);
-
-  /* return null if the module is not usable (unique and already used) */
-  if (G_UNLIKELY (!panel_module_is_usable (module, screen)))
-    return NULL;
-
-  switch (module->mode)
-    {
-    case INTERNAL:
-      if (g_type_module_use (G_TYPE_MODULE (module)))
-        {
-          if (module->plugin_type != G_TYPE_NONE)
-            {
-              /* plugin is build as an object, to use its gtype */
-              plugin = g_object_new (module->plugin_type,
-                                     "name", panel_module_get_name (module),
-                                     "unique-id", unique_id,
-                                     "display-name", module->display_name,
-                                     "comment", module->comment,
-                                     "arguments", arguments,
-                                     NULL);
-
-              debug_type = "object-type";
-            }
-          else if (module->construct_func != NULL)
-            {
-              /* create plugin using the 'old style' construct function */
-              plugin = (*module->construct_func) (panel_module_get_name (module),
-                                                  unique_id,
-                                                  module->display_name,
-                                                  module->comment,
-                                                  arguments,
-                                                  screen);
-
-              debug_type = "construct-func";
-            }
-
-          if (G_LIKELY (plugin != NULL))
-            break;
-          else
-            g_type_module_unuse (G_TYPE_MODULE (module));
-        }
-
-      /* fall-through (make wrapper plugin), probably a plugin with
-       * preinit_func which is not supported for internal plugins */
-
-    case WRAPPER:
-      plugin = panel_plugin_external_wrapper_new (module, unique_id, arguments);
-      debug_type = "external-wrapper";
-      break;
-
-    case EXTERNAL_46:
-      plugin = panel_plugin_external_46_new (module, unique_id, arguments);
-      debug_type = "external-46";
-      break;
-
-    default:
-      panel_assert_not_reached ();
-      break;
-    }
-
-  if (G_LIKELY (plugin != NULL))
-    {
-      /* increase count */
-      module->use_count++;
-
-      panel_debug (PANEL_DEBUG_MODULE, "new item (type=%s, name=%s, id=%d)",
-          debug_type, panel_module_get_name (module), unique_id);
-
-      /* handle module use count and unloading */
-      g_object_weak_ref (G_OBJECT (plugin),
-          panel_module_plugin_destroyed, module);
-
-      /* add link to the module */
-      g_object_set_qdata (G_OBJECT (plugin), module_quark, module);
-    }
-
-  return plugin;
-}
-
-
-
-const gchar *
-panel_module_get_name (PanelModule *module)
-{
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), NULL);
-  panel_return_val_if_fail (G_IS_TYPE_MODULE (module), NULL);
-
-  return G_TYPE_MODULE (module)->name;
-}
-
-
-
-const gchar *
-panel_module_get_filename (PanelModule *module)
-{
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), NULL);
-  panel_return_val_if_fail (G_IS_TYPE_MODULE (module), NULL);
-
-  return module->filename;
-}
-
-
-
-const gchar *
-panel_module_get_display_name (PanelModule *module)
-{
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), NULL);
-  panel_return_val_if_fail (G_IS_TYPE_MODULE (module), NULL);
-  panel_return_val_if_fail (module->display_name == NULL
-                            || g_utf8_validate (module->display_name, -1, NULL), NULL);
-
-  return module->display_name;
-}
-
-
-
-const gchar *
-panel_module_get_comment (PanelModule *module)
-{
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), NULL);
-  panel_return_val_if_fail (module->comment == NULL
-                            || g_utf8_validate (module->comment, -1, NULL), NULL);
-
-  return module->comment;
-}
-
-
-
-const gchar *
-panel_module_get_icon_name (PanelModule *module)
-{
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), NULL);
-  panel_return_val_if_fail (module->icon_name == NULL
-                            || g_utf8_validate (module->icon_name, -1, NULL), NULL);
-
-  return module->icon_name;
-}
-
-
-
-PanelModule *
-panel_module_get_from_plugin_provider (XfcePanelPluginProvider *provider)
-{
-  panel_return_val_if_fail (XFCE_IS_PANEL_PLUGIN_PROVIDER (provider), NULL);
-
-  /* return the panel module */
-  return g_object_get_qdata (G_OBJECT (provider), module_quark);
-}
-
-
-
-gboolean
-panel_module_is_valid (PanelModule *module)
-{
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), FALSE);
-
-  return g_file_test (module->filename, G_FILE_TEST_EXISTS);
-}
-
-
-
-gboolean
-panel_module_is_unique (PanelModule *module)
-{
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), FALSE);
-
-  return module->unique_mode != UNIQUE_FALSE;
-}
-
-
-
-gboolean
-panel_module_is_usable (PanelModule *module,
-                        GdkScreen   *screen)
-{
-  PanelModuleFactory *factory;
-  GSList             *plugins, *li;
-  gboolean            usable = TRUE;
-
-  panel_return_val_if_fail (PANEL_IS_MODULE (module), FALSE);
-  panel_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE);
-
-  if (module->use_count > 0
-      && module->unique_mode == UNIQUE_TRUE)
-    return FALSE;
-
-  if (module->use_count > 0
-      && module->unique_mode == UNIQUE_SCREEN)
-    {
-      factory = panel_module_factory_get ();
-      plugins = panel_module_factory_get_plugins (factory, panel_module_get_name (module));
-
-      /* search existing plugins if one of them runs on this screen */
-      for (li = plugins; usable && li != NULL; li = li->next)
-        if (screen == gtk_widget_get_screen (GTK_WIDGET (li->data)))
-          usable = FALSE;
-
-      g_slist_free (plugins);
-      g_object_unref (G_OBJECT (factory));
-    }
-
-  return usable;
-}

=== removed file '.pc/applied-patches'
--- .pc/applied-patches	2013-07-07 10:54:09 +0000
+++ .pc/applied-patches	1970-01-01 00:00:00 +0000
@@ -1,3 +0,0 @@
-01_support-non-multiarch-modules.patch
-xubuntu_migrate-tasklist-separator.patch
-xubuntu_add-calendar-popup-to-clock-plugin.patch

=== removed directory '.pc/xubuntu_add-calendar-popup-to-clock-plugin.patch'
=== removed directory '.pc/xubuntu_add-calendar-popup-to-clock-plugin.patch/plugins'
=== removed directory '.pc/xubuntu_add-calendar-popup-to-clock-plugin.patch/plugins/clock'
=== removed file '.pc/xubuntu_add-calendar-popup-to-clock-plugin.patch/plugins/clock/clock.c'
--- .pc/xubuntu_add-calendar-popup-to-clock-plugin.patch/plugins/clock/clock.c	2012-08-22 21:49:26 +0000
+++ .pc/xubuntu_add-calendar-popup-to-clock-plugin.patch/plugins/clock/clock.c	1970-01-01 00:00:00 +0000
@@ -1,1137 +0,0 @@
-/*
- * Copyright (C) 2007-2010 Nick Schermer <nick@xfce.org>
- *
- * This library is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * This library is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#ifdef HAVE_TIME_H
-#include <time.h>
-#endif
-#ifdef HAVE_MATH_H
-#include <math.h>
-#endif
-
-#include <gtk/gtk.h>
-#include <exo/exo.h>
-#include <libxfce4ui/libxfce4ui.h>
-#include <libxfce4panel/libxfce4panel.h>
-#include <common/panel-private.h>
-#include <common/panel-xfconf.h>
-#include <common/panel-utils.h>
-
-#include "clock.h"
-#include "clock-analog.h"
-#include "clock-binary.h"
-#include "clock-digital.h"
-#include "clock-fuzzy.h"
-#include "clock-lcd.h"
-#include "clock-dialog_ui.h"
-
-#define DEFAULT_TOOLTIP_FORMAT "%A %d %B %Y"
-
-
-
-static void     clock_plugin_get_property              (GObject               *object,
-                                                        guint                  prop_id,
-                                                        GValue                *value,
-                                                        GParamSpec            *pspec);
-static void     clock_plugin_set_property              (GObject               *object,
-                                                        guint                  prop_id,
-                                                        const GValue          *value,
-                                                        GParamSpec            *pspec);
-static gboolean clock_plugin_leave_notify_event        (GtkWidget             *widget,
-                                                        GdkEventCrossing      *event);
-static gboolean clock_plugin_enter_notify_event        (GtkWidget             *widget,
-                                                        GdkEventCrossing      *event);
-static gboolean clock_plugin_button_press_event        (GtkWidget             *widget,
-                                                        GdkEventButton        *event);
-static void     clock_plugin_construct                 (XfcePanelPlugin       *panel_plugin);
-static void     clock_plugin_free_data                 (XfcePanelPlugin       *panel_plugin);
-static gboolean clock_plugin_size_changed              (XfcePanelPlugin       *panel_plugin,
-                                                        gint                   size);
-static void     clock_plugin_size_ratio_changed        (XfcePanelPlugin       *panel_plugin);
-static void     clock_plugin_mode_changed              (XfcePanelPlugin       *panel_plugin,
-                                                        XfcePanelPluginMode    mode);
-static void     clock_plugin_configure_plugin          (XfcePanelPlugin       *panel_plugin);
-static void     clock_plugin_set_mode                  (ClockPlugin           *plugin);
-static gboolean clock_plugin_tooltip                   (gpointer               user_data);
-static gboolean clock_plugin_timeout_running           (gpointer               user_data);
-static void     clock_plugin_timeout_destroyed         (gpointer               user_data);
-static gboolean clock_plugin_timeout_sync              (gpointer               user_data);
-
-
-
-enum
-{
-  PROP_0,
-  PROP_MODE,
-  PROP_SHOW_FRAME,
-  PROP_TOOLTIP_FORMAT,
-  PROP_COMMAND,
-  PROP_ROTATE_VERTICALLY
-};
-
-typedef enum
-{
-  CLOCK_PLUGIN_MODE_ANALOG = 0,
-  CLOCK_PLUGIN_MODE_BINARY,
-  CLOCK_PLUGIN_MODE_DIGITAL,
-  CLOCK_PLUGIN_MODE_FUZZY,
-  CLOCK_PLUGIN_MODE_LCD,
-
-  /* defines */
-  CLOCK_PLUGIN_MODE_MIN = CLOCK_PLUGIN_MODE_ANALOG,
-  CLOCK_PLUGIN_MODE_MAX = CLOCK_PLUGIN_MODE_LCD,
-  CLOCK_PLUGIN_MODE_DEFAULT = CLOCK_PLUGIN_MODE_DIGITAL
-}
-ClockPluginMode;
-
-struct _ClockPluginClass
-{
-  XfcePanelPluginClass __parent__;
-};
-
-struct _ClockPlugin
-{
-  XfcePanelPlugin __parent__;
-
-  GtkWidget          *clock;
-  GtkWidget          *frame;
-
-  guint               show_frame : 1;
-  gchar              *command;
-  ClockPluginMode     mode;
-  guint               rotate_vertically : 1;
-
-  gchar              *tooltip_format;
-  ClockPluginTimeout *tooltip_timeout;
-};
-
-struct _ClockPluginTimeout
-{
-  guint       interval;
-  GSourceFunc function;
-  gpointer    data;
-  guint       timeout_id;
-  guint       restart : 1;
-};
-
-typedef struct
-{
-  ClockPlugin *plugin;
-  GtkBuilder  *builder;
-}
-ClockPluginDialog;
-
-static const gchar *tooltip_formats[] =
-{
-  DEFAULT_TOOLTIP_FORMAT,
-  "%x",
-  N_("Week %V"),
-  NULL
-};
-
-static const gchar *digital_formats[] =
-{
-  DEFAULT_DIGITAL_FORMAT,
-  "%T",
-  "%r",
-  "%I:%M %p",
-  NULL
-};
-
-enum
-{
-  COLUMN_FORMAT,
-  COLUMN_SEPARATOR,
-  COLUMN_TEXT,
-  N_COLUMNS
-};
-
-
-
-/* define the plugin */
-XFCE_PANEL_DEFINE_PLUGIN (ClockPlugin, clock_plugin,
-  xfce_clock_analog_register_type,
-  xfce_clock_binary_register_type,
-  xfce_clock_digital_register_type,
-  xfce_clock_fuzzy_register_type,
-  xfce_clock_lcd_register_type)
-
-
-
-static void
-clock_plugin_class_init (ClockPluginClass *klass)
-{
-  GObjectClass         *gobject_class;
-  GtkWidgetClass       *widget_class;
-  XfcePanelPluginClass *plugin_class;
-
-  gobject_class = G_OBJECT_CLASS (klass);
-  gobject_class->set_property = clock_plugin_set_property;
-  gobject_class->get_property = clock_plugin_get_property;
-
-  widget_class = GTK_WIDGET_CLASS (klass);
-  widget_class->leave_notify_event = clock_plugin_leave_notify_event;
-  widget_class->enter_notify_event = clock_plugin_enter_notify_event;
-  widget_class->button_press_event = clock_plugin_button_press_event;
-
-  plugin_class = XFCE_PANEL_PLUGIN_CLASS (klass);
-  plugin_class->construct = clock_plugin_construct;
-  plugin_class->free_data = clock_plugin_free_data;
-  plugin_class->size_changed = clock_plugin_size_changed;
-  plugin_class->mode_changed = clock_plugin_mode_changed;
-  plugin_class->configure_plugin = clock_plugin_configure_plugin;
-
-  g_object_class_install_property (gobject_class,
-                                   PROP_MODE,
-                                   g_param_spec_uint ("mode",
-                                                      NULL, NULL,
-                                                      CLOCK_PLUGIN_MODE_MIN,
-                                                      CLOCK_PLUGIN_MODE_MAX,
-                                                      CLOCK_PLUGIN_MODE_DEFAULT,
-                                                      EXO_PARAM_READWRITE));
-
-  g_object_class_install_property (gobject_class,
-                                   PROP_SHOW_FRAME,
-                                   g_param_spec_boolean ("show-frame",
-                                                         NULL, NULL,
-                                                         TRUE,
-                                                         EXO_PARAM_READWRITE));
-
-  g_object_class_install_property (gobject_class,
-                                   PROP_TOOLTIP_FORMAT,
-                                   g_param_spec_string ("tooltip-format",
-                                                        NULL, NULL,
-                                                        DEFAULT_TOOLTIP_FORMAT,
-                                                        EXO_PARAM_READWRITE));
-
-  g_object_class_install_property (gobject_class,
-                                   PROP_ROTATE_VERTICALLY,
-                                   g_param_spec_boolean ("rotate-vertically",
-                                                         NULL, NULL,
-                                                         TRUE,
-                                                         EXO_PARAM_READWRITE));
-
-  g_object_class_install_property (gobject_class,
-                                   PROP_COMMAND,
-                                   g_param_spec_string ("command",
-                                                        NULL, NULL, NULL,
-                                                        EXO_PARAM_READWRITE));
-}
-
-
-
-static void
-clock_plugin_init (ClockPlugin *plugin)
-{
-  plugin->mode = CLOCK_PLUGIN_MODE_DEFAULT;
-  plugin->clock = NULL;
-  plugin->show_frame = TRUE;
-  plugin->tooltip_format = g_strdup (DEFAULT_TOOLTIP_FORMAT);
-  plugin->tooltip_timeout = NULL;
-  plugin->command = NULL;
-  plugin->rotate_vertically = TRUE;
-
-  plugin->frame = gtk_frame_new (NULL);
-  gtk_container_add (GTK_CONTAINER (plugin), plugin->frame);
-  gtk_frame_set_shadow_type (GTK_FRAME (plugin->frame), GTK_SHADOW_ETCHED_IN);
-  gtk_widget_show (plugin->frame);
-}
-
-
-
-static void
-clock_plugin_get_property (GObject    *object,
-                           guint       prop_id,
-                           GValue     *value,
-                           GParamSpec *pspec)
-{
-  ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (object);
-
-  switch (prop_id)
-    {
-    case PROP_MODE:
-      g_value_set_uint (value, plugin->mode);
-      break;
-
-    case PROP_SHOW_FRAME:
-      g_value_set_boolean (value, plugin->show_frame);
-      break;
-
-    case PROP_TOOLTIP_FORMAT:
-      g_value_set_string (value, plugin->tooltip_format);
-      break;
-
-    case PROP_COMMAND:
-      g_value_set_string (value, plugin->command);
-      break;
-
-    case PROP_ROTATE_VERTICALLY:
-      g_value_set_boolean (value, plugin->rotate_vertically);
-      break;
-
-    default:
-      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
-      break;
-    }
-}
-
-
-
-static void
-clock_plugin_set_property (GObject      *object,
-                           guint         prop_id,
-                           const GValue *value,
-                           GParamSpec   *pspec)
-{
-  ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (object);
-  gboolean     show_frame;
-  gboolean     rotate_vertically;
-
-  switch (prop_id)
-    {
-    case PROP_MODE:
-      if (plugin->mode != g_value_get_uint (value))
-        {
-          plugin->mode = g_value_get_uint (value);
-          clock_plugin_set_mode (plugin);
-        }
-      break;
-
-    case PROP_SHOW_FRAME:
-      show_frame = g_value_get_boolean (value);
-      if (plugin->show_frame != show_frame)
-        {
-          plugin->show_frame = show_frame;
-          gtk_frame_set_shadow_type (GTK_FRAME (plugin->frame),
-              show_frame ? GTK_SHADOW_ETCHED_IN : GTK_SHADOW_NONE);
-        }
-      break;
-
-    case PROP_TOOLTIP_FORMAT:
-      g_free (plugin->tooltip_format);
-      plugin->tooltip_format = g_value_dup_string (value);
-      break;
-
-    case PROP_COMMAND:
-      g_free (plugin->command);
-      plugin->command = g_value_dup_string (value);
-      break;
-
-    case PROP_ROTATE_VERTICALLY:
-      rotate_vertically = g_value_get_boolean (value);
-      if (plugin->rotate_vertically != rotate_vertically)
-        {
-          plugin->rotate_vertically = rotate_vertically;
-          clock_plugin_set_mode (plugin);
-        }
-      break;
-
-    default:
-      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
-      break;
-    }
-}
-
-
-
-static gboolean
-clock_plugin_leave_notify_event (GtkWidget        *widget,
-                                 GdkEventCrossing *event)
-{
-  ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (widget);
-
-  /* stop a running tooltip timeout when we leave the widget */
-  if (plugin->tooltip_timeout != NULL)
-    {
-      clock_plugin_timeout_free (plugin->tooltip_timeout);
-      plugin->tooltip_timeout = NULL;
-    }
-
-  return FALSE;
-}
-
-
-
-static gboolean
-clock_plugin_enter_notify_event (GtkWidget        *widget,
-                                 GdkEventCrossing *event)
-{
-  ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (widget);
-  guint        interval;
-
-  /* start the tooltip timeout if needed */
-  if (plugin->tooltip_timeout == NULL)
-    {
-      interval = clock_plugin_interval_from_format (plugin->tooltip_format);
-      plugin->tooltip_timeout = clock_plugin_timeout_new (interval, clock_plugin_tooltip, plugin);
-    }
-
-  return FALSE;
-}
-
-
-
-static gboolean
-clock_plugin_button_press_event (GtkWidget      *widget,
-                                 GdkEventButton *event)
-{
-  ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (widget);
-  GError      *error = NULL;
-
-  if (event->button == 1
-      && event->type == GDK_2BUTTON_PRESS
-      && !exo_str_is_empty (plugin->command))
-    {
-      /* launch command */
-      if (!xfce_spawn_command_line_on_screen (gtk_widget_get_screen (widget),
-                                              plugin->command, FALSE, FALSE, &error))
-        {
-          xfce_dialog_show_error (NULL, error, _("Failed to execute clock command"));
-          g_error_free (error);
-        }
-
-      return TRUE;
-    }
-
-  return (*GTK_WIDGET_CLASS (clock_plugin_parent_class)->button_press_event) (widget, event);
-}
-
-
-
-static void
-clock_plugin_construct (XfcePanelPlugin *panel_plugin)
-{
-  ClockPlugin         *plugin = XFCE_CLOCK_PLUGIN (panel_plugin);
-  const PanelProperty  properties[] =
-  {
-    { "mode", G_TYPE_UINT },
-    { "show-frame", G_TYPE_BOOLEAN },
-    { "tooltip-format", G_TYPE_STRING },
-    { "command", G_TYPE_STRING },
-    { "rotate-vertically", G_TYPE_BOOLEAN },
-    { NULL }
-  };
-
-  /* show configure */
-  xfce_panel_plugin_menu_show_configure (panel_plugin);
-
-  /* connect all properties */
-  panel_properties_bind (NULL, G_OBJECT (panel_plugin),
-                         xfce_panel_plugin_get_property_base (panel_plugin),
-                         properties, FALSE);
-
-  /* make sure a mode is set */
-  if (plugin->mode == CLOCK_PLUGIN_MODE_DEFAULT)
-    clock_plugin_set_mode (plugin);
-}
-
-
-
-static void
-clock_plugin_free_data (XfcePanelPlugin *panel_plugin)
-{
-  ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (panel_plugin);
-
-  if (plugin->tooltip_timeout != NULL)
-    clock_plugin_timeout_free (plugin->tooltip_timeout);
-
-  g_free (plugin->tooltip_format);
-  g_free (plugin->command);
-}
-
-
-
-static gboolean
-clock_plugin_size_changed (XfcePanelPlugin *panel_plugin,
-                           gint             size)
-{
-  ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (panel_plugin);
-  gdouble      ratio;
-  gint         ratio_size;
-  gint         border = 0;
-  gint         offset;
-
-  if (plugin->clock == NULL)
-    return TRUE;
-
-  /* set the frame border */
-  if (plugin->show_frame && size > 26)
-    border = 1;
-  gtk_container_set_border_width (GTK_CONTAINER (plugin->frame), border);
-
-  /* get the width:height ratio */
-  g_object_get (G_OBJECT (plugin->clock), "size-ratio", &ratio, NULL);
-  if (ratio > 0)
-    {
-      offset = MAX (plugin->frame->style->xthickness, plugin->frame->style->ythickness) + border;
-      offset *= 2;
-      ratio_size = size - offset;
-    }
-  else
-    {
-      ratio_size = -1;
-      offset = 0;
-    }
-
-  /* set the clock size */
-  if (xfce_panel_plugin_get_mode (panel_plugin) == XFCE_PANEL_PLUGIN_MODE_HORIZONTAL)
-    {
-      if (ratio > 0)
-        {
-          ratio_size = ceil (ratio_size * ratio);
-          ratio_size += offset;
-        }
-
-      gtk_widget_set_size_request (GTK_WIDGET (panel_plugin), ratio_size, size);
-    }
-  else
-    {
-      if (ratio > 0)
-        {
-          ratio_size = ceil (ratio_size / ratio);
-          ratio_size += offset;
-        }
-
-      gtk_widget_set_size_request (GTK_WIDGET (panel_plugin), size, ratio_size);
-    }
-
-  return TRUE;
-}
-
-
-
-static void
-clock_plugin_size_ratio_changed (XfcePanelPlugin *panel_plugin)
-{
-  clock_plugin_size_changed (panel_plugin, xfce_panel_plugin_get_size (panel_plugin));
-}
-
-
-
-static void
-clock_plugin_mode_changed (XfcePanelPlugin     *panel_plugin,
-                           XfcePanelPluginMode  mode)
-{
-  ClockPlugin    *plugin = XFCE_CLOCK_PLUGIN (panel_plugin);
-  GtkOrientation  orientation;
-
-  if (plugin->rotate_vertically)
-    {
-      orientation = (mode == XFCE_PANEL_PLUGIN_MODE_VERTICAL) ?
-        GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL;
-      g_object_set (G_OBJECT (plugin->clock), "orientation", orientation, NULL);
-    }
-
-  /* do a size update */
-  clock_plugin_size_changed (panel_plugin, xfce_panel_plugin_get_size (panel_plugin));
-}
-
-
-
-static void
-clock_plugin_configure_plugin_mode_changed (GtkComboBox       *combo,
-                                            ClockPluginDialog *dialog)
-{
-  guint    i, active, mode;
-  GObject *object;
-  struct {
-    const gchar *widget;
-    const gchar *binding;
-    const gchar *property;
-  } names[] = {
-    { "show-seconds", "show-seconds", "active" },
-    { "true-binary", "true-binary", "active" },
-    { "show-military", "show-military", "active" },
-    { "flash-separators", "flash-separators", "active" },
-    { "show-meridiem", "show-meridiem", "active" },
-    { "digital-box", "digital-format", "text" },
-    { "fuzziness-box", "fuzziness", "value" },
-    { "show-inactive", "show-inactive", "active" },
-    { "show-grid", "show-grid", "active" },
-  };
-
-  panel_return_if_fail (GTK_IS_COMBO_BOX (combo));
-  panel_return_if_fail (GTK_IS_BUILDER (dialog->builder));
-  panel_return_if_fail (XFCE_IS_CLOCK_PLUGIN (dialog->plugin));
-
-  /* the active items for each mode */
-  mode = gtk_combo_box_get_active (combo);
-  switch (mode)
-    {
-    case CLOCK_PLUGIN_MODE_ANALOG:
-      active = 1 << 1;
-      break;
-
-    case CLOCK_PLUGIN_MODE_BINARY:
-      active = 1 << 1 | 1 << 2 | 1 << 8 | 1 << 9;
-      break;
-
-    case CLOCK_PLUGIN_MODE_DIGITAL:
-      active = 1 << 6;
-      break;
-
-    case CLOCK_PLUGIN_MODE_FUZZY:
-      active = 1 << 7;
-      break;
-
-    case CLOCK_PLUGIN_MODE_LCD:
-      active = 1 << 1 | 1 << 3 | 1 << 4 | 1 << 5;
-      break;
-
-    default:
-      panel_assert_not_reached ();
-      active = 0;
-      break;
-    }
-
-  /* show or hide the dialog widgets */
-  for (i = 0; i < G_N_ELEMENTS (names); i++)
-    {
-      object = gtk_builder_get_object (dialog->builder, names[i].widget);
-      panel_return_if_fail (GTK_IS_WIDGET (object));
-      if (PANEL_HAS_FLAG (active, 1 << (i + 1)))
-        gtk_widget_show (GTK_WIDGET (object));
-      else
-        gtk_widget_hide (GTK_WIDGET (object));
-    }
-
-  /* make sure the new mode is set */
-  if (dialog->plugin->mode != mode)
-    g_object_set (G_OBJECT (dialog->plugin), "mode", mode, NULL);
-  panel_return_if_fail (G_IS_OBJECT (dialog->plugin->clock));
-
-  /* connect the exo bindings */
-  for (i = 0; i < G_N_ELEMENTS (names); i++)
-    {
-      if (PANEL_HAS_FLAG (active, 1 << (i + 1)))
-        {
-          object = gtk_builder_get_object (dialog->builder, names[i].binding);
-          panel_return_if_fail (G_IS_OBJECT (object));
-          exo_mutual_binding_new (G_OBJECT (dialog->plugin->clock), names[i].binding,
-                                  G_OBJECT (object), names[i].property);
-        }
-    }
-}
-
-
-
-static void
-clock_plugin_configure_plugin_chooser_changed (GtkComboBox *combo,
-                                               GtkEntry    *entry)
-{
-  GtkTreeIter   iter;
-  GtkTreeModel *model;
-  gchar        *format;
-
-  panel_return_if_fail (GTK_IS_COMBO_BOX (combo));
-  panel_return_if_fail (GTK_IS_ENTRY (entry));
-
-  if (gtk_combo_box_get_active_iter (combo, &iter))
-    {
-      model = gtk_combo_box_get_model (combo);
-      gtk_tree_model_get (model, &iter, COLUMN_FORMAT, &format, -1);
-
-      if (format != NULL)
-        {
-          gtk_entry_set_text (entry, format);
-          gtk_widget_hide (GTK_WIDGET (entry));
-          g_free (format);
-        }
-      else
-        {
-          gtk_widget_show (GTK_WIDGET (entry));
-        }
-    }
-}
-
-
-
-static gboolean
-clock_plugin_configure_plugin_chooser_separator (GtkTreeModel *model,
-                                                 GtkTreeIter  *iter,
-                                                 gpointer      user_data)
-{
-  gboolean separator;
-
-  gtk_tree_model_get (model, iter, COLUMN_SEPARATOR, &separator, -1);
-
-  return separator;
-}
-
-
-
-static void
-clock_plugin_configure_plugin_chooser_fill (GtkComboBox *combo,
-                                            GtkEntry    *entry,
-                                            const gchar *formats[])
-{
-  guint         i;
-  GtkListStore *store;
-  gchar        *preview;
-  struct tm     now;
-  GtkTreeIter   iter;
-  const gchar  *active_format;
-  gboolean      has_active = FALSE;
-
-  panel_return_if_fail (GTK_IS_COMBO_BOX (combo));
-  panel_return_if_fail (GTK_IS_ENTRY (entry));
-
-  gtk_combo_box_set_row_separator_func (combo,
-      clock_plugin_configure_plugin_chooser_separator, NULL, NULL);
-
-  store = gtk_list_store_new (N_COLUMNS, G_TYPE_STRING, G_TYPE_BOOLEAN, G_TYPE_STRING);
-  gtk_combo_box_set_model (combo, GTK_TREE_MODEL (store));
-
-  clock_plugin_get_localtime (&now);
-
-  active_format = gtk_entry_get_text (entry);
-
-  for (i = 0; formats[i] != NULL; i++)
-    {
-      preview = clock_plugin_strdup_strftime (_(formats[i]), &now);
-      gtk_list_store_insert_with_values (store, &iter, i,
-                                         COLUMN_FORMAT, _(formats[i]),
-                                         COLUMN_TEXT, preview, -1);
-      g_free (preview);
-
-      if (has_active == FALSE
-          && !exo_str_is_empty (active_format)
-          && strcmp (active_format, formats[i]) == 0)
-        {
-          gtk_combo_box_set_active_iter (combo, &iter);
-          gtk_widget_hide (GTK_WIDGET (entry));
-          has_active = TRUE;
-        }
-    }
-
-  gtk_list_store_insert_with_values (store, NULL, i++,
-                                     COLUMN_SEPARATOR, TRUE, -1);
-
-  gtk_list_store_insert_with_values (store, &iter, i++,
-                                     COLUMN_TEXT, _("Custom Format"), -1);
-  if (!has_active)
-    {
-      gtk_combo_box_set_active_iter (combo, &iter);
-      gtk_widget_show (GTK_WIDGET (entry));
-    }
-
-  g_signal_connect (G_OBJECT (combo), "changed",
-      G_CALLBACK (clock_plugin_configure_plugin_chooser_changed), entry);
-
-  g_object_unref (G_OBJECT (store));
-}
-
-
-
-static void
-clock_plugin_configure_plugin_free (gpointer user_data)
-{
-  g_slice_free (ClockPluginDialog, user_data);
-}
-
-
-
-static void
-clock_plugin_configure_plugin (XfcePanelPlugin *panel_plugin)
-{
-  ClockPlugin       *plugin = XFCE_CLOCK_PLUGIN (panel_plugin);
-  ClockPluginDialog *dialog;
-  GtkBuilder        *builder;
-  GObject           *window;
-  GObject           *object;
-  GObject           *combo;
-
-  panel_return_if_fail (XFCE_IS_CLOCK_PLUGIN (plugin));
-
-  /* setup the dialog */
-  PANEL_UTILS_LINK_4UI
-  builder = panel_utils_builder_new (panel_plugin, clock_dialog_ui,
-                                     clock_dialog_ui_length, &window);
-  if (G_UNLIKELY (builder == NULL))
-    return;
-
-  dialog = g_slice_new0 (ClockPluginDialog);
-  dialog->plugin = plugin;
-  dialog->builder = builder;
-
-  object = gtk_builder_get_object (builder, "mode");
-  g_signal_connect_data (G_OBJECT (object), "changed",
-      G_CALLBACK (clock_plugin_configure_plugin_mode_changed), dialog,
-      (GClosureNotify) clock_plugin_configure_plugin_free, 0);
-  exo_mutual_binding_new (G_OBJECT (plugin), "mode",
-                          G_OBJECT (object), "active");
-
-  object = gtk_builder_get_object (builder, "show-frame");
-  exo_mutual_binding_new (G_OBJECT (plugin), "show-frame",
-                          G_OBJECT (object), "active");
-
-  object = gtk_builder_get_object (builder, "tooltip-format");
-  exo_mutual_binding_new (G_OBJECT (plugin), "tooltip-format",
-                          G_OBJECT (object), "text");
-  combo = gtk_builder_get_object (builder, "tooltip-chooser");
-  clock_plugin_configure_plugin_chooser_fill (GTK_COMBO_BOX (combo),
-                                              GTK_ENTRY (object),
-                                              tooltip_formats);
-
-  object = gtk_builder_get_object (builder, "digital-format");
-  combo = gtk_builder_get_object (builder, "digital-chooser");
-  clock_plugin_configure_plugin_chooser_fill (GTK_COMBO_BOX (combo),
-                                              GTK_ENTRY (object),
-                                              digital_formats);
-
-  gtk_widget_show (GTK_WIDGET (window));
-}
-
-
-
-static void
-clock_plugin_set_mode (ClockPlugin *plugin)
-{
-  const PanelProperty properties[][5] =
-  {
-    { /* analog */
-      { "show-seconds", G_TYPE_BOOLEAN },
-      { NULL },
-    },
-    { /* binary */
-      { "show-seconds", G_TYPE_BOOLEAN },
-      { "true-binary", G_TYPE_BOOLEAN },
-      { "show-inactive", G_TYPE_BOOLEAN },
-      { "show-grid", G_TYPE_BOOLEAN },
-      { NULL },
-    },
-    { /* digital */
-      { "digital-format", G_TYPE_STRING },
-      { NULL },
-    },
-    { /* fuzzy */
-      { "fuzziness", G_TYPE_UINT },
-      { NULL },
-    },
-    { /* lcd */
-      { "show-seconds", G_TYPE_BOOLEAN },
-      { "show-military", G_TYPE_BOOLEAN },
-      { "show-meridiem", G_TYPE_BOOLEAN },
-      { "flash-separators", G_TYPE_BOOLEAN },
-      { NULL },
-    }
-  };
-  GtkOrientation      orientation;
-
-  panel_return_if_fail (XFCE_IS_CLOCK_PLUGIN (plugin));
-
-  if (plugin->clock != NULL)
-    gtk_widget_destroy (plugin->clock);
-
-  /* create a new clock */
-  if (plugin->mode == CLOCK_PLUGIN_MODE_ANALOG)
-    plugin->clock = xfce_clock_analog_new ();
-  else if (plugin->mode == CLOCK_PLUGIN_MODE_BINARY)
-    plugin->clock = xfce_clock_binary_new ();
-  else if (plugin->mode == CLOCK_PLUGIN_MODE_DIGITAL)
-    plugin->clock = xfce_clock_digital_new ();
-  else if (plugin->mode == CLOCK_PLUGIN_MODE_FUZZY)
-    plugin->clock = xfce_clock_fuzzy_new ();
-  else
-    plugin->clock = xfce_clock_lcd_new ();
-
-  if (plugin->rotate_vertically)
-    {
-      orientation =
-        (xfce_panel_plugin_get_mode (XFCE_PANEL_PLUGIN (plugin))
-         == XFCE_PANEL_PLUGIN_MODE_VERTICAL) ?
-        GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL;
-      g_object_set (G_OBJECT (plugin->clock), "orientation", orientation, NULL);
-    }
-
-  /* watch width/height changes */
-  g_signal_connect_swapped (G_OBJECT (plugin->clock), "notify::size-ratio",
-      G_CALLBACK (clock_plugin_size_ratio_changed), plugin);
-
-  clock_plugin_size_changed (XFCE_PANEL_PLUGIN (plugin),
-      xfce_panel_plugin_get_size (XFCE_PANEL_PLUGIN (plugin)));
-
-  panel_properties_bind (NULL, G_OBJECT (plugin->clock),
-                         xfce_panel_plugin_get_property_base (XFCE_PANEL_PLUGIN (plugin)),
-                         properties[plugin->mode], FALSE);
-
-  gtk_container_add (GTK_CONTAINER (plugin->frame), plugin->clock);
-
-  gtk_widget_show (plugin->clock);
-}
-
-
-
-static gboolean
-clock_plugin_tooltip (gpointer user_data)
-{
-  ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (user_data);
-  gchar       *string;
-  struct tm    tm;
-
-  /* get the local time */
-  clock_plugin_get_localtime (&tm);
-
-  /* set the tooltip */
-  string = clock_plugin_strdup_strftime (plugin->tooltip_format, &tm);
-  gtk_widget_set_tooltip_markup (GTK_WIDGET (plugin), string);
-  g_free (string);
-
-  /* make sure the tooltip is up2date */
-  gtk_widget_trigger_tooltip_query (GTK_WIDGET (plugin));
-
-  /* keep the timeout running */
-  return TRUE;
-}
-
-
-
-static gboolean
-clock_plugin_timeout_running (gpointer user_data)
-{
-  ClockPluginTimeout *timeout = user_data;
-  gboolean            result;
-  struct tm           tm;
-
-  GDK_THREADS_ENTER ();
-  result = (timeout->function) (timeout->data);
-  GDK_THREADS_LEAVE ();
-
-  /* check if the timeout still runs in time if updating once a minute */
-  if (result && timeout->interval == CLOCK_INTERVAL_MINUTE)
-    {
-      /* sync again when we don't run on time */
-      clock_plugin_get_localtime (&tm);
-      timeout->restart = tm.tm_sec != 0;
-    }
-
-  return result && !timeout->restart;
-}
-
-
-
-static void
-clock_plugin_timeout_destroyed (gpointer user_data)
-{
-  ClockPluginTimeout *timeout = user_data;
-
-  timeout->timeout_id = 0;
-
-  if (G_UNLIKELY (timeout->restart))
-    clock_plugin_timeout_set_interval (timeout, timeout->interval);
-}
-
-
-
-static gboolean
-clock_plugin_timeout_sync (gpointer user_data)
-{
-  ClockPluginTimeout *timeout = user_data;
-
-  /* run the user function */
-  if ((timeout->function) (timeout->data))
-    {
-      /* start the real timeout */
-      timeout->timeout_id = g_timeout_add_seconds_full (G_PRIORITY_DEFAULT, timeout->interval,
-                                                        clock_plugin_timeout_running, timeout,
-                                                        clock_plugin_timeout_destroyed);
-    }
-  else
-    {
-      timeout->timeout_id = 0;
-    }
-
-  /* stop the sync timeout */
-  return FALSE;
-}
-
-
-
-ClockPluginTimeout *
-clock_plugin_timeout_new (guint       interval,
-                          GSourceFunc function,
-                          gpointer    data)
-{
-  ClockPluginTimeout *timeout;
-
-  panel_return_val_if_fail (interval > 0, NULL);
-  panel_return_val_if_fail (function != NULL, NULL);
-
-  timeout = g_slice_new0 (ClockPluginTimeout);
-  timeout->interval = 0;
-  timeout->function = function;
-  timeout->data = data;
-  timeout->timeout_id = 0;
-  timeout->restart = FALSE;
-
-  clock_plugin_timeout_set_interval (timeout, interval);
-
-  return timeout;
-}
-
-
-
-void
-clock_plugin_timeout_set_interval (ClockPluginTimeout *timeout,
-                                   guint               interval)
-{
-  struct tm tm;
-  guint     next_interval;
-  gboolean  restart = timeout->restart;
-
-  panel_return_if_fail (timeout != NULL);
-  panel_return_if_fail (interval > 0);
-
-  /* leave if nothing changed and we're not restarting */
-  if (!restart && timeout->interval == interval)
-    return;
-  timeout->interval = interval;
-  timeout->restart = FALSE;
-
-  /* stop running timeout */
-  if (G_LIKELY (timeout->timeout_id != 0))
-    g_source_remove (timeout->timeout_id);
-  timeout->timeout_id = 0;
-
-  /* run function when not restarting, leave if it returns false */
-  if (!restart && !(timeout->function) (timeout->data))
-    return;
-
-  /* get the seconds to the next internal */
-  if (interval == CLOCK_INTERVAL_MINUTE)
-    {
-      clock_plugin_get_localtime (&tm);
-      next_interval = 60 - tm.tm_sec;
-    }
-  else
-    {
-      next_interval = 0;
-    }
-
-  if (next_interval > 0)
-    {
-      /* start the sync timeout */
-      timeout->timeout_id = g_timeout_add_seconds_full (G_PRIORITY_DEFAULT, next_interval,
-                                                        clock_plugin_timeout_sync,
-                                                        timeout, NULL);
-    }
-  else
-    {
-      /* directly start running the normal timeout */
-      timeout->timeout_id = g_timeout_add_seconds_full (G_PRIORITY_DEFAULT, interval,
-                                                        clock_plugin_timeout_running, timeout,
-                                                        clock_plugin_timeout_destroyed);
-    }
-}
-
-
-
-void
-clock_plugin_timeout_free (ClockPluginTimeout *timeout)
-{
-  panel_return_if_fail (timeout != NULL);
-
-  timeout->restart = FALSE;
-  if (G_LIKELY (timeout->timeout_id != 0))
-    g_source_remove (timeout->timeout_id);
-  g_slice_free (ClockPluginTimeout, timeout);
-}
-
-
-
-void
-clock_plugin_get_localtime (struct tm *tm)
-{
-  time_t now = time (NULL);
-
-#ifndef HAVE_LOCALTIME_R
-  struct tm *tmbuf;
-
-  tmbuf = localtime (&now);
-  *tm = *tmbuf;
-#else
-  localtime_r (&now, tm);
-#endif
-}
-
-
-
-gchar *
-clock_plugin_strdup_strftime (const gchar     *format,
-                              const struct tm *tm)
-{
-  gchar *converted, *result;
-  gsize  length;
-  gchar  buffer[1024];
-
-  /* leave when format is null */
-  if (G_UNLIKELY (exo_str_is_empty (format)))
-    return NULL;
-
-  /* convert to locale, because that's what strftime uses */
-  converted = g_locale_from_utf8 (format, -1, NULL, NULL, NULL);
-  if (G_UNLIKELY (converted == NULL))
-    return NULL;
-
-  /* parse the time string */
-  length = strftime (buffer, sizeof (buffer), converted, tm);
-  if (G_UNLIKELY (length == 0))
-    buffer[0] = '\0';
-
-  /* convert the string back to utf-8 */
-  result = g_locale_to_utf8 (buffer, -1, NULL, NULL, NULL);
-
-  /* cleanup */
-  g_free (converted);
-
-  return result;
-}
-
-
-
-guint
-clock_plugin_interval_from_format (const gchar *format)
-{
-  const gchar *p;
-
-  if (G_UNLIKELY (exo_str_is_empty (format)))
-      return CLOCK_INTERVAL_MINUTE;
-
-  for (p = format; *p != '\0'; ++p)
-    {
-      if (p[0] == '%' && p[1] != '\0')
-        {
-          switch (*++p)
-            {
-            case 'c':
-            case 'N':
-            case 'r':
-            case 's':
-            case 'S':
-            case 'T':
-            case 'X':
-              return CLOCK_INTERVAL_SECOND;
-            }
-        }
-    }
-
-  return CLOCK_INTERVAL_MINUTE;
-}

=== removed directory '.pc/xubuntu_migrate-tasklist-separator.patch'
=== removed directory '.pc/xubuntu_migrate-tasklist-separator.patch/migrate'
=== removed file '.pc/xubuntu_migrate-tasklist-separator.patch/migrate/migrate-config.c'
--- .pc/xubuntu_migrate-tasklist-separator.patch/migrate/migrate-config.c	2012-05-22 22:31:35 +0000
+++ .pc/xubuntu_migrate-tasklist-separator.patch/migrate/migrate-config.c	1970-01-01 00:00:00 +0000
@@ -1,212 +0,0 @@
-/*
- * Copyright (C) 2011 Nick Schermer <nick@xfce.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundatoin; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundatoin, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-#ifdef HAVE_STRING_H
-#include <string.h>
-#endif
-
-#include <gtk/gtk.h>
-#include <xfconf/xfconf.h>
-#include <migrate/migrate-config.h>
-
-
-
-static guint
-migrate_config_strchr_count (const gchar *haystack,
-                             const gchar  needle)
-{
-  const gchar *p;
-  guint        count;
-
-  if (G_UNLIKELY (haystack != NULL))
-    {
-      for (p = haystack, count = 0; *p != '\0'; ++p)
-        if (*p == needle)
-          count++;
-    }
-
-  return count;
-}
-
-
-
-static void
-migrate_config_session_menu (gpointer key,
-                             gpointer value,
-                             gpointer channel)
-{
-  const GValue *gvalue = value;
-  const gchar  *prop = key;
-
-  /* skip non root plugin properties */
-  if (!G_VALUE_HOLDS_STRING (gvalue)
-      || migrate_config_strchr_count (prop, G_DIR_SEPARATOR) != 2
-      || g_strcmp0 (g_value_get_string (gvalue), "xfsm-logout-plugin") != 0)
-    return;
-
-  /* this plugin never had any properties and matches the default
-   * settings of the new actions plugin */
-  xfconf_channel_set_string (XFCONF_CHANNEL (channel), prop, "actions");
-}
-
-
-
-static const gchar *
-migrate_config_action_48_convert (gint action)
-{
-  switch (action)
-    {
-    case 1: /* ACTION_LOG_OUT_DIALOG */
-      return "+logout-dialog";
-
-    case 2: /* ACTION_LOG_OUT */
-      return "+logout";
-
-    case 3: /* ACTION_LOCK_SCREEN */
-      return "+lock-screen";
-
-    case 4: /* ACTION_SHUT_DOWN */
-      return "+shutdown";
-
-    case 5: /* ACTION_RESTART */
-      return "+restart";
-
-    case 6: /* ACTION_SUSPEND */
-      return "+suspend";
-
-    case 7: /* ACTION_HIBERNATE */
-      return "+hibernate";
-
-    default: /* ACTION_DISABLED */
-      return "-switch-user"; /* something else */
-    }
-}
-
-
-
-static void
-migrate_config_action_48 (gpointer key,
-                          gpointer value,
-                          gpointer channel)
-{
-  const GValue *gvalue = value;
-  const gchar  *prop = key;
-  gchar         str[64];
-  gint          first_action_int;
-  gint          second_action_int;
-  const gchar  *first_action;
-  const gchar  *second_action;
-
-  /* skip non root plugin properties */
-  if (!G_VALUE_HOLDS_STRING (gvalue)
-      || migrate_config_strchr_count (prop, G_DIR_SEPARATOR) != 2
-      || g_strcmp0 (g_value_get_string (gvalue), "actions") != 0)
-    return;
-
-  /* this is a bug that affects pre users: don't try to migrate
-   * when the appearance property is already set */
-  g_snprintf (str, sizeof (str), "%s/appearance", prop);
-  if (xfconf_channel_has_property (channel, str))
-    return;
-
-  /* set appearance to button mode */
-  xfconf_channel_set_uint (channel, str, 0);
-
-  /* read and remove the old properties */
-  g_snprintf (str, sizeof (str), "%s/first-action", prop);
-  first_action_int = xfconf_channel_get_uint (channel, str, 0) + 1;
-  xfconf_channel_reset_property (channel, str, FALSE);
-
-  g_snprintf (str, sizeof (str), "%s/second-action", prop);
-  second_action_int = xfconf_channel_get_uint (channel, str, 0);
-  xfconf_channel_reset_property (channel, str, FALSE);
-
-  /* corrections for new plugin */
-  if (first_action_int == 0)
-    first_action_int = 1;
-  if (first_action_int == second_action_int)
-    second_action_int = 0;
-
-  /* set orientation */
-  g_snprintf (str, sizeof (str), "%s/invert-orientation", prop);
-  xfconf_channel_set_bool (channel, str, second_action_int > 0);
-
-  /* convert the old value to new ones */
-  first_action = migrate_config_action_48_convert (first_action_int);
-  second_action = migrate_config_action_48_convert (second_action_int);
-
-  /* set the visible properties */
-  g_snprintf (str, sizeof (str), "%s/items", prop);
-  xfconf_channel_set_array (channel, str,
-                            G_TYPE_STRING, first_action,
-                            G_TYPE_STRING, second_action,
-                            G_TYPE_INVALID);
-}
-
-
-
-gboolean
-migrate_config (XfconfChannel  *channel,
-                gint            configver,
-                GError        **error)
-{
-  GHashTable *plugins;
-  guint       n, n_panels;
-  gchar       buf[50];
-  gboolean    horizontal;
-
-  plugins = xfconf_channel_get_properties (channel, "/plugins");
-
-  /* migrate plugins to the new actions plugin */
-  if (configver < 1)
-    {
-      /* migrate xfsm-logout-plugin */
-      g_hash_table_foreach (plugins, migrate_config_session_menu, channel);
-
-      /* migrate old action plugins */
-      g_hash_table_foreach (plugins, migrate_config_action_48, channel);
-    }
-
-  /* migrate horizontal to mode property */
-  if (configver < 2)
-    {
-      n_panels = xfconf_channel_get_uint (channel, "/panels", 0);
-      for (n = 0; n < n_panels; n++)
-        {
-          /* read and remove old property */
-          g_snprintf (buf, sizeof (buf), "/panels/panel-%u/horizontal", n);
-          horizontal = xfconf_channel_get_bool (channel, buf, TRUE);
-          xfconf_channel_reset_property (channel, buf, FALSE);
-
-          /* set new mode */
-          g_snprintf (buf, sizeof (buf), "/panels/panel-%u/mode", n);
-          xfconf_channel_set_uint (channel, buf, horizontal ? 0 : 1);
-        }
-    }
-
-  g_hash_table_destroy (plugins);
-
-  return TRUE;
-}

=== modified file 'ChangeLog'
--- ChangeLog	2013-05-21 22:40:43 +0000
+++ ChangeLog	2014-02-13 13:29:48 +0000
@@ -1,10 +1,1803 @@
-commit 48000a27d595dfe359aef35192cb7b3145db3cba
-Author: Nick Schermer <nick@xfce.org>
-Date:   Sun May 5 17:47:00 2013 +0200
-
-    Updates for release.
-
-commit ef184915ee033dec4084f3d762c81c2b130a2629
+commit 86a1b73c0a5ac1760e6978ee2dca9da47adc05c5
+Author: Michal Várady <miko.vaji@gmail.com>
+Date:   Sun Feb 9 12:30:41 2014 +0100
+
+    I18n: Update translation cs (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 4fe4d9c89eceef9262c727dd1013a3b189c8fa3b
+Author: Piotr Strębski <strebski@o2.pl>
+Date:   Fri Feb 7 18:30:37 2014 +0100
+
+    I18n: Update translation pl (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit e227b2e3c2d2684bdeaf9d3c82193cd542096afc
+Author: Michal Várady <miko.vaji@gmail.com>
+Date:   Mon Jan 20 00:30:33 2014 +0100
+
+    I18n: Update translation cs (99%).
+    
+    391 translated messages, 2 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit cf3e3357641e1b7ee5c94f0c857500e0e6dcda52
+Author: Michal Várady <miko.vaji@gmail.com>
+Date:   Sun Jan 19 12:30:36 2014 +0100
+
+    I18n: Update translation cs (89%).
+    
+    353 translated messages, 40 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit b3fb89906ee405c0fc980a3b6426abc449b7be0e
+Author: Michal Várady <miko.vaji@gmail.com>
+Date:   Sun Jan 19 06:30:41 2014 +0100
+
+    I18n: Add new translation cs (71%).
+    
+    282 translated messages, 111 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 5d9fa0b48115e8b989cfc6015205c1aa70a1fd46
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Fri Jan 17 02:13:12 2014 +0000
+
+    tasklist: Indentation and whitespace fixes
+
+commit 0e6c0208130a868f512264375c8e67eddbd5f6c8
+Author: Alistair Buxton <a.j.buxton@gmail.com>
+Date:   Fri Jan 17 00:21:17 2014 +0000
+
+    Improve the tasklist multimonitor handling.
+    
+    The tasklist widget has an option to only show windows from the
+    current monitor. This previously worked by calculating the centre
+    pixel of the window, and then testing that against the monitor.
+    However, it is possible to position a window such that the centre
+    pixel does not appear on any monitor.
+    
+    Instead, find the monitor which has the largest intersection with
+    the window and display the window button there.
+
+commit de1a2ce457e851d225a40d7e2f14073012bcd988
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Thu Jan 16 12:30:37 2014 +0100
+
+    I18n: Update translation hr (73%).
+    
+    288 translated messages, 105 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 5551513dbb18c73809cc945c1d1649f041d29511
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Tue Jan 7 02:26:50 2014 +0000
+
+    Bug #10582 scroll the items list automatically to keep the moved item
+    visible at the new position
+    
+    (Raphael Groner <projects.rg{at}smart.ms>)
+    
+    + some cleanup.
+
+commit 71fe77c4c5c433721854c88c1fa1667f880b38f2
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Tue Jan 7 02:17:49 2014 +0000
+
+    Preserve the current item selection when rebuilding the item store.
+
+commit d296ca76507bc5ffdbb8e77745568cf5063e069d
+Author: Arnout Engelen <xfce@bzzt.net>
+Date:   Thu Dec 26 18:31:05 2013 +0100
+
+    Set EWMH client type to WNCK_CLIENT_TYPE_PAGER (bug #10508).
+    
+    This is for window managers to tell them a pager or tasklist
+    requested the action.
+
+commit cdc3737f971d48d57dae15875f416ba772d0a8bf
+Author: Eric Koegel <eric.koegel@gmail.com>
+Date:   Mon Dec 23 11:53:02 2013 +0300
+
+    Fix transparency issues with GTK3 plugins
+    
+    This patch uses some GTK3 CSS magic written by Simon Steinbeiß to
+    make the GtkPlug button in the panel transparent. Small changes
+    were made to the wrapper_plug_draw code as well, i.e. no need to
+    check GTK_WIDGET_IS_DRAWABLE since gtk does this before calling
+    the draw signal. It also transforms the draw coordinates from
+    widget-relative back to window-relative.
+
+commit 964741f5b67e5f4fa97bab338d980c5eea0fa09b
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Fri Dec 20 10:02:07 2013 +0000
+
+    pager: recalculate size when panel size changes
+
+commit 08643272caef08634773b3074de7b2cadffb0926
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Fri Dec 20 09:35:58 2013 +0000
+
+    pager: fallback for case when pager is not yet set
+    
+    Just in case. Not needed on my system.
+
+commit c42ab58051aaf30ade4496de05fc27e4540eb961
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Fri Dec 20 03:38:39 2013 +0000
+
+    pager: fixed wnck pager aspect ratio in deskbar mode
+    
+    Previously we were relying on new api added in libwnck-2.31.
+    Unfortunately, stable version of libwnck was never released and the API
+    was not added to libwnck-3.
+    
+    This commit changes the method of setting the aspect ratio.
+    Aspect ratio is now calculated in the plugin using screen dimensions.
+    
+    One minor limitation of this method is that we are not accounting
+    for wnck pager frames, so the aspect ratio may be slightly inaccurate.
+
+commit 862db2d44aed25e8a397f5314f9daab374c4e9fa
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Dec 18 19:55:28 2013 +0000
+
+    Make sure version API is set.
+    
+    Start-up crashes of external plugins resulted in API being not set properly,
+    Then, the panel was trying to use a non-existing "wrapper" binary.
+    This prevented normal crash reporting mechanism from working and resulted
+    in an "empty" plugin being inserted into the panel.
+
+commit b2b8dc7005eeebf2fc4f6d85b66423d73da04648
+Author: Sveinn í Felli <sv1@fellsnet.is>
+Date:   Thu Dec 12 12:30:33 2013 +0100
+
+    I18n: Update translation is (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit cb9798da8a898e083bbe90765e7c8333e7ea2559
+Author: Nick Schermer <nick@xfce.org>
+Date:   Sat Nov 30 17:12:18 2013 +0100
+
+    Fix potfile.
+
+commit 1088908c551a7f2b0116b0e702122521cd69dde9
+Author: Nick Schermer <nick@xfce.org>
+Date:   Sat Nov 30 17:05:29 2013 +0100
+
+    Disable the gtk3 library by default.
+
+commit c88fbb8983af1a853dc444bac536ccc09cfad661
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Aug 26 20:14:36 2013 +0100
+
+    Setting gtk3 StyleContext class in wrapper.
+    
+    (reworked:
+    2820b5bc195adfc49490d9001f8f4e8677140203
+        Added panel class for theming.
+    3557ce18a3f0dfa88ebaa8c2f69f80e12fa69c5f
+        Use both .panel and .xfce4-panel style context classes
+    from nick/gtk3 branch)
+
+commit f1299849ddd60c2458a6fde453e5190807541034
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Aug 26 20:01:05 2013 +0100
+
+    Fix to the previous commit
+
+commit 1e9e329c7e4f8a2ed6019bfe980f80c301b4d715
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Aug 26 18:30:06 2013 +0100
+
+    Workaround for a crash in gtk3 version of xfce4-indicator-plugin
+
+commit 4fa3dbe337f29e4029f0c9d0bb7aedd42c691e78
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Aug 26 18:29:17 2013 +0100
+
+    Build fix with gtk3
+
+commit 058544623d9a8c035174972d2a9dc1228dc9e6d8
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sun Aug 25 23:23:04 2013 +0100
+
+    Quick fix of compilation errors after merge of nick/gtk3 branch.
+    
+    Gtk3 plugins (e.g. xfce4-indicator-plugin/master) are not recognized
+    (treated as gtk2 ones).
+
+commit 6faa922db9eb527415d48e5890e663cf7f3fab66
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Apr 22 23:58:10 2013 +0100
+
+    PanelImage: do not reload fixed-size icons on style-updated.
+    
+    Style-updated triggered a lot of flickering in the applications menu
+    on mouse hover events.
+    
+    Are there any use cases where reloading the icons is needed?
+
+commit a406ed5311bbe0929b949f28f0f9afeb398b4f4e
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Apr 22 23:41:28 2013 +0100
+
+    xfce4-panel lib: workaround for ctx menus with scroll buttons.
+
+commit ac4c4e70e7312d133ae3a6885412aa41d9fb11cf
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Thu Apr 18 20:43:29 2013 +0100
+
+    PanelPlugin: workaround for transparency issues.
+    
+    It disables plugin transparency completely (breaking custom background
+    colors, bitmaps and alpha settings). But at least it makes the panel
+    usable with "system style" background settings.
+    
+    How to fix it properly?
+    External plugins work fine but they have their own API for setting
+    the background style.
+
+commit a10342d7d4af2f41204bc036867a619e4cae732e
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Apr 17 21:10:09 2013 +0100
+
+    ArrowButton: better handling of minimum sizes.
+
+commit 38c9dee6624146cac6e4d7596575291d65099a30
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Apr 17 21:09:27 2013 +0100
+
+    PanelImage: better handling of minimum sizes.
+
+commit 334f991cafbbe8d05f5ca9c5dac7ba4bba9a509e
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Apr 17 02:24:58 2013 +0100
+
+    PanelImage: allow scaling the image down (below allocation)
+    
+    Some containers (GtkBox(?)) refuse to allocate their child items below
+    minimum requested size, even if that results in violating their own
+    allocation.
+    
+    Reducing the minimum size allows these containers to iteratively
+    reduce the size of the embedded PanelImage.
+    
+    When priv->size > 0 minimum size must be equal to the natural size.
+    Otherwise icons displayed in menus will be too small (menus use
+    a minimum size).
+
+commit 25cea7e621eb61327165df6b6146295f74192609
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Apr 17 01:57:34 2013 +0100
+
+    ArrowButton: sizing fixes.
+
+commit abec72e6845aa368cd92ba42f54d3d340c517cc0
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Apr 15 23:31:45 2013 +0100
+
+    PanelImage: fixes to previous commit and cleanup.
+    
+    Correction has to be done in all cases, not only when the requested
+    size is derived from allocation.
+
+commit 69b332fef718c00957c85900fe535c6b0a419dd1
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Apr 15 21:34:04 2013 +0100
+
+    PanelImage: reworked workaround for GtkButton sizing issue.
+    
+    It should now work in all scenarios (custom buttons, can_focus=FALSE etc.)
+
+commit e98950b9e5309de21f59305151e6f0028d0c8d5e
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Apr 15 00:09:06 2013 +0100
+
+    PanelImage: better support for non-square icons.
+    
+    I thought this might be the reason for panel buttons growing infinitely.
+    It turned out to be something different but this change still improves
+    the sizing and makes it consistent with xfce_panel_pixbuf_from_source_at_size.
+
+commit 0c99581be09ea220ffee83cf749780893bf513fc
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sun Apr 14 01:09:57 2013 +0100
+
+    panel-image: use style-update signal rather than style-set.
+    
+    Doesn't seem to make any difference here but style-set is deprecated
+    since Gtk+ 3.0.
+
+commit 17fabdc1123be9e191b21375a302020608a8320b
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sun Apr 14 01:08:01 2013 +0100
+
+    Fixed drawing code in panel-image and arrow-button
+    
+    - top-left coordinate at 0,0, not alloc->x,alloc->y
+    - use gdouble instead of gint in _draw
+    - use GtkStyleContext
+    - fix uninitialized alloc variable
+
+commit a682ae47be0485d20b984fbe4e796b1450c226dc
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sun Apr 7 22:49:33 2013 +0100
+
+    Loading external gtk2 panel plugins in gtk3 panel.
+    
+    Addeding X-XFCE-API to the plugin .desktop files to determine which
+    wrapper to use. This falls back to 1.0 wrapper for compatibility with
+    the current plugins.
+    
+    Conflicts:
+    	panel/panel-module.c
+    	panel/panel-plugin-external-wrapper.c
+
+commit 09bd0164aaadc0e124e1425b69cf68df6fb044a4
+Author: Peter de Ridder <peter@xfce.org>
+Date:   Sun Apr 7 23:48:36 2013 +0200
+
+    Change WRAPPER_BIN name to match the wrapper.
+
+commit cdb273e29bae7cdfe70d74e9e907e8dde4c4252b
+Author: Peter de Ridder <peter@xfce.org>
+Date:   Sun Apr 7 23:45:34 2013 +0200
+
+    Wrapper ported for both Gtk+-2 and Gtk+-3
+
+commit 19365cf7735abc3d3ea2d30fba143136d27fc7e1
+Author: Peter de Ridder <peter@xfce.org>
+Date:   Sun Apr 7 23:40:07 2013 +0200
+
+    Added missing .pc file.
+
+commit 358b2728a46bb556f0c5700aea50aaa027cc7ff3
+Author: Peter de Ridder <peter@xfce.org>
+Date:   Sun Apr 7 23:30:40 2013 +0200
+
+    Made libxfce4panel more in sync with gtk3 branch.
+
+commit e2a14728d605dda7df21ee439d9efdd3fcfd7b51
+Author: Peter de Ridder <peter@xfce.org>
+Date:   Sun Apr 7 23:08:37 2013 +0200
+
+    Added GTK+-3 version of libxfce4panel.
+
+commit 69c1239522b65f6fda32924d5d3c933d47494361
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sun Apr 7 22:49:33 2013 +0100
+
+    Loading external gtk3 panel plugins in gtk2 panel.
+    
+    Requires a gtk3 version of libxfce4-panel and wrapper to be compiled
+    from another branch.
+    
+    This commit is only a quick hack to make the plugins to load.
+    It should be reworked (starting from better naming) for a release
+    version.
+
+commit 25ccc0d24eba707b0750640c50693b0ab5b1808f
+Author: Sveinn í Felli <sveinki@nett.is>
+Date:   Wed Nov 27 18:30:35 2013 +0100
+
+    I18n: Update translation is (98%).
+    
+    386 translated messages, 7 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit a313ceaedf3fa00eae5ce702524281f9f14c1868
+Author: Juhani Numminen <juhaninumminen0@gmail.com>
+Date:   Fri Nov 22 18:30:31 2013 +0100
+
+    I18n: Add new translation fi (69%).
+    
+    275 translated messages, 118 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit c4ce1763f3171aadd208eb310f8c22e3119b9fd4
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:16 2013 +0100
+
+    I18n: Update translation ug (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit a0f1dfc63f1af7d7a541ca5326654033a7746577
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:16 2013 +0100
+
+    I18n: Update translation te (50%).
+    
+    199 translated messages, 194 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 7b5bc3a9ca9897f218a46ab41fd0d26b209fda3e
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:16 2013 +0100
+
+    I18n: Update translation sv (69%).
+    
+    273 translated messages, 120 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit db663f655e3a9f6a57dacd6e6fcdb8bca7c7ed87
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:15 2013 +0100
+
+    I18n: Update translation sr (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit dbbfd1fafb16235a18715302da7df0cecde93f96
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:15 2013 +0100
+
+    I18n: Update translation sk (97%).
+    
+    384 translated messages, 9 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 9ce34b7fb806255e932ae621810013951591b0e3
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:15 2013 +0100
+
+    I18n: Update translation si (71%).
+    
+    282 translated messages, 111 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 6088ab1aade9a032aef696f31e5d5af92785b35f
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:14 2013 +0100
+
+    I18n: Update translation ro (97%).
+    
+    384 translated messages, 9 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 1e85798c472ede7b1e320a19e197c52f7e57f6aa
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:14 2013 +0100
+
+    I18n: Update translation pt_BR (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 9976043a13a04a956e7d1c3c9e6b231250378ea7
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:13 2013 +0100
+
+    I18n: Update translation pa (67%).
+    
+    267 translated messages, 126 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 614ffb02a50822455c5f3fb545c6f4b43c951a9d
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:13 2013 +0100
+
+    I18n: Update translation nn (98%).
+    
+    389 translated messages, 4 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 37e25686c9e247b9c00e7d0ee260d260577f61f1
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:12 2013 +0100
+
+    I18n: Update translation nb (83%).
+    
+    328 translated messages, 65 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit bff371479b8f50a98d045b88ee42527ebbbe21ed
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:07 2013 +0100
+
+    I18n: Update translation lt (97%).
+    
+    384 translated messages, 9 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 1e4e5ce94c5073f38090f2aa5ed9a161cd6ff397
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:06 2013 +0100
+
+    I18n: Update translation ko (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 2418bd1b51f3ec3ff2895ada39c154df93501a9d
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:06 2013 +0100
+
+    I18n: Update translation ja (97%).
+    
+    384 translated messages, 9 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 218a941e4c41edbd461a5fe56b9dc2753c0f4856
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Tue Nov 19 18:44:06 2013 +0100
+
+    I18n: Update translation hr (72%).
+    
+    286 translated messages, 107 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit f5b67393a3dfee187b67cc59a2bc1fe461baf3d3
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:05 2013 +0100
+
+    I18n: Update translation gl (89%).
+    
+    350 translated messages, 43 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit fa355a7aa3fd23a745bfe23fa01ae62dced31a96
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:05 2013 +0100
+
+    I18n: Update translation eu (98%).
+    
+    389 translated messages, 4 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit fac2322b2f8b7059107f50e77779b16771a8513c
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:04 2013 +0100
+
+    I18n: Update translation et (89%).
+    
+    350 translated messages, 43 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 8176a75a018a6a19019daa53ffe541d87a495322
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:03 2013 +0100
+
+    I18n: Update translation en_AU (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 6e2204a2c9f38ecded65bd68606f76105a22b7e6
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:03 2013 +0100
+
+    I18n: Update translation el (97%).
+    
+    385 translated messages, 8 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 1025cfbec0cd46b30a01ae27319f34a71152d43e
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:02 2013 +0100
+
+    I18n: Update translation ca (97%).
+    
+    384 translated messages, 9 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit ec7842d5ee3c0a81eacf86bd357f23e66054b55a
+Author: Xfce <transifex@xfce.org>
+Date:   Tue Nov 19 18:44:01 2013 +0100
+
+    I18n: Update translation bn (73%).
+    
+    288 translated messages, 105 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit f164d484549f45b6cedf0835dae1a5aa507048fe
+Author: Sveinn í Felli <sveinki@nett.is>
+Date:   Sun Nov 17 18:30:33 2013 +0100
+
+    I18n: Update translation is (96%).
+    
+    381 translated messages, 12 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 9bef47bb3da5669caf7c261412cffb938b7cc7bf
+Author: Puretech <terjemah.puretech@gmail.com>
+Date:   Thu Nov 14 12:30:36 2013 +0100
+
+    I18n: Add new translation ms (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 346a35155133cffde9d5524685384cae66573dd6
+Author: Cedric31 <cvalmary@yahoo.fr>
+Date:   Mon Nov 11 12:30:41 2013 +0100
+
+    I18n: Add new translation oc (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 813c948cb8387deb7a7c8adae16bf9e65c9d1afd
+Author: Aputsiaĸ Niels Janussen <aj@isit.gl>
+Date:   Fri Nov 8 18:30:40 2013 +0100
+
+    I18n: Update translation da (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 9093d30258a635936a490a0d88ab955aba685fee
+Author: Sveinn í Felli <sveinki@nett.is>
+Date:   Thu Nov 7 00:30:32 2013 +0100
+
+    I18n: Update translation is (96%).
+    
+    379 translated messages, 14 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 694073b5e0c66b32db513bfc50236563bf3bd1ee
+Author: Sveinn í Felli <sveinki@nett.is>
+Date:   Sat Nov 2 12:30:33 2013 +0100
+
+    I18n: Update translation is (95%).
+    
+    374 translated messages, 19 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit d8d64ec98ed117510f0a5e10d5637c2ba2a389ee
+Author: Pablo Lezaeta <prflr88@gmail.com>
+Date:   Wed Oct 30 12:30:33 2013 +0100
+
+    I18n: Update translation es (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 9c03db0d7df5e3903da9a234f4f22e0ff615b9f1
+Author: Pablo Lezaeta <prflr88@gmail.com>
+Date:   Wed Oct 30 06:30:32 2013 +0100
+
+    I18n: Update translation es (93%).
+    
+    368 translated messages, 25 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit a32720764e43ca2eb6d068403e73dbfd31df360a
+Author: Pablo Lezaeta <prflr88@gmail.com>
+Date:   Tue Oct 29 00:30:32 2013 +0100
+
+    I18n: Update translation es (90%).
+    
+    354 translated messages, 39 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 3ea5d210b223f6dbb1c8a2571eabe3120e5e59de
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Sat Oct 26 00:30:35 2013 +0200
+
+    I18n: Update translation hr (71%).
+    
+    282 translated messages, 111 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit fa2397aa3ecfe523e63eb2e0ea68f84b6c2ba750
+Author: Pablo Lezaeta <prflr88@gmail.com>
+Date:   Wed Oct 23 12:30:36 2013 +0200
+
+    I18n: Update translation es (89%).
+    
+    353 translated messages, 40 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit cdc63965f25d1184165b981538babd14bacab3e6
+Author: hernan144 <hernan.alvarez.guerra@gmail.com>
+Date:   Fri Oct 18 18:30:31 2013 +0200
+
+    I18n: Update translation es (88%).
+    
+    348 translated messages, 45 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit e85d74e52330bd66ec12dbc9a9c6a7e5a3b6a916
+Author: Sveinn í Felli <sveinki@nett.is>
+Date:   Wed Oct 16 18:30:34 2013 +0200
+
+    I18n: Update translation is (91%).
+    
+    358 translated messages, 35 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 9ac41611ff735329ff830fc07b9d612840392d7b
+Author: hernan144 <hernan.alvarez.guerra@gmail.com>
+Date:   Sun Oct 13 18:30:31 2013 +0200
+
+    I18n: Update translation es (86%).
+    
+    340 translated messages, 53 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 84da883a645454aa0031e3a8f2c6d480bab1d587
+Author: hernan144 <hernan.alvarez.guerra@gmail.com>
+Date:   Fri Oct 11 18:30:36 2013 +0200
+
+    I18n: Update translation es (86%).
+    
+    339 translated messages, 54 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 0ad94f87f3fb91850975b19b8ffad52db70fa118
+Author: Pablo Lezaeta <prflr88@gmail.com>
+Date:   Thu Oct 10 00:30:30 2013 +0200
+
+    I18n: Update translation es (86%).
+    
+    338 translated messages, 55 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 9a79533425f38967283af5778e4ceecf4bfde39e
+Author: Sveinn í Felli <sveinki@nett.is>
+Date:   Wed Oct 9 18:30:31 2013 +0200
+
+    I18n: Update translation is (86%).
+    
+    340 translated messages, 53 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit d6ea49e487d22bf4b9e938c3fe39e06b1165f19a
+Author: Cheng-Chia Tseng <pswo10680@gmail.com>
+Date:   Tue Oct 8 18:30:33 2013 +0200
+
+    I18n: Update translation zh_TW (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 8baa7e316ab13478b42475550e71af932a99be31
+Author: Walter Cheuk <wwycheuk@gmail.com>
+Date:   Tue Oct 8 12:30:34 2013 +0200
+
+    I18n: Add new translation zh_HK (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit bf00cec33fbd6f470fb7e4d6207964046e8d40de
+Author: cri <cri.penta@gmail.com>
+Date:   Sun Oct 6 12:30:30 2013 +0200
+
+    I18n: Update translation it (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 0f971787a0df5234f953651f57b0eafa0361c78a
+Author: hjudt <h.judt@gmx.at>
+Date:   Wed Oct 2 00:30:35 2013 +0200
+
+    I18n: Update translation de (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit d0c405f2e57dd1cf0e9eb921b15f716cd3fbba4b
+Author: cybercop <cybercop_montana@abv.bg>
+Date:   Sun Sep 29 18:30:31 2013 +0200
+
+    I18n: Update translation bg (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit d16bc78412adac1285a6ebf6a59e91fb9975733c
+Author: Sveinn í Felli <sveinki@nett.is>
+Date:   Wed Sep 25 06:30:30 2013 +0200
+
+    I18n: Update translation is (83%).
+    
+    328 translated messages, 65 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 73aeeca578c11e137db63a56dc09fd98e9205999
+Author: Pablo Lezaeta <prflr88@gmail.com>
+Date:   Tue Sep 24 06:30:31 2013 +0200
+
+    I18n: Update translation es (83%).
+    
+    327 translated messages, 66 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 12bdfc6899718466b107c4c2f21f20542fcef560
+Author: Pjotr123 <pjotrvertaalt@gmail.com>
+Date:   Thu Sep 19 18:30:42 2013 +0200
+
+    I18n: Update translation nl (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit b322851bcbac5b607d03bf4ebd56f20367b037b3
+Author: farukuzun <farukuzun@mail.com>
+Date:   Thu Sep 12 12:30:30 2013 +0200
+
+    I18n: Update translation tr (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit bc8b80c3bf1d396f5edab279a8a8ff8300daa9b1
+Author: Pablo Lezaeta <prflr88@gmail.com>
+Date:   Wed Sep 11 06:30:30 2013 +0200
+
+    I18n: Update translation es (76%).
+    
+    302 translated messages, 91 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 4d06c74f7542073f1db1188660d765cc8df53500
+Author: Necdet Yücel <necdetyucel@gmail.com>
+Date:   Tue Sep 10 18:30:30 2013 +0200
+
+    I18n: Update translation tr (93%).
+    
+    369 translated messages, 24 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 5f77597d788de812c3893f1dbeaa61a7a4a640f3
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Tue Sep 10 06:30:39 2013 +0200
+
+    I18n: Add new translation hr (58%).
+    
+    229 translated messages, 164 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit ea7d3f39be4c6e42052517fb3a51858d7ac890fb
+Author: 玉堂白鹤 <yjwork@qq.com>
+Date:   Mon Sep 9 12:30:40 2013 +0200
+
+    I18n: Update translation zh_CN (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 1cd0223901a031829db27e9343d3af85b2c15ea5
+Author: Karim Oulad Chalha <herr.linux88@gmail.com>
+Date:   Sun Sep 8 18:30:41 2013 +0200
+
+    I18n: Update translation ar (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit a5f2adec0ddfd625bf2aa69113b145eedaf28caf
+Author: Yarema aka Knedlyk <yupadmin@gmail.com>
+Date:   Mon Sep 2 06:30:40 2013 +0200
+
+    I18n: Add new translation uk (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 1304a095fe063626ce0d7a78b835d48974f2ec2e
+Author: Nucleo <nucleo@indamail.hu>
+Date:   Sat Aug 31 06:30:38 2013 +0200
+
+    I18n: Update translation hu (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit d0df18e551350009a61c1ecc45718e7284a0c71f
+Author: Sérgio Marques <smarquespt@gmail.com>
+Date:   Fri Aug 30 00:30:44 2013 +0200
+
+    I18n: Update translation pt (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 0f188e7334ffa9bec4340ddbe01d4840a0d3b69a
+Author: Noskcaj <noskcaj@ubuntu.com>
+Date:   Mon Aug 26 00:30:39 2013 +0200
+
+    I18n: Update translation en_GB (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit ed3f7e8834b63fd9e32931133da9000c04ed94e8
+Author: theppitak <theppitak@gmail.com>
+Date:   Wed Aug 21 06:30:38 2013 +0200
+
+    I18n: Update translation th (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 74a715e86beed508cd3149b97fd5d30e9d333471
+Author: Piotr Strębski <strebski@o2.pl>
+Date:   Mon Aug 19 18:30:41 2013 +0200
+
+    I18n: Update translation pl (99%).
+    
+    392 translated messages, 1 untranslated message.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 4f4f531e098a6c0100be7720bda4a614745bbfb9
+Author: asvl <alyoshin.s@gmail.com>
+Date:   Sat Aug 17 18:30:40 2013 +0200
+
+    I18n: Update translation ru (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 1f388baf197da976a6a7d37585c4980a4a0fb4d3
+Author: theppitak <theppitak@gmail.com>
+Date:   Sat Aug 17 12:30:39 2013 +0200
+
+    I18n: Add new translation th (51%).
+    
+    204 translated messages, 189 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit c63b91937b06a40257b5ee091bd3bd4050d97daa
+Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
+Date:   Thu Aug 15 12:30:44 2013 +0200
+
+    I18n: Update translation kk (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 7660e1f36ca17ee20d2612a1ac00fc8f3f65640b
+Author: The Idiot <brian.peraza@gmail.com>
+Date:   Mon Aug 12 12:30:45 2013 +0200
+
+    I18n: Update translation es (73%).
+    
+    287 translated messages, 106 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 659a5769c2153d66be831419d5d8de82067fcfec
+Author: Milozzy <marco.sting@gmail.com>
+Date:   Sat Aug 10 06:30:39 2013 +0200
+
+    I18n: Update translation it (99%).
+    
+    392 translated messages, 1 untranslated message.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit cdd293ae733679217ad0e3b68f3064bf4b42d5d0
+Author: pharamir <pamirmatos@gmail.com>
+Date:   Wed Aug 7 18:30:40 2013 +0200
+
+    I18n: Update translation es (69%).
+    
+    272 translated messages, 121 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 93e047695c79ed74a69078ea7b4612712583ce8d
+Author: Anonymous <noreply@xfce.org>
+Date:   Mon Aug 5 18:30:44 2013 +0200
+
+    I18n: Update translation id (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit d47d9cd390a26f67dd2e9a653c4caf21bec0733d
+Author: MC <correomc2000-ing@yahoo.es>
+Date:   Mon Aug 5 18:30:44 2013 +0200
+
+    I18n: Update translation es (65%).
+    
+    257 translated messages, 136 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit cf9a87f4cd3699425661acd4c2112808fc453c09
+Author: Anonymous <noreply@xfce.org>
+Date:   Mon Aug 5 12:30:40 2013 +0200
+
+    I18n: Update translation tr (93%).
+    
+    368 translated messages, 25 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 4a08b080011710d9d55789af3ef98457437c237e
+Author: Yaron Shahrabani <sh.yaron@gmail.com>
+Date:   Sat Aug 3 12:30:47 2013 +0200
+
+    I18n: Update translation he (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit d89b3c56e4b83f9528c3cf2261356af30934ccfe
+Author: jc1 <jc1.quebecos@gmail.com>
+Date:   Sat Aug 3 12:30:47 2013 +0200
+
+    I18n: Update translation fr (100%).
+    
+    393 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit eb2098a7d18df0a2ecd995f781cc7c861337e1f6
+Author: Nick Schermer <nick@xfce.org>
+Date:   Fri Aug 2 22:00:38 2013 +0200
+
+    Use new GarconGtkMenu.
+
+commit 2d8c0c5a1952e3214d8a27c13b308dcb2a4656d2
+Author: Pjotr123 <pjotrvertaalt@gmail.com>
+Date:   Wed Jul 31 18:30:48 2013 +0200
+
+    I18n: Update translation nl (100%).
+    
+    395 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 6147a9285ecf9b7f7568a60a1fe51097e46198b2
+Author: Sungjin Gang <potopro@gmail.com>
+Date:   Wed Jul 31 18:30:48 2013 +0200
+
+    I18n: Update translation ko (100%).
+    
+    395 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 155fef995e303d05c25af39791d23fbe07be81f3
+Author: MC <correomc2000-ing@yahoo.es>
+Date:   Wed Jul 31 18:30:48 2013 +0200
+
+    I18n: Update translation es (65%).
+    
+    257 translated messages, 138 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 52a96b881c28bf863201833d82f94cd2df4949e7
+Author: Anonymous <noreply@xfce.org>
+Date:   Wed Jul 31 12:30:41 2013 +0200
+
+    I18n: Update translation ug (100%).
+    
+    395 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 1b9213b3a8039c65fd926f8abaf233f536f41b80
+Author: AK <ak099@mail.ru>
+Date:   Wed Jul 31 12:30:41 2013 +0200
+
+    I18n: Update translation ru (99%).
+    
+    393 translated messages, 2 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 59cc2a7a8fd234776f39c34a183f35a20ce0a742
+Author: Rafael Ferreira <rafael.f.f1@gmail.com>
+Date:   Tue Jul 30 18:30:45 2013 +0200
+
+    I18n: Update translation pt_BR (100%).
+    
+    395 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 538614ec6a906d9d8b0ff181e9e22afdba04a92d
+Author: jc1 <jc1.quebecos@gmail.com>
+Date:   Tue Jul 30 18:30:45 2013 +0200
+
+    I18n: Update translation fr (100%).
+    
+    395 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 27a5dfcb89b7ac0bce769b91d4dbf5b998b76bc0
+Author: MC <correomc2000-ing@yahoo.es>
+Date:   Tue Jul 30 18:30:45 2013 +0200
+
+    I18n: Update translation es (60%).
+    
+    239 translated messages, 156 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 926ea045f813973924fbb33d9fc74a5f18357720
+Author: k3lt01 <keltoiboy@gmail.com>
+Date:   Tue Jul 30 12:30:45 2013 +0200
+
+    I18n: Update translation en_AU (100%).
+    
+    395 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 8af162b77612ca784dc10e32fd0077ec26993d06
+Author: cybercop <cybercop_montana@abv.bg>
+Date:   Tue Jul 30 12:30:45 2013 +0200
+
+    I18n: Update translation bg (100%).
+    
+    395 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit b28eef61923e1fcd0750a1dafbb232905a9284c4
+Author: Nick Schermer <nick@xfce.org>
+Date:   Mon Jul 29 19:01:52 2013 +0200
+
+    Bump all glade gtk versions to 2.24.
+
+commit 1bb2209b1fba3c128d9596fa9d29b17649f3fca0
+Author: Nick Schermer <nick@xfce.org>
+Date:   Mon Jul 29 18:59:38 2013 +0200
+
+    Tasklist: Make middle-click action configurable.
+    
+    Allow the set different actions to middle-click:
+    
+    Nothing:
+    Nothing happens.
+    
+    Close Window:
+    Do i have to explain?
+    
+    Minimize Window:
+    Only minimize the window, this also means button-1
+    events never minimize, only activate. So you never
+    get lost in minimized windows anymore.
+
+commit d2a8baaf7b972ae5ea5ead7801736fee80237678
+Author: MC <correomc2000-ing@yahoo.es>
+Date:   Mon Jul 29 18:30:43 2013 +0200
+
+    I18n: Update translation es (59%).
+    
+    233 translated messages, 159 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 76fdd30d90ba1b48d6bd7d154d7c19140774ca1a
+Author: k3lt01 <keltoiboy@gmail.com>
+Date:   Mon Jul 29 12:30:56 2013 +0200
+
+    I18n: Add new translation en_AU (100%).
+    
+    392 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit db012e9468c61f60cb4e0f2a9a48d3d62f36560c
+Author: Nick Schermer <nick@xfce.org>
+Date:   Mon Jul 29 10:20:12 2013 +0200
+
+    Directorymenu: Pass path to argument (bug #10270).
+
+commit efac2544c34c69bcb752e403837f623cb8540b49
+Author: 潇波 周 <zhouxiaobo.500@gmail.com>
+Date:   Sat Jul 27 18:30:39 2013 +0200
+
+    I18n: Update translation zh_CN (100%).
+    
+    392 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 6c455f70929fdcfdc967bb6765fb5a8c03acdd2e
+Author: MC <correomc2000-ing@yahoo.es>
+Date:   Fri Jul 26 18:30:41 2013 +0200
+
+    I18n: Add new translation es (56%).
+    
+    222 translated messages, 170 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit bfc51c8a321b48fdc45180cbd4e83e55ce259130
+Author: Kris Thomsen <lakristho@gmail.com>
+Date:   Thu Jul 25 00:30:38 2013 +0200
+
+    I18n: Update translation da (99%).
+    
+    390 translated messages, 2 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit a96d3c83f4e5e606ed1da35e4a08f546c838958a
+Author: Noskcaj <noskcaj@ubuntu.com>
+Date:   Wed Jul 24 00:30:37 2013 +0200
+
+    I18n: Update translation en_GB (100%).
+    
+    392 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit fc04624681a68a0ac6306f1e6ec1ea4daf865c97
+Author: Anonymous <noreply@xfce.org>
+Date:   Thu Jul 11 12:30:51 2013 +0200
+
+    I18n: Update translation ug (100%).
+    
+    392 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 3991eeffc2db9fce59d1aa9f86a174f3eb842a7e
+Author: 潇波 周 <zhouxiaobo.500@gmail.com>
+Date:   Wed Jul 10 12:30:41 2013 +0200
+
+    I18n: Update translation zh_CN (99%).
+    
+    390 translated messages, 2 untranslated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit f178771a3fe79b77f843a33d174e786b2853a6d0
+Author: cybercop <cybercop_montana@abv.bg>
+Date:   Tue Jul 9 18:30:40 2013 +0200
+
+    I18n: Update translation bg (100%).
+    
+    392 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit f7cfb569c1af0813a6adb4db9f982eb2bbd9fdc3
+Author: Cheng-Chia Tseng <pswo10680@gmail.com>
+Date:   Sun Jul 7 12:12:49 2013 +0200
+
+    I18n: Update translation zh_TW (100%).
+    
+    392 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 33192323a1ce95930ae3e1b48df3391f0403b7d2
+Author: unhammer <unhammer+dill@mm.st>
+Date:   Fri Jul 5 23:01:51 2013 +0200
+
+    I18n: Add new translation nn (99%).
+    
+    392 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 9d75e9597fb0549aa6f736264922dd67ab97df2a
+Author: cri <cri.penta@gmail.com>
+Date:   Fri Jul 5 23:01:51 2013 +0200
+
+    I18n: Add new translation it (99%).
+    
+    392 translated messages.
+    
+    Transifex (https://www.transifex.com/projects/p/xfce/).
+
+commit 82e448803f997474f03a18173c5cecaf6141dcbc
+Author: Nick Schermer <nick@xfce.org>
+Date:   Tue Jul 2 22:26:24 2013 +0200
+
+    I18n: Remove broken / unsupported translations.
+    
+    See http://users.xfce.org/~nick/broken-i18n/ for files and logs.
+    
+    Use https://www.transifex.com/projects/p/xfce/ to upload fixed versions or request a translation team.
+
+commit 459529cf560f722a83e99393f011b70b0f8a9fa7
+Author: Imre Benedek <nucleo@indamail.hu>
+Date:   Fri Jun 21 02:29:52 2013 +0200
+
+    l10n: Updated Hungarian (hu) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 4d27000e61016ac0389ed70df27dc8709d7e4ff1
+Author: Piotr Strębski <strebski@o2.pl>
+Date:   Tue Jun 11 14:54:14 2013 +0200
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 379 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c6824279086138349ee30d4e426fa82ec55a421c
+Author: Piotr Strębski <strebski@o2.pl>
+Date:   Tue Jun 11 14:53:19 2013 +0200
+
+    l10n: Updated Polish (pl) translation to 94%
+    
+    New status: 370 messages complete with 9 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c62f43c4eb17c3caad8b1b3e3b97e8123246f7bb
+Author: Neliton Pereira Junior <nelitonpjr@gmail.com>
+Date:   Mon Jun 10 00:13:22 2013 +0200
+
+    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit a9d00a619c35f7b129105db4a77ea14f16f42548
+Author: Neliton Pereira Junior <nelitonpjr@gmail.com>
+Date:   Sun Jun 9 23:41:11 2013 +0200
+
+    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 905aa9d67e5f89f252fbe9d63164e1970c2ce95e
+Author: Neliton Pereira Junior <nelitonpjr@gmail.com>
+Date:   Sun Jun 9 23:15:45 2013 +0200
+
+    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 503b2da5789cd070d577c7f1d1b9f217903b5a31
+Author: Neliton Pereira Junior <nelitonpjr@gmail.com>
+Date:   Sun Jun 9 22:51:06 2013 +0200
+
+    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 29add6c83ca246553b1bc1d9230b206daa30adab
+Author: Michał Olber <michal.olber@osworld.pl>
+Date:   Fri Jun 7 08:54:40 2013 +0200
+
+    l10n: Updated Polish (pl) translation to 93%
+    
+    New status: 366 messages complete with 13 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 082927e52650e098fe797b2fbe4d1375c1219d02
+Author: Michał Olber <michal.olber@osworld.pl>
+Date:   Fri Jun 7 08:51:44 2013 +0200
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 378 messages complete with 1 fuzzy and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 34e7544805d09a986ec6af724af07be85c7b151f
+Author: Michał Olber <michal.olber@osworld.pl>
+Date:   Fri Jun 7 08:50:28 2013 +0200
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 379 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c4a8f7bd3725c7d89e86d91e092a2f062b92ff92
+Author: Gheyret Kenji <gheyret@yahoo.com>
+Date:   Wed Jun 5 08:19:52 2013 +0200
+
+    l10n: Updated Uyghur (ug) translation to 99%
+    
+    New status: 390 messages complete with 1 fuzzy and 1 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 526a8e7d7801c3dc809fb869f6e8dea55506efa9
+Author: Kiril Kirilov <cybercop_montana@abv.bg>
+Date:   Mon May 27 13:28:40 2013 +0200
+
+    l10n: Updated Bulgarian (bg) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 22fc7ef4ff133954dfbd766776ede6206cf16c2c
+Author: Urmas D <davian818@gmail.com>
+Date:   Mon May 20 22:00:14 2013 +0200
+
+    l10n: Updated Russian (ru) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 797b94cfbb35074ab72481d588b2465734fc1cb8
+Author: Seong-ho Cho <darkcircle.0426@gmail.com>
+Date:   Sun May 12 08:51:25 2013 +0200
+
+    l10n: Updated Korean (ko) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 93cd40444336c1b077a9a0a31e3f216384effbfe
+Author: Ardjuna <asyura.x@gmail.com>
+Date:   Thu May 9 05:31:04 2013 +0200
+
+    l10n: Updated Indonesian (id) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c2926830948705245492674eb8aedcb3bc9cae77
+Author: Yarema aka Knedlyk <yupadmin@gmail.com>
+Date:   Tue May 7 17:05:06 2013 +0200
+
+    l10n: Updated Ukrainian (uk) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit e50d250caa9348de533e89d45d58ccd27566aace
+Author: Yarema aka Knedlyk <yupadmin@gmail.com>
+Date:   Mon May 6 10:34:31 2013 +0200
+
+    l10n: Updated Ukrainian (uk) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 2aff382f9b0cf39faba41ac4dc88b7ff2476f420
+Author: Cheng-Chia Tseng <pswo10680@gmail.com>
+Date:   Fri May 3 12:36:41 2013 +0200
+
+    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit f82a0b06a0e1b1d1bd156bbbcf03d9233132de60
+Author: Pjotr vertaalt <pjotrvertaalt@gmail.com>
+Date:   Thu May 2 18:46:13 2013 +0200
+
+    l10n: Updated Dutch (Flemish) (nl) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 00484a932da4535b228fb76f9739a007f680f2d4
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Thu May 2 18:36:25 2013 +0200
+
+    l10n: Updated Croatian (hr) translation to 87%
+    
+    New status: 342 messages complete with 0 fuzzies and 50 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit b91a9fe5c6c774da233001df7b3fe5545e8ea387
+Author: Cristian Marchi <cri.penta@gmail.com>
+Date:   Wed May 1 19:38:10 2013 +0200
+
+    l10n: Updated Italian (it) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit e2e1b15927753df5e05bbc28f672ffa1d871c682
+Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
+Date:   Wed May 1 04:50:36 2013 +0200
+
+    l10n: Updated Kazakh (kk) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit df5914cddede5c82c9592a6c345c324584bedf9b
+Author: jc jc1 <jc1.quebecos@gmail.com>
+Date:   Tue Apr 30 10:07:50 2013 +0200
+
+    l10n: Updated French (fr) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 272d6cd2b88e4d774044bf8274f64d90149ce3a4
+Author: Kiril Kirilov <cybercop_montana@abv.bg>
+Date:   Tue Apr 30 06:57:38 2013 +0200
+
+    l10n: Updated Bulgarian (bg) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 3906abd30474520649c979ad2993c5287cf2b098
+Author: Саша Петровић <salepetronije@gmail.com>
+Date:   Mon Apr 29 15:28:52 2013 +0200
+
+    l10n: Updated Serbian (sr) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 5e8cebcbfafc50393954475c447da9dded603480
+Author: Sergio Marques <smarquespt@gmail.com>
+Date:   Mon Apr 29 12:10:47 2013 +0200
+
+    l10n: Updated Portuguese (pt) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 5db56027a6cb60991ea436ea76dfc615bb9942b3
+Author: André Miranda <andreldm1989@gmail.com>
+Date:   Sun Apr 28 23:55:49 2013 +0200
+
+    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
+    
+    New status: 392 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit b3c92349f9dd7c973996b306e117fc66e5100100
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sun Apr 28 14:35:30 2013 +0100
+
+    Tasklist: Pushed a patch for #8096 (close a window on middle click)
+    
+    A patch submitted by André Miranda (thanks!) with minor corrections.
+
+commit 74df6cab0ec6d783ba7ab7ae45fcc6aef168c0df
+Author: Kiril Kirilov <cybercop_montana@abv.bg>
+Date:   Sat Apr 27 13:58:25 2013 +0200
+
+    l10n: Updated Bulgarian (bg) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 2cc7c43d034c7edfd4bd7d1cbb0583f642c092d2
+Author: Pjotr vertaalt <pjotrvertaalt@gmail.com>
+Date:   Thu Apr 25 19:06:53 2013 +0200
+
+    l10n: Updated Dutch (Flemish) (nl) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c047fff7997d91943f8efcaade1ebc517367a71a
+Author: Evaggelos Balaskas <ebalaskas@ebalaskas.gr>
+Date:   Mon Apr 22 19:39:01 2013 +0200
+
+    l10n: Updated Greek (el) translation to 98%
+    
+    New status: 387 messages complete with 1 fuzzy and 3 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 41611a67c3e151eaee0ffaed9390fcc9061fb74b
+Author: Michal Várady <miko.vaji@gmail.com>
+Date:   Thu Apr 18 19:37:02 2013 +0200
+
+    l10n: Updated Czech (cs) translation to 98%
+    
+    New status: 386 messages complete with 2 fuzzies and 3 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit f730ac73b73748314f3624a14b389f126daa5972
+Author: Cheng-Chia Tseng <pswo10680@gmail.com>
+Date:   Thu Apr 18 16:47:38 2013 +0200
+
+    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c266a0a7dd7807500b7199df6f8fe78c49e79b78
+Author: Imre Benedek <nucleo@indamail.hu>
+Date:   Sun Apr 14 03:35:23 2013 +0200
+
+    l10n: Updated Hungarian (hu) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 0843a731065aecf3eb0039870f9c3b3f0b5a2124
+Author: Seong-ho Cho <darkcircle.0426@gmail.com>
+Date:   Fri Apr 12 19:16:27 2013 +0200
+
+    l10n: Updated Korean (ko) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 27dc5ba4025e9888ffd68113211ddc9693ecbe01
+Author: محمد الحرقان <malham1@gmail.com>
+Date:   Wed Apr 10 18:29:21 2013 +0200
+
+    l10n: Updated Arabic (ar) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 0c1006f024404f69790b63965d8073660faadf50
+Author: Rafael Ferreira <rafael.f.f1@gmail.com>
+Date:   Sun Apr 7 17:37:50 2013 +0200
+
+    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit ec508823542a9317e60b8b029782f018eb43c10b
+Author: Саша Петровић <salepetronije@gmail.com>
+Date:   Fri Apr 5 14:33:10 2013 +0200
+
+    l10n: Updated Serbian (sr) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c71954bd92a9db9046b51c422c86f6061727cb6c
+Author: Piotr Sokół <psokol@jabster.pl>
+Date:   Thu Apr 4 11:30:11 2013 +0200
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 378 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit d243dceef146ab61cf82066b548cad7b981d7b6e
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Thu Apr 4 05:24:34 2013 +0200
+
+    l10n: Updated Croatian (hr) translation to 87%
+    
+    New status: 341 messages complete with 0 fuzzies and 50 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 24d5634f2d13d1ff44dbbdf6dbf34d2ea27dd1ea
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Apr 3 23:58:19 2013 +0100
+
+    ApplicationsMenu: support for non-square icons and layout fixes
+    
+    Switched to GtkImage for the button icon. It works better with non-square
+    icons. Slightly adjusted the button layout (spacing) to match other
+    plugins&HIG.
+    
+    It might be a good idea to move contents of the _size_changed method to
+    a timeout event (loading icon etc.).
+
+commit fb747e80da2bdc568354c8090ca0c9d05acace2c
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Apr 3 23:49:02 2013 +0100
+
+    ApplicationsMenu: Update the icon in the config dialog
+    
+    ...after closing the icon chooser.
+
+commit 65e9712bdd3f1f7013856ff8af0e311a57fa8d34
 Author: Andrzej <ndrwrdck@gmail.com>
 Date:   Wed Apr 3 22:33:51 2013 +0100
 
@@ -13,10 +1806,616 @@
     Icons were occasionally stretched to unnatural aspect ratio.
     This could be observed e.g. in applications menu plugin in multi-row
     panels and/or non-square icons.
-    
-    (cherry picked from commit 65e9712bdd3f1f7013856ff8af0e311a57fa8d34)
-
-commit a51135ef6b529e53462ed4e06825f28dcbe1d5b2
+
+commit 791ab4d9f75fe2916cfffeca225a7c52ef5290c6
+Author: Nick Schermer <nick@xfce.org>
+Date:   Sat Mar 23 13:34:44 2013 +0100
+
+    Install XfcePanelPlugin properties at once.
+    
+    Also use direct pspec notify to avoid lookup.
+
+commit 157e3165ec1b72d9773d476351f15c6a4583fd92
+Author: Sergey Alyoshin <alyoshin.s@gmail.com>
+Date:   Fri Mar 29 19:00:37 2013 +0100
+
+    l10n: Updated Russian (ru) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c91a4f1b8ca4f34c43685da902221f120745d979
+Author: Roman K <mrdoctorwho@gmail.com>
+Date:   Thu Mar 28 12:07:34 2013 +0100
+
+    l10n: Updated Russian (ru) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit b1c82eefd10c132b952252782db4fcaa8edeb6fe
+Author: Seong-ho Cho <darkcircle.0426@gmail.com>
+Date:   Sun Mar 24 16:06:28 2013 +0100
+
+    l10n: Updated Korean (ko) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 4c7b8710f8328f33febc9125b8dabaa648131748
+Author: Yarema aka Knedlyk <yupadmin@gmail.com>
+Date:   Sat Mar 23 20:48:33 2013 +0100
+
+    l10n: Updated Ukrainian (uk) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 23a47644c37178e65c1abca115a8d3a488ec72c2
+Author: Ardjuna <asyura.x@gmail.com>
+Date:   Sat Mar 23 16:29:03 2013 +0100
+
+    l10n: Updated Indonesian (id) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit dca7371e96c70f46f15db3addfca487f703532f4
+Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
+Date:   Fri Mar 22 23:52:57 2013 +0100
+
+    l10n: Updated Spanish (Castilian) (es) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 43e142830cb10a7cd056df72a84e567e69ce7441
+Author: Edoardo Maria Elidoro <edoardo.elidoro@gmail.com>
+Date:   Thu Mar 21 15:24:17 2013 +0100
+
+    l10n: Updated Italian (it) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 15366b7d4909fefb796264e1c7747867897d79b5
+Author: Kamil Polczak <elderlinx@gmail.com>
+Date:   Wed Mar 20 20:41:55 2013 +0100
+
+    l10n: Updated Polish (pl) translation to 93%
+    
+    New status: 364 messages complete with 1 fuzzy and 26 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 95f4ea8b3339f6b485a5c1b7216d29a8d1264354
+Author: Kamil Polczak <elderlinx@gmail.com>
+Date:   Wed Mar 20 20:40:41 2013 +0100
+
+    l10n: Updated Polish (pl) translation to 93%
+    
+    New status: 364 messages complete with 14 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 2de6386ad6f428f49775735e0c717f9a29f1d357
+Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
+Date:   Wed Mar 20 17:40:54 2013 +0100
+
+    l10n: Updated Kazakh (kk) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 0ec67de008acd78943fc0b436b33b24e120ecc02
+Author: Саша Петровић <salepetronije@gmail.com>
+Date:   Wed Mar 20 13:25:03 2013 +0100
+
+    l10n: Updated Serbian (sr) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 005684459638da0354426867cb1b0d6379902954
+Author: Nick Schermer <nick@xfce.org>
+Date:   Tue Mar 19 20:54:57 2013 +0100
+
+    Only use names from the /posix directory.
+    
+    This does not mean we also enforce posix timezones,
+    users can prepend that them selfs if they want, its
+    just about avoiding duplicate names.
+
+commit 45f8b8fbd93ac3ca5b0d150e23b87846e7599c6a
+Author: Nick Schermer <nick@xfce.org>
+Date:   Tue Mar 19 20:30:50 2013 +0100
+
+    Add completion for zoneinfo names.
+    
+    Unser the assumption this is located in /usr/share/zoneinfo.
+
+commit 77f629dfc33cc5cc2a6c7075d797e7fd04e9c8e5
+Author: jc jc1 <jc1.quebecos@gmail.com>
+Date:   Tue Mar 19 10:21:56 2013 +0100
+
+    l10n: Updated French (fr) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 0f5e89edfb5e8ee7ab9c54328162cde024a64289
+Author: jc jc1 <jc1.quebecos@gmail.com>
+Date:   Tue Mar 19 10:20:33 2013 +0100
+
+    l10n: Updated French (fr) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c8b2ad17b3cc84cb99384d64ff9caf6565e3593f
+Author: Sergio Marques <smarquespt@gmail.com>
+Date:   Mon Mar 18 18:13:33 2013 +0100
+
+    l10n: Updated Portuguese (pt) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit b92c132eb32c2326d4d97b58e7132ee377846802
+Author: Pjotr vertaalt <pjotrvertaalt@gmail.com>
+Date:   Mon Mar 18 14:07:54 2013 +0100
+
+    l10n: Updated Dutch (Flemish) (nl) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 46ab7590e27b03c8587e88ad6c5181366b1679d7
+Author: Cheng-Chia Tseng <pswo10680@gmail.com>
+Date:   Mon Mar 18 11:56:29 2013 +0100
+
+    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit fcef0e1a27773d0e5c3d6f0b5a75bb6db1a1990f
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Sun Mar 17 18:45:34 2013 +0100
+
+    l10n: Updated Croatian (hr) translation to 86%
+    
+    New status: 339 messages complete with 0 fuzzies and 52 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 98e19133acf63807e4f9408339fc2b4a6ce8d9a1
+Author: Seong-ho Cho <darkcircle.0426@gmail.com>
+Date:   Sun Mar 17 16:32:43 2013 +0100
+
+    l10n: Updated Korean (ko) translation to 100%
+    
+    New status: 391 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit df13f26e5442134ab3c4c2a9ed8e9e41bdf3148e
+Author: Nick Schermer <nick@xfce.org>
+Date:   Sun Mar 17 14:22:53 2013 +0100
+
+    Clock: Improve tooltips, plug leaks and fix glade layout.
+
+commit b513b93b7b047a9f46074b79fd1d85f743178751
+Author: Imre Benedek <nucleo@indamail.hu>
+Date:   Wed Mar 13 23:59:08 2013 +0100
+
+    l10n: Updated Hungarian (hu) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 366d895b6e357c38adda03f499fc8ada3a604bfc
+Author: Imre Benedek <nucleo@indamail.hu>
+Date:   Wed Mar 13 01:52:49 2013 +0100
+
+    l10n: Updated Hungarian (hu) translation to 99%
+    
+    New status: 392 messages complete with 0 fuzzies and 1 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit a539012febeb770711c410695a6fa43a2a779740
+Author: Sergio Marques <smarquespt@gmail.com>
+Date:   Mon Mar 11 14:42:56 2013 +0100
+
+    l10n: Updated Portuguese (pt) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 4204959fab4e6abf523150b7c0697e23177c9bc0
+Author: Sergio Marques <smarquespt@gmail.com>
+Date:   Mon Mar 11 14:37:49 2013 +0100
+
+    l10n: Updated Portuguese (pt) translation to 98%
+    
+    New status: 386 messages complete with 1 fuzzy and 6 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit e2390ca46fac453f52b0f21b575dd9be5798d7ee
+Author: Piotr Sokół <psokol@jabster.pl>
+Date:   Sun Mar 10 14:13:44 2013 +0100
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 380 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 9fcdac310197360c5c609c1e70d7c889f35c0504
+Author: Piotr Sokół <psokol@jabster.pl>
+Date:   Sat Mar 9 16:36:05 2013 +0100
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 380 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit a82b41a9638162c3427bdf929c4043561265ee7b
+Author: Yarema aka Knedlyk <yupadmin@gmail.com>
+Date:   Fri Mar 8 15:46:08 2013 +0100
+
+    l10n: Updated Ukrainian (uk) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 3f99785af76075bb2c6d8488a1043d9d5464290d
+Author: Rafael Ferreira <rafael.f.f1@gmail.com>
+Date:   Fri Mar 8 13:32:29 2013 +0100
+
+    l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 29c28afcd3b2ba793cd8c5b377210570891fde89
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Fri Mar 8 00:39:48 2013 +0000
+
+    Clock plugin: removed a warning message.
+
+commit 4df52ad7e4a4ac36515e9ed366902109f447282d
+Author: Cristian Marchi <cri.penta@gmail.com>
+Date:   Wed Mar 6 12:23:59 2013 +0100
+
+    l10n: Updated Italian (it) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit ad0357cdd019c547ca5b7a223c1cef8f99164afd
+Author: Seong-ho Cho <darkcircle.0426@gmail.com>
+Date:   Tue Mar 5 19:41:30 2013 +0100
+
+    l10n: Updated Korean (ko) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit c95b7e15d890e005c4338eb5a330fbc94f5bab67
+Author: Саша Петровић <salepetronije@gmail.com>
+Date:   Tue Mar 5 15:10:00 2013 +0100
+
+    l10n: Updated Serbian (sr) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 721d7767b84da74703b52dba0a2fa096817ef192
+Author: jc jc1 <jc1.quebecos@gmail.com>
+Date:   Tue Mar 5 08:14:43 2013 +0100
+
+    l10n: Updated French (fr) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 82516c7cbe62fade01c1616062ba49225b576636
+Author: jc jc1 <jc1.quebecos@gmail.com>
+Date:   Tue Mar 5 08:11:57 2013 +0100
+
+    l10n: Updated French (fr) translation to 99%
+    
+    New status: 391 messages complete with 0 fuzzies and 2 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 5a2a8ee0713cfaf09ba8a16c4d4b9a1a6546c93e
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Tue Mar 5 07:07:30 2013 +0100
+
+    l10n: Updated Croatian (hr) translation to 86%
+    
+    New status: 338 messages complete with 0 fuzzies and 55 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 8a1626dde31166dbca651fbda20cc0250fa20937
+Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
+Date:   Mon Mar 4 17:14:00 2013 +0100
+
+    l10n: Updated Kazakh (kk) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit ebe0af48f83e2ebe3970bf8e0b347993cdabd0e3
+Author: Pjotr vertaalt <pjotrvertaalt@gmail.com>
+Date:   Sun Mar 3 15:18:00 2013 +0100
+
+    l10n: Updated Dutch (Flemish) (nl) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 0ed19c84ecd2209b72dbef3e9b0a96d5c08d6e89
+Author: Саша Петровић <salepetronije@gmail.com>
+Date:   Sun Mar 3 14:51:42 2013 +0100
+
+    l10n: Updated Serbian (sr) translation to 100%
+    
+    New status: 393 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 26436355562e7df6cef1364917e242fd26b5222f
+Author: Саша Петровић <salepetronije@gmail.com>
+Date:   Sun Mar 3 14:49:43 2013 +0100
+
+    l10n: Updated Serbian (sr) translation to 99%
+    
+    New status: 392 messages complete with 0 fuzzies and 1 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 68825fb99cade800a90cdf28cb76ad9a1d377336
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Feb 27 21:57:56 2013 +0000
+
+    Clock plugin: make the calendar popup modal again.
+    
+    To force a non-modal popup behavior, use a middle mouse button
+    or Ctrl+Btn1.
+
+commit 1438d76490266786b0524615e283779b7511cb42
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Feb 27 21:55:20 2013 +0000
+
+    Clock plugin: fix double-click behavior when a command is set.
+
+commit d05695e54ee7048d233bf858ecb1ba5abf6f30dc
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Wed Feb 27 00:14:52 2013 +0000
+
+    Clock plugin, updated information in tooltips.
+
+commit 7ae9b8817a10b151665a9d0e69de7058eb29c4d1
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Tue Feb 26 23:42:43 2013 +0000
+
+    Clock plugin: removed frame widget from calendar popup.
+    
+    (Three devs considered the popup looking better without the frame.)
+
+commit c09730c9ccafacdd916b7ec1514d7159eb672e04
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Tue Feb 26 22:38:33 2013 +0000
+
+    Clock plugin, an attempt to fix random crashes.
+    
+    Reports of random segfaults when adding/removing the plugin.
+    Can't be reproduced here.
+
+commit 9eb22de2489a039b50e7227a0e41aaa62fd9696f
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Tue Feb 26 22:34:59 2013 +0000
+
+    Clock plugin: changed the tooltip text.
+
+commit 769e1a41581c5e8bf99d8da34c20565b719d4892
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Feb 25 23:38:04 2013 +0000
+
+    Clock plugin: adjusted defaults.
+    
+    - A simpler label for the configuration button.
+    - An empty string for the time configuration command
+      - the button is grayed out when the config command is empty
+
+commit 592668fb4cdfb57ab92a3aa68b42ece502c0c4fe
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Feb 25 01:58:06 2013 +0000
+
+    Clock plugin: a fix to the previous commit
+    
+    The new property was not bound properly.
+
+commit 7d6203b69bd776304825afcdc859f115c911d7cf
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Feb 25 01:40:30 2013 +0000
+
+    Clock plugin: added a function to call a system clock config tool
+
+commit 27ce25acc51153f3f8d3c70fb1018b9b1ad14e8a
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sun Feb 24 00:35:47 2013 +0000
+
+    Clock: fixed the month in the calendar popup.
+
+commit d9c3b0763fe46f164acd9f445c18a3eae262a91a
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sat Feb 23 23:13:29 2013 +0000
+
+    Clock plugin: added a simple timezone selection UI.
+
+commit 1e4d05c8ad33e2a03d95d9215df576bcf5b2cb06
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sat Feb 23 02:07:59 2013 +0000
+
+    Clock plugin: proper timezone support and refactoring.
+    
+    Regression testing appreciated.
+    
+    Switched to GDateTime and GTimeZone API - they do not use global
+    variables, so it is possible to have several clock plugins set to
+    different time zones.
+    
+    Bonus: utf-8 support and localization.
+    
+    The change required a rather deep refactoring. Added a new class
+    abstracting time operations, which can be accessed from either the plugin
+    or clock widgets. Previous design worked only because the time functions
+    did not need a local state (e.g. a timezone).
+
+commit 6a34f8151ea55dc732ddb857d5c708cd96de2a10
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Tue Feb 12 02:00:20 2013 +0000
+
+    Added a timezone property to the clock plugin.
+    
+    At the moment it can only be set via xfconf-query, e.g.:
+    
+    xfconf-query -c xfce4-panel -p /plugins/plugin-38/timezone -n -t string -s "Asia/Tokyo"
+    
+    If timezone is unset or set to "", the plugin defaults to a system's
+    local time.
+
+commit a5ff28b467a93a263b7459d894c3f81584d45657
+Author: Masato Hashimoto <hashimo@xfce.org>
+Date:   Sat Mar 2 11:41:27 2013 +0100
+
+    l10n: Updated Japanese (ja) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit f889d7f913731f675b1503a94b6d79b298802f11
+Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
+Date:   Tue Feb 5 20:46:57 2013 +0100
+
+    l10n: Updated Arabic (ar) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit e7f45f49ec551538bd9cdf2011719d90365586f2
+Author: Piotr Sokół <psokol@jabster.pl>
+Date:   Tue Jan 29 10:16:02 2013 +0100
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 6ae92167e2d971e841eba9724c159c554849a822
+Merge: 4a04a2f 3d96560
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Fri Jan 25 21:38:04 2013 +0000
+
+    Merge branch 'andrzejr/clock'
+
+commit 4a04a2f8cbf166147d632126408288fc58979c7b
+Author: Kiril Kirilov <cybercop_montana@abv.bg>
+Date:   Fri Jan 25 21:17:33 2013 +0100
+
+    l10n: Updated Bulgarian (bg) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 3d96560710786462f56f0c0d6a888922794d5a6a
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Jan 21 00:38:55 2013 +0000
+
+    Removed "show-frame" property.
+
+commit 422239beb277a6e534e25bcf627470ce552a4918
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Jan 21 00:27:47 2013 +0000
+
+    Removed frame object and all references to it.
+    
+    A frame looks bad inside a button and adds unnecessary padding
+    (on top of what the button has added).
+    
+    The "show-frame" property is left unchanged but is nonfunctional.
+
+commit a672491a6d2d12264c7e2f823cdf271b7e3acf82
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Jan 21 00:12:07 2013 +0000
+
+    Adding a possibility to close the calendar popup with "Esc"
+    
+    Calendar popup can be closed with an Escape key, provided it
+    has a keyboard focus.
+
+commit eb7f419731ce953836def8d36650c967cc223298
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Mon Jan 21 00:10:24 2013 +0000
+
+    Placing a clock widget (with frame) in a toggle button.
+    
+    A toggle button is used to trigger opening/closing of a calendar popup.
+    This is consistent with what other plugins do (e.g. app menu etc.).
+    
+    This seems to work well with all clock widgets (digital, analog, etc.).
+    
+    Had to rewire all events to the button, otherwise button's event handlers
+    were blocking them.
+
+commit 2db0667c9c6bddb5b3b78b5a2c00a783b2330986
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sun Jan 20 22:41:23 2013 +0000
+
+    Revert "Hide calendar window on <Esc> or mouse press outside the popup."
+    
+    Discussion on why this solution may not be a good idea is in:
+    https://bugzilla.xfce.org/show_bug.cgi?id=9034
+    
+    This reverts commit 8e4e5be299c09595a6ba19ab0216c29db69edb47.
+
+commit 48e1016394fa6bdb1d708823a23a12641482a561
 Author: Carlos Silva <r3pek@r3pek.org>
 Date:   Fri Dec 14 00:14:36 2012 -0100
 
@@ -25,369 +2424,432 @@
     Looks like gdk_pixbuf_new_from_file_at_scale and gdk_pixbuf_new_from_file_at_size really don't scale the image leaving the image loaded with its original size. So, just load the file without any scale and let the scale be done later on the function.
     
     Signed-off-by: Carlos Silva <r3pek@r3pek.org>
-    (cherry picked from commit 48e1016394fa6bdb1d708823a23a12641482a561)
-
-commit 4294d606bdd87b94ab6ebc22b9ea2d1c92dd2e45
+
+commit 8e4e5be299c09595a6ba19ab0216c29db69edb47
+Author: Andrzej <ndrwrdck@gmail.com>
+Date:   Sat Jan 12 00:23:34 2013 +0000
+
+    Hide calendar window on <Esc> or mouse press outside the popup.
+
+commit a786acf194436b79c4c01417e996c9f231b26760
+Author: Piotr Strębski <strebski@o2.pl>
+Date:   Tue Jan 8 19:23:14 2013 +0100
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit d4c4c5a745db93acb341879ec18adcc795df8507
 Author: Nick Schermer <nick@xfce.org>
 Date:   Sun Jan 6 12:20:16 2013 +0100
 
     Autotools updates.
-    
-    (cherry picked from commit d4c4c5a745db93acb341879ec18adcc795df8507)
-
-commit 217e17d630271b1bf5ab6fa5300a33b884faddea
+
+commit d0d72484a74ae4a5f9a246694711ef9ea6c2fe59
+Author: Walter cheuk <wwycheuk@gmail.com>
+Date:   Sat Jan 5 04:15:52 2013 +0100
+
+    l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 81cdcc082542605877a94fde9421752ac2d8daea
+Author: Nick Schermer <nick@xfce.org>
+Date:   Thu Dec 27 11:21:48 2012 +0100
+
+    Remove unmaintained translations.
+
+commit c12b14f5cf553b00e84a4a07e4df62e37e412d26
+Author: Nick Schermer <nick@xfce.org>
+Date:   Sun Dec 16 18:14:39 2012 +0100
+
+    Put each window in a new window group.
+    
+    Better wrt grab and stuff.
+
+commit 078ef77ff384a6a3c0035d4c8101769627767ea8
 Author: Nick Schermer <nick@xfce.org>
 Date:   Sun Dec 2 13:20:45 2012 +0100
 
     Ignore GVarueArray compiler warning.
-    
-    (cherry picked from commit 078ef77ff384a6a3c0035d4c8101769627767ea8)
-
-commit 1965297cc4b9e1e50e90fa2b04c96fa833592737
+
+commit ce0e8e5dc6d034484b3cb72c5e7a7971a8883aeb
+Author: Yarema aka Knedlyk <yupadmin@gmail.com>
+Date:   Tue Dec 4 14:28:08 2012 +0100
+
+    l10n: Updated Ukrainian (uk) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 20cf9e8256bf41814aee2e6662c6c3d2527c3f80
 Author: Nick Schermer <nick@xfce.org>
 Date:   Sun Dec 2 22:30:08 2012 +0100
 
     Use G_ENABLE_DEBUG to set fatal messages.
-    
-    (cherry picked from commit 20cf9e8256bf41814aee2e6662c6c3d2527c3f80)
-
-commit eb60ba80bb8ccde40bc0a5ce1677457f63a887d2
+
+commit 2accbc41cfc21b834710f644da0ff27fac01d909
+Author: Seong-ho Cho <darkcircle.0426@gmail.com>
+Date:   Sun Nov 18 06:43:45 2012 +0100
+
+    l10n: Updated Korean (ko) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 453876c62db12098ca3c34a5abc4ef49604bba13
+Author: محمد الحرقان <malham1@gmail.com>
+Date:   Sun Nov 18 04:10:14 2012 +0100
+
+    l10n: Updated Arabic (ar) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit a174136cea68c8eedec86df8a966e864feb34947
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Tue Nov 6 16:25:24 2012 +0100
+
+    l10n: Updated Croatian (hr) translation to 87%
+    
+    New status: 338 messages complete with 0 fuzzies and 49 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit fde6588b0d453ef965c276b12afd23ecccabb52a
+Author: Mario Blättermann <mario.blaettermann@gmail.com>
+Date:   Wed Oct 31 13:35:27 2012 +0100
+
+    l10n: Updated German (de) translation to 99%
+    
+    New status: 385 messages complete with 2 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 08430848a8fc38a8090b88ea1b6f6e124e48a205
+Author: Gheyret Kenji <gheyret@yahoo.com>
+Date:   Wed Oct 24 05:44:50 2012 +0200
+
+    l10n: Updated Uyghur (ug) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 478c43e89b291e89f726d43a861e1266e0fa5905
 Author: Andrzej <ndrwrdck@gmail.com>
 Date:   Thu Oct 11 00:20:44 2012 +0100
 
     Fixed DnD markers with non-square small items.
-    
-    (cherry picked from commit 478c43e89b291e89f726d43a861e1266e0fa5905)
-
-commit 31f9236eff7a8221a811966e0d5201c1c8877757
+
+commit 35086017fa0e7b87f2b51755c3e61a89a31f5527
+Author: Marcin Romańczuk <abjsyn@gmail.com>
+Date:   Sat Oct 6 19:42:25 2012 +0200
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 3289b3b6f4bdce4947ababddeab2386b785c7a84
+Author: Marcin Romańczuk <abjsyn@gmail.com>
+Date:   Thu Oct 4 22:34:12 2012 +0200
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 2bee3ff002f7aedecffcf17b14b2302e7c043505
+Author: Piotr Strębski <strebski@o2.pl>
+Date:   Mon Sep 24 21:19:49 2012 +0200
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 71d2c25d58dfef82b658eaa3d7ec9f9d4f6e18f2
+Author: Piotr Sokół <psokol@jabster.pl>
+Date:   Sat Sep 15 15:43:57 2012 +0200
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 2803b05f5a58d334c6ddab03fef2821cb7c7ccc7
+Author: Efstathios Iosifidis <iefstathios@gmail.com>
+Date:   Wed Aug 22 18:55:37 2012 +0200
+
+    l10n: Updated Greek (el) translation to 99%
+    
+    New status: 385 messages complete with 0 fuzzies and 2 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 5cd21c4584c69e086451b71de8e9dc2b4b872002
+Author: Kris Thomsen <mail@kristhomsen.dk>
+Date:   Mon Aug 6 23:54:24 2012 +0200
+
+    l10n: Updated Danish (da) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 3a6ba13202bca29ca77d8ad8364e5181c43fa524
+Author: Kris Thomsen <mail@kristhomsen.dk>
+Date:   Mon Aug 6 23:52:53 2012 +0200
+
+    l10n: Updated Danish (da) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit f5d9614de99e2d024782cc1a794d2717c1a168ce
+Author: Kris Thomsen <mail@kristhomsen.dk>
+Date:   Mon Aug 6 23:21:01 2012 +0200
+
+    l10n: Updated Danish (da) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 18f5785b81c60ce19686c079fcf7a15afc3dbb30
+Author: Seong-ho Cho <darkcircle.0426@gmail.com>
+Date:   Sun Aug 5 21:22:23 2012 +0200
+
+    l10n: Updated Korean (ko) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit cc675bed70bccf0ae364008814faa44ef81bc867
+Author: Seong-ho Cho <darkcircle.0426@gmail.com>
+Date:   Sun Aug 5 19:48:50 2012 +0200
+
+    l10n: Updated Korean (ko) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 46042c481a9b43efcfc38e65dc9647ae818ebc52
+Author: Nick Schermer <nick@xfce.org>
+Date:   Sun Aug 5 13:16:24 2012 +0200
+
+    Tasklist: Remove binding for blinking buttons, no UI for this.
+
+commit cccd7a5a0044dfb32df19333f1b7325d836670e6
+Author: Gheyret Kenji <gheyret@yahoo.com>
+Date:   Sat Aug 4 01:50:25 2012 +0200
+
+    l10n: Updated Uyghur (ug) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit e3e50718f3b890a79c7b13f7c993248fa0e5fc7b
+Author: Mathieu Chouquet-Stringer <mchouque@online.fr>
+Date:   Thu Jul 26 20:01:58 2012 +0200
+
+    Tasklist: Show urgent windows from other workspaces (bug #5167).
+
+commit 0456c33cceb85e64c609beecddee942624b51a72
+Author: Guido Berhoerster <gber@opensuse.org>
+Date:   Mon Jul 23 17:58:50 2012 +0200
+
+    Clock: Add calendar popup to clock plugin (bug #9034).
+
+commit 17643fd28f499691ae97503eb58755b4b9fabb53
 Author: Nick Schermer <nick@xfce.org>
 Date:   Sun Jul 22 11:43:51 2012 +0200
 
     Actions: Fix logic of session saving (bug #8857).
-    
-    (cherry picked from commit 17643fd28f499691ae97503eb58755b4b9fabb53)
-
-commit 6ef607c51d1a115e398ff5a13eb67a583d15faff
+
+commit eae14b0fc9587bb2064efd59170a602844f1cd15
+Author: Gheyret Kenji <gheyret@yahoo.com>
+Date:   Mon Jul 16 08:17:20 2012 +0200
+
+    l10n: Updated Uyghur (ug) translation to 92%
+    
+    New status: 359 messages complete with 0 fuzzies and 28 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 2dae95a8906b08178b556c72aead22d6fc3043ec
+Author: Gheyret Kenji <gheyret@yahoo.com>
+Date:   Mon Jul 16 06:10:52 2012 +0200
+
+    l10n: Updated Uyghur (ug) translation to 92%
+    
+    New status: 359 messages complete with 0 fuzzies and 28 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 9c0c7a94cb558f29baaae4924c35b7f7f572a0ca
+Author: Gheyret Kenji <gheyret@yahoo.com>
+Date:   Fri Jul 13 06:49:01 2012 +0200
+
+    l10n: Updated Uyghur (ug) translation to 91%
+    
+    New status: 356 messages complete with 0 fuzzies and 31 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit cad88939ab39d43182954cd4125078b6dae9cfcb
+Author: Sveinn í Felli <sveinki@nett.is>
+Date:   Mon Jul 2 18:16:55 2012 +0200
+
+    l10n: Updated Icelandic (is) translation to 70%
+    
+    New status: 244 messages complete with 44 fuzzies and 56 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 074b43aae71b224b827b6f195745bccd04db3f0a
+Author: Johannes Lips <johannes.lips@googlemail.com>
+Date:   Sun Jul 1 22:28:50 2012 +0200
+
+    l10n: Updated German (de) translation to 96%
+    
+    New status: 373 messages complete with 14 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit f69266edafa04bd6e1c7b06791f1ab0a39f5020c
+Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
+Date:   Wed Jun 20 12:04:04 2012 +0200
+
+    l10n: New Serbian translation, author salepetronije
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 35d929520272b8356e095de1b579daf46cf69b15
+Author: Gheyret Kenji <gheyret@yahoo.com>
+Date:   Thu May 31 07:40:45 2012 +0200
+
+    l10n: Updated Uyghur (ug) translation to 75%
+    
+    New status: 259 messages complete with 0 fuzzies and 85 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 41077b998bddbac52e3eb374275356be8e2df8d9
+Author: Piotr Sokół <psokol@jabster.pl>
+Date:   Fri May 25 10:02:04 2012 +0200
+
+    l10n: Updated Polish (pl) translation to 96%
+    
+    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit b399b5eb4b8338bb3715ebaa1baea6e4a6917f70
+Author: Ivica  Kolić <ikoli@yahoo.com>
+Date:   Fri May 11 21:01:47 2012 +0200
+
+    l10n: Updates to Croatian (hr) translation
+    
+    New status: 332 messages complete with 0 fuzzies and 55 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 9a20b60b33681df2dfd791e5a927263e56f8bb2e
+Author: Utku Berberoğlu <utku.berber@gmail.com>
+Date:   Wed May 9 19:25:54 2012 +0200
+
+    l10n: Updated Turkish (tr) translation to 93%
+    
+    New status: 362 messages complete with 25 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 89cfd5293f0306721f19fe6216637f3aca90372f
 Author: Nick Schermer <nick@xfce.org>
 Date:   Mon May 7 18:27:08 2012 +0200
 
     Panel: Emit save signal for plugins.
     
     Save every 10 minutes and on shutdown.
-    
-    (cherry picked from commit 89cfd5293f0306721f19fe6216637f3aca90372f)
-
-commit dd5c7fbfdca303357803d2e5a5642bcdd08eb21a
+
+commit 1ef673146308188207606724e5aa0f79e9e1e1b2
+Author: Alper Tekinalp <alper.tekinalp@gmail.com>
+Date:   Sun May 6 13:12:45 2012 +0200
+
+    l10n: Updated Turkish (tr) translation to 93%
+    
+    New status: 362 messages complete with 25 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 61fb804a6bac1c6d0c76933971a1fd2dcdcd0761
+Author: Utku Berberoğlu <utku.berber@gmail.com>
+Date:   Sat May 5 11:42:23 2012 +0200
+
+    l10n: Updated Turkish (tr) translation to 86%
+    
+    New status: 336 messages complete with 51 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 64c273bc5323f55ec89db58351ffc5c8455f6b7b
+Author: Andrei Zakharevich <andrej@zahar.ws>
+Date:   Fri May 4 21:02:28 2012 +0200
+
+    l10n: Updated Belarusian (be) translation to 15%
+    
+    New status: 60 messages complete with 123 fuzzies and 204 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 53463ae88ddcb7a35865271ff05c053cae6453a9
+Author: Andrei Zakharevich <andrej@zahar.ws>
+Date:   Fri May 4 20:58:51 2012 +0200
+
+    l10n: Updated Belarusian (be) translation to 12%
+    
+    New status: 49 messages complete with 132 fuzzies and 206 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 8cac8de7da95a0e0fc1f1eb6a23c9a341f68c77a
 Author: Nick Schermer <nick@xfce.org>
 Date:   Fri May 4 17:36:03 2012 +0200
 
     Libxfce4-panel: Fix typo in the API docs.
-    
-    (cherry picked from commit 8cac8de7da95a0e0fc1f1eb6a23c9a341f68c77a)
-
-commit 122bf6799094b0608508ccd34f7ddc75a9f98418
-Author: Rickard Larsson <larsson@odus.se>
-Date:   Wed Mar 20 10:24:41 2013 +0100
-
-    l10n: Updated Swedish (sv) translation to 79%
-    
-    New status: 308 messages complete with 16 fuzzies and 63 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit dec7e90ba731e937ba505c84bf76fcdb69b383f1
-Author: larsson <larsson@odus.se>
-Date:   Sun Mar 17 21:21:01 2013 +0100
-
-    l10n: Updated Swedish (sv) translation to 76%
-    
-    New status: 296 messages complete with 28 fuzzies and 63 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 90d3399882b374aab774789cdc028c1b01296f6b
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Fri Jan 25 16:10:45 2013 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 9b077efd55ee87c2081c2196acf38c08791a5edd
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Thu Jan 10 13:39:26 2013 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 6a0fc11c874380b97b260d82cdf0ac821e6dcdf9
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Thu Jan 10 12:15:06 2013 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 100%
-    
-    New status: 397 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit aeb6833c85bdccee76f16465814bb1143ce79037
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Thu Jan 10 09:09:58 2013 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 32a45c634426f52d87af07044caec3abd1fb754d
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Wed Jan 9 22:18:08 2013 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 100%
-    
-    New status: 397 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 436cd896cac4b7fdaef40ca228a2ed4a49945692
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Wed Jan 9 12:42:52 2013 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit ad4c9fbced6f26600a0006af0680dae4bf29e431
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Wed Jan 9 10:01:02 2013 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 6178882901ae1df93e09b0e4d97d0b46ee999727
-Author: Piotr Strębski <strebski@o2.pl>
-Date:   Tue Jan 8 19:20:17 2013 +0100
-
-    l10n: Updated Polish (pl) translation to 96%
-    
-    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 024c5f000f2f7545a46b6105352c8a077df4cf87
-Author: Ivica  Kolić <ikoli@yahoo.com>
-Date:   Tue Jan 8 09:38:56 2013 +0100
-
-    l10n: Updated Croatian (hr) translation to 86%
-    
-    New status: 335 messages complete with 0 fuzzies and 52 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 9b92579a6a961cdbac890c69be9bcdff879adf1c
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Thu Jan 3 10:59:25 2013 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit e2b0870daab8351f9cbfee76a89f353f9d06fd6a
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Sun Dec 30 22:24:19 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 99%
-    
-    New status: 384 messages complete with 0 fuzzies and 3 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 5ab905b4321f2897f93251ba1094ae5a17e5689b
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Tue Dec 25 10:46:39 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 97%
-    
-    New status: 378 messages complete with 4 fuzzies and 5 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit a0820955fcfb51a206154531a41cae556979f9a4
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Tue Dec 25 10:26:46 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 96%
-    
-    New status: 375 messages complete with 4 fuzzies and 8 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 16bf5a1af4283660b343ca75b4c210d50cdbeb1c
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Tue Dec 25 10:14:01 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 94%
-    
-    New status: 366 messages complete with 4 fuzzies and 17 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 6a24382f1bfc0ae6cf52db927a8d8f4d0d72b1a7
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Tue Dec 25 09:43:17 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 91%
-    
-    New status: 356 messages complete with 4 fuzzies and 27 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 3a350885233c6818cded43d0c4f74cb238415a4e
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Tue Dec 25 09:19:37 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 85%
-    
-    New status: 331 messages complete with 4 fuzzies and 52 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 4eeeeaeeeb0647182b0d760cdfcec98145c032be
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Tue Dec 25 08:50:10 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 77%
-    
-    New status: 299 messages complete with 4 fuzzies and 84 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 6593b613bafa71e90d7fb74161f6c222ee2e3a5d
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Mon Dec 24 22:15:56 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 67%
-    
-    New status: 263 messages complete with 4 fuzzies and 120 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit cba4e4357c8135de041c8519af1c19f9d469ffdc
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Mon Dec 24 21:59:21 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 59%
-    
-    New status: 231 messages complete with 4 fuzzies and 152 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 4523511bd051af43990a3b07bdf57773a888c9fb
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Mon Dec 24 21:11:12 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 47%
-    
-    New status: 183 messages complete with 4 fuzzies and 200 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit b6dcb18f678ae7c9b3fa4b994bb566eebb905ad2
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Mon Dec 24 20:23:26 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 43%
-    
-    New status: 169 messages complete with 4 fuzzies and 214 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit f2474e53bb6ca8e0e1341c1dd3d9937f83a0ce62
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Mon Dec 24 19:30:34 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 30%
-    
-    New status: 119 messages complete with 4 fuzzies and 264 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 3043ee10ade0238a7ebc8f20a5952579b1fda1cc
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Mon Dec 24 18:40:44 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 20%
-    
-    New status: 80 messages complete with 8 fuzzies and 299 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit c102a21a69864e47be8471694b4109a1fd44d1ee
-Author: Kiril Kirilov <cybercop_montana@abv.bg>
-Date:   Mon Dec 24 18:14:00 2012 +0100
-
-    l10n: Updated Bulgarian (bg) translation to 9%
-    
-    New status: 38 messages complete with 50 fuzzies and 299 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 83ea864acd901e1d741e00589fad73b0f865588d
-Author: Ivica  Kolić <ikoli@yahoo.com>
-Date:   Mon Dec 3 23:29:08 2012 +0100
-
-    l10n: Updated Croatian (hr) translation to 85%
-    
-    New status: 332 messages complete with 0 fuzzies and 55 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 49a9fdbbf0ec514f2cefd9291764032ffb220949
-Author: محمد الحرقان <malham1@gmail.com>
-Date:   Fri Nov 9 14:07:47 2012 +0100
-
-    l10n: Updated Arabic (ar) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit f769409502cb62e91fa2946ac0c8c25288d710f3
-Author: Gheyret Kenji <gheyret@yahoo.com>
-Date:   Wed Oct 24 05:00:08 2012 +0200
-
-    l10n: Updated Uyghur (ug) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit cdeb98fd884e2bf193f54de54b1943d5185c61b6
-Author: Kamil Polczak <elderlinx@gmail.com>
-Date:   Fri Sep 14 10:07:33 2012 +0200
-
-    l10n: Updated Polish (pl) translation to 96%
-    
-    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 0e680b70c67c232a45b38484d426c5db1515c81f
+
+commit 694dd69feecdd485e24ebd8ca9adf501d1e70755
+Author: Yarema aka Knedlyk <yupadmin@gmail.com>
+Date:   Fri May 4 09:07:14 2012 +0200
+
+    l10n: Updated Ukrainian (uk) translation to 100%
+    
+    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
+    
+    Transmitted-via: Transifex (translations.xfce.org).
+
+commit 8b29afa4caec5c5941c49bbf85d8238242dfb8d2
 Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
-Date:   Sun Aug 12 17:00:05 2012 +0200
+Date:   Tue May 1 23:11:59 2012 +0200
 
     l10n: Updated Arabic (ar) translation to 100%
     
@@ -395,186 +2857,6 @@
     
     Transmitted-via: Transifex (translations.xfce.org).
 
-commit d311de5c407a16ea5b3593b24d5471292e3963ee
-Author: Gheyret Kenji <gheyret@yahoo.com>
-Date:   Sat Aug 4 01:49:38 2012 +0200
-
-    l10n: Updated Uyghur (ug) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 35edf42f740938473ec3c2dab737e50035449faf
-Author: Gheyret Kenji <gheyret@yahoo.com>
-Date:   Mon Jul 16 08:05:34 2012 +0200
-
-    l10n: Updated Uyghur (ug) translation to 92%
-    
-    New status: 359 messages complete with 0 fuzzies and 28 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 22480624e6e61a51565355302a61384e49a45cc6
-Author: Gheyret Kenji <gheyret@yahoo.com>
-Date:   Thu Jul 12 07:50:29 2012 +0200
-
-    l10n: Updated Uyghur (ug) translation to 70%
-    
-    New status: 273 messages complete with 0 fuzzies and 114 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 2a510b232680869d41edb473a3e6c2e1d5210d24
-Author: Kamil Polczak <elderlinx@gmail.com>
-Date:   Tue Jun 12 09:07:27 2012 +0200
-
-    l10n: Updated Polish (pl) translation to 96%
-    
-    New status: 374 messages complete with 0 fuzzies and 13 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 0815c96162dc3e55a2404b601696637240f90691
-Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
-Date:   Sat Jun 9 11:19:52 2012 +0200
-
-    l10n: New Serbian translation, author salepetronije
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit df397f31974ac3f337f0b263944286ae39dc23e6
-Author: Ivica  Kolić <ikoli@yahoo.com>
-Date:   Sun May 13 21:38:16 2012 +0200
-
-    l10n: Updated Croatian (hr) translation to 85%
-    
-    New status: 332 messages complete with 0 fuzzies and 55 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 8df0746e3de6ff41482cbe16b4de69d02ccb0fd2
-Author: Ivica  Kolić <ikoli@yahoo.com>
-Date:   Sun May 13 03:09:43 2012 +0200
-
-    l10n: Updated Croatian (hr) translation to 85%
-    
-    New status: 332 messages complete with 0 fuzzies and 55 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 82b417fb51c0aba164b477fc71442c99a6d7ee20
-Author: Ivica  Kolić <ikoli@yahoo.com>
-Date:   Fri May 11 21:04:54 2012 +0200
-
-    l10n: Updates to Croatian (hr) translation
-    
-    New status: 332 messages complete with 0 fuzzies and 55 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 362a358cbc05081b20a957b87d99605ed9fdb060
-Author: Mario Blättermann <mario.blaettermann@gmail.com>
-Date:   Mon May 7 00:06:06 2012 +0200
-
-    l10n: Updated German (de) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 8a5c306259bb0a7d32536c5b2295e07bb3e7f113
-Author: Mario Blättermann <mario.blaettermann@gmail.com>
-Date:   Mon May 7 00:01:42 2012 +0200
-
-    l10n: Updated German (de) translation to 98%
-    
-    New status: 383 messages complete with 4 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 235b1b992361382ce4d06fa121da8d9e17b2c987
-Author: necdetyucel <necdetyucel@gmail.com>
-Date:   Sun May 6 18:10:26 2012 +0200
-
-    l10n: Updated Turkish (tr) translation to 100%
-    
-    New status: 387 messages complete with 0 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 8c2fb3dacc6797be1586a81eccaa885c1a6e6b7a
-Author: necdetyucel <necdetyucel@gmail.com>
-Date:   Sun May 6 16:18:13 2012 +0200
-
-    l10n: Updated Turkish (tr) translation to 99%
-    
-    New status: 385 messages complete with 2 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit a4be3105e469adf5c030b02fecd4b13ae5ff9167
-Author: necdetyucel <necdetyucel@gmail.com>
-Date:   Sun May 6 16:17:10 2012 +0200
-
-    l10n: Updated Turkish (tr) translation to 99%
-    
-    New status: 384 messages complete with 3 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 9be7afd63f2f7e531145ceeaf0bb6ebd4c107c47
-Author: necdetyucel <necdetyucel@gmail.com>
-Date:   Sun May 6 16:13:57 2012 +0200
-
-    l10n: Updated Turkish (tr) translation to 98%
-    
-    New status: 383 messages complete with 4 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 4b65fc62bdc9078546c30610358752486479e901
-Author: necdetyucel <necdetyucel@gmail.com>
-Date:   Sun May 6 16:11:05 2012 +0200
-
-    l10n: Updated Turkish (tr) translation to 97%
-    
-    New status: 377 messages complete with 10 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 5f0a8a9666d30f03457529d2719945e0c3c1af4b
-Author: necdetyucel <necdetyucel@gmail.com>
-Date:   Sun May 6 15:38:09 2012 +0200
-
-    l10n: Updated Turkish (tr) translation to 96%
-    
-    New status: 375 messages complete with 12 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit cc59b78faebfc1c756a127c1985f8a9fe0bfa772
-Author: Alper Tekinalp <alper.tekinalp@gmail.com>
-Date:   Sun May 6 13:47:22 2012 +0200
-
-    l10n: Updated Turkish (tr) translation to 96%
-    
-    New status: 373 messages complete with 14 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
-commit 1eed42de8d8cd24af65a2673e5571ba9eb854d2b
-Author: Alper Tekinalp <alper.tekinalp@gmail.com>
-Date:   Sun May 6 13:20:07 2012 +0200
-
-    l10n: Updated Turkish (tr) translation to 95%
-    
-    New status: 368 messages complete with 19 fuzzies and 0 untranslated.
-    
-    Transmitted-via: Transifex (translations.xfce.org).
-
 commit bac9f333183097a13f7fbfd081dc0d9fdbcf88c8
 Author: Nick Schermer <nick@xfce.org>
 Date:   Sat Apr 28 22:33:31 2012 +0200

=== modified file 'INSTALL'
--- INSTALL	2013-05-21 22:40:43 +0000
+++ INSTALL	2014-02-13 13:29:48 +0000
@@ -1,7 +1,7 @@
 Installation Instructions
 *************************
 
-Copyright (C) 1994-1996, 1999-2002, 2004-2012 Free Software Foundation,
+Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
 Inc.
 
    Copying and distribution of this file, with or without modification,
@@ -12,8 +12,8 @@
 Basic Installation
 ==================
 
-   Briefly, the shell commands `./configure; make; make install' should
-configure, build, and install this package.  The following
+   Briefly, the shell command `./configure && make && make install'
+should configure, build, and install this package.  The following
 more-detailed instructions are generic; see the `README' file for
 instructions specific to this package.  Some packages provide this
 `INSTALL' file but do not implement all of the features documented

=== modified file 'Makefile.in'
--- Makefile.in	2013-05-21 22:40:43 +0000
+++ Makefile.in	2014-02-13 13:29:48 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.13.1 from Makefile.am.
+# Makefile.in generated by automake 1.14.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2012 Free Software Foundation, Inc.
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -15,23 +15,51 @@
 @SET_MAKE@
 
 VPATH = @srcdir@
-am__make_dryrun = \
-  { \
-    am__dry=no; \
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__make_running_with_option = \
+  case $${target_option-} in \
+      ?) ;; \
+      *) echo "am__make_running_with_option: internal error: invalid" \
+              "target option '$${target_option-}' specified" >&2; \
+         exit 1;; \
+  esac; \
+  has_opt=no; \
+  sane_makeflags=$$MAKEFLAGS; \
+  if $(am__is_gnu_make); then \
+    sane_makeflags=$$MFLAGS; \
+  else \
     case $$MAKEFLAGS in \
       *\\[\ \	]*) \
-        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
-          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
-      *) \
-        for am__flg in $$MAKEFLAGS; do \
-          case $$am__flg in \
-            *=*|--*) ;; \
-            *n*) am__dry=yes; break;; \
-          esac; \
-        done;; \
-    esac; \
-    test $$am__dry = yes; \
-  }
+        bs=\\; \
+        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
+    esac; \
+  fi; \
+  skip_next=no; \
+  strip_trailopt () \
+  { \
+    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+  }; \
+  for flg in $$sane_makeflags; do \
+    test $$skip_next = yes && { skip_next=no; continue; }; \
+    case $$flg in \
+      *=*|--*) continue;; \
+        -*I) strip_trailopt 'I'; skip_next=yes;; \
+      -*I?*) strip_trailopt 'I';; \
+        -*O) strip_trailopt 'O'; skip_next=yes;; \
+      -*O?*) strip_trailopt 'O';; \
+        -*l) strip_trailopt 'l'; skip_next=yes;; \
+      -*l?*) strip_trailopt 'l';; \
+      -[dEDm]) skip_next=yes;; \
+      -[JT]) skip_next=yes;; \
+    esac; \
+    case $$flg in \
+      *$$target_option*) has_opt=yes; break;; \
+    esac; \
+  done; \
+  test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -235,6 +263,10 @@
 EXO_VERSION = @EXO_VERSION@
 FGREP = @FGREP@
 GARCON_CFLAGS = @GARCON_CFLAGS@
+GARCON_GTK2_CFLAGS = @GARCON_GTK2_CFLAGS@
+GARCON_GTK2_LIBS = @GARCON_GTK2_LIBS@
+GARCON_GTK2_REQUIRED_VERSION = @GARCON_GTK2_REQUIRED_VERSION@
+GARCON_GTK2_VERSION = @GARCON_GTK2_VERSION@
 GARCON_LIBS = @GARCON_LIBS@
 GARCON_REQUIRED_VERSION = @GARCON_REQUIRED_VERSION@
 GARCON_VERSION = @GARCON_VERSION@
@@ -258,6 +290,10 @@
 GMOFILES = @GMOFILES@
 GMSGFMT = @GMSGFMT@
 GREP = @GREP@
+GTK3_CFLAGS = @GTK3_CFLAGS@
+GTK3_LIBS = @GTK3_LIBS@
+GTK3_REQUIRED_VERSION = @GTK3_REQUIRED_VERSION@
+GTK3_VERSION = @GTK3_VERSION@
 GTKDOC_CHECK = @GTKDOC_CHECK@
 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
@@ -496,8 +532,8 @@
 $(am__aclocal_m4_deps):
 
 config.h: stamp-h1
-	@if test ! -f $@; then rm -f stamp-h1; else :; fi
-	@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
+	@test -f $@ || rm -f stamp-h1
+	@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
 
 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
 	@rm -f stamp-h1
@@ -547,13 +583,12 @@
 #     (which will cause the Makefiles to be regenerated when you run 'make');
 # (2) otherwise, pass the desired values on the 'make' command line.
 $(am__recursive_targets):
-	@fail= failcom='exit 1'; \
-	for f in x $$MAKEFLAGS; do \
-	  case $$f in \
-	    *=* | --[!k]*);; \
-	    *k*) failcom='fail=yes';; \
-	  esac; \
-	done; \
+	@fail=; \
+	if $(am__make_keepgoing); then \
+	  failcom='fail=yes'; \
+	else \
+	  failcom='exit 1'; \
+	fi; \
 	dot_seen=no; \
 	target=`echo $@ | sed s/-recursive//`; \
 	case "$@" in \
@@ -730,10 +765,16 @@
 	$(am__post_remove_distdir)
 
 dist-tarZ: distdir
+	@echo WARNING: "Support for shar distribution archives is" \
+	               "deprecated." >&2
+	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
 	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
 	$(am__post_remove_distdir)
 
 dist-shar: distdir
+	@echo WARNING: "Support for distribution archives compressed with" \
+		       "legacy program 'compress' is deprecated." >&2
+	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
 	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
 	$(am__post_remove_distdir)
 
@@ -775,9 +816,10 @@
 	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
 	  && am__cwd=`pwd` \
 	  && $(am__cd) $(distdir)/_build \
-	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
+	  && ../configure \
 	    $(AM_DISTCHECK_CONFIGURE_FLAGS) \
 	    $(DISTCHECK_CONFIGURE_FLAGS) \
+	    --srcdir=.. --prefix="$$dc_install_base" \
 	  && $(MAKE) $(AM_MAKEFLAGS) \
 	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
 	  && $(MAKE) $(AM_MAKEFLAGS) check \

=== modified file 'NEWS'
--- NEWS	2013-05-21 22:40:43 +0000
+++ NEWS	2014-02-13 13:29:48 +0000
@@ -1,17 +1,3 @@
-4.10.1
-======
-- Bugfix in icon/pixbuf resizing code.
-- Fix icons not probably resizing when requested.
-- Autotools updates.
-- Ignore GVarueArray compiler warning.
-- Use G_ENABLE_DEBUG to set fatal messages.
-- Fixed DnD markers with non-square small items.
-- Actions: Fix logic of session saving (bug #8857).
-- Panel: Emit save signal for plugins.
-- Libxfce4-panel: Fix typo in the API docs.
-- Translation updates: Arabic, Bulgarian, German, Croatian, Polish, 
-  Serbian, Swedish, Turkish, Uyghur.
-
 4.10.0
 ======
 - Use correct LGPL licenses in the libs.

=== modified file 'aclocal.m4'
--- aclocal.m4	2013-07-07 10:54:09 +0000
+++ aclocal.m4	2014-02-13 13:29:48 +0000
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.13.1 -*- Autoconf -*-
+# generated automatically by aclocal 1.14.1 -*- Autoconf -*-
 
-# Copyright (C) 1996-2012 Free Software Foundation, Inc.
+# Copyright (C) 1996-2013 Free Software Foundation, Inc.
 
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -337,7 +337,6 @@
 dnl
 glib_DEFUN([GLIB_GNU_GETTEXT],
   [AC_REQUIRE([AC_PROG_CC])dnl
-   AC_REQUIRE([AC_HEADER_STDC])dnl
    
    GLIB_LC_MESSAGES
    GLIB_WITH_NLS
@@ -496,7 +495,7 @@
     dnl don't check for glib if we build glib
     if test "x$PACKAGE_NAME" != "xglib"; then
       dnl don't fail if someone does not have glib
-      PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0  >= 2.10.0,,)
+      PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0  >= 2.10.0,,[:])
     fi
   fi
 
@@ -517,6 +516,10 @@
     enable_gtk_doc_pdf=no
   fi
 
+  if test -z "$AM_DEFAULT_VERBOSITY"; then
+    AM_DEFAULT_VERBOSITY=1
+  fi
+  AC_SUBST([AM_DEFAULT_VERBOSITY])
 
   AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes])
   AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes])
@@ -2046,7 +2049,7 @@
   rm -rf conftest*
   ;;
 
-x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
+x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
 s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
   # Find out which ABI we are using.
   echo 'int i;' > conftest.$ac_ext
@@ -2058,9 +2061,19 @@
 	    LD="${LD-ld} -m elf_i386_fbsd"
 	    ;;
 	  x86_64-*linux*)
-	    LD="${LD-ld} -m elf_i386"
-	    ;;
-	  ppc64-*linux*|powerpc64-*linux*)
+	    case `/usr/bin/file conftest.o` in
+	      *x86-64*)
+		LD="${LD-ld} -m elf32_x86_64"
+		;;
+	      *)
+		LD="${LD-ld} -m elf_i386"
+		;;
+	    esac
+	    ;;
+	  powerpc64le-*)
+	    LD="${LD-ld} -m elf32lppclinux"
+	    ;;
+	  powerpc64-*)
 	    LD="${LD-ld} -m elf32ppclinux"
 	    ;;
 	  s390x-*linux*)
@@ -2079,7 +2092,10 @@
 	  x86_64-*linux*)
 	    LD="${LD-ld} -m elf_x86_64"
 	    ;;
-	  ppc*-*linux*|powerpc*-*linux*)
+	  powerpcle-*)
+	    LD="${LD-ld} -m elf64lppc"
+	    ;;
+	  powerpc-*)
 	    LD="${LD-ld} -m elf64ppc"
 	    ;;
 	  s390*-*linux*|s390*-*tpf*)
@@ -2422,7 +2438,8 @@
     ;;
   *)
     lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
-    if test -n "$lt_cv_sys_max_cmd_len"; then
+    if test -n "$lt_cv_sys_max_cmd_len" && \
+	test undefined != "$lt_cv_sys_max_cmd_len"; then
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
     else
@@ -3246,17 +3263,6 @@
   esac
   ;;
 
-gnu*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=no
-  hardcode_into_libs=yes
-  ;;
-
 haiku*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
@@ -3373,7 +3379,7 @@
   ;;
 
 # This must be glibc/ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu)
+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
@@ -3418,6 +3424,18 @@
   dynamic_linker='GNU/Linux ld.so'
   ;;
 
+netbsdelf*-gnu)
+  version_type=linux
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+  hardcode_into_libs=yes
+  dynamic_linker='NetBSD ld.elf_so'
+  ;;
+
 netbsd*)
   version_type=sunos
   need_lib_prefix=no
@@ -3977,10 +3995,6 @@
   fi
   ;;
 
-gnu*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
 haiku*)
   lt_cv_deplibs_check_method=pass_all
   ;;
@@ -4019,11 +4033,11 @@
   ;;
 
 # This must be glibc/ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu)
+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
   lt_cv_deplibs_check_method=pass_all
   ;;
 
-netbsd*)
+netbsd* | netbsdelf*-gnu)
   if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
   else
@@ -4771,7 +4785,7 @@
 	    ;;
 	esac
 	;;
-      linux* | k*bsd*-gnu | kopensolaris*-gnu)
+      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
 	case $cc_basename in
 	  KCC*)
 	    # KAI C++ Compiler
@@ -4835,7 +4849,7 @@
 	    ;;
 	esac
 	;;
-      netbsd*)
+      netbsd* | netbsdelf*-gnu)
 	;;
       *qnx* | *nto*)
         # QNX uses GNU C++, but need to define -shared option too, otherwise
@@ -5070,7 +5084,7 @@
       _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
       ;;
 
-    linux* | k*bsd*-gnu | kopensolaris*-gnu)
+    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
       case $cc_basename in
       # old Intel for x86_64 which still supported -KPIC.
       ecc*)
@@ -5312,6 +5326,9 @@
       ;;
     esac
     ;;
+  linux* | k*bsd*-gnu | gnu*)
+    _LT_TAGVAR(link_all_deplibs, $1)=no
+    ;;
   *)
     _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
     ;;
@@ -5374,6 +5391,9 @@
   openbsd*)
     with_gnu_ld=no
     ;;
+  linux* | k*bsd*-gnu | gnu*)
+    _LT_TAGVAR(link_all_deplibs, $1)=no
+    ;;
   esac
 
   _LT_TAGVAR(ld_shlibs, $1)=yes
@@ -5595,7 +5615,7 @@
       fi
       ;;
 
-    netbsd*)
+    netbsd* | netbsdelf*-gnu)
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 	_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 	wlarc=
@@ -5772,6 +5792,7 @@
 	if test "$aix_use_runtimelinking" = yes; then
 	  shared_flag="$shared_flag "'${wl}-G'
 	fi
+	_LT_TAGVAR(link_all_deplibs, $1)=no
       else
 	# not using gcc
 	if test "$host_cpu" = ia64; then
@@ -6076,7 +6097,7 @@
       _LT_TAGVAR(link_all_deplibs, $1)=yes
       ;;
 
-    netbsd*)
+    netbsd* | netbsdelf*-gnu)
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 	_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
       else
@@ -6952,9 +6973,6 @@
         _LT_TAGVAR(ld_shlibs, $1)=yes
         ;;
 
-      gnu*)
-        ;;
-
       haiku*)
         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
         _LT_TAGVAR(link_all_deplibs, $1)=yes
@@ -7116,7 +7134,7 @@
         _LT_TAGVAR(inherit_rpath, $1)=yes
         ;;
 
-      linux* | k*bsd*-gnu | kopensolaris*-gnu)
+      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
         case $cc_basename in
           KCC*)
 	    # Kuck and Associates, Inc. (KAI) C++ Compiler
@@ -9520,61 +9538,6 @@
 fi[]dnl
 ])# PKG_CHECK_MODULES
 
-
-# PKG_INSTALLDIR(DIRECTORY)
-# -------------------------
-# Substitutes the variable pkgconfigdir as the location where a module
-# should install pkg-config .pc files. By default the directory is
-# $libdir/pkgconfig, but the default can be changed by passing
-# DIRECTORY. The user can override through the --with-pkgconfigdir
-# parameter.
-AC_DEFUN([PKG_INSTALLDIR],
-[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
-m4_pushdef([pkg_description],
-    [pkg-config installation directory @<:@]pkg_default[@:>@])
-AC_ARG_WITH([pkgconfigdir],
-    [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
-    [with_pkgconfigdir=]pkg_default)
-AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
-m4_popdef([pkg_default])
-m4_popdef([pkg_description])
-]) dnl PKG_INSTALLDIR
-
-
-# PKG_NOARCH_INSTALLDIR(DIRECTORY)
-# -------------------------
-# Substitutes the variable noarch_pkgconfigdir as the location where a
-# module should install arch-independent pkg-config .pc files. By
-# default the directory is $datadir/pkgconfig, but the default can be
-# changed by passing DIRECTORY. The user can override through the
-# --with-noarch-pkgconfigdir parameter.
-AC_DEFUN([PKG_NOARCH_INSTALLDIR],
-[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
-m4_pushdef([pkg_description],
-    [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
-AC_ARG_WITH([noarch-pkgconfigdir],
-    [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
-    [with_noarch_pkgconfigdir=]pkg_default)
-AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
-m4_popdef([pkg_default])
-m4_popdef([pkg_description])
-]) dnl PKG_NOARCH_INSTALLDIR
-
-
-# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
-# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
-# -------------------------------------------
-# Retrieves the value of the pkg-config variable for the given module.
-AC_DEFUN([PKG_CHECK_VAR],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
-AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
-
-_PKG_CONFIG([$1], [variable="][$3]["], [$2])
-AS_VAR_COPY([$1], [pkg_cv_][$1])
-
-AS_VAR_IF([$1], [""], [$5], [$4])dnl
-])# PKG_CHECK_VAR
-
 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
@@ -9587,10 +9550,10 @@
 # generated from the m4 files accompanying Automake X.Y.
 # (This private macro should not be called outside this file.)
 AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.13'
+[am__api_version='1.14'
 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 dnl require some minimum version.  Point them to the right macro.
-m4_if([$1], [1.13.1], [],
+m4_if([$1], [1.14.1], [],
       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 ])
 
@@ -9606,7 +9569,7 @@
 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.13.1])dnl
+[AM_AUTOMAKE_VERSION([1.14.1])dnl
 m4_ifndef([AC_AUTOCONF_VERSION],
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
@@ -9928,7 +9891,7 @@
     DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
     test -z "$DEPDIR" && continue
     am__include=`sed -n 's/^am__include = //p' < "$mf"`
-    test -z "am__include" && continue
+    test -z "$am__include" && continue
     am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
     # Find all dependency output files, they are included files with
     # $(DEPDIR) in their names.  We invoke sed twice because it is the
@@ -9973,6 +9936,12 @@
 # This macro actually does too much.  Some checks are only needed if
 # your package does certain things.  But this isn't really a big deal.
 
+dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
+m4_define([AC_PROG_CC],
+m4_defn([AC_PROG_CC])
+[_AM_PROG_CC_C_O
+])
+
 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
 # AM_INIT_AUTOMAKE([OPTIONS])
 # -----------------------------------------------
@@ -10081,7 +10050,48 @@
 AC_CONFIG_COMMANDS_PRE(dnl
 [m4_provide_if([_AM_COMPILER_EXEEXT],
   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
-])
+
+# POSIX will say in a future version that running "rm -f" with no argument
+# is OK; and we want to be able to make that assumption in our Makefile
+# recipes.  So use an aggressive probe to check that the usage we want is
+# actually supported "in the wild" to an acceptable degree.
+# See automake bug#10828.
+# To make any issue more visible, cause the running configure to be aborted
+# by default if the 'rm' program in use doesn't match our expectations; the
+# user can still override this though.
+if rm -f && rm -fr && rm -rf; then : OK; else
+  cat >&2 <<'END'
+Oops!
+
+Your 'rm' program seems unable to run without file operands specified
+on the command line, even when the '-f' option is present.  This is contrary
+to the behaviour of most rm programs out there, and not conforming with
+the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
+
+Please tell bug-automake@gnu.org about your system, including the value
+of your $PATH and any error possibly output before this message.  This
+can help us improve future automake versions.
+
+END
+  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
+    echo 'Configuration will proceed anyway, since you have set the' >&2
+    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
+    echo >&2
+  else
+    cat >&2 <<'END'
+Aborting the configuration process, to ensure you take notice of the issue.
+
+You can download and install GNU coreutils to get an 'rm' implementation
+that behaves properly: <http://www.gnu.org/software/coreutils/>.
+
+If you want to complete the configuration process using your problematic
+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
+to "yes", and re-run configure.
+
+END
+    AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
+  fi
+fi])
 
 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
@@ -10089,7 +10099,6 @@
 m4_define([_AC_COMPILER_EXEEXT],
 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
 
-
 # When config.status generates a header, we must update the stamp-h file.
 # This file resides in the same directory as the config header
 # that is generated.  The stamp files are numbered to have different names.
@@ -10237,38 +10246,6 @@
 rm -f confinc confmf
 ])
 
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_PROG_CC_C_O
-# --------------
-# Like AC_PROG_CC_C_O, but changed for automake.
-AC_DEFUN([AM_PROG_CC_C_O],
-[AC_REQUIRE([AC_PROG_CC_C_O])dnl
-AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
-AC_REQUIRE_AUX_FILE([compile])dnl
-# FIXME: we rely on the cache variable name because
-# there is no other way.
-set dummy $CC
-am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
-eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
-if test "$am_t" != yes; then
-   # Losing compiler, so override with the script.
-   # FIXME: It is wrong to rewrite CC.
-   # But if we don't then we get into trouble of one sort or another.
-   # A longer-term fix would be to have automake use am__CC in this case,
-   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
-   CC="$am_aux_dir/compile $CC"
-fi
-dnl Make sure AC_PROG_CC is never called again, or it will override our
-dnl setting of CC.
-m4_define([AC_PROG_CC],
-          [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
-])
-
 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
 
 # Copyright (C) 1997-2013 Free Software Foundation, Inc.
@@ -10339,6 +10316,53 @@
 AC_DEFUN([_AM_IF_OPTION],
 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
+# Copyright (C) 1999-2013 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# _AM_PROG_CC_C_O
+# ---------------
+# Like AC_PROG_CC_C_O, but changed for automake.  We rewrite AC_PROG_CC
+# to automatically call this.
+AC_DEFUN([_AM_PROG_CC_C_O],
+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+AC_REQUIRE_AUX_FILE([compile])dnl
+AC_LANG_PUSH([C])dnl
+AC_CACHE_CHECK(
+  [whether $CC understands -c and -o together],
+  [am_cv_prog_cc_c_o],
+  [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
+  # Make sure it works both with $CC and with simple cc.
+  # Following AC_PROG_CC_C_O, we do the test twice because some
+  # compilers refuse to overwrite an existing .o file with -o,
+  # though they will create one.
+  am_cv_prog_cc_c_o=yes
+  for am_i in 1 2; do
+    if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
+         && test -f conftest2.$ac_objext; then
+      : OK
+    else
+      am_cv_prog_cc_c_o=no
+      break
+    fi
+  done
+  rm -f core conftest*
+  unset am_i])
+if test "$am_cv_prog_cc_c_o" != yes; then
+   # Losing compiler, so override with the script.
+   # FIXME: It is wrong to rewrite CC.
+   # But if we don't then we get into trouble of one sort or another.
+   # A longer-term fix would be to have automake use am__CC in this case,
+   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
+   CC="$am_aux_dir/compile $CC"
+fi
+AC_LANG_POP([C])])
+
+# For backward compatibility.
+AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
+
 # Copyright (C) 2001-2013 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
@@ -10565,76 +10589,114 @@
 # Substitute a variable $(am__untar) that extract such
 # a tarball read from stdin.
 #     $(am__untar) < result.tar
+#
 AC_DEFUN([_AM_PROG_TAR],
 [# Always define AMTAR for backward compatibility.  Yes, it's still used
 # in the wild :-(  We should find a proper way to deprecate it ...
 AC_SUBST([AMTAR], ['$${TAR-tar}'])
+
+# We'll loop over all known methods to create a tar archive until one works.
+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
+
 m4_if([$1], [v7],
-     [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
-     [m4_case([$1], [ustar],, [pax],,
-              [m4_fatal([Unknown tar format])])
-AC_MSG_CHECKING([how to create a $1 tar archive])
-# Loop over all known methods to create a tar archive until one works.
-_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
-_am_tools=${am_cv_prog_tar_$1-$_am_tools}
-# Do not fold the above two line into one, because Tru64 sh and
-# Solaris sh will not grok spaces in the rhs of '-'.
-for _am_tool in $_am_tools
-do
-  case $_am_tool in
-  gnutar)
-    for _am_tar in tar gnutar gtar;
-    do
-      AM_RUN_LOG([$_am_tar --version]) && break
-    done
-    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
-    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
-    am__untar="$_am_tar -xf -"
-    ;;
-  plaintar)
-    # Must skip GNU tar: if it does not support --format= it doesn't create
-    # ustar tarball either.
-    (tar --version) >/dev/null 2>&1 && continue
-    am__tar='tar chf - "$$tardir"'
-    am__tar_='tar chf - "$tardir"'
-    am__untar='tar xf -'
-    ;;
-  pax)
-    am__tar='pax -L -x $1 -w "$$tardir"'
-    am__tar_='pax -L -x $1 -w "$tardir"'
-    am__untar='pax -r'
-    ;;
-  cpio)
-    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
-    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
-    am__untar='cpio -i -H $1 -d'
-    ;;
-  none)
-    am__tar=false
-    am__tar_=false
-    am__untar=false
-    ;;
-  esac
-
-  # If the value was cached, stop now.  We just wanted to have am__tar
-  # and am__untar set.
-  test -n "${am_cv_prog_tar_$1}" && break
-
-  # tar/untar a dummy directory, and stop if the command works
-  rm -rf conftest.dir
-  mkdir conftest.dir
-  echo GrepMe > conftest.dir/file
-  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
-  rm -rf conftest.dir
-  if test -s conftest.tar; then
-    AM_RUN_LOG([$am__untar <conftest.tar])
-    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
-  fi
-done
-rm -rf conftest.dir
-
-AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
-AC_MSG_RESULT([$am_cv_prog_tar_$1])])
+  [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
+
+  [m4_case([$1],
+    [ustar],
+     [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
+      # There is notably a 21 bits limit for the UID and the GID.  In fact,
+      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
+      # and bug#13588).
+      am_max_uid=2097151 # 2^21 - 1
+      am_max_gid=$am_max_uid
+      # The $UID and $GID variables are not portable, so we need to resort
+      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
+      # below are definitely unexpected, so allow the users to see them
+      # (that is, avoid stderr redirection).
+      am_uid=`id -u || echo unknown`
+      am_gid=`id -g || echo unknown`
+      AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
+      if test $am_uid -le $am_max_uid; then
+         AC_MSG_RESULT([yes])
+      else
+         AC_MSG_RESULT([no])
+         _am_tools=none
+      fi
+      AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
+      if test $am_gid -le $am_max_gid; then
+         AC_MSG_RESULT([yes])
+      else
+        AC_MSG_RESULT([no])
+        _am_tools=none
+      fi],
+
+  [pax],
+    [],
+
+  [m4_fatal([Unknown tar format])])
+
+  AC_MSG_CHECKING([how to create a $1 tar archive])
+
+  # Go ahead even if we have the value already cached.  We do so because we
+  # need to set the values for the 'am__tar' and 'am__untar' variables.
+  _am_tools=${am_cv_prog_tar_$1-$_am_tools}
+
+  for _am_tool in $_am_tools; do
+    case $_am_tool in
+    gnutar)
+      for _am_tar in tar gnutar gtar; do
+        AM_RUN_LOG([$_am_tar --version]) && break
+      done
+      am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
+      am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
+      am__untar="$_am_tar -xf -"
+      ;;
+    plaintar)
+      # Must skip GNU tar: if it does not support --format= it doesn't create
+      # ustar tarball either.
+      (tar --version) >/dev/null 2>&1 && continue
+      am__tar='tar chf - "$$tardir"'
+      am__tar_='tar chf - "$tardir"'
+      am__untar='tar xf -'
+      ;;
+    pax)
+      am__tar='pax -L -x $1 -w "$$tardir"'
+      am__tar_='pax -L -x $1 -w "$tardir"'
+      am__untar='pax -r'
+      ;;
+    cpio)
+      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
+      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
+      am__untar='cpio -i -H $1 -d'
+      ;;
+    none)
+      am__tar=false
+      am__tar_=false
+      am__untar=false
+      ;;
+    esac
+
+    # If the value was cached, stop now.  We just wanted to have am__tar
+    # and am__untar set.
+    test -n "${am_cv_prog_tar_$1}" && break
+
+    # tar/untar a dummy directory, and stop if the command works.
+    rm -rf conftest.dir
+    mkdir conftest.dir
+    echo GrepMe > conftest.dir/file
+    AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
+    rm -rf conftest.dir
+    if test -s conftest.tar; then
+      AM_RUN_LOG([$am__untar <conftest.tar])
+      AM_RUN_LOG([cat conftest.dir/file])
+      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
+    fi
+  done
+  rm -rf conftest.dir
+
+  AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
+  AC_MSG_RESULT([$am_cv_prog_tar_$1])])
+
 AC_SUBST([am__tar])
 AC_SUBST([am__untar])
 ]) # _AM_PROG_TAR
@@ -11023,7 +11085,7 @@
     AC_MSG_CHECKING([if $CC supports $flag])
     saved_CFLAGS="$CFLAGS"
     CFLAGS="$CFLAGS $flag"
-    AC_COMPILE_IFELSE([AC_LANG_SOURCE([ ])], [flag_supported=yes], [flag_supported=no])
+    AC_COMPILE_IFELSE([ ], [flag_supported=yes], [flag_supported=no])
     CFLAGS="$saved_CFLAGS"
     AC_MSG_RESULT([$flag_supported])
 
@@ -11057,10 +11119,10 @@
                               -Wdeclaration-after-statement \
                               -Wmissing-declarations \
                               -Wmissing-noreturn -Wshadow -Wpointer-arith \
-                              -Wcast-align -Wformat -Wformat-security -Wformat-y2k \
+                              -Wcast-align -Wformat-security \
                               -Winit-self -Wmissing-include-dirs -Wundef \
-                              -Wnested-externs"
-    CPPFLAGS="$CPPFLAGS"
+                              -Wmissing-format-attribute -Wnested-externs"
+    CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
 
     if test x`uname` = x"Linux"; then
       xdt_cv_additional_CFLAGS="$xdt_cv_additional_CFLAGS -fstack-protector"
@@ -11127,7 +11189,7 @@
     saved_CFLAGS="$CFLAGS"
     CFLAGS="$CFLAGS $xdt_vis_test_cflags"
     AC_MSG_CHECKING([whether $CC supports the GNUC visibility attribute])
-    AC_COMPILE_IFELSE([AC_LANG_SOURCE(
+    AC_COMPILE_IFELSE(AC_LANG_SOURCE(
     [
       void test_default (void);
       void test_hidden (void);
@@ -11140,7 +11202,7 @@
         test_hidden ();
         return 0;
       }
-    ])],
+    ]),
     [
       have_gnuc_visibility=yes
       AC_MSG_RESULT([yes])

=== modified file 'common/Makefile.in'
--- common/Makefile.in	2013-05-21 22:40:43 +0000
+++ common/Makefile.in	2014-02-13 13:29:48 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.13.1 from Makefile.am.
+# Makefile.in generated by automake 1.14.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2012 Free Software Foundation, Inc.
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -15,23 +15,51 @@
 @SET_MAKE@
 
 VPATH = @srcdir@
-am__make_dryrun = \
-  { \
-    am__dry=no; \
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__make_running_with_option = \
+  case $${target_option-} in \
+      ?) ;; \
+      *) echo "am__make_running_with_option: internal error: invalid" \
+              "target option '$${target_option-}' specified" >&2; \
+         exit 1;; \
+  esac; \
+  has_opt=no; \
+  sane_makeflags=$$MAKEFLAGS; \
+  if $(am__is_gnu_make); then \
+    sane_makeflags=$$MFLAGS; \
+  else \
     case $$MAKEFLAGS in \
       *\\[\ \	]*) \
-        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
-          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
-      *) \
-        for am__flg in $$MAKEFLAGS; do \
-          case $$am__flg in \
-            *=*|--*) ;; \
-            *n*) am__dry=yes; break;; \
-          esac; \
-        done;; \
-    esac; \
-    test $$am__dry = yes; \
-  }
+        bs=\\; \
+        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
+    esac; \
+  fi; \
+  skip_next=no; \
+  strip_trailopt () \
+  { \
+    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+  }; \
+  for flg in $$sane_makeflags; do \
+    test $$skip_next = yes && { skip_next=no; continue; }; \
+    case $$flg in \
+      *=*|--*) continue;; \
+        -*I) strip_trailopt 'I'; skip_next=yes;; \
+      -*I?*) strip_trailopt 'I';; \
+        -*O) strip_trailopt 'O'; skip_next=yes;; \
+      -*O?*) strip_trailopt 'O';; \
+        -*l) strip_trailopt 'l'; skip_next=yes;; \
+      -*l?*) strip_trailopt 'l';; \
+      -[dEDm]) skip_next=yes;; \
+      -[JT]) skip_next=yes;; \
+    esac; \
+    case $$flg in \
+      *$$target_option*) has_opt=yes; break;; \
+    esac; \
+  done; \
+  test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -181,6 +209,10 @@
 EXO_VERSION = @EXO_VERSION@
 FGREP = @FGREP@
 GARCON_CFLAGS = @GARCON_CFLAGS@
+GARCON_GTK2_CFLAGS = @GARCON_GTK2_CFLAGS@
+GARCON_GTK2_LIBS = @GARCON_GTK2_LIBS@
+GARCON_GTK2_REQUIRED_VERSION = @GARCON_GTK2_REQUIRED_VERSION@
+GARCON_GTK2_VERSION = @GARCON_GTK2_VERSION@
 GARCON_LIBS = @GARCON_LIBS@
 GARCON_REQUIRED_VERSION = @GARCON_REQUIRED_VERSION@
 GARCON_VERSION = @GARCON_VERSION@
@@ -204,6 +236,10 @@
 GMOFILES = @GMOFILES@
 GMSGFMT = @GMSGFMT@
 GREP = @GREP@
+GTK3_CFLAGS = @GTK3_CFLAGS@
+GTK3_LIBS = @GTK3_LIBS@
+GTK3_REQUIRED_VERSION = @GTK3_REQUIRED_VERSION@
+GTK3_VERSION = @GTK3_VERSION@
 GTKDOC_CHECK = @GTKDOC_CHECK@
 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
@@ -450,6 +486,7 @@
 	  echo rm -f $${locs}; \
 	  rm -f $${locs}; \
 	}
+
 libpanel-common.la: $(libpanel_common_la_OBJECTS) $(libpanel_common_la_DEPENDENCIES) $(EXTRA_libpanel_common_la_DEPENDENCIES) 
 	$(AM_V_CCLD)$(libpanel_common_la_LINK)  $(libpanel_common_la_OBJECTS) $(libpanel_common_la_LIBADD) $(LIBS)
 
@@ -468,14 +505,14 @@
 @am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c $<
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
 
 .c.obj:
 @am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
 @am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
+@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
 
 .c.lo:
 @am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<

=== modified file 'config.guess'
--- config.guess	2013-07-07 10:54:09 +0000
+++ config.guess	2014-02-13 13:29:48 +0000
@@ -1,10 +1,8 @@
 #! /bin/sh
 # Attempt to guess a canonical system name.
-#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
-#   2011, 2012, 2013 Free Software Foundation, Inc.
+#   Copyright 1992-2013 Free Software Foundation, Inc.
 
-timestamp='2012-12-29'
+timestamp='2013-06-10'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -26,7 +24,7 @@
 # program.  This Exception is an additional permission under section 7
 # of the GNU General Public License, version 3 ("GPLv3").
 #
-# Originally written by Per Bothner. 
+# Originally written by Per Bothner.
 #
 # You can get the latest version of this script from:
 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
@@ -52,9 +50,7 @@
 GNU config.guess ($timestamp)
 
 Originally written by Per Bothner.
-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
-2012, 2013 Free Software Foundation, Inc.
+Copyright 1992-2013 Free Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -136,6 +132,27 @@
 UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
 
+case "${UNAME_SYSTEM}" in
+Linux|GNU|GNU/*)
+	# If the system lacks a compiler, then just pick glibc.
+	# We could probably try harder.
+	LIBC=gnu
+
+	eval $set_cc_for_build
+	cat <<-EOF > $dummy.c
+	#include <features.h>
+	#if defined(__UCLIBC__)
+	LIBC=uclibc
+	#elif defined(__dietlibc__)
+	LIBC=dietlibc
+	#else
+	LIBC=gnu
+	#endif
+	EOF
+	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
+	;;
+esac
+
 # Note: order is significant - the case branches are not exclusive.
 
 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
@@ -857,21 +874,21 @@
 	exit ;;
     *:GNU:*:*)
 	# the GNU system
-	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
+	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
 	exit ;;
     *:GNU/*:*:*)
 	# other systems with GNU libc and userland
-	echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
+	echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
 	exit ;;
     i*86:Minix:*:*)
 	echo ${UNAME_MACHINE}-pc-minix
 	exit ;;
     aarch64:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     aarch64_be:Linux:*:*)
 	UNAME_MACHINE=aarch64_be
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     alpha:Linux:*:*)
 	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
@@ -884,59 +901,54 @@
 	  EV68*) UNAME_MACHINE=alphaev68 ;;
 	esac
 	objdump --private-headers /bin/sh | grep -q ld.so.1
-	if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
-	echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
+	if test "$?" = 0 ; then LIBC="gnulibc1" ; fi
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	exit ;;
+    arc:Linux:*:* | arceb:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     arm*:Linux:*:*)
 	eval $set_cc_for_build
 	if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
 	    | grep -q __ARM_EABI__
 	then
-	    echo ${UNAME_MACHINE}-unknown-linux-gnu
+	    echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	else
 	    if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
 		| grep -q __ARM_PCS_VFP
 	    then
-		echo ${UNAME_MACHINE}-unknown-linux-gnueabi
+		echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
 	    else
-		echo ${UNAME_MACHINE}-unknown-linux-gnueabihf
+		echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
 	    fi
 	fi
 	exit ;;
     avr32*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     cris:Linux:*:*)
-	echo ${UNAME_MACHINE}-axis-linux-gnu
+	echo ${UNAME_MACHINE}-axis-linux-${LIBC}
 	exit ;;
     crisv32:Linux:*:*)
-	echo ${UNAME_MACHINE}-axis-linux-gnu
+	echo ${UNAME_MACHINE}-axis-linux-${LIBC}
 	exit ;;
     frv:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     hexagon:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     i*86:Linux:*:*)
-	LIBC=gnu
-	eval $set_cc_for_build
-	sed 's/^	//' << EOF >$dummy.c
-	#ifdef __dietlibc__
-	LIBC=dietlibc
-	#endif
-EOF
-	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
-	echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
+	echo ${UNAME_MACHINE}-pc-linux-${LIBC}
 	exit ;;
     ia64:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     m32r*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     m68*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     mips:Linux:*:* | mips64:Linux:*:*)
 	eval $set_cc_for_build
@@ -955,54 +967,63 @@
 	#endif
 EOF
 	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
-	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
+	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
 	;;
+    or1k:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
+	exit ;;
     or32:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     padre:Linux:*:*)
-	echo sparc-unknown-linux-gnu
+	echo sparc-unknown-linux-${LIBC}
 	exit ;;
     parisc64:Linux:*:* | hppa64:Linux:*:*)
-	echo hppa64-unknown-linux-gnu
+	echo hppa64-unknown-linux-${LIBC}
 	exit ;;
     parisc:Linux:*:* | hppa:Linux:*:*)
 	# Look for CPU level
 	case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
-	  PA7*) echo hppa1.1-unknown-linux-gnu ;;
-	  PA8*) echo hppa2.0-unknown-linux-gnu ;;
-	  *)    echo hppa-unknown-linux-gnu ;;
+	  PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
+	  PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
+	  *)    echo hppa-unknown-linux-${LIBC} ;;
 	esac
 	exit ;;
     ppc64:Linux:*:*)
-	echo powerpc64-unknown-linux-gnu
+	echo powerpc64-unknown-linux-${LIBC}
 	exit ;;
     ppc:Linux:*:*)
-	echo powerpc-unknown-linux-gnu
+	echo powerpc-unknown-linux-${LIBC}
+	exit ;;
+    ppc64le:Linux:*:*)
+	echo powerpc64le-unknown-linux-${LIBC}
+	exit ;;
+    ppcle:Linux:*:*)
+	echo powerpcle-unknown-linux-${LIBC}
 	exit ;;
     s390:Linux:*:* | s390x:Linux:*:*)
-	echo ${UNAME_MACHINE}-ibm-linux
+	echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
 	exit ;;
     sh64*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     sh*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     sparc:Linux:*:* | sparc64:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     tile*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     vax:Linux:*:*)
-	echo ${UNAME_MACHINE}-dec-linux-gnu
+	echo ${UNAME_MACHINE}-dec-linux-${LIBC}
 	exit ;;
     x86_64:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     xtensa*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
 	exit ;;
     i*86:DYNIX/ptx:4*:*)
 	# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
@@ -1235,19 +1256,21 @@
 	exit ;;
     *:Darwin:*:*)
 	UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
-	case $UNAME_PROCESSOR in
-	    i386)
-		eval $set_cc_for_build
-		if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
-		  if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
-		      (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
-		      grep IS_64BIT_ARCH >/dev/null
-		  then
-		      UNAME_PROCESSOR="x86_64"
-		  fi
-		fi ;;
-	    unknown) UNAME_PROCESSOR=powerpc ;;
-	esac
+	eval $set_cc_for_build
+	if test "$UNAME_PROCESSOR" = unknown ; then
+	    UNAME_PROCESSOR=powerpc
+	fi
+	if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
+	    if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
+		(CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
+		grep IS_64BIT_ARCH >/dev/null
+	    then
+		case $UNAME_PROCESSOR in
+		    i386) UNAME_PROCESSOR=x86_64 ;;
+		    powerpc) UNAME_PROCESSOR=powerpc64 ;;
+		esac
+	    fi
+	fi
 	echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
 	exit ;;
     *:procnto*:*:* | *:QNX:[0123456789]*:*)

=== modified file 'config.h.in'
--- config.h.in	2012-04-15 15:54:14 +0000
+++ config.h.in	2014-02-13 13:29:48 +0000
@@ -30,6 +30,9 @@
 /* Define if gio-unix-2.0 >= 2.24.0 present */
 #undef HAVE_GIO_UNIX
 
+/* Define if gtk+-3.0 >= 3.2.0 present */
+#undef HAVE_GTK3
+
 /* Define to 1 if you have the <inttypes.h> header file. */
 #undef HAVE_INTTYPES_H
 
@@ -87,13 +90,13 @@
 /* Define to 1 if you have the <unistd.h> header file. */
 #undef HAVE_UNISTD_H
 
+/* libxfce4panel api version */
+#undef LIBXFCE4PANEL_VERSION_API
+
 /* Define to the sub-directory in which libtool stores uninstalled libraries.
    */
 #undef LT_OBJDIR
 
-/* Define to 1 if your C compiler doesn't accept -c and -o together. */
-#undef NO_MINUS_C_MINUS_O
-
 /* Name of package */
 #undef PACKAGE
 

=== modified file 'config.sub'
--- config.sub	2013-07-07 10:54:09 +0000
+++ config.sub	2014-02-13 13:29:48 +0000
@@ -1,10 +1,8 @@
 #! /bin/sh
 # Configuration validation subroutine script.
-#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
-#   2011, 2012, 2013 Free Software Foundation, Inc.
+#   Copyright 1992-2013 Free Software Foundation, Inc.
 
-timestamp='2012-12-29'
+timestamp='2013-08-10'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -70,9 +68,7 @@
 version="\
 GNU config.sub ($timestamp)
 
-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
-2012, 2013 Free Software Foundation, Inc.
+Copyright 1992-2013 Free Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -256,12 +252,12 @@
 	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
 	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
 	| am33_2.0 \
-	| arc \
+	| arc | arceb \
 	| arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
 	| avr | avr32 \
 	| be32 | be64 \
 	| bfin \
-	| c4x | clipper \
+	| c4x | c8051 | clipper \
 	| d10v | d30v | dlx | dsp16xx \
 	| epiphany \
 	| fido | fr30 | frv \
@@ -290,16 +286,17 @@
 	| mipsisa64r2 | mipsisa64r2el \
 	| mipsisa64sb1 | mipsisa64sb1el \
 	| mipsisa64sr71k | mipsisa64sr71kel \
+	| mipsr5900 | mipsr5900el \
 	| mipstx39 | mipstx39el \
 	| mn10200 | mn10300 \
 	| moxie \
 	| mt \
 	| msp430 \
 	| nds32 | nds32le | nds32be \
-	| nios | nios2 \
+	| nios | nios2 | nios2eb | nios2el \
 	| ns16k | ns32k \
 	| open8 \
-	| or32 \
+	| or1k | or32 \
 	| pdp10 | pdp11 | pj | pjl \
 	| powerpc | powerpc64 | powerpc64le | powerpcle \
 	| pyramid \
@@ -369,13 +366,13 @@
 	| aarch64-* | aarch64_be-* \
 	| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
 	| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
-	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
+	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
 	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
 	| avr-* | avr32-* \
 	| be32-* | be64-* \
 	| bfin-* | bs2000-* \
 	| c[123]* | c30-* | [cjt]90-* | c4x-* \
-	| clipper-* | craynv-* | cydra-* \
+	| c8051-* | clipper-* | craynv-* | cydra-* \
 	| d10v-* | d30v-* | dlx-* \
 	| elxsi-* \
 	| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
@@ -407,12 +404,13 @@
 	| mipsisa64r2-* | mipsisa64r2el-* \
 	| mipsisa64sb1-* | mipsisa64sb1el-* \
 	| mipsisa64sr71k-* | mipsisa64sr71kel-* \
+	| mipsr5900-* | mipsr5900el-* \
 	| mipstx39-* | mipstx39el-* \
 	| mmix-* \
 	| mt-* \
 	| msp430-* \
 	| nds32-* | nds32le-* | nds32be-* \
-	| nios-* | nios2-* \
+	| nios-* | nios2-* | nios2eb-* | nios2el-* \
 	| none-* | np1-* | ns16k-* | ns32k-* \
 	| open8-* \
 	| orion-* \
@@ -796,7 +794,7 @@
 		os=-mingw64
 		;;
 	mingw32)
-		basic_machine=i386-pc
+		basic_machine=i686-pc
 		os=-mingw32
 		;;
 	mingw32ce)
@@ -832,7 +830,7 @@
 		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
 		;;
 	msys)
-		basic_machine=i386-pc
+		basic_machine=i686-pc
 		os=-msys
 		;;
 	mvs)
@@ -1354,7 +1352,7 @@
 	-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
 	      | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
 	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
-	      | -sym* | -kopensolaris* \
+	      | -sym* | -kopensolaris* | -plan9* \
 	      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
 	      | -aos* | -aros* \
 	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
@@ -1500,9 +1498,6 @@
 	-aros*)
 		os=-aros
 		;;
-	-kaos*)
-		os=-kaos
-		;;
 	-zvmoe)
 		os=-zvmoe
 		;;
@@ -1551,6 +1546,9 @@
 	c4x-* | tic4x-*)
 		os=-coff
 		;;
+	c8051-*)
+		os=-elf
+		;;
 	hexagon-*)
 		os=-elf
 		;;
@@ -1594,6 +1592,9 @@
 	mips*-*)
 		os=-elf
 		;;
+	or1k-*)
+		os=-elf
+		;;
 	or32-*)
 		os=-coff
 		;;

=== modified file 'configure'
--- configure	2013-07-07 10:54:09 +0000
+++ configure	2014-02-13 13:29:48 +0000
@@ -1,7 +1,7 @@
 #! /bin/sh
-# From configure.ac 48000a2.
+# From configure.ac 86a1b73.
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for xfce4-panel 4.10.1.
+# Generated by GNU Autoconf 2.69 for xfce4-panel 4.10.0git-86a1b73.
 #
 # Report bugs to <http://bugzilla.xfce.org/>.
 #
@@ -597,8 +597,8 @@
 # Identity of this package.
 PACKAGE_NAME='xfce4-panel'
 PACKAGE_TARNAME='xfce4-panel'
-PACKAGE_VERSION='4.10.1'
-PACKAGE_STRING='xfce4-panel 4.10.1'
+PACKAGE_VERSION='4.10.0git-86a1b73'
+PACKAGE_STRING='xfce4-panel 4.10.0git-86a1b73'
 PACKAGE_BUGREPORT='http://bugzilla.xfce.org/'
 PACKAGE_URL=''
 
@@ -670,6 +670,14 @@
 GIO_UNIX_LIBS
 GIO_UNIX_CFLAGS
 GIO_UNIX_VERSION
+ENABLE_GTK3_LIBRARY_FALSE
+ENABLE_GTK3_LIBRARY_TRUE
+HAVE_GTK3_FALSE
+HAVE_GTK3_TRUE
+GTK3_REQUIRED_VERSION
+GTK3_LIBS
+GTK3_CFLAGS
+GTK3_VERSION
 LIBWNCK_REQUIRED_VERSION
 LIBWNCK_LIBS
 LIBWNCK_CFLAGS
@@ -710,6 +718,10 @@
 LIBXFCE4UI_LIBS
 LIBXFCE4UI_CFLAGS
 LIBXFCE4UI_VERSION
+GARCON_GTK2_REQUIRED_VERSION
+GARCON_GTK2_LIBS
+GARCON_GTK2_CFLAGS
+GARCON_GTK2_VERSION
 GARCON_REQUIRED_VERSION
 GARCON_LIBS
 GARCON_CFLAGS
@@ -919,6 +931,7 @@
 enable_libtool_lock
 with_locales_dir
 with_x
+enable_gtk3
 enable_gio_unix
 with_html_dir
 enable_gtk_doc
@@ -1483,7 +1496,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures xfce4-panel 4.10.1 to adapt to many kinds of systems.
+\`configure' configures xfce4-panel 4.10.0git-86a1b73 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1557,7 +1570,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of xfce4-panel 4.10.1:";;
+     short | recursive ) echo "Configuration of xfce4-panel 4.10.0git-86a1b73:";;
    esac
   cat <<\_ACEOF
 
@@ -1580,6 +1593,9 @@
   --enable-fast-install[=PKGS]
                           optimize for fast installation [default=yes]
   --disable-libtool-lock  avoid locking (might break parallel builds)
+  --enable-gtk3           Enable checking for GTK+ 3 support
+                          (default=[no])
+  --disable-gtk3          Disable checking for GTK+ 3 support
   --enable-gio-unix       Enable checking for GIO UNIX features
                           (default=[])
   --disable-gio-unix      Disable checking for GIO UNIX features
@@ -1588,7 +1604,7 @@
   --enable-gtk-doc-pdf    build documentation in pdf format [[default=no]]
   --enable-debug[=no|minimum|yes|full]
                           Build with debugging support
-                          [default=[minimum]]
+                          [default=[yes]]
   --disable-debug         Include no debugging support
   --disable-linker-opts   Disable linker optimizations
   --disable-visibility    Do not use ELF visibility attributes
@@ -1696,7 +1712,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-xfce4-panel configure 4.10.1
+xfce4-panel configure 4.10.0git-86a1b73
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2071,7 +2087,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by xfce4-panel $as_me 4.10.1, which was
+It was created by xfce4-panel $as_me 4.10.0git-86a1b73, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2424,7 +2440,7 @@
 
 ac_config_headers="$ac_config_headers config.h"
 
-am__api_version='1.13'
+am__api_version='1.14'
 
 ac_aux_dir=
 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
@@ -2939,7 +2955,7 @@
 
 # Define the identity of the package.
  PACKAGE='xfce4-panel'
- VERSION='4.10.1'
+ VERSION='4.10.0git-86a1b73'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2980,86 +2996,125 @@
 AMTAR='$${TAR-tar}'
 
 
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5
+# We'll loop over all known methods to create a tar archive until one works.
+_am_tools='gnutar plaintar pax cpio none'
+
+# The POSIX 1988 'ustar' format is defined with fixed-size fields.
+      # There is notably a 21 bits limit for the UID and the GID.  In fact,
+      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
+      # and bug#13588).
+      am_max_uid=2097151 # 2^21 - 1
+      am_max_gid=$am_max_uid
+      # The $UID and $GID variables are not portable, so we need to resort
+      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
+      # below are definitely unexpected, so allow the users to see them
+      # (that is, avoid stderr redirection).
+      am_uid=`id -u || echo unknown`
+      am_gid=`id -g || echo unknown`
+      { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5
+$as_echo_n "checking whether UID '$am_uid' is supported by ustar format... " >&6; }
+      if test $am_uid -le $am_max_uid; then
+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+      else
+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+         _am_tools=none
+      fi
+      { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5
+$as_echo_n "checking whether GID '$am_gid' is supported by ustar format... " >&6; }
+      if test $am_gid -le $am_max_gid; then
+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+      else
+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+        _am_tools=none
+      fi
+
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5
 $as_echo_n "checking how to create a ustar tar archive... " >&6; }
-# Loop over all known methods to create a tar archive until one works.
-_am_tools='gnutar plaintar pax cpio none'
-_am_tools=${am_cv_prog_tar_ustar-$_am_tools}
-# Do not fold the above two line into one, because Tru64 sh and
-# Solaris sh will not grok spaces in the rhs of '-'.
-for _am_tool in $_am_tools
-do
-  case $_am_tool in
-  gnutar)
-    for _am_tar in tar gnutar gtar;
-    do
-      { echo "$as_me:$LINENO: $_am_tar --version" >&5
+
+  # Go ahead even if we have the value already cached.  We do so because we
+  # need to set the values for the 'am__tar' and 'am__untar' variables.
+  _am_tools=${am_cv_prog_tar_ustar-$_am_tools}
+
+  for _am_tool in $_am_tools; do
+    case $_am_tool in
+    gnutar)
+      for _am_tar in tar gnutar gtar; do
+        { echo "$as_me:$LINENO: $_am_tar --version" >&5
    ($_am_tar --version) >&5 2>&5
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); } && break
-    done
-    am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"'
-    am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"'
-    am__untar="$_am_tar -xf -"
-    ;;
-  plaintar)
-    # Must skip GNU tar: if it does not support --format= it doesn't create
-    # ustar tarball either.
-    (tar --version) >/dev/null 2>&1 && continue
-    am__tar='tar chf - "$$tardir"'
-    am__tar_='tar chf - "$tardir"'
-    am__untar='tar xf -'
-    ;;
-  pax)
-    am__tar='pax -L -x ustar -w "$$tardir"'
-    am__tar_='pax -L -x ustar -w "$tardir"'
-    am__untar='pax -r'
-    ;;
-  cpio)
-    am__tar='find "$$tardir" -print | cpio -o -H ustar -L'
-    am__tar_='find "$tardir" -print | cpio -o -H ustar -L'
-    am__untar='cpio -i -H ustar -d'
-    ;;
-  none)
-    am__tar=false
-    am__tar_=false
-    am__untar=false
-    ;;
-  esac
-
-  # If the value was cached, stop now.  We just wanted to have am__tar
-  # and am__untar set.
-  test -n "${am_cv_prog_tar_ustar}" && break
-
-  # tar/untar a dummy directory, and stop if the command works
-  rm -rf conftest.dir
-  mkdir conftest.dir
-  echo GrepMe > conftest.dir/file
-  { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5
+      done
+      am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"'
+      am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"'
+      am__untar="$_am_tar -xf -"
+      ;;
+    plaintar)
+      # Must skip GNU tar: if it does not support --format= it doesn't create
+      # ustar tarball either.
+      (tar --version) >/dev/null 2>&1 && continue
+      am__tar='tar chf - "$$tardir"'
+      am__tar_='tar chf - "$tardir"'
+      am__untar='tar xf -'
+      ;;
+    pax)
+      am__tar='pax -L -x ustar -w "$$tardir"'
+      am__tar_='pax -L -x ustar -w "$tardir"'
+      am__untar='pax -r'
+      ;;
+    cpio)
+      am__tar='find "$$tardir" -print | cpio -o -H ustar -L'
+      am__tar_='find "$tardir" -print | cpio -o -H ustar -L'
+      am__untar='cpio -i -H ustar -d'
+      ;;
+    none)
+      am__tar=false
+      am__tar_=false
+      am__untar=false
+      ;;
+    esac
+
+    # If the value was cached, stop now.  We just wanted to have am__tar
+    # and am__untar set.
+    test -n "${am_cv_prog_tar_ustar}" && break
+
+    # tar/untar a dummy directory, and stop if the command works.
+    rm -rf conftest.dir
+    mkdir conftest.dir
+    echo GrepMe > conftest.dir/file
+    { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5
    (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }
-  rm -rf conftest.dir
-  if test -s conftest.tar; then
-    { echo "$as_me:$LINENO: $am__untar <conftest.tar" >&5
+    rm -rf conftest.dir
+    if test -s conftest.tar; then
+      { echo "$as_me:$LINENO: $am__untar <conftest.tar" >&5
    ($am__untar <conftest.tar) >&5 2>&5
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }
-    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
-  fi
-done
-rm -rf conftest.dir
+      { echo "$as_me:$LINENO: cat conftest.dir/file" >&5
+   (cat conftest.dir/file) >&5 2>&5
+   ac_status=$?
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }
+      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
+    fi
+  done
+  rm -rf conftest.dir
 
-if ${am_cv_prog_tar_ustar+:} false; then :
+  if ${am_cv_prog_tar_ustar+:} false; then :
   $as_echo_n "(cached) " >&6
 else
   am_cv_prog_tar_ustar=$_am_tool
 fi
 
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5
 $as_echo "$am_cv_prog_tar_ustar" >&6; }
 
 
@@ -3067,6 +3122,48 @@
 
 
 
+# POSIX will say in a future version that running "rm -f" with no argument
+# is OK; and we want to be able to make that assumption in our Makefile
+# recipes.  So use an aggressive probe to check that the usage we want is
+# actually supported "in the wild" to an acceptable degree.
+# See automake bug#10828.
+# To make any issue more visible, cause the running configure to be aborted
+# by default if the 'rm' program in use doesn't match our expectations; the
+# user can still override this though.
+if rm -f && rm -fr && rm -rf; then : OK; else
+  cat >&2 <<'END'
+Oops!
+
+Your 'rm' program seems unable to run without file operands specified
+on the command line, even when the '-f' option is present.  This is contrary
+to the behaviour of most rm programs out there, and not conforming with
+the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
+
+Please tell bug-automake@gnu.org about your system, including the value
+of your $PATH and any error possibly output before this message.  This
+can help us improve future automake versions.
+
+END
+  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
+    echo 'Configuration will proceed anyway, since you have set the' >&2
+    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
+    echo >&2
+  else
+    cat >&2 <<'END'
+Aborting the configuration process, to ensure you take notice of the issue.
+
+You can download and install GNU coreutils to get an 'rm' implementation
+that behaves properly: <http://www.gnu.org/software/coreutils/>.
+
+If you want to complete the configuration process using your problematic
+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
+to "yes", and re-run configure.
+
+END
+    as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
+  fi
+fi
+
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
     # Check whether --enable-maintainer-mode was given.
@@ -3991,6 +4088,65 @@
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
+$as_echo_n "checking whether $CC understands -c and -o together... " >&6; }
+if ${am_cv_prog_cc_c_o+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+  # Make sure it works both with $CC and with simple cc.
+  # Following AC_PROG_CC_C_O, we do the test twice because some
+  # compilers refuse to overwrite an existing .o file with -o,
+  # though they will create one.
+  am_cv_prog_cc_c_o=yes
+  for am_i in 1 2; do
+    if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5
+   ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5
+   ac_status=$?
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); } \
+         && test -f conftest2.$ac_objext; then
+      : OK
+    else
+      am_cv_prog_cc_c_o=no
+      break
+    fi
+  done
+  rm -f core conftest*
+  unset am_i
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
+$as_echo "$am_cv_prog_cc_c_o" >&6; }
+if test "$am_cv_prog_cc_c_o" != yes; then
+   # Losing compiler, so override with the script.
+   # FIXME: It is wrong to rewrite CC.
+   # But if we don't then we get into trouble of one sort or another.
+   # A longer-term fix would be to have automake use am__CC in this case,
+   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
+   CC="$am_aux_dir/compile $CC"
+fi
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
 depcc="$CC"   am_compiler_list=
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
@@ -5175,6 +5331,65 @@
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
+$as_echo_n "checking whether $CC understands -c and -o together... " >&6; }
+if ${am_cv_prog_cc_c_o+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+  # Make sure it works both with $CC and with simple cc.
+  # Following AC_PROG_CC_C_O, we do the test twice because some
+  # compilers refuse to overwrite an existing .o file with -o,
+  # though they will create one.
+  am_cv_prog_cc_c_o=yes
+  for am_i in 1 2; do
+    if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5
+   ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5
+   ac_status=$?
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); } \
+         && test -f conftest2.$ac_objext; then
+      : OK
+    else
+      am_cv_prog_cc_c_o=no
+      break
+    fi
+  done
+  rm -f core conftest*
+  unset am_i
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
+$as_echo "$am_cv_prog_cc_c_o" >&6; }
+if test "$am_cv_prog_cc_c_o" != yes; then
+   # Losing compiler, so override with the script.
+   # FIXME: It is wrong to rewrite CC.
+   # But if we don't then we get into trouble of one sort or another.
+   # A longer-term fix would be to have automake use am__CC in this case,
+   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
+   CC="$am_aux_dir/compile $CC"
+fi
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
 depcc="$CC"   am_compiler_list=
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
@@ -5303,131 +5518,6 @@
 fi
 
 
-if test "x$CC" != xcc; then
-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5
-$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; }
-else
-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5
-$as_echo_n "checking whether cc understands -c and -o together... " >&6; }
-fi
-set dummy $CC; ac_cc=`$as_echo "$2" |
-		      sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
-if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
-  $as_echo_n "(cached) " >&6
-else
-  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h.  */
-
-int
-main ()
-{
-
-  ;
-  return 0;
-}
-_ACEOF
-# Make sure it works both with $CC and with simple cc.
-# We do the test twice because some compilers refuse to overwrite an
-# existing .o file with -o, though they will create one.
-ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
-rm -f conftest2.*
-if { { case "(($ac_try" in
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-  *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
-  (eval "$ac_try") 2>&5
-  ac_status=$?
-  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; } &&
-   test -f conftest2.$ac_objext && { { case "(($ac_try" in
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-  *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
-  (eval "$ac_try") 2>&5
-  ac_status=$?
-  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; };
-then
-  eval ac_cv_prog_cc_${ac_cc}_c_o=yes
-  if test "x$CC" != xcc; then
-    # Test first that cc exists at all.
-    if { ac_try='cc -c conftest.$ac_ext >&5'
-  { { case "(($ac_try" in
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-  *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
-  (eval "$ac_try") 2>&5
-  ac_status=$?
-  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; }; }; then
-      ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
-      rm -f conftest2.*
-      if { { case "(($ac_try" in
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-  *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
-  (eval "$ac_try") 2>&5
-  ac_status=$?
-  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; } &&
-	 test -f conftest2.$ac_objext && { { case "(($ac_try" in
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-  *) ac_try_echo=$ac_try;;
-esac
-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-$as_echo "$ac_try_echo"; } >&5
-  (eval "$ac_try") 2>&5
-  ac_status=$?
-  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-  test $ac_status = 0; };
-      then
-	# cc works too.
-	:
-      else
-	# cc exists but doesn't like -o.
-	eval ac_cv_prog_cc_${ac_cc}_c_o=no
-      fi
-    fi
-  fi
-else
-  eval ac_cv_prog_cc_${ac_cc}_c_o=no
-fi
-rm -f core conftest*
-
-fi
-if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then
-  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
-else
-  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-
-$as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h
-
-fi
-
-# FIXME: we rely on the cache variable name because
-# there is no other way.
-set dummy $CC
-am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
-eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
-if test "$am_t" != yes; then
-   # Losing compiler, so override with the script.
-   # FIXME: It is wrong to rewrite CC.
-   # But if we don't then we get into trouble of one sort or another.
-   # A longer-term fix would be to have automake use am__CC in this case,
-   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
-   CC="$am_aux_dir/compile $CC"
-fi
-
 
 # Make sure we can run config.sub.
 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
@@ -6877,7 +6967,8 @@
     ;;
   *)
     lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
-    if test -n "$lt_cv_sys_max_cmd_len"; then
+    if test -n "$lt_cv_sys_max_cmd_len" && \
+	test undefined != "$lt_cv_sys_max_cmd_len"; then
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
     else
@@ -7278,10 +7369,6 @@
   fi
   ;;
 
-gnu*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
 haiku*)
   lt_cv_deplibs_check_method=pass_all
   ;;
@@ -7320,11 +7407,11 @@
   ;;
 
 # This must be glibc/ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu)
+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
   lt_cv_deplibs_check_method=pass_all
   ;;
 
-netbsd*)
+netbsd* | netbsdelf*-gnu)
   if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
     lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
   else
@@ -8401,7 +8488,7 @@
   rm -rf conftest*
   ;;
 
-x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
+x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
 s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
   # Find out which ABI we are using.
   echo 'int i;' > conftest.$ac_ext
@@ -8417,9 +8504,19 @@
 	    LD="${LD-ld} -m elf_i386_fbsd"
 	    ;;
 	  x86_64-*linux*)
-	    LD="${LD-ld} -m elf_i386"
-	    ;;
-	  ppc64-*linux*|powerpc64-*linux*)
+	    case `/usr/bin/file conftest.o` in
+	      *x86-64*)
+		LD="${LD-ld} -m elf32_x86_64"
+		;;
+	      *)
+		LD="${LD-ld} -m elf_i386"
+		;;
+	    esac
+	    ;;
+	  powerpc64le-*)
+	    LD="${LD-ld} -m elf32lppclinux"
+	    ;;
+	  powerpc64-*)
 	    LD="${LD-ld} -m elf32ppclinux"
 	    ;;
 	  s390x-*linux*)
@@ -8438,7 +8535,10 @@
 	  x86_64-*linux*)
 	    LD="${LD-ld} -m elf_x86_64"
 	    ;;
-	  ppc*-*linux*|powerpc*-*linux*)
+	  powerpcle-*)
+	    LD="${LD-ld} -m elf64lppc"
+	    ;;
+	  powerpc-*)
 	    LD="${LD-ld} -m elf64ppc"
 	    ;;
 	  s390*-*linux*|s390*-*tpf*)
@@ -9974,7 +10074,7 @@
       lt_prog_compiler_static='-non_shared'
       ;;
 
-    linux* | k*bsd*-gnu | kopensolaris*-gnu)
+    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
       case $cc_basename in
       # old Intel for x86_64 which still supported -KPIC.
       ecc*)
@@ -10452,6 +10552,9 @@
   openbsd*)
     with_gnu_ld=no
     ;;
+  linux* | k*bsd*-gnu | gnu*)
+    link_all_deplibs=no
+    ;;
   esac
 
   ld_shlibs=yes
@@ -10673,7 +10776,7 @@
       fi
       ;;
 
-    netbsd*)
+    netbsd* | netbsdelf*-gnu)
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 	archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 	wlarc=
@@ -10850,6 +10953,7 @@
 	if test "$aix_use_runtimelinking" = yes; then
 	  shared_flag="$shared_flag "'${wl}-G'
 	fi
+	link_all_deplibs=no
       else
 	# not using gcc
 	if test "$host_cpu" = ia64; then
@@ -11303,7 +11407,7 @@
       link_all_deplibs=yes
       ;;
 
-    netbsd*)
+    netbsd* | netbsdelf*-gnu)
       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 	archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
       else
@@ -12140,17 +12244,6 @@
   esac
   ;;
 
-gnu*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=no
-  hardcode_into_libs=yes
-  ;;
-
 haiku*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
@@ -12267,7 +12360,7 @@
   ;;
 
 # This must be glibc/ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu)
+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
@@ -12331,6 +12424,18 @@
   dynamic_linker='GNU/Linux ld.so'
   ;;
 
+netbsdelf*-gnu)
+  version_type=linux
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+  hardcode_into_libs=yes
+  dynamic_linker='NetBSD ld.elf_so'
+  ;;
+
 netbsd*)
   version_type=sunos
   need_lib_prefix=no
@@ -13305,11 +13410,14 @@
 LIBXFCE4PANEL_VERINFO=4:0:0
 
 
-LIBXFCE4PANEL_VERSION=4.10.1
+LIBXFCE4PANEL_VERSION=4.10.0git-86a1b73
 LIBXFCE4PANEL_VERSION_API=1.0
 LIBXFCE4PANEL_VERSION_MAJOR=4
 LIBXFCE4PANEL_VERSION_MINOR=10
-LIBXFCE4PANEL_VERSION_MICRO=1
+LIBXFCE4PANEL_VERSION_MICRO=0
+
+$as_echo "#define LIBXFCE4PANEL_VERSION_API \"1.0\"" >>confdefs.h
+
 
 
 
@@ -13470,7 +13578,7 @@
 
 
 
-    ALL_LINGUAS="am ar ast az be bg bn bn_IN ca cs da de dz el en_GB eo es es_MX et eu fa fi fr gl gu he hi hr hu hy id is it ja ka kk ko ku lt lv mk mr ms nb nl nn pa pl pt pt_BR ro ru si sk sq sr sv ta te tr ug uk ur ur_PK vi zh_CN zh_TW "
+    ALL_LINGUAS="am ar ast be bg bn ca cs da de el en_AU en_GB eo es et eu fi fr gl he hr hu id is it ja kk ko lt lv ms nb nl nn oc pa pl pt_BR pt ro ru si sk sq sr sv te th tr ug uk ur_PK ur vi zh_CN zh_HK zh_TW "
 
    for ac_header in locale.h
 do :
@@ -15504,6 +15612,201 @@
 
 
 
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for garcon-gtk2-1 >= 0.3.0" >&5
+$as_echo_n "checking for garcon-gtk2-1 >= 0.3.0... " >&6; }
+  if $PKG_CONFIG "--atleast-version=0.3.0" "garcon-gtk2-1" >/dev/null 2>&1; then
+    GARCON_GTK2_VERSION=`$PKG_CONFIG --modversion "garcon-gtk2-1"`
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GARCON_GTK2_VERSION" >&5
+$as_echo "$GARCON_GTK2_VERSION" >&6; }
+
+    { $as_echo "$as_me:${as_lineno-$LINENO}: checking GARCON_GTK2_CFLAGS" >&5
+$as_echo_n "checking GARCON_GTK2_CFLAGS... " >&6; }
+    GARCON_GTK2_CFLAGS=`$PKG_CONFIG --cflags "garcon-gtk2-1"`
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GARCON_GTK2_CFLAGS" >&5
+$as_echo "$GARCON_GTK2_CFLAGS" >&6; }
+
+    { $as_echo "$as_me:${as_lineno-$LINENO}: checking GARCON_GTK2_LIBS" >&5
+$as_echo_n "checking GARCON_GTK2_LIBS... " >&6; }
+    GARCON_GTK2_LIBS=`$PKG_CONFIG --libs "garcon-gtk2-1"`
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GARCON_GTK2_LIBS" >&5
+$as_echo "$GARCON_GTK2_LIBS" >&6; }
+
+    GARCON_GTK2_REQUIRED_VERSION=0.3.0
+
+
+
+
+
+
+
+  elif $PKG_CONFIG --exists "garcon-gtk2-1" >/dev/null 2>&1; then
+    xdt_cv_version=`$PKG_CONFIG --modversion "garcon-gtk2-1"`
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: found, but $xdt_cv_version" >&5
+$as_echo "found, but $xdt_cv_version" >&6; }
+
+
+      echo "*** The required package garcon-gtk2-1 was found on your system,"
+      echo "*** but the installed version ($xdt_cv_version) is too old."
+      echo "*** Please upgrade garcon-gtk2-1 to atleast version 0.3.0, or adjust"
+      echo "*** the PKG_CONFIG_PATH environment variable if you installed"
+      echo "*** the new version of the package in a nonstandard prefix so"
+      echo "*** pkg-config is able to find it."
+      exit 1
+
+  else
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+$as_echo "not found" >&6; }
+
+
+      echo "*** The required package garcon-gtk2-1 was not found on your system."
+      echo "*** Please install garcon-gtk2-1 (atleast version 0.3.0) or adjust"
+      echo "*** the PKG_CONFIG_PATH environment variable if you"
+      echo "*** installed the package in a nonstandard prefix so that"
+      echo "*** pkg-config is able to find it."
+      exit 1
+
+  fi
+
+
+
+  # minimum supported version of pkg-config
+  xdt_cv_PKG_CONFIG_MIN_VERSION=0.9.0
+
+
+
+
+
+
+
+
+
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
+	if test -n "$ac_tool_prefix"; then
+  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
+set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_PKG_CONFIG+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  case $PKG_CONFIG in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  ;;
+esac
+fi
+PKG_CONFIG=$ac_cv_path_PKG_CONFIG
+if test -n "$PKG_CONFIG"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
+$as_echo "$PKG_CONFIG" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+fi
+if test -z "$ac_cv_path_PKG_CONFIG"; then
+  ac_pt_PKG_CONFIG=$PKG_CONFIG
+  # Extract the first word of "pkg-config", so it can be a program name with args.
+set dummy pkg-config; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  case $ac_pt_PKG_CONFIG in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  ;;
+esac
+fi
+ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
+if test -n "$ac_pt_PKG_CONFIG"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
+$as_echo "$ac_pt_PKG_CONFIG" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+  if test "x$ac_pt_PKG_CONFIG" = x; then
+    PKG_CONFIG=""
+  else
+    case $cross_compiling:$ac_tool_warned in
+yes:)
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+ac_tool_warned=yes ;;
+esac
+    PKG_CONFIG=$ac_pt_PKG_CONFIG
+  fi
+else
+  PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
+fi
+
+fi
+if test -n "$PKG_CONFIG"; then
+	_pkg_min_version=$xdt_cv_PKG_CONFIG_MIN_VERSION
+	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
+$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
+	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+	else
+		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+		PKG_CONFIG=""
+	fi
+fi
+
+      if test x"$PKG_CONFIG" = x""; then
+        echo
+        echo "*** Your version of pkg-config is too old. You need atleast"
+        echo "*** pkg-config $xdt_cv_PKG_CONFIG_MIN_VERSION or newer. You can download pkg-config"
+        echo "*** from the freedesktop.org software repository at"
+        echo "***"
+        echo "***    http://www.freedesktop.org/software/pkgconfig"
+        echo "***"
+        exit 1;
+      fi
+
+
+
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libxfce4ui-1 >= 4.9.0" >&5
 $as_echo_n "checking for libxfce4ui-1 >= 4.9.0... " >&6; }
   if $PKG_CONFIG "--atleast-version=4.9.0" "libxfce4ui-1" >/dev/null 2>&1; then
@@ -17318,6 +17621,250 @@
 
 
 
+  # Check whether --enable-gtk3 was given.
+if test "${enable_gtk3+set}" = set; then :
+  enableval=$enable_gtk3; xdt_cv_GTK3_check=$enableval
+else
+  xdt_cv_GTK3_check=no
+fi
+
+
+  if test x"$xdt_cv_GTK3_check" = x"yes"; then
+    if $PKG_CONFIG --exists "gtk+-3.0 >= 3.2.0" >/dev/null 2>&1; then
+
+
+  # minimum supported version of pkg-config
+  xdt_cv_PKG_CONFIG_MIN_VERSION=0.9.0
+
+
+
+
+
+
+
+
+
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
+	if test -n "$ac_tool_prefix"; then
+  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
+set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_PKG_CONFIG+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  case $PKG_CONFIG in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  ;;
+esac
+fi
+PKG_CONFIG=$ac_cv_path_PKG_CONFIG
+if test -n "$PKG_CONFIG"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
+$as_echo "$PKG_CONFIG" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+fi
+if test -z "$ac_cv_path_PKG_CONFIG"; then
+  ac_pt_PKG_CONFIG=$PKG_CONFIG
+  # Extract the first word of "pkg-config", so it can be a program name with args.
+set dummy pkg-config; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  case $ac_pt_PKG_CONFIG in
+  [\\/]* | ?:[\\/]*)
+  ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
+  ;;
+  *)
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+    for ac_exec_ext in '' $ac_executable_extensions; do
+  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+    ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+    break 2
+  fi
+done
+  done
+IFS=$as_save_IFS
+
+  ;;
+esac
+fi
+ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
+if test -n "$ac_pt_PKG_CONFIG"; then
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
+$as_echo "$ac_pt_PKG_CONFIG" >&6; }
+else
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+  if test "x$ac_pt_PKG_CONFIG" = x; then
+    PKG_CONFIG=""
+  else
+    case $cross_compiling:$ac_tool_warned in
+yes:)
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+ac_tool_warned=yes ;;
+esac
+    PKG_CONFIG=$ac_pt_PKG_CONFIG
+  fi
+else
+  PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
+fi
+
+fi
+if test -n "$PKG_CONFIG"; then
+	_pkg_min_version=$xdt_cv_PKG_CONFIG_MIN_VERSION
+	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
+$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
+	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+	else
+		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+		PKG_CONFIG=""
+	fi
+fi
+
+      if test x"$PKG_CONFIG" = x""; then
+        echo
+        echo "*** Your version of pkg-config is too old. You need atleast"
+        echo "*** pkg-config $xdt_cv_PKG_CONFIG_MIN_VERSION or newer. You can download pkg-config"
+        echo "*** from the freedesktop.org software repository at"
+        echo "***"
+        echo "***    http://www.freedesktop.org/software/pkgconfig"
+        echo "***"
+        exit 1;
+      fi
+
+
+
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gtk+-3.0 >= 3.2.0" >&5
+$as_echo_n "checking for gtk+-3.0 >= 3.2.0... " >&6; }
+  if $PKG_CONFIG "--atleast-version=3.2.0" "gtk+-3.0" >/dev/null 2>&1; then
+    GTK3_VERSION=`$PKG_CONFIG --modversion "gtk+-3.0"`
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTK3_VERSION" >&5
+$as_echo "$GTK3_VERSION" >&6; }
+
+    { $as_echo "$as_me:${as_lineno-$LINENO}: checking GTK3_CFLAGS" >&5
+$as_echo_n "checking GTK3_CFLAGS... " >&6; }
+    GTK3_CFLAGS=`$PKG_CONFIG --cflags "gtk+-3.0"`
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTK3_CFLAGS" >&5
+$as_echo "$GTK3_CFLAGS" >&6; }
+
+    { $as_echo "$as_me:${as_lineno-$LINENO}: checking GTK3_LIBS" >&5
+$as_echo_n "checking GTK3_LIBS... " >&6; }
+    GTK3_LIBS=`$PKG_CONFIG --libs "gtk+-3.0"`
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTK3_LIBS" >&5
+$as_echo "$GTK3_LIBS" >&6; }
+
+    GTK3_REQUIRED_VERSION=3.2.0
+
+
+
+
+
+
+
+
+$as_echo "#define HAVE_GTK3 1" >>confdefs.h
+
+        GTK3_FOUND="yes"
+
+  elif $PKG_CONFIG --exists "gtk+-3.0" >/dev/null 2>&1; then
+    xdt_cv_version=`$PKG_CONFIG --modversion "gtk+-3.0"`
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: found, but $xdt_cv_version" >&5
+$as_echo "found, but $xdt_cv_version" >&6; }
+
+
+      echo "*** The required package gtk+-3.0 was found on your system,"
+      echo "*** but the installed version ($xdt_cv_version) is too old."
+      echo "*** Please upgrade gtk+-3.0 to atleast version 3.2.0, or adjust"
+      echo "*** the PKG_CONFIG_PATH environment variable if you installed"
+      echo "*** the new version of the package in a nonstandard prefix so"
+      echo "*** pkg-config is able to find it."
+      exit 1
+
+  else
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+$as_echo "not found" >&6; }
+
+
+      echo "*** The required package gtk+-3.0 was not found on your system."
+      echo "*** Please install gtk+-3.0 (atleast version 3.2.0) or adjust"
+      echo "*** the PKG_CONFIG_PATH environment variable if you"
+      echo "*** installed the package in a nonstandard prefix so that"
+      echo "*** pkg-config is able to find it."
+      exit 1
+
+  fi
+
+    else
+      { $as_echo "$as_me:${as_lineno-$LINENO}: checking for optional package gtk+-3.0 >= 3.2.0" >&5
+$as_echo_n "checking for optional package gtk+-3.0 >= 3.2.0... " >&6; }
+      { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+$as_echo "not found" >&6; }
+    fi
+  else
+    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for optional package gtk+-3.0" >&5
+$as_echo_n "checking for optional package gtk+-3.0... " >&6; }
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: disabled" >&5
+$as_echo "disabled" >&6; }
+  fi
+
+   if test x"$GTK3_FOUND" = x"yes"; then
+  HAVE_GTK3_TRUE=
+  HAVE_GTK3_FALSE='#'
+else
+  HAVE_GTK3_TRUE='#'
+  HAVE_GTK3_FALSE=
+fi
+
+
+ if test "x$GTK3_FOUND" = "xyes"; then
+  ENABLE_GTK3_LIBRARY_TRUE=
+  ENABLE_GTK3_LIBRARY_FALSE='#'
+else
+  ENABLE_GTK3_LIBRARY_TRUE='#'
+  ENABLE_GTK3_LIBRARY_FALSE=
+fi
+
+
+
+
+
   # Check whether --enable-gio-unix was given.
 if test "${enable_gio_unix+set}" = set; then :
   enableval=$enable_gio_unix; xdt_cv_GIO_UNIX_check=$enableval
@@ -17771,31 +18318,11 @@
 	# Put the nasty error message in config.log where it belongs
 	echo "$GTKDOC_DEPS_PKG_ERRORS" >&5
 
-	as_fn_error $? "Package requirements (glib-2.0 >= 2.10.0 gobject-2.0  >= 2.10.0) were not met:
-
-$GTKDOC_DEPS_PKG_ERRORS
-
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
-installed software in a non-standard prefix.
-
-Alternatively, you may set the environment variables GTKDOC_DEPS_CFLAGS
-and GTKDOC_DEPS_LIBS to avoid the need to call pkg-config.
-See the pkg-config man page for more details." "$LINENO" 5
+	:
 elif test $pkg_failed = untried; then
      	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 $as_echo "no" >&6; }
-	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
-is in your PATH or set the PKG_CONFIG environment variable to the full
-path to pkg-config.
-
-Alternatively, you may set the environment variables GTKDOC_DEPS_CFLAGS
-and GTKDOC_DEPS_LIBS to avoid the need to call pkg-config.
-See the pkg-config man page for more details.
-
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
-See \`config.log' for more details" "$LINENO" 5; }
+	:
 else
 	GTKDOC_DEPS_CFLAGS=$pkg_cv_GTKDOC_DEPS_CFLAGS
 	GTKDOC_DEPS_LIBS=$pkg_cv_GTKDOC_DEPS_LIBS
@@ -17830,6 +18357,10 @@
     enable_gtk_doc_pdf=no
   fi
 
+  if test -z "$AM_DEFAULT_VERBOSITY"; then
+    AM_DEFAULT_VERBOSITY=1
+  fi
+
 
    if test x$enable_gtk_doc = xyes; then
   ENABLE_GTK_DOC_TRUE=
@@ -17878,7 +18409,7 @@
 if test "${enable_debug+set}" = set; then :
   enableval=$enable_debug; enable_debug=$enableval
 else
-  enable_debug=minimum
+  enable_debug=yes
 fi
 
 
@@ -17896,10 +18427,10 @@
                               -Wdeclaration-after-statement \
                               -Wmissing-declarations \
                               -Wmissing-noreturn -Wshadow -Wpointer-arith \
-                              -Wcast-align -Wformat -Wformat-security -Wformat-y2k \
+                              -Wcast-align -Wformat-security \
                               -Winit-self -Wmissing-include-dirs -Wundef \
-                              -Wnested-externs"
-    CPPFLAGS="$CPPFLAGS"
+                              -Wmissing-format-attribute -Wnested-externs"
+    CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
 
     if test x`uname` = x"Linux"; then
       xdt_cv_additional_CFLAGS="$xdt_cv_additional_CFLAGS -fstack-protector"
@@ -18105,7 +18636,7 @@
 $as_echo "$PLATFORM_LDFLAGS" >&6; }
 
 
-ac_config_files="$ac_config_files Makefile common/Makefile docs/Makefile docs/references/Makefile docs/references/version.xml icons/Makefile icons/16x16/Makefile icons/22x22/Makefile icons/24x24/Makefile icons/32x32/Makefile icons/48x48/Makefile icons/scalable/Makefile libxfce4panel/Makefile libxfce4panel/libxfce4panel-1.0.pc libxfce4panel/libxfce4panel-config.h migrate/Makefile migrate/default.xml panel/Makefile wrapper/Makefile plugins/Makefile plugins/actions/Makefile plugins/applicationsmenu/Makefile plugins/clock/Makefile plugins/directorymenu/Makefile plugins/launcher/Makefile plugins/pager/Makefile plugins/separator/Makefile plugins/showdesktop/Makefile plugins/systray/Makefile plugins/tasklist/Makefile plugins/windowmenu/Makefile po/Makefile.in"
+ac_config_files="$ac_config_files Makefile common/Makefile docs/Makefile docs/references/Makefile docs/references/version.xml icons/Makefile icons/16x16/Makefile icons/22x22/Makefile icons/24x24/Makefile icons/32x32/Makefile icons/48x48/Makefile icons/scalable/Makefile libxfce4panel/Makefile libxfce4panel/libxfce4panel-1.0.pc libxfce4panel/libxfce4panel-2.0.pc libxfce4panel/libxfce4panel-config.h migrate/Makefile migrate/default.xml panel/Makefile wrapper/Makefile plugins/Makefile plugins/actions/Makefile plugins/actions/actions.desktop.in plugins/applicationsmenu/Makefile plugins/applicationsmenu/applicationsmenu.desktop.in plugins/clock/Makefile plugins/clock/clock.desktop.in plugins/directorymenu/Makefile plugins/directorymenu/directorymenu.desktop.in plugins/launcher/Makefile plugins/launcher/launcher.desktop.in plugins/pager/Makefile plugins/pager/pager.desktop.in plugins/separator/Makefile plugins/separator/separator.desktop.in plugins/showdesktop/Makefile plugins/showdesktop/showdesktop.desktop.in plugins/systray/Makefile plugins/systray/systray.desktop.in plugins/tasklist/Makefile plugins/tasklist/tasklist.desktop.in plugins/windowmenu/Makefile plugins/windowmenu/windowmenu.desktop.in po/Makefile.in"
 
 cat >confcache <<\_ACEOF
 # This file is a shell script that caches the results of configure
@@ -18252,6 +18783,14 @@
   ac_config_commands="$ac_config_commands po/stamp-it"
 
 
+if test -z "${HAVE_GTK3_TRUE}" && test -z "${HAVE_GTK3_FALSE}"; then
+  as_fn_error $? "conditional \"HAVE_GTK3\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
+if test -z "${ENABLE_GTK3_LIBRARY_TRUE}" && test -z "${ENABLE_GTK3_LIBRARY_FALSE}"; then
+  as_fn_error $? "conditional \"ENABLE_GTK3_LIBRARY\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
 if test -z "${HAVE_GIO_UNIX_TRUE}" && test -z "${HAVE_GIO_UNIX_FALSE}"; then
   as_fn_error $? "conditional \"HAVE_GIO_UNIX\" was never defined.
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
@@ -18677,7 +19216,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by xfce4-panel $as_me 4.10.1, which was
+This file was extended by xfce4-panel $as_me 4.10.0git-86a1b73, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -18743,7 +19282,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-xfce4-panel config.status 4.10.1
+xfce4-panel config.status 4.10.0git-86a1b73
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
@@ -19168,6 +19707,7 @@
     "icons/scalable/Makefile") CONFIG_FILES="$CONFIG_FILES icons/scalable/Makefile" ;;
     "libxfce4panel/Makefile") CONFIG_FILES="$CONFIG_FILES libxfce4panel/Makefile" ;;
     "libxfce4panel/libxfce4panel-1.0.pc") CONFIG_FILES="$CONFIG_FILES libxfce4panel/libxfce4panel-1.0.pc" ;;
+    "libxfce4panel/libxfce4panel-2.0.pc") CONFIG_FILES="$CONFIG_FILES libxfce4panel/libxfce4panel-2.0.pc" ;;
     "libxfce4panel/libxfce4panel-config.h") CONFIG_FILES="$CONFIG_FILES libxfce4panel/libxfce4panel-config.h" ;;
     "migrate/Makefile") CONFIG_FILES="$CONFIG_FILES migrate/Makefile" ;;
     "migrate/default.xml") CONFIG_FILES="$CONFIG_FILES migrate/default.xml" ;;
@@ -19175,16 +19715,27 @@
     "wrapper/Makefile") CONFIG_FILES="$CONFIG_FILES wrapper/Makefile" ;;
     "plugins/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/Makefile" ;;
     "plugins/actions/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/actions/Makefile" ;;
+    "plugins/actions/actions.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/actions/actions.desktop.in" ;;
     "plugins/applicationsmenu/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/applicationsmenu/Makefile" ;;
+    "plugins/applicationsmenu/applicationsmenu.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/applicationsmenu/applicationsmenu.desktop.in" ;;
     "plugins/clock/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/clock/Makefile" ;;
+    "plugins/clock/clock.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/clock/clock.desktop.in" ;;
     "plugins/directorymenu/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/directorymenu/Makefile" ;;
+    "plugins/directorymenu/directorymenu.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/directorymenu/directorymenu.desktop.in" ;;
     "plugins/launcher/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/launcher/Makefile" ;;
+    "plugins/launcher/launcher.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/launcher/launcher.desktop.in" ;;
     "plugins/pager/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/pager/Makefile" ;;
+    "plugins/pager/pager.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/pager/pager.desktop.in" ;;
     "plugins/separator/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/separator/Makefile" ;;
+    "plugins/separator/separator.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/separator/separator.desktop.in" ;;
     "plugins/showdesktop/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/showdesktop/Makefile" ;;
+    "plugins/showdesktop/showdesktop.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/showdesktop/showdesktop.desktop.in" ;;
     "plugins/systray/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/systray/Makefile" ;;
+    "plugins/systray/systray.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/systray/systray.desktop.in" ;;
     "plugins/tasklist/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/tasklist/Makefile" ;;
+    "plugins/tasklist/tasklist.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/tasklist/tasklist.desktop.in" ;;
     "plugins/windowmenu/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/windowmenu/Makefile" ;;
+    "plugins/windowmenu/windowmenu.desktop.in") CONFIG_FILES="$CONFIG_FILES plugins/windowmenu/windowmenu.desktop.in" ;;
     "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
     "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
 
@@ -19834,7 +20385,7 @@
     DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
     test -z "$DEPDIR" && continue
     am__include=`sed -n 's/^am__include = //p' < "$mf"`
-    test -z "am__include" && continue
+    test -z "$am__include" && continue
     am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
     # Find all dependency output files, they are included files with
     # $(DEPDIR) in their names.  We invoke sed twice because it is the
@@ -20572,4 +21123,9 @@
 echo
 echo "* Debug Support:          $enable_debug"
 echo "* GNU Visibility:         $have_gnuc_visibility"
+if test x"$GTK3_FOUND" = x"yes"; then
+echo "* GTK+ 3 Support:         yes"
+else
+echo "* GTK+ 3 Support:         no"
+fi
 echo

=== modified file 'configure.ac'
--- configure.ac	2013-05-21 22:40:43 +0000
+++ configure.ac	2014-02-13 13:29:48 +0000
@@ -18,10 +18,10 @@
 m4_define([xfce4_panel_config_version], [2])
 m4_define([xfce4_panel_version_major], [4])
 m4_define([xfce4_panel_version_minor], [10])
-m4_define([xfce4_panel_version_micro], [1])
+m4_define([xfce4_panel_version_micro], [0])
 m4_define([xfce4_panel_version_nano],  []) dnl leave this empty to have no nano version
-m4_define([xfce4_panel_version_build], [48000a2])
-m4_define([xfce4_panel_version_tag],   [])
+m4_define([xfce4_panel_version_build], [86a1b73])
+m4_define([xfce4_panel_version_tag],   [git])
 m4_define([xfce4_panel_version], [xfce4_panel_version_major().xfce4_panel_version_minor().xfce4_panel_version_micro()ifelse(xfce4_panel_version_nano(), [], [], [.xfce4_panel_version_nano()])ifelse(xfce4_panel_version_tag(), [git], [xfce4_panel_version_tag()-xfce4_panel_version_build()], [xfce4_panel_version_tag()])])
 
 dnl *******************************************
@@ -96,6 +96,7 @@
 LIBXFCE4PANEL_VERSION_MAJOR=xfce4_panel_version_major()
 LIBXFCE4PANEL_VERSION_MINOR=xfce4_panel_version_minor()
 LIBXFCE4PANEL_VERSION_MICRO=xfce4_panel_version_micro()
+AC_DEFINE([LIBXFCE4PANEL_VERSION_API], "libxfce4panel_version_api()", [libxfce4panel api version])
 AC_SUBST([LIBXFCE4PANEL_VERSION])
 AC_SUBST([LIBXFCE4PANEL_VERSION_API])
 AC_SUBST([LIBXFCE4PANEL_VERSION_MAJOR])
@@ -121,7 +122,7 @@
 dnl ******************************
 dnl *** Check for i18n support ***
 dnl ******************************
-XDT_I18N([am ar ast az be bg bn bn_IN ca cs da de dz el en_GB eo es es_MX et eu fa fi fr gl gu he hi hr hu hy id is it ja ka kk ko ku lt lv mk mr ms nb nl nn pa pl pt pt_BR ro ru si sk sq sr sv ta te tr ug uk ur ur_PK vi zh_CN zh_TW ])
+XDT_I18N([am ar ast be bg bn ca cs da de el en_AU en_GB eo es et eu fi fr gl he hr hu id is it ja kk ko lt lv ms nb nl nn oc pa pl pt_BR pt ro ru si sk sq sr sv te th tr ug uk ur_PK ur vi zh_CN zh_HK zh_TW ])
 
 dnl *******************************
 dnl *** Check for X11 installed ***
@@ -133,6 +134,7 @@
 dnl ***********************************
 XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.9.0])
 XDT_CHECK_PACKAGE([GARCON], [garcon-1], [0.1.5])
+XDT_CHECK_PACKAGE([GARCON_GTK2], [garcon-gtk2-1], [0.3.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.9.0])
 XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.9.0])
 XDT_CHECK_PACKAGE([EXO], [exo-1], [0.7.2])
@@ -144,6 +146,14 @@
 XDT_CHECK_PACKAGE([CAIRO], [cairo], [1.0.0])
 XDT_CHECK_PACKAGE([LIBWNCK], [libwnck-1.0], [2.30])
 
+dnl ***********************************************************
+dnl *** Optional support for a GTK+3 version of the library ***
+dnl ***********************************************************
+XDT_CHECK_OPTIONAL_PACKAGE([GTK3],
+                           [gtk+-3.0], [3.2.0], [gtk3],
+                           [GTK+ 3 support], [no])
+AM_CONDITIONAL([ENABLE_GTK3_LIBRARY], [test "x$GTK3_FOUND" = "xyes"])
+
 dnl **********************************
 dnl *** Optional GIO UNIX features ***
 dnl **********************************
@@ -233,6 +243,7 @@
 icons/scalable/Makefile
 libxfce4panel/Makefile
 libxfce4panel/libxfce4panel-1.0.pc
+libxfce4panel/libxfce4panel-2.0.pc
 libxfce4panel/libxfce4panel-config.h
 migrate/Makefile
 migrate/default.xml
@@ -240,16 +251,27 @@
 wrapper/Makefile
 plugins/Makefile
 plugins/actions/Makefile
+plugins/actions/actions.desktop.in
 plugins/applicationsmenu/Makefile
+plugins/applicationsmenu/applicationsmenu.desktop.in
 plugins/clock/Makefile
+plugins/clock/clock.desktop.in
 plugins/directorymenu/Makefile
+plugins/directorymenu/directorymenu.desktop.in
 plugins/launcher/Makefile
+plugins/launcher/launcher.desktop.in
 plugins/pager/Makefile
+plugins/pager/pager.desktop.in
 plugins/separator/Makefile
+plugins/separator/separator.desktop.in
 plugins/showdesktop/Makefile
+plugins/showdesktop/showdesktop.desktop.in
 plugins/systray/Makefile
+plugins/systray/systray.desktop.in
 plugins/tasklist/Makefile
+plugins/tasklist/tasklist.desktop.in
 plugins/windowmenu/Makefile
+plugins/windowmenu/windowmenu.desktop.in
 po/Makefile.in
 ])
 
@@ -261,4 +283,9 @@
 echo
 echo "* Debug Support:          $enable_debug"
 echo "* GNU Visibility:         $have_gnuc_visibility"
+if test x"$GTK3_FOUND" = x"yes"; then
+echo "* GTK+ 3 Support:         yes"
+else
+echo "* GTK+ 3 Support:         no"
+fi
 echo

=== modified file 'debian/changelog'
--- debian/changelog	2013-12-24 13:21:02 +0000
+++ debian/changelog	2014-02-13 13:29:48 +0000
@@ -1,3 +1,34 @@
+xfce4-panel (4.11.0~0.git20140209.86a1b73-0ubuntu1) trusty; urgency=low
+
+  [ Unit 193 ]
+  * New git snapshot. (LP: #1238997)
+  * debian/patches:
+    - 02_potfiles-fix-ftbfs.patch: added, add missing files to po/POTFILES.in.
+  * debian/control: add b-dep on newer garcon.
+
+  [ Lionel Le Folgoc ]
+  * debian/patches:
+    - xubuntu_add-calendar-popup-to-clock-plugin.patch: dropped, included.
+    - series: refreshed.
+  * debian/xfce4-panel.install: include both (gtk2 and gtk3) wrappers.
+  * debian/rules: pass --enable-gtk3 --disable-silent-rules to configure script.
+  * debian/control: add b-dep on libgtk-3-dev.
+  * debian/xfce4-panel.shlibs: updated for the gtk3 library.
+
+ -- Unit 193 <unit193@ubuntu.com>  Wed, 12 Feb 2014 15:41:39 -0500
+
+xfce4-panel (4.10.1-2) UNRELEASED; urgency=low
+
+  [ Evgeni Golov ]
+  * Correct Vcs-* URLs to point to anonscm.debian.org
+
+  [ Jackson Doak ]
+  * Update debian/xfce4-panel.1
+  * debian/control: Bump standards-version to 3.9.4
+  * debian/rules: Use disable-silent-rules
+
+ -- Jackson Doak <noskcaj@ubuntu.com>  Sat, 24 Aug 2013 19:19:58 +1000
+
 xfce4-panel (4.10.1-1ubuntu2) trusty; urgency=medium
 
   * Use dh-autoreconf to update libtool for ppc64el.
@@ -726,3 +757,4 @@
   * Initial Release.
 
  -- Martin Loschwitz <madkiss@debian.org>  Tue, 29 Sep 2003 17:09:09 +0200
+

=== modified file 'debian/control'
--- debian/control	2013-12-24 13:21:02 +0000
+++ debian/control	2014-02-13 13:29:48 +0000
@@ -6,16 +6,17 @@
 Uploaders: Yves-Alexis Perez <corsac@debian.org>,
  Lionel Le Folgoc <mrpouit@gmail.com>
 Build-Depends: debhelper (>= 9), libxfce4util-dev (>= 4.10.0),
- libgarcon-1-0-dev (>= 0.2.0), libxfce4ui-1-dev (>= 4.10.0),
+ libgarcon-1-0-dev (>= 0.3.0~), libxfce4ui-1-dev (>= 4.10.0),
  libxfconf-0-dev (>= 4.10.0), libexo-1-dev (>= 0.8.0),
  libgtk2.0-dev (>= 2.14.0), libglib2.0-dev (>= 2.18.0),
  libdbus-glib-1-dev (>= 0.73), libcairo2-dev (>= 1.0.0),
- dh-autoreconf, gnome-common, gtk-doc-tools, xfce4-dev-tools,
- libwnck-dev (>= 2.22), libxml-parser-perl, intltool
-Standards-Version: 3.9.3
+ dh-autoreconf, gtk-doc-tools, xfce4-dev-tools,
+ libwnck-dev (>= 2.22), libxml-parser-perl, intltool,
+ libgtk-3-dev
+Standards-Version: 3.9.4
 Homepage: http://www.xfce.org/
-Vcs-Svn: svn://svn.debian.org/pkg-xfce/desktop/trunk/xfce4-panel/
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-xfce/desktop/trunk/xfce4-panel/
+Vcs-Svn: svn://anonscm.debian.org/pkg-xfce/desktop/trunk/xfce4-panel/
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-xfce/desktop/trunk/xfce4-panel/
 
 Package: xfce4-panel
 Section: xfce

=== added file 'debian/patches/02_potfiles-fix-ftbfs.patch'
--- debian/patches/02_potfiles-fix-ftbfs.patch	1970-01-01 00:00:00 +0000
+++ debian/patches/02_potfiles-fix-ftbfs.patch	2014-02-13 13:29:48 +0000
@@ -0,0 +1,75 @@
+Description: add missing files to po/POTFILES.in
+Author: Unit 193 <unit193@ubuntu.com>
+
+Origin: vendor
+Reviewed-By: Unit 193 <unit193@ubuntu.com>
+Last-Update: 2014-02-12
+
+--- xfce4-panel-4.11.0~0.git20140209.86a1b73.orig/po/POTFILES.in
++++ xfce4-panel-4.11.0~0.git20140209.86a1b73/po/POTFILES.in
+@@ -36,10 +36,12 @@ migrate/main.c
+ 
+ plugins/actions/actions-dialog.glade
+ plugins/actions/actions.c
++plugins/actions/actions.desktop.in
+ plugins/actions/actions.desktop.in.in
+ 
+ plugins/applicationsmenu/applicationsmenu-dialog.glade
+ plugins/applicationsmenu/applicationsmenu.c
++plugins/applicationsmenu/applicationsmenu.desktop.in
+ plugins/applicationsmenu/applicationsmenu.desktop.in.in
+ plugins/applicationsmenu/xfce4-popup-applicationsmenu.sh
+ 
+@@ -50,9 +52,11 @@ plugins/clock/clock-dialog.glade
+ plugins/clock/clock-digital.c
+ plugins/clock/clock-fuzzy.c
+ plugins/clock/clock-lcd.c
++plugins/clock/clock.desktop.in
+ plugins/clock/clock.desktop.in.in
+ 
+ plugins/directorymenu/directorymenu.c
++plugins/directorymenu/directorymenu.desktop.in
+ plugins/directorymenu/directorymenu.desktop.in.in
+ plugins/directorymenu/directorymenu-dialog.glade
+ plugins/directorymenu/xfce4-popup-directorymenu.sh
+@@ -60,18 +64,22 @@ plugins/directorymenu/xfce4-popup-direct
+ plugins/launcher/launcher.c
+ plugins/launcher/launcher-dialog.c
+ plugins/launcher/launcher-dialog.glade
++plugins/launcher/launcher.desktop.in
+ plugins/launcher/launcher.desktop.in.in
+ 
+ plugins/pager/pager.c
+ plugins/pager/pager-buttons.c
+ plugins/pager/pager-dialog.glade
++plugins/pager/pager.desktop.in
+ plugins/pager/pager.desktop.in.in
+ 
+ plugins/separator/separator.c
+ plugins/separator/separator-dialog.glade
++plugins/separator/separator.desktop.in
+ plugins/separator/separator.desktop.in.in
+ 
+ plugins/showdesktop/showdesktop.c
++plugins/showdesktop/showdesktop.desktop.in
+ plugins/showdesktop/showdesktop.desktop.in.in
+ 
+ plugins/systray/systray.c
+@@ -80,14 +88,17 @@ plugins/systray/systray-dialog.glade
+ plugins/systray/systray-manager.c
+ plugins/systray/systray-marshal.list
+ plugins/systray/systray-socket.c
++plugins/systray/systray.desktop.in
+ plugins/systray/systray.desktop.in.in
+ 
+ plugins/tasklist/tasklist.c
+ plugins/tasklist/tasklist-dialog.glade
+ plugins/tasklist/tasklist-widget.c
++plugins/tasklist/tasklist.desktop.in
+ plugins/tasklist/tasklist.desktop.in.in
+ 
+ plugins/windowmenu/windowmenu.c
+ plugins/windowmenu/windowmenu-dialog.glade
++plugins/windowmenu/windowmenu.desktop.in
+ plugins/windowmenu/windowmenu.desktop.in.in
+ plugins/windowmenu/xfce4-popup-windowmenu.sh

=== modified file 'debian/patches/series'
--- debian/patches/series	2013-07-07 10:54:09 +0000
+++ debian/patches/series	2014-02-13 13:29:48 +0000
@@ -1,3 +1,3 @@
 01_support-non-multiarch-modules.patch
+02_potfiles-fix-ftbfs.patch
 xubuntu_migrate-tasklist-separator.patch
-xubuntu_add-calendar-popup-to-clock-plugin.patch

=== removed file 'debian/patches/xubuntu_add-calendar-popup-to-clock-plugin.patch'
--- debian/patches/xubuntu_add-calendar-popup-to-clock-plugin.patch	2012-08-22 21:49:26 +0000
+++ debian/patches/xubuntu_add-calendar-popup-to-clock-plugin.patch	1970-01-01 00:00:00 +0000
@@ -1,237 +0,0 @@
-From 0456c33cceb85e64c609beecddee942624b51a72 Mon Sep 17 00:00:00 2001
-From: Guido Berhoerster <gber@opensuse.org>
-Date: Mon, 23 Jul 2012 15:58:50 +0000
-Subject: Clock: Add calendar popup to clock plugin (bug #9034).
-
----
-diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c
-index 2e38943..85a9d76 100644
---- a/plugins/clock/clock.c
-+++ b/plugins/clock/clock.c
-@@ -1,5 +1,6 @@
- /*
-  * Copyright (C) 2007-2010 Nick Schermer <nick@xfce.org>
-+ * Copyright (C) 2012      Guido Berhoerster <gber@opensuse.org>
-  *
-  * This library is free software; you can redistribute it and/or modify it
-  * under the terms of the GNU General Public License as published by the Free
-@@ -68,8 +69,13 @@ static gboolean clock_plugin_size_changed              (XfcePanelPlugin       *p
- static void     clock_plugin_size_ratio_changed        (XfcePanelPlugin       *panel_plugin);
- static void     clock_plugin_mode_changed              (XfcePanelPlugin       *panel_plugin,
-                                                         XfcePanelPluginMode    mode);
-+static void     clock_plugin_screen_position_changed   (XfcePanelPlugin       *panel_plugin,
-+                                                        XfceScreenPosition     position);
- static void     clock_plugin_configure_plugin          (XfcePanelPlugin       *panel_plugin);
- static void     clock_plugin_set_mode                  (ClockPlugin           *plugin);
-+static void     clock_plugin_reposition_calendar       (ClockPlugin          *plugin);
-+static void     clock_plugin_popup_calendar            (ClockPlugin           *plugin);
-+static void     clock_plugin_hide_calendar             (ClockPlugin           *plugin);
- static gboolean clock_plugin_tooltip                   (gpointer               user_data);
- static gboolean clock_plugin_timeout_running           (gpointer               user_data);
- static void     clock_plugin_timeout_destroyed         (gpointer               user_data);
-@@ -114,6 +120,9 @@ struct _ClockPlugin
-   GtkWidget          *clock;
-   GtkWidget          *frame;
- 
-+  GtkWidget          *calendar_window;
-+  GtkWidget          *calendar;
-+
-   guint               show_frame : 1;
-   gchar              *command;
-   ClockPluginMode     mode;
-@@ -197,6 +206,7 @@ clock_plugin_class_init (ClockPluginClass *klass)
-   plugin_class->free_data = clock_plugin_free_data;
-   plugin_class->size_changed = clock_plugin_size_changed;
-   plugin_class->mode_changed = clock_plugin_mode_changed;
-+  plugin_class->screen_position_changed = clock_plugin_screen_position_changed;
-   plugin_class->configure_plugin = clock_plugin_configure_plugin;
- 
-   g_object_class_install_property (gobject_class,
-@@ -333,6 +343,11 @@ clock_plugin_set_property (GObject      *object,
-     case PROP_COMMAND:
-       g_free (plugin->command);
-       plugin->command = g_value_dup_string (value);
-+      /*
-+       * ensure the calendar window is hidden since a non-empty command disables
-+       * toggling
-+       */
-+      clock_plugin_hide_calendar (plugin);
-       break;
- 
-     case PROP_ROTATE_VERTICALLY:
-@@ -396,19 +411,35 @@ clock_plugin_button_press_event (GtkWidget      *widget,
-   ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (widget);
-   GError      *error = NULL;
- 
--  if (event->button == 1
--      && event->type == GDK_2BUTTON_PRESS
--      && !exo_str_is_empty (plugin->command))
-+  if (event->button == 1)
-     {
--      /* launch command */
--      if (!xfce_spawn_command_line_on_screen (gtk_widget_get_screen (widget),
--                                              plugin->command, FALSE, FALSE, &error))
-+      if (event->type == GDK_BUTTON_PRESS &&
-+          exo_str_is_empty (plugin->command))
-         {
--          xfce_dialog_show_error (NULL, error, _("Failed to execute clock command"));
--          g_error_free (error);
-+          /* toggle calendar window visibility */
-+          if (plugin->calendar_window == NULL
-+              || !gtk_widget_get_visible (GTK_WIDGET (plugin->calendar_window)))
-+            clock_plugin_popup_calendar (plugin);
-+          else
-+            clock_plugin_hide_calendar (plugin);
-+
-+          return TRUE;
-         }
-+      else if (event->type == GDK_2BUTTON_PRESS
-+               && !exo_str_is_empty (plugin->command))
-+        {
-+          /* launch command */
-+          if (!xfce_spawn_command_line_on_screen (gtk_widget_get_screen (widget),
-+                                                  plugin->command, FALSE,
-+                                                  FALSE, &error))
-+            {
-+              xfce_dialog_show_error (NULL, error,
-+                                      _("Failed to execute clock command"));
-+              g_error_free (error);
-+            }
- 
--      return TRUE;
-+          return TRUE;
-+        }
-     }
- 
-   return (*GTK_WIDGET_CLASS (clock_plugin_parent_class)->button_press_event) (widget, event);
-@@ -453,6 +484,9 @@ clock_plugin_free_data (XfcePanelPlugin *panel_plugin)
-   if (plugin->tooltip_timeout != NULL)
-     clock_plugin_timeout_free (plugin->tooltip_timeout);
- 
-+  if (plugin->calendar_window != NULL)
-+    gtk_widget_destroy (plugin->calendar_window);
-+
-   g_free (plugin->tooltip_format);
-   g_free (plugin->command);
- }
-@@ -513,6 +547,10 @@ clock_plugin_size_changed (XfcePanelPlugin *panel_plugin,
-       gtk_widget_set_size_request (GTK_WIDGET (panel_plugin), size, ratio_size);
-     }
- 
-+  if (plugin->calendar_window != NULL
-+      && gtk_widget_get_visible (GTK_WIDGET (plugin->calendar_window)))
-+    clock_plugin_reposition_calendar (plugin);
-+
-   return TRUE;
- }
- 
-@@ -547,6 +585,19 @@ clock_plugin_mode_changed (XfcePanelPlugin     *panel_plugin,
- 
- 
- static void
-+clock_plugin_screen_position_changed (XfcePanelPlugin    *panel_plugin,
-+                                      XfceScreenPosition  position)
-+{
-+  ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (panel_plugin);
-+
-+  if (plugin->calendar_window != NULL
-+      && gtk_widget_get_visible (GTK_WIDGET (plugin->calendar_window)))
-+    clock_plugin_reposition_calendar (plugin);
-+}
-+
-+
-+
-+static void
- clock_plugin_configure_plugin_mode_changed (GtkComboBox       *combo,
-                                             ClockPluginDialog *dialog)
- {
-@@ -880,6 +931,87 @@ clock_plugin_set_mode (ClockPlugin *plugin)
- 
- 
- 
-+static void
-+clock_plugin_reposition_calendar (ClockPlugin *plugin)
-+{
-+  gint x, y;
-+
-+  xfce_panel_plugin_position_widget (XFCE_PANEL_PLUGIN (plugin),
-+                                     GTK_WIDGET (plugin->calendar_window),
-+                                     NULL, &x, &y);
-+  gtk_window_move (GTK_WINDOW (plugin->calendar_window), x, y);
-+}
-+
-+
-+
-+static void
-+clock_plugin_calendar_show_event (GtkWidget   *calendar_window,
-+                                  ClockPlugin *plugin)
-+{
-+  struct tm tm;
-+
-+  panel_return_if_fail (XFCE_IS_PANEL_PLUGIN (plugin));
-+
-+  clock_plugin_reposition_calendar (plugin);
-+
-+  clock_plugin_get_localtime (&tm);
-+  gtk_calendar_select_month (GTK_CALENDAR (plugin->calendar), tm.tm_mon,
-+                             1900 + tm.tm_year);
-+  gtk_calendar_select_day (GTK_CALENDAR (plugin->calendar), tm.tm_mday);
-+}
-+
-+
-+
-+static void
-+clock_plugin_popup_calendar (ClockPlugin *plugin)
-+{
-+  GtkWidget *calendar_frame;
-+
-+  if (plugin->calendar_window == NULL)
-+    {
-+      plugin->calendar_window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
-+      gtk_window_set_type_hint (GTK_WINDOW (plugin->calendar_window),
-+                                GDK_WINDOW_TYPE_HINT_UTILITY);
-+      gtk_window_set_decorated (GTK_WINDOW (plugin->calendar_window), FALSE);
-+      gtk_window_set_resizable (GTK_WINDOW (plugin->calendar_window), FALSE);
-+      gtk_window_set_skip_taskbar_hint(GTK_WINDOW (plugin->calendar_window), TRUE);
-+      gtk_window_set_skip_pager_hint(GTK_WINDOW (plugin->calendar_window), TRUE);
-+      gtk_window_set_keep_above (GTK_WINDOW (plugin->calendar_window), TRUE);
-+      gtk_window_stick (GTK_WINDOW (plugin->calendar_window));
-+
-+      calendar_frame = gtk_frame_new (NULL);
-+      gtk_frame_set_shadow_type (GTK_FRAME (calendar_frame), GTK_SHADOW_OUT);
-+      gtk_container_add (GTK_CONTAINER (plugin->calendar_window), calendar_frame);
-+      gtk_widget_show (calendar_frame);
-+
-+      plugin->calendar = gtk_calendar_new ();
-+      gtk_calendar_set_display_options (GTK_CALENDAR (plugin->calendar),
-+                                        GTK_CALENDAR_SHOW_HEADING
-+                                        | GTK_CALENDAR_SHOW_DAY_NAMES
-+                                        | GTK_CALENDAR_SHOW_WEEK_NUMBERS);
-+      g_signal_connect (G_OBJECT (plugin->calendar_window), "show",
-+                        G_CALLBACK (clock_plugin_calendar_show_event), plugin);
-+      gtk_container_add (GTK_CONTAINER (calendar_frame), plugin->calendar);
-+      gtk_widget_show (plugin->calendar);
-+    }
-+
-+  gtk_widget_show (GTK_WIDGET (plugin->calendar_window));
-+  xfce_panel_plugin_block_autohide (XFCE_PANEL_PLUGIN (plugin), TRUE);
-+}
-+
-+
-+
-+static void
-+clock_plugin_hide_calendar (ClockPlugin *plugin)
-+{
-+  panel_return_if_fail (plugin->calendar_window != NULL);
-+
-+  gtk_widget_hide (GTK_WIDGET (plugin->calendar_window));
-+  xfce_panel_plugin_block_autohide (XFCE_PANEL_PLUGIN (plugin), FALSE);
-+}
-+
-+
-+
- static gboolean
- clock_plugin_tooltip (gpointer user_data)
- {
---
-cgit v0.9.0.3

=== modified file 'debian/rules'
--- debian/rules	2013-12-24 13:21:02 +0000
+++ debian/rules	2014-02-13 13:29:48 +0000
@@ -15,7 +15,7 @@
 	dh_autoreconf xdt-autogen
 
 override_dh_auto_configure:
-	dh_auto_configure
+	dh_auto_configure -- --enable-gtk3 --disable-silent-rules
 	find .pc -type f -exec echo '{}' >> po/POTFILES.skip \;
 
 override_dh_auto_clean:

=== modified file 'debian/xfce4-panel.1'
--- debian/xfce4-panel.1	2011-10-25 22:08:55 +0000
+++ debian/xfce4-panel.1	2014-02-13 13:29:48 +0000
@@ -1,18 +1,88 @@
-.\" Copyright (C) 2004 Simon Huggins
-.TH XFCE4-PANEL "1" "February 2004" "xfce4-panel 0.1" "User Commands"
+.TH XFCE4-PANEL "1" "August 2013" "xfce4-panel" "User Commands"
 .SH NAME
-xfce4-panel \- XFce 4 Panel
-.SH SYNOPSIS
-.B xfce4-panel
+xfce4-panel \- A panel for the Xfce4 desktop environment
 .SH DESCRIPTION
-.PP
-Starts the XFce 4 panel.
-.SH SEE ALSO
-Upstream documentation in /usr/share/doc/xfce4-panel/html/C/index.html
+.SS "Usage:"
+.IP
+xfce4\-panel [OPTION...] [ARGUMENTS...]
+.SS "Help Options:"
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+Show help options
+.TP
+\fB\-\-help\-all\fR
+Show all help options
+.TP
+\fB\-\-help\-gtk\fR
+Show GTK+ Options
+.TP
+\fB\-\-help\-sm\-client\fR
+Show session management options
+.PP
+GTK+ Options
+.TP
+\fB\-\-class\fR=\fICLASS\fR
+Program class as used by the window manager
+.TP
+\fB\-\-name\fR=\fINAME\fR
+Program name as used by the window manager
+.TP
+\fB\-\-screen\fR=\fISCREEN\fR
+X screen to use
+.TP
+\fB\-\-sync\fR
+Make X calls synchronous
+.TP
+\fB\-\-gtk\-module\fR=\fIMODULES\fR
+Load additional GTK+ modules
+.TP
+\fB\-\-g\-fatal\-warnings\fR
+Make all warnings fatal
+.PP
+Session management options
+.TP
+\fB\-\-sm\-client\-id\fR=\fIID\fR
+Session management client ID
+.TP
+\fB\-\-sm\-client\-disable\fR
+Disable session management
+.SS "Application Options:"
+.TP
+\fB\-p\fR, \fB\-\-preferences\fR=\fIPANEL\-NUMBER\fR
+Show the 'Panel Preferences' dialog
+.TP
+\fB\-a\fR, \fB\-\-add\-items\fR=\fIPANEL\-NUMBER\fR
+Show the 'Add New Items' dialog
+.TP
+\fB\-s\fR, \fB\-\-save\fR
+Save the panel configuration
+.TP
+\fB\-\-add\fR=\fIPLUGIN\-NAME\fR
+Add a new plugin to the panel
+.TP
+\fB\-r\fR, \fB\-\-restart\fR
+Restart the running panel instance
+.TP
+\fB\-q\fR, \fB\-\-quit\fR
+Quit the running panel instance
+.TP
+\fB\-d\fR, \fB\-\-disable\-wm\-check\fR
+Do not wait for a window manager on startup
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+Print version information and exit
+.TP
+\fB\-\-display\fR=\fIDISPLAY\fR
+X display to use
 .SH "REPORTING BUGS"
 Report bugs to http://bugs.debian.org
 .SH COPYRIGHT
-Copyright \(co 2004 Simon Huggins
-.br
+Copyright \(co 2004\-2011
+.IP
+The Xfce development team. All rights reserved.
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+.SH SEE ALSO
+Upstream documentation in /usr/share/doc/xfce4-panel/html/C/index.html
+
+

=== modified file 'debian/xfce4-panel.install'
--- debian/xfce4-panel.install	2012-05-05 13:35:45 +0000
+++ debian/xfce4-panel.install	2014-02-13 13:29:48 +0000
@@ -1,7 +1,7 @@
 usr/bin/
 usr/lib/*/lib*.so.*
 usr/lib/*/xfce4/panel/migrate
-usr/lib/*/xfce4/panel/wrapper
+usr/lib/*/xfce4/panel/wrapper-*
 usr/lib/*/xfce4/panel/plugins/*.so
 etc/
 usr/share/applications/

=== modified file 'debian/xfce4-panel.shlibs'
--- debian/xfce4-panel.shlibs	2013-07-07 10:54:09 +0000
+++ debian/xfce4-panel.shlibs	2014-02-13 13:29:48 +0000
@@ -1,1 +1,2 @@
 libxfce4panel-1.0 4 xfce4-panel (>= 4.9.2)
+libxfce4panel-2.0 4 xfce4-panel (>= 4.11.0~)

=== modified file 'depcomp'
--- depcomp	2013-05-21 22:40:43 +0000
+++ depcomp	2014-02-13 13:29:48 +0000
@@ -1,7 +1,7 @@
 #! /bin/sh
 # depcomp - compile a program generating dependencies as side-effects
 
-scriptversion=2012-10-18.11; # UTC
+scriptversion=2013-05-30.07; # UTC
 
 # Copyright (C) 1999-2013 Free Software Foundation, Inc.
 
@@ -552,6 +552,7 @@
   G
   p
 }' >> "$depfile"
+  echo >> "$depfile" # make sure the fragment doesn't end with a backslash
   rm -f "$tmpdepfile"
   ;;
 

=== modified file 'docs/Makefile.in'
--- docs/Makefile.in	2013-05-21 22:40:43 +0000
+++ docs/Makefile.in	2014-02-13 13:29:48 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.13.1 from Makefile.am.
+# Makefile.in generated by automake 1.14.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2012 Free Software Foundation, Inc.
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -14,23 +14,51 @@
 
 @SET_MAKE@
 VPATH = @srcdir@
-am__make_dryrun = \
-  { \
-    am__dry=no; \
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__make_running_with_option = \
+  case $${target_option-} in \
+      ?) ;; \
+      *) echo "am__make_running_with_option: internal error: invalid" \
+              "target option '$${target_option-}' specified" >&2; \
+         exit 1;; \
+  esac; \
+  has_opt=no; \
+  sane_makeflags=$$MAKEFLAGS; \
+  if $(am__is_gnu_make); then \
+    sane_makeflags=$$MFLAGS; \
+  else \
     case $$MAKEFLAGS in \
       *\\[\ \	]*) \
-        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
-          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
-      *) \
-        for am__flg in $$MAKEFLAGS; do \
-          case $$am__flg in \
-            *=*|--*) ;; \
-            *n*) am__dry=yes; break;; \
-          esac; \
-        done;; \
-    esac; \
-    test $$am__dry = yes; \
-  }
+        bs=\\; \
+        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
+    esac; \
+  fi; \
+  skip_next=no; \
+  strip_trailopt () \
+  { \
+    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+  }; \
+  for flg in $$sane_makeflags; do \
+    test $$skip_next = yes && { skip_next=no; continue; }; \
+    case $$flg in \
+      *=*|--*) continue;; \
+        -*I) strip_trailopt 'I'; skip_next=yes;; \
+      -*I?*) strip_trailopt 'I';; \
+        -*O) strip_trailopt 'O'; skip_next=yes;; \
+      -*O?*) strip_trailopt 'O';; \
+        -*l) strip_trailopt 'l'; skip_next=yes;; \
+      -*l?*) strip_trailopt 'l';; \
+      -[dEDm]) skip_next=yes;; \
+      -[JT]) skip_next=yes;; \
+    esac; \
+    case $$flg in \
+      *$$target_option*) has_opt=yes; break;; \
+    esac; \
+  done; \
+  test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -182,6 +210,10 @@
 EXO_VERSION = @EXO_VERSION@
 FGREP = @FGREP@
 GARCON_CFLAGS = @GARCON_CFLAGS@
+GARCON_GTK2_CFLAGS = @GARCON_GTK2_CFLAGS@
+GARCON_GTK2_LIBS = @GARCON_GTK2_LIBS@
+GARCON_GTK2_REQUIRED_VERSION = @GARCON_GTK2_REQUIRED_VERSION@
+GARCON_GTK2_VERSION = @GARCON_GTK2_VERSION@
 GARCON_LIBS = @GARCON_LIBS@
 GARCON_REQUIRED_VERSION = @GARCON_REQUIRED_VERSION@
 GARCON_VERSION = @GARCON_VERSION@
@@ -205,6 +237,10 @@
 GMOFILES = @GMOFILES@
 GMSGFMT = @GMSGFMT@
 GREP = @GREP@
+GTK3_CFLAGS = @GTK3_CFLAGS@
+GTK3_LIBS = @GTK3_LIBS@
+GTK3_REQUIRED_VERSION = @GTK3_REQUIRED_VERSION@
+GTK3_VERSION = @GTK3_VERSION@
 GTKDOC_CHECK = @GTKDOC_CHECK@
 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
@@ -420,13 +456,12 @@
 #     (which will cause the Makefiles to be regenerated when you run 'make');
 # (2) otherwise, pass the desired values on the 'make' command line.
 $(am__recursive_targets):
-	@fail= failcom='exit 1'; \
-	for f in x $$MAKEFLAGS; do \
-	  case $$f in \
-	    *=* | --[!k]*);; \
-	    *k*) failcom='fail=yes';; \
-	  esac; \
-	done; \
+	@fail=; \
+	if $(am__make_keepgoing); then \
+	  failcom='fail=yes'; \
+	else \
+	  failcom='exit 1'; \
+	fi; \
 	dot_seen=no; \
 	target=`echo $@ | sed s/-recursive//`; \
 	case "$@" in \

=== modified file 'docs/references/Makefile.in'
--- docs/references/Makefile.in	2013-05-21 22:40:43 +0000
+++ docs/references/Makefile.in	2014-02-13 13:29:48 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.13.1 from Makefile.am.
+# Makefile.in generated by automake 1.14.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2012 Free Software Foundation, Inc.
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -20,23 +20,51 @@
 # Everything below here is generic #
 ####################################
 VPATH = @srcdir@
-am__make_dryrun = \
-  { \
-    am__dry=no; \
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
+am__make_running_with_option = \
+  case $${target_option-} in \
+      ?) ;; \
+      *) echo "am__make_running_with_option: internal error: invalid" \
+              "target option '$${target_option-}' specified" >&2; \
+         exit 1;; \
+  esac; \
+  has_opt=no; \
+  sane_makeflags=$$MAKEFLAGS; \
+  if $(am__is_gnu_make); then \
+    sane_makeflags=$$MFLAGS; \
+  else \
     case $$MAKEFLAGS in \
       *\\[\ \	]*) \
-        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
-          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
-      *) \
-        for am__flg in $$MAKEFLAGS; do \
-          case $$am__flg in \
-            *=*|--*) ;; \
-            *n*) am__dry=yes; break;; \
-          esac; \
-        done;; \
-    esac; \
-    test $$am__dry = yes; \
-  }
+        bs=\\; \
+        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
+    esac; \
+  fi; \
+  skip_next=no; \
+  strip_trailopt () \
+  { \
+    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+  }; \
+  for flg in $$sane_makeflags; do \
+    test $$skip_next = yes && { skip_next=no; continue; }; \
+    case $$flg in \
+      *=*|--*) continue;; \
+        -*I) strip_trailopt 'I'; skip_next=yes;; \
+      -*I?*) strip_trailopt 'I';; \
+        -*O) strip_trailopt 'O'; skip_next=yes;; \
+      -*O?*) strip_trailopt 'O';; \
+        -*l) strip_trailopt 'l'; skip_next=yes;; \
+      -*l?*) strip_trailopt 'l';; \
+      -[dEDm]) skip_next=yes;; \
+      -[JT]) skip_next=yes;; \
+    esac; \
+    case $$flg in \
+      *$$target_option*) has_opt=yes; break;; \
+    esac; \
+  done; \
+  test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -129,6 +157,10 @@
 EXO_VERSION = @EXO_VERSION@
 FGREP = @FGREP@
 GARCON_CFLAGS = @GARCON_CFLAGS@
+GARCON_GTK2_CFLAGS = @GARCON_GTK2_CFLAGS@
+GARCON_GTK2_LIBS = @GARCON_GTK2_LIBS@
+GARCON_GTK2_REQUIRED_VERSION = @GARCON_GTK2_REQUIRED_VERSION@
+GARCON_GTK2_VERSION = @GARCON_GTK2_VERSION@
 GARCON_LIBS = @GARCON_LIBS@
 GARCON_REQUIRED_VERSION = @GARCON_REQUIRED_VERSION@
 GARCON_VERSION = @GARCON_VERSION@
@@ -152,6 +184,10 @@
 GMOFILES = @GMOFILES@
 GMSGFMT = @GMSGFMT@
 GREP = @GREP@
+GTK3_CFLAGS = @GTK3_CFLAGS@
+GTK3_LIBS = @GTK3_LIBS@
+GTK3_REQUIRED_VERSION = @GTK3_REQUIRED_VERSION@
+GTK3_VERSION = @GTK3_VERSION@
 GTKDOC_CHECK = @GTKDOC_CHECK@
 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
@@ -416,6 +452,42 @@
 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP = 
 @ENABLE_GTK_DOC_TRUE@@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
+
+#### setup ####
+GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_$(V))
+GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_$(AM_DEFAULT_VERBOSITY))
+GTK_DOC_V_SETUP_0 = @echo "  DOC   Preparing build";
+
+#### scan ####
+GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_$(V))
+GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_$(AM_DEFAULT_VERBOSITY))
+GTK_DOC_V_SCAN_0 = @echo "  DOC   Scanning header files";
+GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_$(V))
+GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_$(AM_DEFAULT_VERBOSITY))
+GTK_DOC_V_INTROSPECT_0 = @echo "  DOC   Introspecting gobjects";
+
+#### templates ####
+GTK_DOC_V_TMPL = $(GTK_DOC_V_TMPL_$(V))
+GTK_DOC_V_TMPL_ = $(GTK_DOC_V_TMPL_$(AM_DEFAULT_VERBOSITY))
+GTK_DOC_V_TMPL_0 = @echo "  DOC   Rebuilding template files";
+
+#### xml ####
+GTK_DOC_V_XML = $(GTK_DOC_V_XML_$(V))
+GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY))
+GTK_DOC_V_XML_0 = @echo "  DOC   Building XML";
+
+#### html ####
+GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_$(V))
+GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_$(AM_DEFAULT_VERBOSITY))
+GTK_DOC_V_HTML_0 = @echo "  DOC   Building HTML";
+GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_$(V))
+GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_$(AM_DEFAULT_VERBOSITY))
+GTK_DOC_V_XREF_0 = @echo "  DOC   Fixing cross-references";
+
+#### pdf ####
+GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_$(V))
+GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_$(AM_DEFAULT_VERBOSITY))
+GTK_DOC_V_PDF_0 = @echo "  DOC   Building PDF";
 all: all-am
 
 .SUFFIXES:
@@ -624,35 +696,28 @@
 
 $(REPORT_FILES): sgml-build.stamp
 
-#### setup ####
-
 setup-build.stamp:
-	-@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
-	    echo '  DOC   Preparing build'; \
+	-$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
 	    files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
 	    if test "x$$files" != "x" ; then \
 	        for file in $$files ; do \
 	            test -f $(abs_srcdir)/$$file && \
-	                cp -pu $(abs_srcdir)/$$file $(abs_builddir)/ || true; \
+	                cp -pu $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
 	        done; \
 	    fi; \
 	    test -d $(abs_srcdir)/tmpl && \
 	        { cp -rp $(abs_srcdir)/tmpl $(abs_builddir)/; \
 	        chmod -R u+w $(abs_builddir)/tmpl; } \
 	fi
-	@touch setup-build.stamp
-
-#### scan ####
+	$(AM_V_at)touch setup-build.stamp
 
 scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
-	@echo '  DOC   Scanning header files'
-	@_source_dir='' ; \
+	$(GTK_DOC_V_SCAN)_source_dir='' ; \
 	for i in $(DOC_SOURCE_DIR) ; do \
 	    _source_dir="$${_source_dir} --source-dir=$$i" ; \
 	done ; \
 	gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES)
-	@if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
-	    echo "  DOC   Introspecting gobjects"; \
+	$(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
 	    scanobj_options=""; \
 	    gtkdoc-scangobj 2>&1 --help | grep  >/dev/null "\-\-verbose"; \
 	    if test "$(?)" = "0"; then \
@@ -667,22 +732,19 @@
 	        test -f $$i || touch $$i ; \
 	    done \
 	fi
-	@touch scan-build.stamp
+	$(AM_V_at)touch scan-build.stamp
 
 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp
 	@true
 
-#### templates ####
-
 tmpl-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt
-	@echo '  DOC   Rebuilding template files'
-	@gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS)
-	@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
+	$(GTK_DOC_V_TMPL)gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS)
+	$(AM_V_at)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
 	  if test -w $(abs_srcdir) ; then \
 	    cp -rp $(abs_builddir)/tmpl $(abs_srcdir)/; \
 	  fi \
 	fi
-	@touch tmpl-build.stamp
+	$(AM_V_at)touch tmpl-build.stamp
 
 tmpl.stamp: tmpl-build.stamp
 	@true
@@ -690,28 +752,20 @@
 $(srcdir)/tmpl/*.sgml:
 	@true
 
-#### xml ####
-
 sgml-build.stamp: tmpl.stamp $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files)
-	@echo '  DOC   Building XML'
-	@-chmod -R u+w $(srcdir)
-	@_source_dir='' ; \
+	$(GTK_DOC_V_XML)-chmod -R u+w $(srcdir) && _source_dir='' ; \
 	for i in $(DOC_SOURCE_DIR) ; do \
 	    _source_dir="$${_source_dir} --source-dir=$$i" ; \
 	done ; \
 	gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS)
-	@touch sgml-build.stamp
+	$(AM_V_at)touch sgml-build.stamp
 
 sgml.stamp: sgml-build.stamp
 	@true
 
-#### html ####
-
 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
-	@echo '  DOC   Building HTML'
-	@rm -rf html
-	@mkdir html
-	@mkhtml_options=""; \
+	$(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
+	mkhtml_options=""; \
 	gtkdoc-mkhtml 2>&1 --help | grep  >/dev/null "\-\-verbose"; \
 	if test "$(?)" = "0"; then \
 	  if test "x$(V)" = "x1"; then \
@@ -732,16 +786,12 @@
 	    cp $(abs_builddir)/$$file $(abs_builddir)/html; \
 	  fi; \
 	done;
-	@echo '  DOC   Fixing cross-references'
-	@gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
-	@touch html-build.stamp
-
-#### pdf ####
+	$(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
+	$(AM_V_at)touch html-build.stamp
 
 pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
-	@echo '  DOC   Building PDF'
-	@rm -f $(DOC_MODULE).pdf
-	@mkpdf_options=""; \
+	$(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
+	mkpdf_options=""; \
 	gtkdoc-mkpdf 2>&1 --help | grep  >/dev/null "\-\-verbose"; \
 	if test "$(?)" = "0"; then \
 	  if test "x$(V)" = "x1"; then \
@@ -758,7 +808,7 @@
 	  done; \
 	fi; \
 	gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
-	@touch pdf-build.stamp
+	$(AM_V_at)touch pdf-build.stamp
 
 ##############
 
@@ -774,7 +824,7 @@
 	    rm -rf tmpl; \
 	fi
 
-maintainer-clean-local: clean
+maintainer-clean-local:
 	@rm -rf xml html
 
 install-data-local:
@@ -810,7 +860,7 @@
 #
 # Require gtk-doc when making dist
 #
-@ENABLE_GTK_DOC_TRUE@dist-check-gtkdoc:
+@ENABLE_GTK_DOC_TRUE@dist-check-gtkdoc: docs
 @ENABLE_GTK_DOC_FALSE@dist-check-gtkdoc:
 @ENABLE_GTK_DOC_FALSE@	@echo "*** gtk-doc must be installed and enabled in order to make dist"
 @ENABLE_GTK_DOC_FALSE@	@false

=== modified file 'docs/references/html/XfceArrowButton.html'
--- docs/references/html/XfceArrowButton.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/XfceArrowButton.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
 <link rel="prev" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
 <link rel="next" href="XfceHVBox.html" title="XfceHVBox">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -49,26 +49,26 @@
 #include &lt;libxfce4panel/libxfce4panel.h&gt;
 
                     <a class="link" href="XfceArrowButton.html#XfceArrowButton-struct" title="XfceArrowButton">XfceArrowButton</a>;
-<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="XfceArrowButton.html#xfce-arrow-button-new" title="xfce_arrow_button_new ()">xfce_arrow_button_new</a>               (<em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>);
-<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>        <a class="link" href="XfceArrowButton.html#xfce-arrow-button-get-arrow-type" title="xfce_arrow_button_get_arrow_type ()">xfce_arrow_button_get_arrow_type</a>    (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);
+<span class="returnvalue">GtkWidget</span> *         <a class="link" href="XfceArrowButton.html#xfce-arrow-button-new" title="xfce_arrow_button_new ()">xfce_arrow_button_new</a>               (<em class="parameter"><code><span class="type">GtkArrowType</span> arrow_type</code></em>);
+<span class="returnvalue">GtkArrowType</span>        <a class="link" href="XfceArrowButton.html#xfce-arrow-button-get-arrow-type" title="xfce_arrow_button_get_arrow_type ()">xfce_arrow_button_get_arrow_type</a>    (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfceArrowButton.html#xfce-arrow-button-set-arrow-type" title="xfce_arrow_button_set_arrow_type ()">xfce_arrow_button_set_arrow_type</a>    (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>);
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="XfceArrowButton.html#xfce-arrow-button-get-blinking" title="xfce_arrow_button_get_blinking ()">xfce_arrow_button_get_blinking</a>      (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);
+                                                         <em class="parameter"><code><span class="type">GtkArrowType</span> arrow_type</code></em>);
+<span class="returnvalue">gboolean</span>            <a class="link" href="XfceArrowButton.html#xfce-arrow-button-get-blinking" title="xfce_arrow_button_get_blinking ()">xfce_arrow_button_get_blinking</a>      (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfceArrowButton.html#xfce-arrow-button-set-blinking" title="xfce_arrow_button_set_blinking ()">xfce_arrow_button_set_blinking</a>      (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blinking</code></em>);
+                                                         <em class="parameter"><code><span class="type">gboolean</span> blinking</code></em>);
 </pre>
 </div>
 <div class="refsect1">
 <a name="XfceArrowButton.object-hierarchy"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
-  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
-   +----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
-         +----<a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>
-               +----<a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
-                     +----<a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
-                           +----<a href="http://developer.gnome.org/gtk2/GtkBin.html">GtkBin</a>
-                                 +----<a href="http://developer.gnome.org/gtk2/GtkButton.html">GtkButton</a>
-                                       +----<a href="http://developer.gnome.org/gtk2/GtkToggleButton.html">GtkToggleButton</a>
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkButton
+                                       +----GtkToggleButton
                                              +----XfceArrowButton
 </pre>
 </div>
@@ -76,18 +76,18 @@
 <a name="XfceArrowButton.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
 <p>
 XfceArrowButton implements
- AtkImplementorIface,  <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a> and  <a href="http://developer.gnome.org/gtk2/GtkActivatable.html">GtkActivatable</a>.</p>
+ AtkImplementorIface,  GtkBuildable and  GtkActivatable.</p>
 </div>
 <div class="refsect1">
 <a name="XfceArrowButton.properties"></a><h2>Properties</h2>
 <pre class="synopsis">
-  "<a class="link" href="XfceArrowButton.html#XfceArrowButton--arrow-type" title='The "arrow-type" property'>arrow-type</a>"               <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a>          : Read / Write
+  "<a class="link" href="XfceArrowButton.html#XfceArrowButton--arrow-type" title='The "arrow-type" property'>arrow-type</a>"               <span class="type">GtkArrowType</span>          : Read / Write
 </pre>
 </div>
 <div class="refsect1">
 <a name="XfceArrowButton.signals"></a><h2>Signals</h2>
 <pre class="synopsis">
-  "<a class="link" href="XfceArrowButton.html#XfceArrowButton-arrow-type-changed" title='The "arrow-type-changed" signal'>arrow-type-changed</a>"                             : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
+  "<a class="link" href="XfceArrowButton.html#XfceArrowButton-arrow-type-changed" title='The "arrow-type-changed" signal'>arrow-type-changed</a>"                             : <code class="literal">Run Last</code>
 </pre>
 </div>
 <div class="refsect1">
@@ -96,7 +96,7 @@
 Toggle button with (optional) arrow. The arrow direction will be
 inverted when the button is toggled.
 Since 4.8 it is also possible to make the button blink and pack additional
-widgets in the button, using <a href="http://developer.gnome.org/gtk2/GtkContainer.html#gtk-container-add"><code class="function">gtk_container_add()</code></a>.
+widgets in the button, using <code class="function">gtk_container_add()</code>.
 </p>
 </div>
 <div class="refsect1">
@@ -112,7 +112,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-arrow-button-new"></a><h3>xfce_arrow_button_new ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         xfce_arrow_button_new               (<em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkWidget</span> *         xfce_arrow_button_new               (<em class="parameter"><code><span class="type">GtkArrowType</span> arrow_type</code></em>);</pre>
 <p>
 Creates a new <a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> widget.
 </p>
@@ -125,7 +125,7 @@
 <tr>
 <td><p><span class="term"><em class="parameter"><code>arrow_type</code></em> :</span></p></td>
 <td>
-<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> for the arrow button</td>
+<span class="type">GtkArrowType</span> for the arrow button</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -137,7 +137,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-arrow-button-get-arrow-type"></a><h3>xfce_arrow_button_get_arrow_type ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>        xfce_arrow_button_get_arrow_type    (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkArrowType</span>        xfce_arrow_button_get_arrow_type    (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);</pre>
 <p>
 Returns the value of the ::arrow-type property.
 </p>
@@ -154,7 +154,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>the <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> of <em class="parameter"><code>button</code></em>.</td>
+<td>the <span class="type">GtkArrowType</span> of <em class="parameter"><code>button</code></em>.</td>
 </tr>
 </tbody>
 </table></div>
@@ -163,7 +163,7 @@
 <div class="refsect2">
 <a name="xfce-arrow-button-set-arrow-type"></a><h3>xfce_arrow_button_set_arrow_type ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_arrow_button_set_arrow_type    (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">GtkArrowType</span> arrow_type</code></em>);</pre>
 <p>
 Sets the arrow type for <em class="parameter"><code>button</code></em>.
 </p>
@@ -180,7 +180,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>arrow_type</code></em> :</span></p></td>
-<td>a valid  <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a>
+<td>a valid  <span class="type">GtkArrowType</span>
 </td>
 </tr>
 </tbody>
@@ -189,10 +189,10 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-arrow-button-get-blinking"></a><h3>xfce_arrow_button_get_blinking ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            xfce_arrow_button_get_blinking      (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>            xfce_arrow_button_get_blinking      (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);</pre>
 <p>
 Whether the button is blinking. If the blink timeout is finished
-and the button is still highlighted, this functions returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
+and the button is still highlighted, this functions returns <code class="literal">FALSE</code>.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -208,7 +208,7 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when <em class="parameter"><code>button</code></em> is blinking.</td>
+<code class="literal">TRUE</code> when <em class="parameter"><code>button</code></em> is blinking.</td>
 </tr>
 </tbody>
 </table></div>
@@ -218,7 +218,7 @@
 <div class="refsect2">
 <a name="xfce-arrow-button-set-blinking"></a><h3>xfce_arrow_button_set_blinking ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_arrow_button_set_blinking      (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blinking</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">gboolean</span> blinking</code></em>);</pre>
 <p>
 Make the button blink.
 </p>
@@ -236,7 +236,7 @@
 <tr>
 <td><p><span class="term"><em class="parameter"><code>blinking</code></em> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the button should start blinking, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to
+<code class="literal">TRUE</code> when the button should start blinking, <code class="literal">FALSE</code> to
 stop the blinking.</td>
 </tr>
 </tbody>
@@ -248,7 +248,7 @@
 <a name="XfceArrowButton.property-details"></a><h2>Property Details</h2>
 <div class="refsect2">
 <a name="XfceArrowButton--arrow-type"></a><h3>The <code class="literal">"arrow-type"</code> property</h3>
-<pre class="programlisting">  "arrow-type"               <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a>          : Read / Write</pre>
+<pre class="programlisting">  "arrow-type"               <span class="type">GtkArrowType</span>          : Read / Write</pre>
 <p>
 The arrow type of the button. This value also determines the direction
 of the popup menu.
@@ -261,8 +261,8 @@
 <div class="refsect2">
 <a name="XfceArrowButton-arrow-type-changed"></a><h3>The <code class="literal">"arrow-type-changed"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button,
-                                                        <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a>     type,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">GtkArrowType</span>     type,
+                                                        <span class="type">gpointer</span>         user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 Emitted when the arrow direction of the menu button changes.
 This value also determines the direction of the popup menu.
@@ -279,7 +279,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
-<td>the new <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> of the button</td>
+<td>the new <span class="type">GtkArrowType</span> of the button</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -292,6 +292,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/XfceHVBox.html'
--- docs/references/html/XfceHVBox.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/XfceHVBox.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
 <link rel="prev" href="XfceArrowButton.html" title="XfceArrowButton">
 <link rel="next" href="XfcePanelImage.html" title="XfcePanelImage">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -45,23 +45,23 @@
 #include &lt;libxfce4panel/libxfce4panel.h&gt;
 
                     <a class="link" href="XfceHVBox.html#XfceHVBox-struct" title="XfceHVBox">XfceHVBox</a>;
-<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="XfceHVBox.html#xfce-hvbox-new" title="xfce_hvbox_new ()">xfce_hvbox_new</a>                      (<em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> homogeneous</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> spacing</code></em>);
+<span class="returnvalue">GtkWidget</span> *         <a class="link" href="XfceHVBox.html#xfce-hvbox-new" title="xfce_hvbox_new ()">xfce_hvbox_new</a>                      (<em class="parameter"><code><span class="type">GtkOrientation</span> orientation</code></em>,
+                                                         <em class="parameter"><code><span class="type">gboolean</span> homogeneous</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> spacing</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfceHVBox.html#xfce-hvbox-set-orientation" title="xfce_hvbox_set_orientation ()">xfce_hvbox_set_orientation</a>          (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);
-<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>      <a class="link" href="XfceHVBox.html#xfce-hvbox-get-orientation" title="xfce_hvbox_get_orientation ()">xfce_hvbox_get_orientation</a>          (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>);
+                                                         <em class="parameter"><code><span class="type">GtkOrientation</span> orientation</code></em>);
+<span class="returnvalue">GtkOrientation</span>      <a class="link" href="XfceHVBox.html#xfce-hvbox-get-orientation" title="xfce_hvbox_get_orientation ()">xfce_hvbox_get_orientation</a>          (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>);
 </pre>
 </div>
 <div class="refsect1">
 <a name="XfceHVBox.object-hierarchy"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
-  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
-   +----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
-         +----<a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>
-               +----<a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
-                     +----<a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
-                           +----<a href="http://developer.gnome.org/gtk2/GtkBox.html">GtkBox</a>
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
                                  +----XfceHVBox
 </pre>
 </div>
@@ -69,21 +69,21 @@
 <a name="XfceHVBox.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
 <p>
 XfceHVBox implements
- AtkImplementorIface,  <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a> and  <a href="http://developer.gnome.org/gtk2/gtk3-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>
+ AtkImplementorIface,  GtkBuildable and  GtkOrientable.</p>
 </div>
 <div class="refsect1">
 <a name="XfceHVBox.description"></a><h2>Description</h2>
 <p>
-<a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> is a <a href="http://developer.gnome.org/gtk2/GtkBox.html"><span class="type">GtkBox</span></a> widget that allows the user to change
-its orientation. It is in fact a combination of <a href="http://developer.gnome.org/gtk2/GtkHBox.html"><span class="type">GtkHBox</span></a> and <a href="http://developer.gnome.org/gtk2/GtkVBox.html"><span class="type">GtkVBox</span></a>.
+<a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> is a <span class="type">GtkBox</span> widget that allows the user to change
+its orientation. It is in fact a combination of <span class="type">GtkHBox</span> and <span class="type">GtkVBox</span>.
 </p>
 <p>
 If your code depends on Gtk+ 2.16 or later, if it better to use
-the normal <a href="http://developer.gnome.org/gtk2/GtkBox.html"><span class="type">GtkBox</span></a> widgets in combination with
-<a href="http://developer.gnome.org/gtk2/gtk3-Orientable.html#gtk-orientable-set-orientation"><code class="function">gtk_orientable_set_orientation()</code></a>.
+the normal <span class="type">GtkBox</span> widgets in combination with
+<code class="function">gtk_orientable_set_orientation()</code>.
 </p>
 <p>
-See also: <a href="http://developer.gnome.org/gtk2/gtk3-Orientable.html#GtkOrientable"><span class="type">GtkOrientable</span></a> and <a href="http://developer.gnome.org/gtk2/GtkBox.html"><span class="type">GtkBox</span></a>.
+See also: <span class="type">GtkOrientable</span> and <span class="type">GtkBox</span>.
 </p>
 </div>
 <div class="refsect1">
@@ -99,9 +99,9 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-hvbox-new"></a><h3>xfce_hvbox_new ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         xfce_hvbox_new                      (<em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> homogeneous</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> spacing</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkWidget</span> *         xfce_hvbox_new                      (<em class="parameter"><code><span class="type">GtkOrientation</span> orientation</code></em>,
+                                                         <em class="parameter"><code><span class="type">gboolean</span> homogeneous</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> spacing</code></em>);</pre>
 <p>
 Creates a new <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> container widget.
 </p>
@@ -135,7 +135,7 @@
 <div class="refsect2">
 <a name="xfce-hvbox-set-orientation"></a><h3>xfce_hvbox_set_orientation ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_hvbox_set_orientation          (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">GtkOrientation</span> orientation</code></em>);</pre>
 <p>
 Set the new orientation of the <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> container widget.
 </p>
@@ -160,7 +160,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-hvbox-get-orientation"></a><h3>xfce_hvbox_get_orientation ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>      xfce_hvbox_get_orientation          (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkOrientation</span>      xfce_hvbox_get_orientation          (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>);</pre>
 <p>
 Get the current orientation of the <em class="parameter"><code>hvbox</code></em>.
 </p>
@@ -185,6 +185,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/XfcePanelImage.html'
--- docs/references/html/XfcePanelImage.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/XfcePanelImage.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
 <link rel="prev" href="XfceHVBox.html" title="XfceHVBox">
 <link rel="next" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -49,26 +49,26 @@
 #include &lt;libxfce4panel/libxfce4panel.h&gt;
 
                     <a class="link" href="XfcePanelImage.html#XfcePanelImage-struct" title="XfcePanelImage">XfcePanelImage</a>;
-<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="XfcePanelImage.html#xfce-panel-image-new" title="xfce_panel_image_new ()">xfce_panel_image_new</a>                (<em class="parameter"><code><span class="type">void</span></code></em>);
-<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-pixbuf" title="xfce_panel_image_new_from_pixbuf ()">xfce_panel_image_new_from_pixbuf</a>    (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
-<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-source" title="xfce_panel_image_new_from_source ()">xfce_panel_image_new_from_source</a>    (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>);
+<span class="returnvalue">GtkWidget</span> *         <a class="link" href="XfcePanelImage.html#xfce-panel-image-new" title="xfce_panel_image_new ()">xfce_panel_image_new</a>                (<em class="parameter"><code><span class="type">void</span></code></em>);
+<span class="returnvalue">GtkWidget</span> *         <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-pixbuf" title="xfce_panel_image_new_from_pixbuf ()">xfce_panel_image_new_from_pixbuf</a>    (<em class="parameter"><code><span class="type">GdkPixbuf</span> *pixbuf</code></em>);
+<span class="returnvalue">GtkWidget</span> *         <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-source" title="xfce_panel_image_new_from_source ()">xfce_panel_image_new_from_source</a>    (<em class="parameter"><code>const <span class="type">gchar</span> *source</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelImage.html#xfce-panel-image-set-from-pixbuf" title="xfce_panel_image_set_from_pixbuf ()">xfce_panel_image_set_from_pixbuf</a>    (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
+                                                         <em class="parameter"><code><span class="type">GdkPixbuf</span> *pixbuf</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelImage.html#xfce-panel-image-set-from-source" title="xfce_panel_image_set_from_source ()">xfce_panel_image_set_from_source</a>    (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,
-                                                         <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>);
+                                                         <em class="parameter"><code>const <span class="type">gchar</span> *source</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelImage.html#xfce-panel-image-set-size" title="xfce_panel_image_set_size ()">xfce_panel_image_set_size</a>           (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="XfcePanelImage.html#xfce-panel-image-get-size" title="xfce_panel_image_get_size ()">xfce_panel_image_get_size</a>           (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>);
+                                                         <em class="parameter"><code><span class="type">gint</span> size</code></em>);
+<span class="returnvalue">gint</span>                <a class="link" href="XfcePanelImage.html#xfce-panel-image-get-size" title="xfce_panel_image_get_size ()">xfce_panel_image_get_size</a>           (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelImage.html#xfce-panel-image-clear" title="xfce_panel_image_clear ()">xfce_panel_image_clear</a>              (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>);
 </pre>
 </div>
 <div class="refsect1">
 <a name="XfcePanelImage.object-hierarchy"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
-  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
-   +----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
-         +----<a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>
-               +----<a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
                      +----XfcePanelImage
 </pre>
 </div>
@@ -76,20 +76,20 @@
 <a name="XfcePanelImage.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
 <p>
 XfcePanelImage implements
- AtkImplementorIface and  <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a>.</p>
+ AtkImplementorIface and  GtkBuildable.</p>
 </div>
 <div class="refsect1">
 <a name="XfcePanelImage.properties"></a><h2>Properties</h2>
 <pre class="synopsis">
-  "<a class="link" href="XfcePanelImage.html#XfcePanelImage--pixbuf" title='The "pixbuf" property'>pixbuf</a>"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>*            : Read / Write
-  "<a class="link" href="XfcePanelImage.html#XfcePanelImage--size" title='The "size" property'>size</a>"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write
-  "<a class="link" href="XfcePanelImage.html#XfcePanelImage--source" title='The "source" property'>source</a>"                   <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write
+  "<a class="link" href="XfcePanelImage.html#XfcePanelImage--pixbuf" title='The "pixbuf" property'>pixbuf</a>"                   <span class="type">GdkPixbuf</span>*            : Read / Write
+  "<a class="link" href="XfcePanelImage.html#XfcePanelImage--size" title='The "size" property'>size</a>"                     <span class="type">gint</span>                  : Read / Write
+  "<a class="link" href="XfcePanelImage.html#XfcePanelImage--source" title='The "source" property'>source</a>"                   <span class="type">gchar</span>*                : Read / Write
 </pre>
 </div>
 <div class="refsect1">
 <a name="XfcePanelImage.style-properties"></a><h2>Style Properties</h2>
 <pre class="synopsis">
-  "<a class="link" href="XfcePanelImage.html#XfcePanelImage--s-force-gtk-icon-sizes" title='The "force-gtk-icon-sizes" style property'>force-gtk-icon-sizes</a>"     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
+  "<a class="link" href="XfcePanelImage.html#XfcePanelImage--s-force-gtk-icon-sizes" title='The "force-gtk-icon-sizes" style property'>force-gtk-icon-sizes</a>"     <span class="type">gboolean</span>              : Read / Write
 </pre>
 </div>
 <div class="refsect1">
@@ -122,7 +122,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-image-new"></a><h3>xfce_panel_image_new ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         xfce_panel_image_new                (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkWidget</span> *         xfce_panel_image_new                (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
 <p>
 Creates a new empty <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> widget.
 </p>
@@ -141,7 +141,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-image-new-from-pixbuf"></a><h3>xfce_panel_image_new_from_pixbuf ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         xfce_panel_image_new_from_pixbuf    (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkWidget</span> *         xfce_panel_image_new_from_pixbuf    (<em class="parameter"><code><span class="type">GdkPixbuf</span> *pixbuf</code></em>);</pre>
 <p>
 Creates a new <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> displaying <em class="parameter"><code>pixbuf</code></em>. <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a>
 will add its own reference rather than adopting yours. You don't
@@ -157,7 +157,7 @@
 <tbody>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
-<td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
+<td>a <span class="type">GdkPixbuf</span>, or <code class="literal">NULL</code>.</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -170,7 +170,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-image-new-from-source"></a><h3>xfce_panel_image_new_from_source ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         xfce_panel_image_new_from_source    (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkWidget</span> *         xfce_panel_image_new_from_source    (<em class="parameter"><code>const <span class="type">gchar</span> *source</code></em>);</pre>
 <p>
 Creates a new <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> displaying <em class="parameter"><code>source</code></em>. <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a>
 will detect if <em class="parameter"><code>source</code></em> points to an absolute file or it and icon-name.
@@ -187,7 +187,7 @@
 <tr>
 <td><p><span class="term"><em class="parameter"><code>source</code></em> :</span></p></td>
 <td>source of the image. This can be an absolute path or
-an icon-name or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
+an icon-name or <code class="literal">NULL</code>.</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -201,7 +201,7 @@
 <div class="refsect2">
 <a name="xfce-panel-image-set-from-pixbuf"></a><h3>xfce_panel_image_set_from_pixbuf ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_image_set_from_pixbuf    (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">GdkPixbuf</span> *pixbuf</code></em>);</pre>
 <p>
 See <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-pixbuf" title="xfce_panel_image_new_from_pixbuf ()"><code class="function">xfce_panel_image_new_from_pixbuf()</code></a> for details.
 </p>
@@ -217,7 +217,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
-<td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
+<td>a <span class="type">GdkPixbuf</span>, or <code class="literal">NULL</code>.</td>
 </tr>
 </tbody>
 </table></div>
@@ -227,7 +227,7 @@
 <div class="refsect2">
 <a name="xfce-panel-image-set-from-source"></a><h3>xfce_panel_image_set_from_source ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_image_set_from_source    (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,
-                                                         <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>);</pre>
+                                                         <em class="parameter"><code>const <span class="type">gchar</span> *source</code></em>);</pre>
 <p>
 See <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-source" title="xfce_panel_image_new_from_source ()"><code class="function">xfce_panel_image_new_from_source()</code></a> for details.
 </p>
@@ -244,7 +244,7 @@
 <tr>
 <td><p><span class="term"><em class="parameter"><code>source</code></em> :</span></p></td>
 <td>source of the image. This can be an absolute path or
-an icon-name or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
+an icon-name or <code class="literal">NULL</code>.</td>
 </tr>
 </tbody>
 </table></div>
@@ -254,7 +254,7 @@
 <div class="refsect2">
 <a name="xfce-panel-image-set-size"></a><h3>xfce_panel_image_set_size ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_image_set_size           (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">gint</span> size</code></em>);</pre>
 <p>
 This will force an image size, instead of looking at the allocation
 size, see introduction for more details. You can set a <em class="parameter"><code>size</code></em> of
@@ -281,7 +281,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-image-get-size"></a><h3>xfce_panel_image_get_size ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                xfce_panel_image_get_size           (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gint</span>                xfce_panel_image_get_size           (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>);</pre>
 <p>
 The size of the image, set by <a class="link" href="XfcePanelImage.html#xfce-panel-image-set-size" title="xfce_panel_image_set_size ()"><code class="function">xfce_panel_image_set_size()</code></a> or -1
 if no size is forced and the image is scaled to the allocation size.
@@ -328,21 +328,21 @@
 <a name="XfcePanelImage.property-details"></a><h2>Property Details</h2>
 <div class="refsect2">
 <a name="XfcePanelImage--pixbuf"></a><h3>The <code class="literal">"pixbuf"</code> property</h3>
-<pre class="programlisting">  "pixbuf"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>*            : Read / Write</pre>
+<pre class="programlisting">  "pixbuf"                   <span class="type">GdkPixbuf</span>*            : Read / Write</pre>
 <p>Pixbuf image.</p>
 </div>
 <hr>
 <div class="refsect2">
 <a name="XfcePanelImage--size"></a><h3>The <code class="literal">"size"</code> property</h3>
-<pre class="programlisting">  "size"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write</pre>
+<pre class="programlisting">  "size"                     <span class="type">gint</span>                  : Read / Write</pre>
 <p>Pixel size of the image.</p>
-<p>Allowed values: [G_MAXULONG,128]</p>
+<p>Allowed values: [-1,128]</p>
 <p>Default value: -1</p>
 </div>
 <hr>
 <div class="refsect2">
 <a name="XfcePanelImage--source"></a><h3>The <code class="literal">"source"</code> property</h3>
-<pre class="programlisting">  "source"                   <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
+<pre class="programlisting">  "source"                   <span class="type">gchar</span>*                : Read / Write</pre>
 <p>Icon or filename.</p>
 <p>Default value: NULL</p>
 </div>
@@ -351,7 +351,7 @@
 <a name="XfcePanelImage.style-property-details"></a><h2>Style Property Details</h2>
 <div class="refsect2">
 <a name="XfcePanelImage--s-force-gtk-icon-sizes"></a><h3>The <code class="literal">"force-gtk-icon-sizes"</code> style property</h3>
-<pre class="programlisting">  "force-gtk-icon-sizes"     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
+<pre class="programlisting">  "force-gtk-icon-sizes"     <span class="type">gboolean</span>              : Read / Write</pre>
 <p>Force the image to fix to GtkIconSizes.</p>
 <p>Default value: FALSE</p>
 </div>
@@ -359,6 +359,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/XfcePanelPlugin.html'
--- docs/references/html/XfcePanelPlugin.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/XfcePanelPlugin.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
 <link rel="prev" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
 <link rel="next" href="libxfce4panel-Panel-Plugin-Register-Macros.html" title="Panel Plugin Register Macros">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -50,26 +50,26 @@
 
                     <a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-struct" title="XfcePanelPlugin">XfcePanelPlugin</a>;
 struct              <a class="link" href="XfcePanelPlugin.html#XfcePanelPluginClass" title="struct XfcePanelPluginClass">XfcePanelPluginClass</a>;
-const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-name" title="xfce_panel_plugin_get_name ()">xfce_panel_plugin_get_name</a>          (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-display-name" title="xfce_panel_plugin_get_display_name ()">xfce_panel_plugin_get_display_name</a>  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-comment" title="xfce_panel_plugin_get_comment ()">xfce_panel_plugin_get_comment</a>       (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-unique-id" title="xfce_panel_plugin_get_unique_id ()">xfce_panel_plugin_get_unique_id</a>     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-property-base" title="xfce_panel_plugin_get_property_base ()">xfce_panel_plugin_get_property_base</a> (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const  * <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-arguments" title="xfce_panel_plugin_get_arguments ()">xfce_panel_plugin_get_arguments</a>  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-size" title="xfce_panel_plugin_get_size ()">xfce_panel_plugin_get_size</a>          (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-expand" title="xfce_panel_plugin_get_expand ()">xfce_panel_plugin_get_expand</a>        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+const <span class="returnvalue">gchar</span> *       <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-name" title="xfce_panel_plugin_get_name ()">xfce_panel_plugin_get_name</a>          (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+const <span class="returnvalue">gchar</span> *       <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-display-name" title="xfce_panel_plugin_get_display_name ()">xfce_panel_plugin_get_display_name</a>  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+const <span class="returnvalue">gchar</span> *       <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-comment" title="xfce_panel_plugin_get_comment ()">xfce_panel_plugin_get_comment</a>       (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+<span class="returnvalue">gint</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-unique-id" title="xfce_panel_plugin_get_unique_id ()">xfce_panel_plugin_get_unique_id</a>     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+const <span class="returnvalue">gchar</span> *       <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-property-base" title="xfce_panel_plugin_get_property_base ()">xfce_panel_plugin_get_property_base</a> (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+const <span class="returnvalue">gchar</span> * const  * <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-arguments" title="xfce_panel_plugin_get_arguments ()">xfce_panel_plugin_get_arguments</a>  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+<span class="returnvalue">gint</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-size" title="xfce_panel_plugin_get_size ()">xfce_panel_plugin_get_size</a>          (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+<span class="returnvalue">gboolean</span>            <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-expand" title="xfce_panel_plugin_get_expand ()">xfce_panel_plugin_get_expand</a>        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-set-expand" title="xfce_panel_plugin_set_expand ()">xfce_panel_plugin_set_expand</a>        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> expand</code></em>);
-<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>      <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-orientation" title="xfce_panel_plugin_get_orientation ()">xfce_panel_plugin_get_orientation</a>   (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+                                                         <em class="parameter"><code><span class="type">gboolean</span> expand</code></em>);
+<span class="returnvalue">GtkOrientation</span>      <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-orientation" title="xfce_panel_plugin_get_orientation ()">xfce_panel_plugin_get_orientation</a>   (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
 <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="returnvalue">XfceScreenPosition</span></a>  <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-screen-position" title="xfce_panel_plugin_get_screen_position ()">xfce_panel_plugin_get_screen_position</a>
                                                         (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-locked" title="xfce_panel_plugin_get_locked ()">xfce_panel_plugin_get_locked</a>        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+<span class="returnvalue">gboolean</span>            <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-locked" title="xfce_panel_plugin_get_locked ()">xfce_panel_plugin_get_locked</a>        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-take-window" title="xfce_panel_plugin_take_window ()">xfce_panel_plugin_take_window</a>       (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="type">GtkWindow</span></a> *window</code></em>);
+                                                         <em class="parameter"><code><span class="type">GtkWindow</span> *window</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-add-action-widget" title="xfce_panel_plugin_add_action_widget ()">xfce_panel_plugin_add_action_widget</a> (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);
+                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *widget</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-menu-insert-item" title="xfce_panel_plugin_menu_insert_item ()">xfce_panel_plugin_menu_insert_item</a>  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a> *item</code></em>);
+                                                         <em class="parameter"><code><span class="type">GtkMenuItem</span> *item</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-menu-show-configure" title="xfce_panel_plugin_menu_show_configure ()">xfce_panel_plugin_menu_show_configure</a>
                                                         (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-menu-show-about" title="xfce_panel_plugin_menu_show_about ()">xfce_panel_plugin_menu_show_about</a>   (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
@@ -77,25 +77,25 @@
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-block-menu" title="xfce_panel_plugin_block_menu ()">xfce_panel_plugin_block_menu</a>        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-unblock-menu" title="xfce_panel_plugin_unblock_menu ()">xfce_panel_plugin_unblock_menu</a>      (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-register-menu" title="xfce_panel_plugin_register_menu ()">xfce_panel_plugin_register_menu</a>     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>);
-<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>        <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-arrow-type" title="xfce_panel_plugin_arrow_type ()">xfce_panel_plugin_arrow_type</a>        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+                                                         <em class="parameter"><code><span class="type">GtkMenu</span> *menu</code></em>);
+<span class="returnvalue">GtkArrowType</span>        <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-arrow-type" title="xfce_panel_plugin_arrow_type ()">xfce_panel_plugin_arrow_type</a>        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-widget" title="xfce_panel_plugin_position_widget ()">xfce_panel_plugin_position_widget</a>   (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *menu_widget</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *attach_widget</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>);
-<span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()">xfce_panel_plugin_position_menu</a>     (<em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *push_in</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> panel_plugin</code></em>);
+                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *menu_widget</code></em>,
+                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *attach_widget</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> *y</code></em>);
+<span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()">xfce_panel_plugin_position_menu</a>     (<em class="parameter"><code><span class="type">GtkMenu</span> *menu</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> *y</code></em>,
+                                                         <em class="parameter"><code><span class="type">gboolean</span> *push_in</code></em>,
+                                                         <em class="parameter"><code><span class="type">gpointer</span> panel_plugin</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-focus-widget" title="xfce_panel_plugin_focus_widget ()">xfce_panel_plugin_focus_widget</a>      (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);
+                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *widget</code></em>);
 <span class="returnvalue">void</span>                <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-block-autohide" title="xfce_panel_plugin_block_autohide ()">xfce_panel_plugin_block_autohide</a>    (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blocked</code></em>);
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-lookup-rc-file" title="xfce_panel_plugin_lookup_rc_file ()">xfce_panel_plugin_lookup_rc_file</a>    (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-save-location" title="xfce_panel_plugin_save_location ()">xfce_panel_plugin_save_location</a>     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> create</code></em>);
+                                                         <em class="parameter"><code><span class="type">gboolean</span> blocked</code></em>);
+<span class="returnvalue">gchar</span> *             <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-lookup-rc-file" title="xfce_panel_plugin_lookup_rc_file ()">xfce_panel_plugin_lookup_rc_file</a>    (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
+<span class="returnvalue">gchar</span> *             <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-save-location" title="xfce_panel_plugin_save_location ()">xfce_panel_plugin_save_location</a>     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
+                                                         <em class="parameter"><code><span class="type">gboolean</span> create</code></em>);
 #define             <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-xfconf-channel-new" title="xfce_panel_plugin_xfconf_channel_new()">xfce_panel_plugin_xfconf_channel_new</a>(plugin)
 #define             <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-set-panel-hidden" title="xfce_panel_plugin_set_panel_hidden()">xfce_panel_plugin_set_panel_hidden</a>  (plugin,
                                                          hidden)
@@ -104,13 +104,13 @@
 <div class="refsect1">
 <a name="XfcePanelPlugin.object-hierarchy"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
-  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
-   +----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
-         +----<a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>
-               +----<a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
-                     +----<a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
-                           +----<a href="http://developer.gnome.org/gtk2/GtkBin.html">GtkBin</a>
-                                 +----<a href="http://developer.gnome.org/gtk2/GtkEventBox.html">GtkEventBox</a>
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkEventBox
                                        +----XfcePanelPlugin
 </pre>
 </div>
@@ -118,40 +118,40 @@
 <a name="XfcePanelPlugin.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
 <p>
 XfcePanelPlugin implements
- AtkImplementorIface,  <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a> and  XfcePanelPluginProvider.</p>
+ AtkImplementorIface,  GtkBuildable and  XfcePanelPluginProvider.</p>
 </div>
 <div class="refsect1">
 <a name="XfcePanelPlugin.properties"></a><h2>Properties</h2>
 <pre class="synopsis">
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--arguments" title='The "arguments" property'>arguments</a>"                <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a>                 : Read / Write / Construct Only
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--comment" title='The "comment" property'>comment</a>"                  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write / Construct Only
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--display-name" title='The "display-name" property'>display-name</a>"             <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write / Construct Only
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--expand" title='The "expand" property'>expand</a>"                   <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--arguments" title='The "arguments" property'>arguments</a>"                <span class="type">GStrv</span>                 : Read / Write / Construct Only
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--comment" title='The "comment" property'>comment</a>"                  <span class="type">gchar</span>*                : Read / Write / Construct Only
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--display-name" title='The "display-name" property'>display-name</a>"             <span class="type">gchar</span>*                : Read / Write / Construct Only
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--expand" title='The "expand" property'>expand</a>"                   <span class="type">gboolean</span>              : Read / Write
   "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--mode" title='The "mode" property'>mode</a>"                     <span class="type">XfcePanelPluginMode</span>   : Read
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--name" title='The "name" property'>name</a>"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write / Construct Only
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--nrows" title='The "nrows" property'>nrows</a>"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>                 : Read
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--orientation" title='The "orientation" property'>orientation</a>"              <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a>        : Read
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--name" title='The "name" property'>name</a>"                     <span class="type">gchar</span>*                : Read / Write / Construct Only
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--nrows" title='The "nrows" property'>nrows</a>"                    <span class="type">guint</span>                 : Read
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--orientation" title='The "orientation" property'>orientation</a>"              <span class="type">GtkOrientation</span>        : Read
   "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--screen-position" title='The "screen-position" property'>screen-position</a>"          <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="type">XfceScreenPosition</span></a>    : Read
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--shrink" title='The "shrink" property'>shrink</a>"                   <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--size" title='The "size" property'>size</a>"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--small" title='The "small" property'>small</a>"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--unique-id" title='The "unique-id" property'>unique-id</a>"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write / Construct Only
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--shrink" title='The "shrink" property'>shrink</a>"                   <span class="type">gboolean</span>              : Read / Write
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--size" title='The "size" property'>size</a>"                     <span class="type">gint</span>                  : Read
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--small" title='The "small" property'>small</a>"                    <span class="type">gboolean</span>              : Read / Write
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--unique-id" title='The "unique-id" property'>unique-id</a>"                <span class="type">gint</span>                  : Read / Write / Construct Only
 </pre>
 </div>
 <div class="refsect1">
 <a name="XfcePanelPlugin.signals"></a><h2>Signals</h2>
 <pre class="synopsis">
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-about" title='The "about" signal'>about</a>"                                          : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-configure-plugin" title='The "configure-plugin" signal'>configure-plugin</a>"                               : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-free-data" title='The "free-data" signal'>free-data</a>"                                      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-mode-changed" title='The "mode-changed" signal'>mode-changed</a>"                                   : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-nrows-changed" title='The "nrows-changed" signal'>nrows-changed</a>"                                  : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-orientation-changed" title='The "orientation-changed" signal'>orientation-changed</a>"                            : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-remote-event" title='The "remote-event" signal'>remote-event</a>"                                   : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-removed" title='The "removed" signal'>removed</a>"                                        : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-save" title='The "save" signal'>save</a>"                                           : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-screen-position-changed" title='The "screen-position-changed" signal'>screen-position-changed</a>"                        : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
-  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-size-changed" title='The "size-changed" signal'>size-changed</a>"                                   : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-about" title='The "about" signal'>about</a>"                                          : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-configure-plugin" title='The "configure-plugin" signal'>configure-plugin</a>"                               : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-free-data" title='The "free-data" signal'>free-data</a>"                                      : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-mode-changed" title='The "mode-changed" signal'>mode-changed</a>"                                   : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-nrows-changed" title='The "nrows-changed" signal'>nrows-changed</a>"                                  : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-orientation-changed" title='The "orientation-changed" signal'>orientation-changed</a>"                            : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-remote-event" title='The "remote-event" signal'>remote-event</a>"                                   : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-removed" title='The "removed" signal'>removed</a>"                                        : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-save" title='The "save" signal'>save</a>"                                           : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-screen-position-changed" title='The "screen-position-changed" signal'>screen-position-changed</a>"                        : <code class="literal">Run Last</code>
+  "<a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-size-changed" title='The "size-changed" signal'>size-changed</a>"                                   : <code class="literal">Run Last</code>
 </pre>
 </div>
 <div class="refsect1">
@@ -271,7 +271,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-name"></a><h3>xfce_panel_plugin_get_name ()</h3>
-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       xfce_panel_plugin_get_name          (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting">const <span class="returnvalue">gchar</span> *       xfce_panel_plugin_get_name          (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 The internal name of the panel plugin.
 </p>
@@ -295,7 +295,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-display-name"></a><h3>xfce_panel_plugin_get_display_name ()</h3>
-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       xfce_panel_plugin_get_display_name  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting">const <span class="returnvalue">gchar</span> *       xfce_panel_plugin_get_display_name  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 This returns the translated name of the plugin set in the .desktop
 file of the plugin.
@@ -320,7 +320,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-comment"></a><h3>xfce_panel_plugin_get_comment ()</h3>
-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       xfce_panel_plugin_get_comment       (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting">const <span class="returnvalue">gchar</span> *       xfce_panel_plugin_get_comment       (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 This returns the translated comment of the plugin set in
 the .desktop file of the plugin.
@@ -346,7 +346,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-unique-id"></a><h3>xfce_panel_plugin_get_unique_id ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                xfce_panel_plugin_get_unique_id     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gint</span>                xfce_panel_plugin_get_unique_id     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 The internal unique id of the plugin. Each plugin in the panel has
 a unique number that is for example used for the config file name
@@ -373,7 +373,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-property-base"></a><h3>xfce_panel_plugin_get_property_base ()</h3>
-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       xfce_panel_plugin_get_property_base (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting">const <span class="returnvalue">gchar</span> *       xfce_panel_plugin_get_property_base (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 The property base for this plugin in the xfce4-panel XfconfChannel,
 this name is something like /plugins/plugin-1.
@@ -401,10 +401,10 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-arguments"></a><h3>xfce_panel_plugin_get_arguments ()</h3>
-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const  * xfce_panel_plugin_get_arguments  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting">const <span class="returnvalue">gchar</span> * const  * xfce_panel_plugin_get_arguments  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 Argument vector passed to the plugin when it was added. Most of the
-time the return value will be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, but if could for example contain
+time the return value will be <code class="literal">NULL</code>, but if could for example contain
 a list of filenames when the user added the plugin with
 </p>
 <p>
@@ -435,7 +435,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-size"></a><h3>xfce_panel_plugin_get_size ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                xfce_panel_plugin_get_size          (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gint</span>                xfce_panel_plugin_get_size          (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 The size of the panel in which the plugin is embedded.
 </p>
@@ -459,7 +459,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-expand"></a><h3>xfce_panel_plugin_get_expand ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            xfce_panel_plugin_get_expand        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>            xfce_panel_plugin_get_expand        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 Whether the plugin is expanded or not. This set by the plugin using
 <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-set-expand" title="xfce_panel_plugin_set_expand ()"><code class="function">xfce_panel_plugin_set_expand()</code></a>.
@@ -477,8 +477,8 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the plugin should expand,
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
+<code class="literal">TRUE</code> when the plugin should expand,
+<code class="literal">FALSE</code> otherwise.</td>
 </tr>
 </tbody>
 </table></div>
@@ -487,7 +487,7 @@
 <div class="refsect2">
 <a name="xfce-panel-plugin-set-expand"></a><h3>xfce_panel_plugin_set_expand ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_set_expand        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> expand</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">gboolean</span> expand</code></em>);</pre>
 <p>
 Wether the plugin should expand of not
 </p>
@@ -511,7 +511,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-orientation"></a><h3>xfce_panel_plugin_get_orientation ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>      xfce_panel_plugin_get_orientation   (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkOrientation</span>      xfce_panel_plugin_get_orientation   (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 The orientation of the panel in which the plugin is embedded.
 </p>
@@ -527,7 +527,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>the current <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> of the panel.</td>
+<td>the current <span class="type">GtkOrientation</span> of the panel.</td>
 </tr>
 </tbody>
 </table></div>
@@ -560,7 +560,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-get-locked"></a><h3>xfce_panel_plugin_get_locked ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            xfce_panel_plugin_get_locked        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>            xfce_panel_plugin_get_locked        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 Whether the plugin is locked (not allowing customization). This
 is emitted through the panel based on the Xfconf locking of the
@@ -586,8 +586,8 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is not allowed to modify the plugin,
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is customization is allowed.</td>
+<code class="literal">TRUE</code> if the user is not allowed to modify the plugin,
+<code class="literal">FALSE</code> is customization is allowed.</td>
 </tr>
 </tbody>
 </table></div>
@@ -597,7 +597,7 @@
 <div class="refsect2">
 <a name="xfce-panel-plugin-take-window"></a><h3>xfce_panel_plugin_take_window ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_take_window       (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="type">GtkWindow</span></a> *window</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">GtkWindow</span> *window</code></em>);</pre>
 <p>
 Connect a dialog to a plugin. When the <em class="parameter"><code>plugin</code></em> is closed, it will
 destroy the <em class="parameter"><code>window</code></em>.
@@ -614,7 +614,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
-<td>a <a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="type">GtkWindow</span></a>.</td>
+<td>a <span class="type">GtkWindow</span>.</td>
 </tr>
 </tbody>
 </table></div>
@@ -624,7 +624,7 @@
 <div class="refsect2">
 <a name="xfce-panel-plugin-add-action-widget"></a><h3>xfce_panel_plugin_add_action_widget ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_add_action_widget (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *widget</code></em>);</pre>
 <p>
 Attach the plugin menu to this widget. Plugin writers should call this
 for every widget that can receive mouse events. If you forget to call this
@@ -643,7 +643,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
-<td>a <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> that receives mouse events.</td>
+<td>a <span class="type">GtkWidget</span> that receives mouse events.</td>
 </tr>
 </tbody>
 </table></div>
@@ -652,7 +652,7 @@
 <div class="refsect2">
 <a name="xfce-panel-plugin-menu-insert-item"></a><h3>xfce_panel_plugin_menu_insert_item ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_menu_insert_item  (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a> *item</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">GtkMenuItem</span> *item</code></em>);</pre>
 <p>
 Insert a custom menu item to the plugin's right click menu. This item
 is packed below the "Move" menu item.
@@ -669,7 +669,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>item</code></em> :</span></p></td>
-<td>a <a href="http://developer.gnome.org/gtk2/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a>.</td>
+<td>a <span class="type">GtkMenuItem</span>.</td>
 </tr>
 </tbody>
 </table></div>
@@ -780,7 +780,7 @@
 <div class="refsect2">
 <a name="xfce-panel-plugin-register-menu"></a><h3>xfce_panel_plugin_register_menu ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_register_menu     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">GtkMenu</span> *menu</code></em>);</pre>
 <p>
 Register a menu that is about to popup. This will make sure the panel
 will properly handle its autohide behaviour. You have to call this
@@ -789,7 +789,7 @@
 <p>
 If you want to open the menu aligned to the side of the panel (and the
 plugin), you should use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> as
-<a href="http://developer.gnome.org/gtk2/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a>. This callback function will take care of calling
+<span class="type">GtkMenuPositionFunc</span>. This callback function will take care of calling
 <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-register-menu" title="xfce_panel_plugin_register_menu ()"><code class="function">xfce_panel_plugin_register_menu()</code></a> as well.
 </p>
 <p>
@@ -807,7 +807,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
-<td>a <a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> that will be opened</td>
+<td>a <span class="type">GtkMenu</span> that will be opened</td>
 </tr>
 </tbody>
 </table></div>
@@ -815,9 +815,9 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-arrow-type"></a><h3>xfce_panel_plugin_arrow_type ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>        xfce_panel_plugin_arrow_type        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkArrowType</span>        xfce_panel_plugin_arrow_type        (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
-Determine the <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> for a widget that opens a menu and uses
+Determine the <span class="type">GtkArrowType</span> for a widget that opens a menu and uses
 <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> to position the menu.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
@@ -832,7 +832,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>the <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> to use.</td>
+<td>the <span class="type">GtkArrowType</span> to use.</td>
 </tr>
 </tbody>
 </table></div>
@@ -841,10 +841,10 @@
 <div class="refsect2">
 <a name="xfce-panel-plugin-position-widget"></a><h3>xfce_panel_plugin_position_widget ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_position_widget   (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *menu_widget</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *attach_widget</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *menu_widget</code></em>,
+                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *attach_widget</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> *y</code></em>);</pre>
 <p>
 The menu widget is positioned relative to <em class="parameter"><code>attach_widget</code></em>.
 If <em class="parameter"><code>attach_widget</code></em> is NULL, the menu widget is instead positioned
@@ -852,8 +852,8 @@
 </p>
 <p>
 This function is intended for custom menu widgets.
-For a regular <a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> you should use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a>
-instead (as callback argument to <a href="http://developer.gnome.org/gtk2/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>).
+For a regular <span class="type">GtkMenu</span> you should use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a>
+instead (as callback argument to <code class="function">gtk_menu_popup()</code>).
 </p>
 <p>
 See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a>.
@@ -870,11 +870,11 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>menu_widget</code></em> :</span></p></td>
-<td>a <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> that will be used as popup menu.</td>
+<td>a <span class="type">GtkWidget</span> that will be used as popup menu.</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>attach_widget</code></em> :</span></p></td>
-<td>a <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> relative to which the menu should be positioned.</td>
+<td>a <span class="type">GtkWidget</span> relative to which the menu should be positioned.</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
@@ -890,19 +890,19 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-position-menu"></a><h3>xfce_panel_plugin_position_menu ()</h3>
-<pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_position_menu     (<em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *push_in</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> panel_plugin</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_position_menu     (<em class="parameter"><code><span class="type">GtkMenu</span> *menu</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> *y</code></em>,
+                                                         <em class="parameter"><code><span class="type">gboolean</span> *push_in</code></em>,
+                                                         <em class="parameter"><code><span class="type">gpointer</span> panel_plugin</code></em>);</pre>
 <p>
-Function to be used as <a href="http://developer.gnome.org/gtk2/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a> in a call to <a href="http://developer.gnome.org/gtk2/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>.
+Function to be used as <span class="type">GtkMenuPositionFunc</span> in a call to <code class="function">gtk_menu_popup()</code>.
 As data argument it needs an <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>.
 </p>
 <p>
 The menu is normally positioned relative to <em class="parameter"><code>panel_plugin</code></em>. If you want the
 menu to be positioned relative to another widget, you can use
-<a href="http://developer.gnome.org/gtk2/GtkMenu.html#gtk-menu-attach-to-widget"><code class="function">gtk_menu_attach_to_widget()</code></a> to explicitly set a 'parent' widget.
+<code class="function">gtk_menu_attach_to_widget()</code> to explicitly set a 'parent' widget.
 </p>
 <p>
 As a convenience, <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> calls
@@ -911,7 +911,7 @@
 <p>
 </p>
 <div class="example">
-<a name="idp12828432"></a><p class="title"><b>Example 2. </b></p>
+<a name="id-1.3.3.9.27.7.1"></a><p class="title"><b>Example 2. </b></p>
 <div class="example-contents">
 void
 myplugin_popup_menu (XfcePanelPlugin *plugin,
@@ -931,7 +931,7 @@
 <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-widget" title="xfce_panel_plugin_position_widget ()"><code class="function">xfce_panel_plugin_position_widget()</code></a> instead.
 </p>
 <p>
-See also: <a href="http://developer.gnome.org/gtk2/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>.
+See also: <code class="function">gtk_menu_popup()</code>.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -941,7 +941,7 @@
 <tbody>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
-<td>a <a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a>.</td>
+<td>a <span class="type">GtkMenu</span>.</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
@@ -953,7 +953,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>push_in</code></em> :</span></p></td>
-<td>keep inside the screen (see <a href="http://developer.gnome.org/gtk2/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a>)</td>
+<td>keep inside the screen (see <span class="type">GtkMenuPositionFunc</span>)</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>panel_plugin</code></em> :</span></p></td>
@@ -966,7 +966,7 @@
 <div class="refsect2">
 <a name="xfce-panel-plugin-focus-widget"></a><h3>xfce_panel_plugin_focus_widget ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_focus_widget      (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">GtkWidget</span> *widget</code></em>);</pre>
 <p>
 Grab the focus on <em class="parameter"><code>widget</code></em>. Asks the panel to allow focus on its items
 and set the focus to the requested widget.
@@ -983,7 +983,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
-<td>a <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> inside the plugins that should be focussed.</td>
+<td>a <span class="type">GtkWidget</span> inside the plugins that should be focussed.</td>
 </tr>
 </tbody>
 </table></div>
@@ -992,7 +992,7 @@
 <div class="refsect2">
 <a name="xfce-panel-plugin-block-autohide"></a><h3>xfce_panel_plugin_block_autohide ()</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                xfce_panel_plugin_block_autohide    (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blocked</code></em>);</pre>
+                                                         <em class="parameter"><code><span class="type">gboolean</span> blocked</code></em>);</pre>
 <p>
 Wether this plugin blocks the autohide functality of the panel. Use
 this when you 'popup' something that is visually attached to the
@@ -1023,7 +1023,7 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-lookup-rc-file"></a><h3>xfce_panel_plugin_lookup_rc_file ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             xfce_panel_plugin_lookup_rc_file    (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gchar</span> *             xfce_panel_plugin_lookup_rc_file    (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
 <p>
 Looks for the plugin resource file. This should be used to get the
 plugin read location of the config file. You should only use the
@@ -1031,7 +1031,7 @@
 not-writable file (in kiosk mode for example).
 </p>
 <p>
-See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-save-location" title="xfce_panel_plugin_save_location ()"><code class="function">xfce_panel_plugin_save_location()</code></a> and <code class="function">xfce_resource_lookup()</code>
+See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-save-location" title="xfce_panel_plugin_save_location ()"><code class="function">xfce_panel_plugin_save_location()</code></a> and <a href="/usr/share/gtk-doc/html/libxfce4util/libxfce4util-Resource-lookup-functions.html#xfce-resource-lookup"><code class="function">xfce_resource_lookup()</code></a>
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -1045,8 +1045,8 @@
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>The path to a config file or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no file was found.
-The returned string must be freed using <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>
+<td>The path to a config file or <code class="literal">NULL</code> if no file was found.
+The returned string must be freed using <code class="function">g_free()</code>
 </td>
 </tr>
 </tbody>
@@ -1055,15 +1055,15 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-plugin-save-location"></a><h3>xfce_panel_plugin_save_location ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             xfce_panel_plugin_save_location     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> create</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gchar</span> *             xfce_panel_plugin_save_location     (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
+                                                         <em class="parameter"><code><span class="type">gboolean</span> create</code></em>);</pre>
 <p>
 Returns the path that can be used to store configuration information.
 Don't use this function if you want to read from the config file, but
 use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-lookup-rc-file" title="xfce_panel_plugin_lookup_rc_file ()"><code class="function">xfce_panel_plugin_lookup_rc_file()</code></a> instead.
 </p>
 <p>
-See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-lookup-rc-file" title="xfce_panel_plugin_lookup_rc_file ()"><code class="function">xfce_panel_plugin_lookup_rc_file()</code></a> and <code class="function">xfce_resource_save_location()</code>
+See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-lookup-rc-file" title="xfce_panel_plugin_lookup_rc_file ()"><code class="function">xfce_panel_plugin_lookup_rc_file()</code></a> and <a href="/usr/share/gtk-doc/html/libxfce4util/libxfce4util-Resource-lookup-functions.html#xfce-resource-save-location"><code class="function">xfce_resource_save_location()</code></a>
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -1081,8 +1081,8 @@
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>The path to a config file or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no file was found.
-The returned string must be freed u sing <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
+<td>The path to a config file or <code class="literal">NULL</code> if no file was found.
+The returned string must be freed u sing <code class="function">g_free()</code>.</td>
 </tr>
 </tbody>
 </table></div>
@@ -1146,10 +1146,10 @@
 <a name="XfcePanelPlugin.property-details"></a><h2>Property Details</h2>
 <div class="refsect2">
 <a name="XfcePanelPlugin--arguments"></a><h3>The <code class="literal">"arguments"</code> property</h3>
-<pre class="programlisting">  "arguments"                <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a>                 : Read / Write / Construct Only</pre>
+<pre class="programlisting">  "arguments"                <span class="type">GStrv</span>                 : Read / Write / Construct Only</pre>
 <p>
 The arguments the plugin was started with. If the plugin was not
-started with any arguments this value is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Plugin writer can
+started with any arguments this value is <code class="literal">NULL</code>. Plugin writer can
 use it to read the arguments array, but
 <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-arguments" title="xfce_panel_plugin_get_arguments ()"><code class="function">xfce_panel_plugin_get_arguments()</code></a> is recommended.
 </p>
@@ -1157,7 +1157,7 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--comment"></a><h3>The <code class="literal">"comment"</code> property</h3>
-<pre class="programlisting">  "comment"                  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write / Construct Only</pre>
+<pre class="programlisting">  "comment"                  <span class="type">gchar</span>*                : Read / Write / Construct Only</pre>
 <p>
 The translated description of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. This property is set
 during plugin construction and can't be set twice. Plugin writer can use
@@ -1170,7 +1170,7 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--display-name"></a><h3>The <code class="literal">"display-name"</code> property</h3>
-<pre class="programlisting">  "display-name"             <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write / Construct Only</pre>
+<pre class="programlisting">  "display-name"             <span class="type">gchar</span>*                : Read / Write / Construct Only</pre>
 <p>
 The translated display name of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. This property is set
 during plugin construction and can't be set twice. Plugin writer can use
@@ -1182,7 +1182,7 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--expand"></a><h3>The <code class="literal">"expand"</code> property</h3>
-<pre class="programlisting">  "expand"                   <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
+<pre class="programlisting">  "expand"                   <span class="type">gboolean</span>              : Read / Write</pre>
 <p>
 Wether the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> expands on the panel. Plugin writes can use it
 to read or set this property, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-set-expand" title="xfce_panel_plugin_set_expand ()"><code class="function">xfce_panel_plugin_set_expand()</code></a>
@@ -1203,7 +1203,7 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--name"></a><h3>The <code class="literal">"name"</code> property</h3>
-<pre class="programlisting">  "name"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write / Construct Only</pre>
+<pre class="programlisting">  "name"                     <span class="type">gchar</span>*                : Read / Write / Construct Only</pre>
 <p>
 The internal, unstranslated, name of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin
 writer can use it to read the plugin name, but
@@ -1215,7 +1215,7 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--nrows"></a><h3>The <code class="literal">"nrows"</code> property</h3>
-<pre class="programlisting">  "nrows"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>                 : Read</pre>
+<pre class="programlisting">  "nrows"                    <span class="type">guint</span>                 : Read</pre>
 <p>
 Number of rows the plugin is embedded on.
 </p>
@@ -1226,9 +1226,9 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--orientation"></a><h3>The <code class="literal">"orientation"</code> property</h3>
-<pre class="programlisting">  "orientation"              <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a>        : Read</pre>
+<pre class="programlisting">  "orientation"              <span class="type">GtkOrientation</span>        : Read</pre>
 <p>
-The <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin writer can use it to read the
+The <span class="type">GtkOrientation</span> of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin writer can use it to read the
 plugin orientation, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-orientation" title="xfce_panel_plugin_get_orientation ()"><code class="function">xfce_panel_plugin_get_orientation()</code></a> is recommended.
 </p>
 <p>Default value: GTK_ORIENTATION_HORIZONTAL</p>
@@ -1247,7 +1247,7 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--shrink"></a><h3>The <code class="literal">"shrink"</code> property</h3>
-<pre class="programlisting">  "shrink"                   <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
+<pre class="programlisting">  "shrink"                   <span class="type">gboolean</span>              : Read / Write</pre>
 <p>
 Wether the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> can shrink when there is no space left on the panel.
 Plugin writes can use it to read or set this property, but <code class="function">xfce_panel_plugin_set_shrink()</code>
@@ -1259,7 +1259,7 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--size"></a><h3>The <code class="literal">"size"</code> property</h3>
-<pre class="programlisting">  "size"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read</pre>
+<pre class="programlisting">  "size"                     <span class="type">gint</span>                  : Read</pre>
 <p>
 The size in pixels of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin writer can use it to read the
 plugin size, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-size" title="xfce_panel_plugin_get_size ()"><code class="function">xfce_panel_plugin_get_size()</code></a> is recommended.
@@ -1270,7 +1270,7 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--small"></a><h3>The <code class="literal">"small"</code> property</h3>
-<pre class="programlisting">  "small"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
+<pre class="programlisting">  "small"                    <span class="type">gboolean</span>              : Read / Write</pre>
 <p>
 Wether the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> is small enough to fit a single row of a multi-row panel.
 Plugin writes can use it to read or set this property, but <code class="function">xfce_panel_plugin_set_small()</code>
@@ -1282,9 +1282,9 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin--unique-id"></a><h3>The <code class="literal">"unique-id"</code> property</h3>
-<pre class="programlisting">  "unique-id"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write / Construct Only</pre>
+<pre class="programlisting">  "unique-id"                <span class="type">gint</span>                  : Read / Write / Construct Only</pre>
 <p>Unique plugin ID.</p>
-<p>Allowed values: &gt;= G_MAXULONG</p>
+<p>Allowed values: &gt;= -1</p>
 <p>Default value: -1</p>
 </div>
 </div>
@@ -1293,7 +1293,7 @@
 <div class="refsect2">
 <a name="XfcePanelPlugin-about"></a><h3>The <code class="literal">"about"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">gpointer</span>         user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted when the About entry in the right-click
 menu is clicked. Plugin writes can use it to show information
@@ -1324,7 +1324,7 @@
 <div class="refsect2">
 <a name="XfcePanelPlugin-configure-plugin"></a><h3>The <code class="literal">"configure-plugin"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">gpointer</span>         user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted when the Properties entry in the right-click
 menu is clicked. Plugin writes can use this signal to open a
@@ -1332,7 +1332,7 @@
 </p>
 <p>
 See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-menu-show-configure" title="xfce_panel_plugin_menu_show_configure ()"><code class="function">xfce_panel_plugin_menu_show_configure()</code></a> and
-          <code class="function">xfce_titled_dialog_new()</code>.
+          <a href="/usr/share/gtk-doc/html/libxfce4ui/libxfce4ui-xfce-titled-dialog.html#xfce-titled-dialog-new"><code class="function">xfce_titled_dialog_new()</code></a>.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -1355,7 +1355,7 @@
 <div class="refsect2">
 <a name="XfcePanelPlugin-free-data"></a><h3>The <code class="literal">"free-data"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">gpointer</span>         user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted when the plugin is closing. Plugin
 writers should use this signal to free any allocated resources.
@@ -1385,7 +1385,7 @@
 <a name="XfcePanelPlugin-mode-changed"></a><h3>The <code class="literal">"mode-changed"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>    *plugin,
                                                         <span class="type">XfcePanelPluginMode</span> mode,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>            user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">gpointer</span>            user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted whenever the mode of the panel
 the <em class="parameter"><code>plugin</code></em> is on changes.
@@ -1416,8 +1416,8 @@
 <div class="refsect2">
 <a name="XfcePanelPlugin-nrows-changed"></a><h3>The <code class="literal">"nrows-changed"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>            rows,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">guint</span>            rows,
+                                                        <span class="type">gpointer</span>         user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted whenever the nrows of the panel
 the <em class="parameter"><code>plugin</code></em> is on changes.
@@ -1448,8 +1448,8 @@
 <div class="refsect2">
 <a name="XfcePanelPlugin-orientation-changed"></a><h3>The <code class="literal">"orientation-changed"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
-                                                        <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a>   orientation,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)        : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">GtkOrientation</span>   orientation,
+                                                        <span class="type">gpointer</span>         user_data)        : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted whenever the orientation of the panel
 the <em class="parameter"><code>plugin</code></em> is on changes. Plugins writers can for example use
@@ -1470,7 +1470,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
-<td>new <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> of the panel.</td>
+<td>new <span class="type">GtkOrientation</span> of the panel.</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1482,10 +1482,10 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin-remote-event"></a><h3>The <code class="literal">"remote-event"</code> signal</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>           *name,
-                                                        <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a>          *value,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>            user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
+                                                        <span class="type">gchar</span>           *name,
+                                                        <span class="type">GValue</span>          *value,
+                                                        <span class="type">gpointer</span>         user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted by the user by running
 xfce4-panel --plugin-event=plugin-name:name:type:value. It can be
@@ -1516,7 +1516,7 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop signal emission to other plugins, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
+<code class="literal">TRUE</code> to stop signal emission to other plugins, <code class="literal">FALSE</code>
 to send the signal also to other plugins with the same
 name.</td>
 </tr>
@@ -1527,7 +1527,7 @@
 <div class="refsect2">
 <a name="XfcePanelPlugin-removed"></a><h3>The <code class="literal">"removed"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">gpointer</span>         user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted when the plugin is permanently removed from
 the panel configuration by the user. Developers can use this signal
@@ -1564,7 +1564,7 @@
 <div class="refsect2">
 <a name="XfcePanelPlugin-save"></a><h3>The <code class="literal">"save"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">gpointer</span>         user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emitted when the plugin should save it's
 configuration. The signal is always emmitted before the plugin
@@ -1596,7 +1596,7 @@
 <a name="XfcePanelPlugin-screen-position-changed"></a><h3>The <code class="literal">"screen-position-changed"</code> signal</h3>
 <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>   *plugin,
                                                         <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="type">XfceScreenPosition</span></a> position,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>           user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+                                                        <span class="type">gpointer</span>           user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted whenever the screen position of the panel
 the <em class="parameter"><code>plugin</code></em> is on changes. Plugins writers can for example use
@@ -1626,16 +1626,16 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPlugin-size-changed"></a><h3>The <code class="literal">"size-changed"</code> signal</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>             size,
-                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>         user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>            user_function                      (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
+                                                        <span class="type">gint</span>             size,
+                                                        <span class="type">gpointer</span>         user_data)      : <code class="literal">Run Last</code></pre>
 <p>
 This signal is emmitted whenever the size of the panel
 the <em class="parameter"><code>plugin</code></em> is on changes. Plugins writers can for example use
 this signal to update their icon size.
 </p>
 <p>
-If the function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> or is not used, the panel will force
+If the function returns <code class="literal">FALSE</code> or is not used, the panel will force
 a square size to the plugin. If you want non-square plugins and you
 don't need this signal you can use something like this:
 </p>
@@ -1667,6 +1667,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/api-index-4-6.html'
--- docs/references/html/api-index-4-6.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/api-index-4-6.html	2014-02-13 13:29:48 +0000
@@ -7,7 +7,7 @@
 <link rel="home" href="index.html" title="Libxfce4panel Reference Manual">
 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
 <link rel="prev" href="api-index-4-8.html" title="Index of new symbols in 4.8">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -36,6 +36,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/api-index-4-8.html'
--- docs/references/html/api-index-4-8.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/api-index-4-8.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
 <link rel="prev" href="api-index-deprecated.html" title="Index of deprecated symbols">
 <link rel="next" href="api-index-4-6.html" title="Index of new symbols in 4.6">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -50,14 +50,14 @@
 </dt>
 <dd></dd>
 <dt>
+<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-major-version" title="libxfce4panel_major_version">libxfce4panel_major_version</a>, variable in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
+</dt>
+<dd></dd>
+<dt>
 <a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-MAJOR-VERSION:CAPS" title="LIBXFCE4PANEL_MAJOR_VERSION">LIBXFCE4PANEL_MAJOR_VERSION</a>, macro in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
 </dt>
 <dd></dd>
 <dt>
-<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-major-version" title="libxfce4panel_major_version">libxfce4panel_major_version</a>, variable in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
-</dt>
-<dd></dd>
-<dt>
 <a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-MICRO-VERSION:CAPS" title="LIBXFCE4PANEL_MICRO_VERSION">LIBXFCE4PANEL_MICRO_VERSION</a>, macro in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
 </dt>
 <dd></dd>
@@ -66,14 +66,14 @@
 </dt>
 <dd></dd>
 <dt>
+<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-minor-version" title="libxfce4panel_minor_version">libxfce4panel_minor_version</a>, variable in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
+</dt>
+<dd></dd>
+<dt>
 <a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-MINOR-VERSION:CAPS" title="LIBXFCE4PANEL_MINOR_VERSION">LIBXFCE4PANEL_MINOR_VERSION</a>, macro in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
 </dt>
 <dd></dd>
 <dt>
-<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-minor-version" title="libxfce4panel_minor_version">libxfce4panel_minor_version</a>, variable in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
-</dt>
-<dd></dd>
-<dt>
 <a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-VERSION:CAPS" title="LIBXFCE4PANEL_VERSION">LIBXFCE4PANEL_VERSION</a>, macro in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
 </dt>
 <dd></dd>
@@ -189,6 +189,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/api-index-deprecated.html'
--- docs/references/html/api-index-deprecated.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/api-index-deprecated.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
 <link rel="prev" href="api-index-full.html" title="Index of all symbols">
 <link rel="next" href="api-index-4-8.html" title="Index of new symbols in 4.8">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -109,6 +109,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/api-index-full.html'
--- docs/references/html/api-index-full.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/api-index-full.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
 <link rel="prev" href="libxfce4panel-Convenience-Functions.html" title="Convenience Functions">
 <link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -102,11 +102,15 @@
 <dd></dd>
 <a name="idxL"></a><h3 class="title">L</h3>
 <dt>
+<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-check-version" title="libxfce4panel_check_version ()">libxfce4panel_check_version</a>, function in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
+</dt>
+<dd></dd>
+<dt>
 <a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-CHECK-VERSION:CAPS" title="LIBXFCE4PANEL_CHECK_VERSION()">LIBXFCE4PANEL_CHECK_VERSION</a>, macro in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
 </dt>
 <dd></dd>
 <dt>
-<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-check-version" title="libxfce4panel_check_version ()">libxfce4panel_check_version</a>, function in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
+<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-major-version" title="libxfce4panel_major_version">libxfce4panel_major_version</a>, variable in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
 </dt>
 <dd></dd>
 <dt>
@@ -114,7 +118,7 @@
 </dt>
 <dd></dd>
 <dt>
-<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-major-version" title="libxfce4panel_major_version">libxfce4panel_major_version</a>, variable in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
+<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-micro-version" title="libxfce4panel_micro_version">libxfce4panel_micro_version</a>, variable in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
 </dt>
 <dd></dd>
 <dt>
@@ -122,10 +126,6 @@
 </dt>
 <dd></dd>
 <dt>
-<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-micro-version" title="libxfce4panel_micro_version">libxfce4panel_micro_version</a>, variable in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
-</dt>
-<dd></dd>
-<dt>
 <a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-MINOR-VERSION:CAPS" title="LIBXFCE4PANEL_MINOR_VERSION">LIBXFCE4PANEL_MINOR_VERSION</a>, macro in <a class="link" href="libxfce4panel-Version-Information.html" title="Version Information">Version Information</a>
 </dt>
 <dd></dd>
@@ -574,6 +574,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/home.png'
Binary files docs/references/html/home.png	2010-12-04 15:45:53 +0000 and docs/references/html/home.png	2014-02-13 13:29:48 +0000 differ
=== modified file 'docs/references/html/index.html'
--- docs/references/html/index.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/index.html	2014-02-13 13:29:48 +0000
@@ -6,7 +6,7 @@
 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
 <link rel="home" href="index.html" title="Libxfce4panel Reference Manual">
 <link rel="next" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -20,7 +20,7 @@
 </h3>
 <div class="affiliation"><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:nick@xfce.org">nick@xfce.org</a>&gt;</code></p></div></div>
 </div></div></div>
-<div><p class="releaseinfo">Version 4.10.1
+<div><p class="releaseinfo">Version 4.10.0git-86a1b73
 </p></div>
 <div><p class="copyright">Copyright © 2006, 2007 Jasper Huijsmans</p></div>
 <div><p class="copyright">Copyright © 2008, 2010 Nick Schermer</p></div>
@@ -89,6 +89,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/left.png'
Binary files docs/references/html/left.png	2010-12-04 15:45:53 +0000 and docs/references/html/left.png	2014-02-13 13:29:48 +0000 differ
=== modified file 'docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html'
--- docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
 <link rel="prev" href="libxfce4panel-Standard-Enumerations.html" title="Standard Enumerations">
 <link rel="next" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -85,10 +85,10 @@
 <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
 <h3 class="title">Warning</h3>
 <p><code class="literal">panel_slice_alloc</code> has been deprecated since version 4.8 and should not be used in newly-written code. Deprecated because panel depends on recent enough
-                 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-alloc"><code class="function">g_slice_alloc()</code></a> instead.</p>
+                 version of glib. Use <code class="function">g_slice_alloc()</code> instead.</p>
 </div>
 <p>
-See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-alloc"><code class="function">g_slice_alloc()</code></a> for more information.
+See <code class="function">g_slice_alloc()</code> for more information.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -115,10 +115,10 @@
 <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
 <h3 class="title">Warning</h3>
 <p><code class="literal">panel_slice_alloc0</code> has been deprecated since version 4.8 and should not be used in newly-written code. Deprecated because panel depends on recent enough
-                 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-alloc0"><code class="function">g_slice_alloc0()</code></a> instead.</p>
+                 version of glib. Use <code class="function">g_slice_alloc0()</code> instead.</p>
 </div>
 <p>
-See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-alloc0"><code class="function">g_slice_alloc0()</code></a> for more information.
+See <code class="function">g_slice_alloc0()</code> for more information.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -145,10 +145,10 @@
 <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
 <h3 class="title">Warning</h3>
 <p><code class="literal">panel_slice_free</code> has been deprecated since version 4.8 and should not be used in newly-written code. Deprecated because panel depends on recent enough
-                 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-free"><code class="function">g_slice_free()</code></a> instead.</p>
+                 version of glib. Use <code class="function">g_slice_free()</code> instead.</p>
 </div>
 <p>
-See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-free"><code class="function">g_slice_free()</code></a> for more information.
+See <code class="function">g_slice_free()</code> for more information.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -175,10 +175,10 @@
 <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
 <h3 class="title">Warning</h3>
 <p><code class="literal">panel_slice_free1</code> has been deprecated since version 4.8 and should not be used in newly-written code. Deprecated because panel depends on recent enough
-                 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-free1"><code class="function">g_slice_free1()</code></a> instead.</p>
+                 version of glib. Use <code class="function">g_slice_free1()</code> instead.</p>
 </div>
 <p>
-See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-free1"><code class="function">g_slice_free1()</code></a> for more information.
+See <code class="function">g_slice_free1()</code> for more information.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -205,10 +205,10 @@
 <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
 <h3 class="title">Warning</h3>
 <p><code class="literal">panel_slice_new</code> has been deprecated since version 4.8 and should not be used in newly-written code. Deprecated because panel depends on recent enough
-                 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-new"><code class="function">g_slice_new()</code></a> instead.</p>
+                 version of glib. Use <code class="function">g_slice_new()</code> instead.</p>
 </div>
 <p>
-See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-new"><code class="function">g_slice_new()</code></a> for more information.
+See <code class="function">g_slice_new()</code> for more information.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -235,10 +235,10 @@
 <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
 <h3 class="title">Warning</h3>
 <p><code class="literal">panel_slice_new0</code> has been deprecated since version 4.8 and should not be used in newly-written code. Deprecated because panel depends on recent enough
-                 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-new0"><code class="function">g_slice_new0()</code></a> instead.</p>
+                 version of glib. Use <code class="function">g_slice_new0()</code> instead.</p>
 </div>
 <p>
-See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-new0"><code class="function">g_slice_new0()</code></a> for more information.
+See <code class="function">g_slice_new0()</code> for more information.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -265,11 +265,11 @@
 <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
 <h3 class="title">Warning</h3>
 <p><code class="literal">PANEL_PARAM_READABLE</code> has been deprecated since version 4.8 and should not be used in newly-written code. Deprecated because panel depends on recent enough
-                 version of glib. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-READABLE:CAPS"><span class="type">G_PARAM_READABLE</span></a>
-                 | <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS"><span class="type">G_PARAM_STATIC_STRINGS</span></a> instead.</p>
+                 version of glib. Use <span class="type">G_PARAM_READABLE</span>
+                 | <span class="type">G_PARAM_STATIC_STRINGS</span> instead.</p>
 </div>
 <p>
-Macro for <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-READABLE:CAPS"><span class="type">G_PARAM_READABLE</span></a> with static strings.
+Macro for <span class="type">G_PARAM_READABLE</span> with static strings.
 </p>
 </div>
 <hr>
@@ -280,11 +280,11 @@
 <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
 <h3 class="title">Warning</h3>
 <p><code class="literal">PANEL_PARAM_READWRITE</code> has been deprecated since version 4.8 and should not be used in newly-written code. Deprecated because panel depends on recent enough
-                 version of glib. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-READWRITE:CAPS"><span class="type">G_PARAM_READWRITE</span></a>
-                 | <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS"><span class="type">G_PARAM_STATIC_STRINGS</span></a> instead.</p>
+                 version of glib. Use <span class="type">G_PARAM_READWRITE</span>
+                 | <span class="type">G_PARAM_STATIC_STRINGS</span> instead.</p>
 </div>
 <p>
-Macro for <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-READWRITE:CAPS"><span class="type">G_PARAM_READWRITE</span></a> with static strings.
+Macro for <span class="type">G_PARAM_READWRITE</span> with static strings.
 </p>
 </div>
 <hr>
@@ -295,8 +295,8 @@
 <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
 <h3 class="title">Warning</h3>
 <p><code class="literal">PANEL_PARAM_WRITABLE</code> has been deprecated since version 4.8 and should not be used in newly-written code. Deprecated because panel depends on recent enough
-                 version of glib. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-WRITABLE:CAPS"><span class="type">G_PARAM_WRITABLE</span></a>
-                 | <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS"><span class="type">G_PARAM_STATIC_STRINGS</span></a> instead.</p>
+                 version of glib. Use <span class="type">G_PARAM_WRITABLE</span>
+                 | <span class="type">G_PARAM_STATIC_STRINGS</span> instead.</p>
 </div>
 <p>
 Macro for <a class="link" href="libxfce4panel-Commonly-used-plugin-macros.html#PANEL-PARAM-WRITABLE:CAPS" title="PANEL_PARAM_WRITABLE"><span class="type">PANEL_PARAM_WRITABLE</span></a> with static strings.
@@ -306,6 +306,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/libxfce4panel-Convenience-Functions.html'
--- docs/references/html/libxfce4panel-Convenience-Functions.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/libxfce4panel-Convenience-Functions.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">
 <link rel="prev" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">
 <link rel="next" href="api-index-full.html" title="Index of all symbols">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -40,17 +40,17 @@
 <pre class="synopsis">
 #include &lt;libxfce4panel/libxfce4panel.h&gt;
 
-<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-create-button" title="xfce_panel_create_button ()">xfce_panel_create_button</a>            (<em class="parameter"><code><span class="type">void</span></code></em>);
-<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-create-toggle-button" title="xfce_panel_create_toggle_button ()">xfce_panel_create_toggle_button</a>     (<em class="parameter"><code><span class="type">void</span></code></em>);
-const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-get-channel-name" title="xfce_panel_get_channel_name ()">xfce_panel_get_channel_name</a>         (<em class="parameter"><code><span class="type">void</span></code></em>);
-<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-pixbuf-from-source" title="xfce_panel_pixbuf_from_source ()">xfce_panel_pixbuf_from_source</a>       (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);
-<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-pixbuf-from-source-at-size" title="xfce_panel_pixbuf_from_source_at_size ()">xfce_panel_pixbuf_from_source_at_size</a>
-                                                        (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_width</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_height</code></em>);
+<span class="returnvalue">GtkWidget</span> *         <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-create-button" title="xfce_panel_create_button ()">xfce_panel_create_button</a>            (<em class="parameter"><code><span class="type">void</span></code></em>);
+<span class="returnvalue">GtkWidget</span> *         <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-create-toggle-button" title="xfce_panel_create_toggle_button ()">xfce_panel_create_toggle_button</a>     (<em class="parameter"><code><span class="type">void</span></code></em>);
+const <span class="returnvalue">gchar</span> *       <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-get-channel-name" title="xfce_panel_get_channel_name ()">xfce_panel_get_channel_name</a>         (<em class="parameter"><code><span class="type">void</span></code></em>);
+<span class="returnvalue">GdkPixbuf</span> *         <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-pixbuf-from-source" title="xfce_panel_pixbuf_from_source ()">xfce_panel_pixbuf_from_source</a>       (<em class="parameter"><code>const <span class="type">gchar</span> *source</code></em>,
+                                                         <em class="parameter"><code><span class="type">GtkIconTheme</span> *icon_theme</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> size</code></em>);
+<span class="returnvalue">GdkPixbuf</span> *         <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-pixbuf-from-source-at-size" title="xfce_panel_pixbuf_from_source_at_size ()">xfce_panel_pixbuf_from_source_at_size</a>
+                                                        (<em class="parameter"><code>const <span class="type">gchar</span> *source</code></em>,
+                                                         <em class="parameter"><code><span class="type">GtkIconTheme</span> *icon_theme</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> dest_width</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> dest_height</code></em>);
 #define             <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-allow-panel-customization" title="xfce_allow_panel_customization">xfce_allow_panel_customization</a>
 #define             <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-create-panel-button" title="xfce_create_panel_button">xfce_create_panel_button</a>
 #define             <a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-create-panel-toggle-button" title="xfce_create_panel_toggle_button">xfce_create_panel_toggle_button</a>
@@ -67,10 +67,10 @@
 <a name="libxfce4panel-Convenience-Functions.details"></a><h2>Details</h2>
 <div class="refsect2">
 <a name="xfce-panel-create-button"></a><h3>xfce_panel_create_button ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         xfce_panel_create_button            (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkWidget</span> *         xfce_panel_create_button            (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
 <p>
-Create regular <a href="http://developer.gnome.org/gtk2/GtkButton.html"><span class="type">GtkButton</span></a> with a few properties set to be useful in the
-Xfce panel: Flat (<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GTK-RELIEF-NONE:CAPS"><code class="literal">GTK_RELIEF_NONE</code></a>), no focus on click and minimal padding.
+Create regular <span class="type">GtkButton</span> with a few properties set to be useful in the
+Xfce panel: Flat (<code class="literal">GTK_RELIEF_NONE</code>), no focus on click and minimal padding.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -79,17 +79,17 @@
 </colgroup>
 <tbody><tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>newly created <a href="http://developer.gnome.org/gtk2/GtkButton.html"><span class="type">GtkButton</span></a>.</td>
+<td>newly created <span class="type">GtkButton</span>.</td>
 </tr></tbody>
 </table></div>
 </div>
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-create-toggle-button"></a><h3>xfce_panel_create_toggle_button ()</h3>
-<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         xfce_panel_create_toggle_button     (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GtkWidget</span> *         xfce_panel_create_toggle_button     (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
 <p>
-Create regular <a href="http://developer.gnome.org/gtk2/GtkToggleButton.html"><span class="type">GtkToggleButton</span></a> with a few properties set to be useful in
-Xfce panel: Flat (<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GTK-RELIEF-NONE:CAPS"><code class="literal">GTK_RELIEF_NONE</code></a>), no focus on click and minimal padding.
+Create regular <span class="type">GtkToggleButton</span> with a few properties set to be useful in
+Xfce panel: Flat (<code class="literal">GTK_RELIEF_NONE</code>), no focus on click and minimal padding.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -98,14 +98,14 @@
 </colgroup>
 <tbody><tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>newly created <a href="http://developer.gnome.org/gtk2/GtkToggleButton.html"><span class="type">GtkToggleButton</span></a>.</td>
+<td>newly created <span class="type">GtkToggleButton</span>.</td>
 </tr></tbody>
 </table></div>
 </div>
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-get-channel-name"></a><h3>xfce_panel_get_channel_name ()</h3>
-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       xfce_panel_get_channel_name         (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
+<pre class="programlisting">const <span class="returnvalue">gchar</span> *       xfce_panel_get_channel_name         (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
 <p>
 Function for the name of the Xfconf channel used by the panel. By default
 this returns "xfce4-panel", but you can override this value with the
@@ -129,9 +129,9 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-pixbuf-from-source"></a><h3>xfce_panel_pixbuf_from_source ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         xfce_panel_pixbuf_from_source       (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GdkPixbuf</span> *         xfce_panel_pixbuf_from_source       (<em class="parameter"><code>const <span class="type">gchar</span> *source</code></em>,
+                                                         <em class="parameter"><code><span class="type">GtkIconTheme</span> *icon_theme</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> size</code></em>);</pre>
 <p>
 See xfce_panel_pixbuf_from_source_at_size
 </p>
@@ -147,7 +147,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>icon_theme</code></em> :</span></p></td>
-<td>icon theme or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default icon theme</td>
+<td>icon theme or <code class="literal">NULL</code> to use the default icon theme</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
@@ -155,7 +155,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>a GdkPixbuf or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if nothing was found. The value should
+<td>a GdkPixbuf or <code class="literal">NULL</code> if nothing was found. The value should
 be released with g_object_unref when no longer used.
 See also: XfcePanelImage</td>
 </tr>
@@ -166,11 +166,11 @@
 <hr>
 <div class="refsect2">
 <a name="xfce-panel-pixbuf-from-source-at-size"></a><h3>xfce_panel_pixbuf_from_source_at_size ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         xfce_panel_pixbuf_from_source_at_size
-                                                        (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>,
-                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_width</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_height</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">GdkPixbuf</span> *         xfce_panel_pixbuf_from_source_at_size
+                                                        (<em class="parameter"><code>const <span class="type">gchar</span> *source</code></em>,
+                                                         <em class="parameter"><code><span class="type">GtkIconTheme</span> *icon_theme</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> dest_width</code></em>,
+                                                         <em class="parameter"><code><span class="type">gint</span> dest_height</code></em>);</pre>
 <p>
 Try to load a pixbuf from a source string. The source could be
 an abolute path, an icon name or a filename that points to a
@@ -197,7 +197,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>icon_theme</code></em> :</span></p></td>
-<td>icon theme or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default icon theme</td>
+<td>icon theme or <code class="literal">NULL</code> to use the default icon theme</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>dest_width</code></em> :</span></p></td>
@@ -209,7 +209,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>a GdkPixbuf or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if nothing was found. The value should
+<td>a GdkPixbuf or <code class="literal">NULL</code> if nothing was found. The value should
 be released with g_object_unref when no longer used.
 See also: XfcePanelImage</td>
 </tr>
@@ -227,7 +227,7 @@
 <p><code class="literal">xfce_allow_panel_customization</code> has been deprecated since version 4.8 and should not be used in newly-written code. Look at <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-locked" title="xfce_panel_plugin_get_locked ()"><code class="function">xfce_panel_plugin_get_locked()</code></a>.</p>
 </div>
 <p>
-Always returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>. Plugins can be locked on a plugin basis
+Always returns <code class="literal">FALSE</code>. Plugins can be locked on a plugin basis
 level in the future, so this function is useless.
 </p>
 </div>
@@ -261,6 +261,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html'
--- docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
 <link rel="prev" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html" title="Panel Plugin Register Macros (4.6 Style)">
 <link rel="next" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -92,11 +92,6 @@
 <td><p><span class="term"><em class="parameter"><code>type_name</code></em> :</span></p></td>
 <td>The name of the new type, in lowercase, with words separated by '_'.</td>
 </tr>
-<tr>
-<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
-<td>Optional list of *_register_type() function from other
-objects in the plugin created with <a class="link" href="libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html#XFCE-PANEL-DEFINE-TYPE:CAPS" title="XFCE_PANEL_DEFINE_TYPE()"><span class="type">XFCE_PANEL_DEFINE_TYPE</span></a>.</td>
-</tr>
 </tbody>
 </table></div>
 <p class="since">Since 4.8</p>
@@ -125,11 +120,6 @@
 <td><p><span class="term"><em class="parameter"><code>type_name</code></em> :</span></p></td>
 <td>The name of the new type, in lowercase, with words separated by '_'.</td>
 </tr>
-<tr>
-<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
-<td>Optional list of *_register_type() function from other
-objects in the plugin created with <a class="link" href="libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html#XFCE-PANEL-DEFINE-TYPE:CAPS" title="XFCE_PANEL_DEFINE_TYPE()"><span class="type">XFCE_PANEL_DEFINE_TYPE</span></a>.</td>
-</tr>
 </tbody>
 </table></div>
 <p class="since">Since 4.8</p>
@@ -139,9 +129,9 @@
 <a name="XFCE-PANEL-DEFINE-TYPE:CAPS"></a><h3>XFCE_PANEL_DEFINE_TYPE()</h3>
 <pre class="programlisting">#define             XFCE_PANEL_DEFINE_TYPE(TypeName, type_name, TYPE_PARENT)</pre>
 <p>
-A convenient macro of <a href="http://library.gnome.org/devel/gobject/unstable/GTypeModule.html#G-DEFINE-DYNAMIC-TYPE:CAPS"><span class="type">G_DEFINE_DYNAMIC_TYPE</span></a> for panel plugins. Only
-difference with <a href="http://library.gnome.org/devel/gobject/unstable/GTypeModule.html#G-DEFINE-DYNAMIC-TYPE:CAPS"><span class="type">G_DEFINE_DYNAMIC_TYPE</span></a> is that the type name send to
-<a href="http://library.gnome.org/devel/gobject/unstable/GTypeModule.html#g-type-module-register-type"><code class="function">g_type_module_register_type()</code></a> is prefixed with "Xfce". This allows you
+A convenient macro of <span class="type">G_DEFINE_DYNAMIC_TYPE</span> for panel plugins. Only
+difference with <span class="type">G_DEFINE_DYNAMIC_TYPE</span> is that the type name send to
+<code class="function">g_type_module_register_type()</code> is prefixed with "Xfce". This allows you
 use use shorted structure names in the code, while the real name of the
 object is a full "Xfce" name.
 </p>
@@ -177,12 +167,12 @@
 <pre class="programlisting">#define             XFCE_PANEL_DEFINE_PREINIT_FUNC(preinit_func)</pre>
 <p>
 Registers a pre-init function in the plugin module. This function
-is called before <a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-init"><code class="function">gtk_init()</code></a> and can be used to initialize
+is called before <code class="function">gtk_init()</code> and can be used to initialize
 special libaries.
 Downside of this that the plugin cannot run internal. Even if you
 set X-XFCE-Interal=TRUE in the desktop file, the panel will force
 the plugin to run inside a wrapper (this because the panel called
-<a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-init"><code class="function">gtk_init()</code></a> long before it starts to load the plugins).
+<code class="function">gtk_init()</code> long before it starts to load the plugins).
 </p>
 <p>
 Note that you can only use this once and it only works in
@@ -206,6 +196,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html'
--- docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html	2013-05-21 22:40:43 +0000
+++ docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
 <link rel="prev" href="libxfce4panel-Panel-Plugin-Register-Macros.html" title="Panel Plugin Register Macros">
 <link rel="next" href="libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html" title="GObject Oriented Panel Plugin Registers Macros">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -100,7 +100,7 @@
 </div>
 <p>
 Same as <a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html#XFCE-PANEL-PLUGIN-REGISTER-EXTERNAL-WITH-CHECK:CAPS" title="XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL_WITH_CHECK()"><code class="function">XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL_WITH_CHECK()</code></a>, but with a
-preinit function that is called before <a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-init"><code class="function">gtk_init()</code></a>. This allows plugins
+preinit function that is called before <code class="function">gtk_init()</code>. This allows plugins
 to initialize libraries or threads.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
@@ -118,13 +118,13 @@
 <tr>
 <td><p><span class="term"><em class="parameter"><code>preinit_func</code></em> :</span></p></td>
 <td>name of a function that can be case to <a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginPreInit" title="XfcePanelPluginPreInit ()"><span class="type">XfcePanelPluginPreInit</span></a>
-or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
+or <code class="literal">NULL</code>
 </td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>check_func</code></em> :</span></p></td>
 <td>name of a function that can be cast to an
-<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
+<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <code class="literal">NULL</code>
 </td>
 </tr>
 </tbody>
@@ -163,7 +163,7 @@
 <tr>
 <td><p><span class="term"><em class="parameter"><code>check_func</code></em> :</span></p></td>
 <td>name of a function that can be cast to an
-<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
+<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <code class="literal">NULL</code>
 </td>
 </tr>
 </tbody>
@@ -219,7 +219,7 @@
 <tr>
 <td><p><span class="term"><em class="parameter"><code>check_func</code></em> :</span></p></td>
 <td>name of a function that can be cast to an
-<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
+<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <code class="literal">NULL</code>
 </td>
 </tr>
 </tbody>
@@ -229,6 +229,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html'
--- docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
 <link rel="prev" href="XfcePanelPlugin.html" title="XfcePanelPlugin">
 <link rel="next" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html" title="Panel Plugin Register Macros (4.6 Style)">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -40,10 +40,10 @@
 <pre class="synopsis">
 #include &lt;libxfce4panel/libxfce4panel.h&gt;
 
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()">*XfcePanelPluginCheck</a>)             (<em class="parameter"><code><a href="http://developer.gnome.org/gdk2/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
+<span class="returnvalue">gboolean</span>            (<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()">*XfcePanelPluginCheck</a>)             (<em class="parameter"><code><span class="type">GdkScreen</span> *screen</code></em>);
 <span class="returnvalue">void</span>                (<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginFunc" title="XfcePanelPluginFunc ()">*XfcePanelPluginFunc</a>)              (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginPreInit" title="XfcePanelPluginPreInit ()">*XfcePanelPluginPreInit</a>)           (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> argc</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **argv</code></em>);
+<span class="returnvalue">gboolean</span>            (<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginPreInit" title="XfcePanelPluginPreInit ()">*XfcePanelPluginPreInit</a>)           (<em class="parameter"><code><span class="type">gint</span> argc</code></em>,
+                                                         <em class="parameter"><code><span class="type">gchar</span> **argv</code></em>);
 #define             <a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XFCE-PANEL-PLUGIN-REGISTER:CAPS" title="XFCE_PANEL_PLUGIN_REGISTER()">XFCE_PANEL_PLUGIN_REGISTER</a>          (construct_func)
 #define             <a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XFCE-PANEL-PLUGIN-REGISTER-WITH-CHECK:CAPS" title="XFCE_PANEL_PLUGIN_REGISTER_WITH_CHECK()">XFCE_PANEL_PLUGIN_REGISTER_WITH_CHECK</a>(construct_func,
                                                          check_func)
@@ -64,10 +64,10 @@
 <a name="libxfce4panel-Panel-Plugin-Register-Macros.details"></a><h2>Details</h2>
 <div class="refsect2">
 <a name="XfcePanelPluginCheck"></a><h3>XfcePanelPluginCheck ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (*XfcePanelPluginCheck)             (<em class="parameter"><code><a href="http://developer.gnome.org/gdk2/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>            (*XfcePanelPluginCheck)             (<em class="parameter"><code><span class="type">GdkScreen</span> *screen</code></em>);</pre>
 <p>
 Callback function that is run before creating a plugin. It should return
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the plugin is not available for whatever reason. The function
+<code class="literal">FALSE</code> if the plugin is not available for whatever reason. The function
 can be given as argument to one of the registration macros.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
@@ -78,12 +78,12 @@
 <tbody>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
-<td>the <a href="http://developer.gnome.org/gdk2/GdkScreen.html"><span class="type">GdkScreen</span></a> the panel is running on</td>
+<td>the <span class="type">GdkScreen</span> the panel is running on</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the plugin can be started, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
+<code class="literal">TRUE</code> if the plugin can be started, <code class="literal">FALSE</code> otherwise.</td>
 </tr>
 </tbody>
 </table></div>
@@ -111,16 +111,16 @@
 <hr>
 <div class="refsect2">
 <a name="XfcePanelPluginPreInit"></a><h3>XfcePanelPluginPreInit ()</h3>
-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (*XfcePanelPluginPreInit)           (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> argc</code></em>,
-                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **argv</code></em>);</pre>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>            (*XfcePanelPluginPreInit)           (<em class="parameter"><code><span class="type">gint</span> argc</code></em>,
+                                                         <em class="parameter"><code><span class="type">gchar</span> **argv</code></em>);</pre>
 <p>
-Callback function that is run in an external plugin before <a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-init"><code class="function">gtk_init()</code></a>. It
-should return <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the plugin is not available for whatever reason.
+Callback function that is run in an external plugin before <code class="function">gtk_init()</code>. It
+should return <code class="literal">FALSE</code> if the plugin is not available for whatever reason.
 The function can be given as argument to one of the registration macros.
 </p>
 <p>
 The main purpose of this callback is to allow multithreaded plugins to call
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Deprecated-Thread-APIs.html#g-thread-init"><code class="function">g_thread_init()</code></a>.
+<code class="function">g_thread_init()</code>.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -139,7 +139,7 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
+<code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</td>
 </tr>
 </tbody>
 </table></div>
@@ -174,7 +174,7 @@
 <p>
 Register a panel plugin using a construct function. The <em class="parameter"><code>check_func</code></em>
 will be called before the plugin is created. If this function returns
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, the plugin won't be added to the panel. For proper feedback,
+<code class="literal">FALSE</code>, the plugin won't be added to the panel. For proper feedback,
 you are responsible for showing a dialog why the plugin is not added
 to the panel.
 </p>
@@ -236,6 +236,6 @@
 </div>
 <div class="footer">
 <hr>
-          Generated by GTK-Doc V1.18</div>
+          Generated by GTK-Doc V1.19</div>
 </body>
 </html>
\ No newline at end of file

=== modified file 'docs/references/html/libxfce4panel-Standard-Enumerations.html'
--- docs/references/html/libxfce4panel-Standard-Enumerations.html	2013-05-21 22:40:43 +0000
+++ docs/references/html/libxfce4panel-Standard-Enumerations.html	2014-02-13 13:29:48 +0000
@@ -8,7 +8,7 @@
 <link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
 <link rel="prev" href="libxfce4panel-Version-Information.html" title="Version Information">
 <link rel="next" href="libxfce4panel-Commonly-used-plugin-macros.html" title="Commonly used plugin macros">
-<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
 <link rel="stylesheet" href="style.css" type="text/css">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -184,7 +184,7 @@
 <a name="xfce-screen-position-get-orientation"></a><h3>xfce_screen_position_get_orientation()</h3>
 <pre class="programlisting">#define             xfce_screen_position_get_orientation(position)</pre>
 <p>
-Converts the current <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="type">XfceScreenPosition</span></a> into a <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a>.
+Converts the current <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="type">XfceScreenPosition</span></a> into a <span class="type">GtkOrientation</span>.
 </p>
 <div class="variablelist"><table border="0" class="variablelist">
 <colgroup>
@@ -199,7 +199,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
-<td>the <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> corresponding to <em class="parameter"><code>position</code></em>.</td>
+<td>the <span class="type">GtkOrientation</span> corresponding to <em class="parameter"><code>position</code></em>.</td>
 </tr>
 </tbody>
 </table></div>
@@ -226,7 +226,7 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the bottom of the screen, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
+<code class="literal">TRUE</code> if on the bottom of the screen, <code class="literal">FALSE</code> otherwise</td>
 </tr>
 </tbody>
 </table></div>
@@ -252,7 +252,7 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if floating, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
+<code class="literal">TRUE</code> if floating, <code class="literal">FALSE</code> otherwise.</td>
 </tr>
 </tbody>
 </table></div>
@@ -278,7 +278,7 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if horizontal, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
+<code class="literal">TRUE</code> if horizontal, <code class="literal">FALSE</code> otherwise</td>
 </tr>
 </tbody>
 </table></div>
@@ -305,7 +305,7 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the left of the screen, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
+<code class="literal">TRUE</code> if on the left of the screen, <code class="literal">FALSE</code> otherwise</td>
 </tr>
 </tbody>
 </table></div>
@@ -332,7 +332,7 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the right of the screen, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
+<code class="literal">TRUE</code> if on the right of the screen, <code class="literal">FALSE</code> otherwise</td>
 </tr>
 </tbody>
 </table></div>
@@ -359,7 +359,7 @@
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 <td>
-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the top of the screen, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
+<code class="literal">TRUE</code> if on the top of the screen, <code class="literal">FALSE</code> otherwise</td>
 </tr>
 </tbody>
 </table></div>