proxy: remove proxy panel

It is replaced by the network panel.
This commit is contained in:
William Jon McCann 2010-12-16 10:06:46 -05:00
parent fe98e4c2ce
commit 9a3f023e2c
17 changed files with 0 additions and 3346 deletions

View file

@ -346,8 +346,6 @@ panels/media/Makefile
panels/media/gnome-media-panel.desktop.in
panels/mouse/Makefile
panels/mouse/gnome-mouse-panel.desktop.in
panels/proxy/Makefile
panels/proxy/gnome-proxy-panel.desktop.in
panels/sound/Makefile
panels/sound/data/Makefile
panels/sound/data/gnome-sound-panel.desktop.in

View file

@ -6,7 +6,6 @@ SUBDIRS= \
media \
mouse \
region \
proxy \
network \
info \
sound \

View file

@ -1,57 +0,0 @@
# This is used in GNOMECC_CAPPLETS_CFLAGS
cappletname = proxy
ccpanelsdir = $(PANELS_DIR)
ccpanels_LTLIBRARIES = libproxy.la
libproxy_la_SOURCES = gnome-proxy-properties.c \
cc-proxy-panel.c \
cc-proxy-panel.h \
proxy-module.c
libproxy_la_LIBADD = $(PANEL_LIBS) $(GNOMECC_CAPPLETS_LIBS)
libproxy_la_LDFLAGS = $(PANEL_LDFLAGS)
@INTLTOOL_DESKTOP_RULE@
uidir = $(pkgdatadir)/ui
dist_ui_DATA = gnome-proxy-properties.ui
icons16dir = $(datadir)/icons/hicolor/16x16/apps
dist_icons16_DATA = icons/16x16/gnome-proxy-properties.png
icons22dir = $(datadir)/icons/hicolor/22x22/apps
dist_icons22_DATA = icons/22x22/gnome-proxy-properties.png
icons24dir = $(datadir)/icons/hicolor/24x24/apps
dist_icons24_DATA = icons/24x24/gnome-proxy-properties.png
icons32dir = $(datadir)/icons/hicolor/32x32/apps
dist_icons32_DATA = icons/32x32/gnome-proxy-properties.png
icons48dir = $(datadir)/icons/hicolor/48x48/apps
dist_icons48_DATA = icons/48x48/gnome-proxy-properties.png
iconssvgdir = $(datadir)/icons/hicolor/scalable/apps
dist_iconssvg_DATA = icons/scalable/gnome-proxy-properties.svg
desktopdir = $(datadir)/applications
desktop_in_files = gnome-proxy-panel.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
INCLUDES = \
$(GNOMECC_CAPPLETS_CFLAGS) \
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
-DGNOMECC_UI_DIR="\"$(uidir)\""
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
uninstall-hook: update-icon-cache
install-data-hook: update-icon-cache
update-icon-cache:
@-if test -z "$(DESTDIR)"; then \
echo "Updating Gtk icon cache."; \
$(gtk_update_icon_cache); \
else \
echo "*** Icon cache not updated. After install, run this:"; \
echo "*** $(gtk_update_icon_cache)"; \
fi
CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES) $(desktop_in_files) $(desktop_DATA)
-include $(top_srcdir)/git.mk

View file

@ -1,127 +0,0 @@
/*
* Copyright (C) 2010 Intel, Inc
* Copyright (C) 2002 Sun Microsystems Inc.
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Author: Thomas Wood <thomas.wood@intel.com>
* Mark McLoughlin <mark@skynet.ie>
*
*/
#include "cc-proxy-panel.h"
G_DEFINE_DYNAMIC_TYPE (CcProxyPanel, cc_proxy_panel, CC_TYPE_PANEL)
#define PROXY_PANEL_PRIVATE(o) \
(G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_PROXY_PANEL, CcProxyPanelPrivate))
struct _CcProxyPanelPrivate
{
GtkBuilder *builder;
};
static void
cc_proxy_panel_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec)
{
switch (property_id)
{
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static void
cc_proxy_panel_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec)
{
switch (property_id)
{
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static void
cc_proxy_panel_dispose (GObject *object)
{
CcProxyPanelPrivate *priv = CC_PROXY_PANEL (object)->priv;
if (!priv->builder)
{
g_object_unref (priv->builder);
priv->builder = NULL;
}
G_OBJECT_CLASS (cc_proxy_panel_parent_class)->dispose (object);
}
static void
cc_proxy_panel_finalize (GObject *object)
{
G_OBJECT_CLASS (cc_proxy_panel_parent_class)->finalize (object);
}
static void
cc_proxy_panel_class_init (CcProxyPanelClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
g_type_class_add_private (klass, sizeof (CcProxyPanelPrivate));
object_class->get_property = cc_proxy_panel_get_property;
object_class->set_property = cc_proxy_panel_set_property;
object_class->dispose = cc_proxy_panel_dispose;
object_class->finalize = cc_proxy_panel_finalize;
}
static void
cc_proxy_panel_class_finalize (CcProxyPanelClass *klass)
{
}
static void
cc_proxy_panel_init (CcProxyPanel *self)
{
CcProxyPanelPrivate *priv;
GtkWidget *widget;
priv = self->priv = PROXY_PANEL_PRIVATE (self);
priv->builder = gtk_builder_new ();
gnome_network_properties_init (priv->builder);
widget = (GtkWidget *) gtk_builder_get_object (priv->builder,
"network-panel");
gtk_widget_reparent (widget, GTK_WIDGET (self));
}
void
cc_proxy_panel_register (GIOModule *module)
{
cc_proxy_panel_register_type (G_TYPE_MODULE (module));
g_io_extension_point_implement (CC_SHELL_PANEL_EXTENSION_POINT,
CC_TYPE_PROXY_PANEL,
"proxy", 0);
}

View file

@ -1,77 +0,0 @@
/*
* Copyright (C) 2010 Intel, Inc
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Author: Thomas Wood <thomas.wood@intel.com>
*
*/
#ifndef _CC_PROXY_PANEL_H
#define _CC_PROXY_PANEL_H
#include <libgnome-control-center/cc-panel.h>
G_BEGIN_DECLS
#define CC_TYPE_PROXY_PANEL cc_proxy_panel_get_type()
#define CC_PROXY_PANEL(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), \
CC_TYPE_PROXY_PANEL, CcProxyPanel))
#define CC_PROXY_PANEL_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), \
CC_TYPE_PROXY_PANEL, CcProxyPanelClass))
#define CC_IS_PROXY_PANEL(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
CC_TYPE_PROXY_PANEL))
#define CC_IS_PROXY_PANEL_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), \
CC_TYPE_PROXY_PANEL))
#define CC_PROXY_PANEL_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), \
CC_TYPE_PROXY_PANEL, CcProxyPanelClass))
typedef struct _CcProxyPanel CcProxyPanel;
typedef struct _CcProxyPanelClass CcProxyPanelClass;
typedef struct _CcProxyPanelPrivate CcProxyPanelPrivate;
struct _CcProxyPanel
{
CcPanel parent;
CcProxyPanelPrivate *priv;
};
struct _CcProxyPanelClass
{
CcPanelClass parent_class;
};
GType cc_proxy_panel_get_type (void) G_GNUC_CONST;
void cc_proxy_panel_register (GIOModule *module);
int gnome_network_properties_init (GtkBuilder *builder);
G_END_DECLS
#endif /* _CC_PROXY_PANEL_H */

View file

@ -1,17 +0,0 @@
[Desktop Entry]
_Name=Network Proxy
_Comment=Set your network proxy preferences
Exec=gnome-control-center proxy
Icon=gnome-network-properties
Terminal=false
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Settings;X-GNOME-NetworkSettings;X-GNOME-Settings-Panel;
OnlyShowIn=GNOME;
X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=gnome-control-center
X-GNOME-Bugzilla-Component=proxy preferences
X-GNOME-Bugzilla-Version=@VERSION@
X-GNOME-Settings-Panel=proxy
# Translators: those are keywords for the proxy control-center panel
_X-GNOME-Keywords=Web;Location;

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 824 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,628 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48px"
height="48px"
id="svg7195"
sodipodi:version="0.32"
inkscape:version="0.45+devel"
sodipodi:docbase="/home/cornelius/Desktop"
sodipodi:docname="network-proxy-48.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/cornelius/Desktop/network-proxy-48.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs7197">
<linearGradient
id="linearGradient5466"
inkscape:collect="always">
<stop
id="stop5468"
offset="0"
style="stop-color:#555753;stop-opacity:1" />
<stop
id="stop5470"
offset="1"
style="stop-color:#888a85;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5466"
id="linearGradient5538"
gradientUnits="userSpaceOnUse"
x1="37.870998"
y1="12.5"
x2="47.965992"
y2="13.076671"
gradientTransform="translate(-1,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6393"
id="linearGradient5540"
gradientUnits="userSpaceOnUse"
x1="38.520752"
y1="12.5"
x2="47.863831"
y2="12.5"
gradientTransform="translate(-1,0)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5546"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.751545,0,0,1.969706,92.22831,-876.5339)"
cx="602.66046"
cy="488.07956"
fx="602.66046"
fy="488.07956"
r="117.14286" />
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5544"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7515457,0,0,1.969706,-1568.5757,-873.7569)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5542"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.4289406,0,0,1.969706,-1977.4912,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
id="linearGradient5459"
inkscape:collect="always">
<stop
id="stop5461"
offset="0"
style="stop-color:#555753;stop-opacity:1" />
<stop
id="stop5463"
offset="1"
style="stop-color:#888a85;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5459"
id="linearGradient5548"
gradientUnits="userSpaceOnUse"
x1="24.399277"
y1="35.275932"
x2="31.843159"
y2="47.757107"
gradientTransform="translate(-1,0)" />
<linearGradient
id="linearGradient5429"
inkscape:collect="always">
<stop
id="stop5431"
offset="0"
style="stop-color:#555753;stop-opacity:1" />
<stop
id="stop5433"
offset="1"
style="stop-color:#888a85;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5429"
id="linearGradient5550"
gradientUnits="userSpaceOnUse"
x1="24.399277"
y1="35.275932"
x2="44.067654"
y2="47.80442"
gradientTransform="translate(-1,0)" />
<linearGradient
id="linearGradient5423"
inkscape:collect="always">
<stop
id="stop5425"
offset="0"
style="stop-color:#555753;stop-opacity:1" />
<stop
id="stop5427"
offset="1"
style="stop-color:#888a85;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5423"
id="linearGradient5552"
gradientUnits="userSpaceOnUse"
x1="24.399277"
y1="35.275932"
x2="50"
y2="41.644268"
gradientTransform="translate(-1,0)" />
<linearGradient
id="linearGradient5447"
inkscape:collect="always">
<stop
id="stop5449"
offset="0"
style="stop-color:#555753;stop-opacity:1" />
<stop
id="stop5451"
offset="1"
style="stop-color:#888a85;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5447"
id="linearGradient5554"
gradientUnits="userSpaceOnUse"
x1="24.399277"
y1="35.275932"
x2="17.209641"
y2="47.548927"
gradientTransform="translate(-1,0)" />
<linearGradient
id="linearGradient5441"
inkscape:collect="always">
<stop
id="stop5443"
offset="0"
style="stop-color:#555753;stop-opacity:1" />
<stop
id="stop5445"
offset="1"
style="stop-color:#888a85;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5441"
id="linearGradient5556"
gradientUnits="userSpaceOnUse"
x1="24.399277"
y1="35.275932"
x2="6.1469398"
y2="46.668907"
gradientTransform="translate(-1,0)" />
<linearGradient
inkscape:collect="always"
id="linearGradient6294">
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="0"
id="stop6296" />
<stop
style="stop-color:#eeeeec;stop-opacity:1"
offset="1"
id="stop6298" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6294"
id="linearGradient5558"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.375,0,0,1.2857143,-10.1875,-3.2857142)"
x1="26.820854"
y1="5.9706759"
x2="26.820854"
y2="12.407513" />
<linearGradient
inkscape:collect="always"
id="linearGradient6427">
<stop
style="stop-color:#d3d7cf;stop-opacity:1;"
offset="0"
id="stop6429" />
<stop
style="stop-color:#d3d7cf;stop-opacity:0;"
offset="1"
id="stop6431" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6427"
id="linearGradient5560"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1,1)"
x1="41.570694"
y1="32.504398"
x2="18.827377"
y2="6" />
<linearGradient
id="linearGradient5435"
inkscape:collect="always">
<stop
id="stop5437"
offset="0"
style="stop-color:#555753;stop-opacity:1" />
<stop
id="stop5439"
offset="1"
style="stop-color:#888a85;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5435"
id="linearGradient5562"
gradientUnits="userSpaceOnUse"
x1="22.280706"
y1="35"
x2="2.1575336"
y2="41.171135"
gradientTransform="translate(-1,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6393"
id="linearGradient5564"
gradientUnits="userSpaceOnUse"
x1="27.060818"
y1="36.950813"
x2="43.95985"
y2="47.034103"
gradientTransform="translate(-1,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6393"
id="linearGradient5566"
gradientUnits="userSpaceOnUse"
x1="24.408333"
y1="35.758526"
x2="-0.58516204"
y2="42"
gradientTransform="translate(-1,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6393"
id="linearGradient5568"
gradientUnits="userSpaceOnUse"
x1="24.408333"
y1="35.758526"
x2="6.735868"
y2="46.911091"
gradientTransform="translate(-1,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6393"
id="linearGradient5570"
gradientUnits="userSpaceOnUse"
x1="25.702541"
y1="38.042225"
x2="32.307709"
y2="48.084454"
gradientTransform="translate(-1,0)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6393"
id="linearGradient5572"
gradientUnits="userSpaceOnUse"
x1="24.408333"
y1="35.758526"
x2="16.728512"
y2="48.084454"
gradientTransform="translate(-1,0)" />
<linearGradient
inkscape:collect="always"
id="linearGradient6393">
<stop
style="stop-color:#eeeeec;stop-opacity:1;"
offset="0"
id="stop6395" />
<stop
style="stop-color:#eeeeec;stop-opacity:0;"
offset="1"
id="stop6397" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6393"
id="linearGradient5574"
gradientUnits="userSpaceOnUse"
x1="27.727142"
y1="35"
x2="49"
y2="41.063202"
gradientTransform="translate(-1,0)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7"
inkscape:cx="24"
inkscape:cy="24"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="872"
inkscape:window-height="623"
inkscape:window-x="0"
inkscape:window-y="26" />
<metadata
id="metadata7200">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Network proxy</dc:title>
<dc:date>16.02.2007</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Josef Vybíral</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Josef Vybíral</dc:title>
</cc:Agent>
</dc:rights>
<dc:source>http://blog.vybiral.info</dc:source>
<dc:subject>
<rdf:Bag>
<rdf:li>network</rdf:li>
<rdf:li>proxy</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:contributor>
<cc:Agent>
<dc:title>Jakub Steiner</dc:title>
</cc:Agent>
</dc:contributor>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5538);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 37.0038,12.5 L 47.0038,12.5"
id="path5472" />
<path
id="path5474"
d="M 37.0038,12.5 L 47.0038,12.5"
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5540);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
ry="0.5064261"
rx="0.5064261"
y="9.5"
x="34.5"
height="6"
width="2.0000012"
id="rect5476"
style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
style="opacity:0.31004363;display:inline"
transform="matrix(-1.2388921e-2,0,0,1.6597884e-2,14.35481,26.561532)"
id="g5478">
<rect
style="opacity:0.40206185;color:#000000;fill:url(#linearGradient5542);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect5480"
width="1655.6886"
height="478.35718"
x="-1566.019"
y="-150.69685" />
<path
style="opacity:0.40206185;color:#000000;fill:url(#radialGradient5544);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
d="M 89.669502,-151.55183 C 89.669502,-151.55183 89.669502,326.77896 89.669502,326.77896 C 231.36729,327.67941 432.22584,219.6093 432.22576,87.582782 C 432.22576,-44.443755 274.10167,-151.55181 89.669502,-151.55183 z"
id="path5482"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
id="path5484"
d="M -1566.0191,-154.32884 C -1566.0191,-154.32884 -1566.0191,324.00195 -1566.0191,324.00195 C -1707.7169,324.9024 -1908.5753,216.83229 -1908.5753,84.805778 C -1908.5753,-47.220759 -1750.4513,-154.32882 -1566.0191,-154.32884 z"
style="opacity:0.40206185;color:#000000;fill:url(#radialGradient5546);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
</g>
<path
sodipodi:nodetypes="ccc"
id="path5486"
d="M 23.53622,24.5 L 23.53622,35.5 L 30.80771,47.584452"
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5548);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5550);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 23.53622,24.5 L 23.53622,35.5 L 42.48548,47.385737"
id="path5488"
sodipodi:nodetypes="ccc" />
<path
sodipodi:nodetypes="ccc"
id="path5490"
d="M 23.53622,24.5 L 23.53622,34.5 L 47.5,41.5"
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5552);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5554);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 23.5,24.5 L 23.5,35.5 L 16.22851,47.584452"
id="path5492"
sodipodi:nodetypes="ccc" />
<path
sodipodi:nodetypes="ccc"
id="path5494"
d="M 23.5,24.5 L 23.5,35.5 L 4.55074,47.385737"
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5556);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
sodipodi:nodetypes="ccccccccc"
id="path5496"
d="M 15.09302,2.5000001 L 31.90698,2.5000001 L 34.5,6.2103543 L 34.5,28.313413 C 34.5,28.944378 33.95677,29.500001 33.28198,29.500001 L 13.71802,29.500001 C 13.04323,29.500001 12.5,28.992041 12.5,28.361076 L 12.5,6.2103543 L 15.09302,2.5000001 z"
style="color:#000000;fill:url(#linearGradient5558);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<rect
ry="1"
rx="1"
y="7"
x="15"
height="20"
width="17"
id="rect5498"
style="opacity:0.83842797;color:#000000;fill:url(#linearGradient5560);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 15.53595,3.5 L 31.46767,3.5 L 33.5,6.4892262 L 33.5,27.777117 C 33.5,28.42284 33.44002,28.499987 32.73895,28.499987 L 14.34783,28.499987 C 13.64676,28.499987 13.5,28.51138 13.5,27.865657 L 13.5,6.4892262 L 15.53595,3.5 z"
id="path5500"
sodipodi:nodetypes="ccccccccc" />
<path
transform="matrix(-1.4831624,0,0,1.5007696,54.7879,-9.838124)"
d="M 23.070641,24.879318 A 1.9989744,1.9989744 0 1 1 19.072692,24.879318 A 1.9989744,1.9989744 0 1 1 23.070641,24.879318 z"
sodipodi:ry="1.9989744"
sodipodi:rx="1.9989744"
sodipodi:cy="24.879318"
sodipodi:cx="21.071667"
id="path5502"
style="color:#000000;fill:#ad7fa8;fill-opacity:1;fill-rule:evenodd;stroke:#5c3566;stroke-width:0.67026824px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#ad7fa8;fill-opacity:1;fill-rule:evenodd;stroke:#5c3566;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path5504"
sodipodi:cx="21.071667"
sodipodi:cy="24.879318"
sodipodi:rx="1.9989744"
sodipodi:ry="1.9989744"
d="M 23.070641,24.879318 A 1.9989744,1.9989744 0 1 1 19.072692,24.879318 A 1.9989744,1.9989744 0 1 1 23.070641,24.879318 z"
transform="matrix(-1,0,0,1,44.60686,3.6196562)" />
<path
style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5562);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 23.5,28.5 L 23.5,34.5 L -0.46378,41.5"
id="path5506"
sodipodi:nodetypes="ccc" />
<path
sodipodi:nodetypes="ccc"
id="path5508"
d="M 23.53622,28.5 L 23.53622,35.5 L 42.45985,47.518214"
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5564);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
sodipodi:nodetypes="ccc"
id="path5510"
d="M 23.5,28.5 L 23.5,34.5 L -0.46378,41.5"
style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5566);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5568);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 23.5,28.5 L 23.5,35.5 L 4.57637,47.518214"
id="path5512"
sodipodi:nodetypes="ccc" />
<path
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5570);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 23.53622,28.5 L 23.53622,35.5 L 30.80771,47.584452"
id="path5514"
sodipodi:nodetypes="ccc" />
<path
sodipodi:nodetypes="ccc"
id="path5516"
d="M 23.5,28.5 C 23.5,31.25 23.5,35.5 23.5,35.5 L 16.22851,47.584452"
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5572);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<path
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5574);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 23.53622,28.5 L 23.53622,34.5 L 47.5,41.5"
id="path5518"
sodipodi:nodetypes="ccc" />
<path
sodipodi:nodetypes="cc"
id="path5520"
d="M 17.5,12.5 L 29.5,12.5"
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 17.5,14.5 L 29.5,14.5"
id="path5522"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
id="path5524"
d="M 17.5,16.5 L 29.5,16.5"
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#babdb6;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 17.5,18.5 L 29.5,18.5"
id="path5526"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 17.5,13.5 L 29.5,13.5"
id="path5528"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
id="path5530"
d="M 17.5,15.5 L 29.5,15.5"
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 17.5,17.5 L 29.5,17.5"
id="path5532"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
id="path5534"
d="M 17.5,19.5 L 29.5,19.5"
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
transform="matrix(0.7916045,0,0,0.7916044,2.47836,5.9823878)"
d="M 18.976194,24.655764 A 1.2632571,1.2632571 0 1 1 16.449679,24.655764 A 1.2632571,1.2632571 0 1 1 18.976194,24.655764 z"
sodipodi:ry="1.2632571"
sodipodi:rx="1.2632571"
sodipodi:cy="24.655764"
sodipodi:cx="17.712936"
id="path5536"
style="opacity:0.83842797;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:evenodd;stroke:#4e9a06;stroke-width:1.26325715;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:type="arc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 28 KiB

View file

@ -1,41 +0,0 @@
/*
* Copyright (C) 2010 Intel, Inc
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Author: Thomas Wood <thomas.wood@intel.com>
*
*/
#include <config.h>
#include "cc-proxy-panel.h"
#include <glib/gi18n-lib.h>
void
g_io_module_load (GIOModule *module)
{
bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
/* register the panel */
cc_proxy_panel_register (module);
}
void
g_io_module_unload (GIOModule *module)
{
}

View file

@ -45,9 +45,6 @@ panels/region/gnome-region-panel.desktop.in.in
panels/mouse/gnome-mouse-properties.c
[type: gettext/glade]panels/mouse/gnome-mouse-properties.ui
panels/mouse/gnome-mouse-panel.desktop.in.in
panels/proxy/gnome-proxy-properties.c
panels/proxy/gnome-proxy-panel.desktop.in.in
[type: gettext/glade]panels/proxy/gnome-proxy-properties.ui
panels/network/cc-network-panel.c
panels/network/panel-common.c
panels/network/gnome-network-panel.desktop.in.in

View file

@ -18,7 +18,6 @@ panels/user-accounts/data/gnome-user-accounts-panel.desktop.in
panels/user-accounts/fingerprint-strings.h
capplets/localization/localization.desktop.in
capplets/mouse/gnome-settings-mouse.desktop.in
panels/proxy/gnome-proxy-panel.desktop.in
panels/network/gnome-network-panel.desktop.in
capplets/sound/gnome-settings-sound.desktop.in
font-viewer/gnome-font-viewer.desktop.in