summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2018-05-17 17:16:45 +0200
committerLubomir Rintel <lkundrak@v3.sk>2018-05-17 17:19:27 +0200
commitb1b06f66f7759e8543b80bda18805799ae2518ca (patch)
tree96328bf478436f1b835b7ee5bd6cbf31bed23146
parenteb03e37eac7598b52f879b44fc897785c4a7da6f (diff)
downloadnetwork-manager-applet-b1b06f66f7759e8543b80bda18805799ae2518ca.tar.gz
connection-editor: (trivial) rename the resource base
Make it the name we use on D-Bus.
-rw-r--r--src/connection-editor/ce.gresource.xml2
-rw-r--r--src/connection-editor/connection-helpers.c2
-rw-r--r--src/connection-editor/ip4-routes-dialog.c2
-rw-r--r--src/connection-editor/ip6-routes-dialog.c2
-rw-r--r--src/connection-editor/nm-connection-editor.c4
-rw-r--r--src/connection-editor/nm-connection-list.c2
-rw-r--r--src/connection-editor/page-bluetooth.c2
-rw-r--r--src/connection-editor/page-bond.c2
-rw-r--r--src/connection-editor/page-bridge-port.c2
-rw-r--r--src/connection-editor/page-bridge.c2
-rw-r--r--src/connection-editor/page-dcb.c2
-rw-r--r--src/connection-editor/page-dsl.c2
-rw-r--r--src/connection-editor/page-ethernet.c2
-rw-r--r--src/connection-editor/page-general.c2
-rw-r--r--src/connection-editor/page-infiniband.c2
-rw-r--r--src/connection-editor/page-ip-tunnel.c2
-rw-r--r--src/connection-editor/page-ip4.c2
-rw-r--r--src/connection-editor/page-ip6.c2
-rw-r--r--src/connection-editor/page-macsec.c2
-rw-r--r--src/connection-editor/page-mobile.c2
-rw-r--r--src/connection-editor/page-ppp.c2
-rw-r--r--src/connection-editor/page-proxy.c2
-rw-r--r--src/connection-editor/page-team-port.c2
-rw-r--r--src/connection-editor/page-team.c2
-rw-r--r--src/connection-editor/page-vlan.c2
-rw-r--r--src/connection-editor/page-wifi-security.c2
-rw-r--r--src/connection-editor/page-wifi.c2
-rw-r--r--src/connection-editor/ppp-auth-methods-dialog.c2
28 files changed, 29 insertions, 29 deletions
diff --git a/src/connection-editor/ce.gresource.xml b/src/connection-editor/ce.gresource.xml
index d0965dc9..d404bc31 100644
--- a/src/connection-editor/ce.gresource.xml
+++ b/src/connection-editor/ce.gresource.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
- <gresource prefix="/org/freedesktop/network-manager-applet">
+ <gresource prefix="/org/gnome/nm_connection_editor">
<file preprocess="xml-stripblanks">nm-connection-editor.ui</file>
<file preprocess="xml-stripblanks">nm-connection-list.ui</file>
<file preprocess="xml-stripblanks">ce-ip4-routes.ui</file>
diff --git a/src/connection-editor/connection-helpers.c b/src/connection-editor/connection-helpers.c
index 6261d25c..d7a434a9 100644
--- a/src/connection-editor/connection-helpers.c
+++ b/src/connection-editor/connection-helpers.c
@@ -633,7 +633,7 @@ new_connection_dialog_full (GtkWindow *parent_window,
/* load GUI */
gui = gtk_builder_new ();
if (!gtk_builder_add_from_resource (gui,
- "/org/freedesktop/network-manager-applet/ce-new-connection.ui",
+ "/org/gnome/nm_connection_editor/ce-new-connection.ui",
&error)) {
g_warning ("Couldn't load builder resource: %s", error->message);
g_error_free (error);
diff --git a/src/connection-editor/ip4-routes-dialog.c b/src/connection-editor/ip4-routes-dialog.c
index daed6df7..4b10552e 100644
--- a/src/connection-editor/ip4-routes-dialog.c
+++ b/src/connection-editor/ip4-routes-dialog.c
@@ -623,7 +623,7 @@ ip4_routes_dialog_new (NMSettingIPConfig *s_ip4, gboolean automatic)
builder = gtk_builder_new ();
- if (!gtk_builder_add_from_resource (builder, "/org/freedesktop/network-manager-applet/ce-ip4-routes.ui", &error)) {
+ if (!gtk_builder_add_from_resource (builder, "/org/gnome/nm_connection_editor/ce-ip4-routes.ui", &error)) {
g_warning ("Couldn't load builder resource: %s", error->message);
g_error_free (error);
return NULL;
diff --git a/src/connection-editor/ip6-routes-dialog.c b/src/connection-editor/ip6-routes-dialog.c
index e92464dd..35bb6586 100644
--- a/src/connection-editor/ip6-routes-dialog.c
+++ b/src/connection-editor/ip6-routes-dialog.c
@@ -647,7 +647,7 @@ ip6_routes_dialog_new (NMSettingIPConfig *s_ip6, gboolean automatic)
builder = gtk_builder_new ();
- if (!gtk_builder_add_from_resource (builder, "/org/freedesktop/network-manager-applet/ce-ip6-routes.ui", &error)) {
+ if (!gtk_builder_add_from_resource (builder, "/org/gnome/nm_connection_editor/ce-ip6-routes.ui", &error)) {
g_warning ("Couldn't load builder resource: %s", error->message);
g_error_free (error);
return NULL;
diff --git a/src/connection-editor/nm-connection-editor.c b/src/connection-editor/nm-connection-editor.c
index 94277187..98f4b5a7 100644
--- a/src/connection-editor/nm-connection-editor.c
+++ b/src/connection-editor/nm-connection-editor.c
@@ -434,10 +434,10 @@ nm_connection_editor_init (NMConnectionEditor *editor)
editor->builder = gtk_builder_new ();
if (!gtk_builder_add_objects_from_resource (editor->builder,
- "/org/freedesktop/network-manager-applet/nm-connection-editor.ui",
+ "/org/gnome/nm_connection_editor/nm-connection-editor.ui",
(char **) objects,
&error)) {
- g_warning ("Couldn't load builder resource " "/org/freedesktop/network-manager-applet/nm-connection-editor.ui: %s", error->message);
+ g_warning ("Couldn't load builder resource " "/org/gnome/nm_connection_editor/nm-connection-editor.ui: %s", error->message);
g_error_free (error);
dialog = gtk_message_dialog_new (NULL, 0,
diff --git a/src/connection-editor/nm-connection-list.c b/src/connection-editor/nm-connection-list.c
index 6eba04d2..671e888c 100644
--- a/src/connection-editor/nm-connection-list.c
+++ b/src/connection-editor/nm-connection-list.c
@@ -545,7 +545,7 @@ nm_connection_list_class_init (NMConnectionListClass *klass)
/* Initialize the widget template */
gtk_widget_class_set_template_from_resource (widget_class,
- "/org/freedesktop/network-manager-applet/nm-connection-list.ui");
+ "/org/gnome/nm_connection_editor/nm-connection-list.ui");
gtk_widget_class_bind_template_child_private (widget_class, NMConnectionList, connection_list);
gtk_widget_class_bind_template_child_private (widget_class, NMConnectionList, connection_add);
diff --git a/src/connection-editor/page-bluetooth.c b/src/connection-editor/page-bluetooth.c
index 633a02d0..5d2fa158 100644
--- a/src/connection-editor/page-bluetooth.c
+++ b/src/connection-editor/page-bluetooth.c
@@ -118,7 +118,7 @@ ce_page_bluetooth_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-bluetooth.ui",
+ "/org/gnome/nm_connection_editor/ce-page-bluetooth.ui",
"BluetoothPage",
_("Bluetooth")));
if (!self) {
diff --git a/src/connection-editor/page-bond.c b/src/connection-editor/page-bond.c
index 1e1c48c5..76356cbb 100644
--- a/src/connection-editor/page-bond.c
+++ b/src/connection-editor/page-bond.c
@@ -441,7 +441,7 @@ ce_page_bond_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-bond.ui",
+ "/org/gnome/nm_connection_editor/ce-page-bond.ui",
"BondPage",
_("Bond")));
if (!self) {
diff --git a/src/connection-editor/page-bridge-port.c b/src/connection-editor/page-bridge-port.c
index 00ee9fb5..a7ed6491 100644
--- a/src/connection-editor/page-bridge-port.c
+++ b/src/connection-editor/page-bridge-port.c
@@ -100,7 +100,7 @@ ce_page_bridge_port_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-bridge-port.ui",
+ "/org/gnome/nm_connection_editor/ce-page-bridge-port.ui",
"BridgePortPage",
/* Translators: a "Bridge Port" is a network
* device that is part of a bridge.
diff --git a/src/connection-editor/page-bridge.c b/src/connection-editor/page-bridge.c
index 2213114e..1f452633 100644
--- a/src/connection-editor/page-bridge.c
+++ b/src/connection-editor/page-bridge.c
@@ -228,7 +228,7 @@ ce_page_bridge_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-bridge.ui",
+ "/org/gnome/nm_connection_editor/ce-page-bridge.ui",
"BridgePage",
_("Bridge")));
if (!self) {
diff --git a/src/connection-editor/page-dcb.c b/src/connection-editor/page-dcb.c
index 74b6b431..e0e26bde 100644
--- a/src/connection-editor/page-dcb.c
+++ b/src/connection-editor/page-dcb.c
@@ -622,7 +622,7 @@ ce_page_dcb_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-dcb.ui",
+ "/org/gnome/nm_connection_editor/ce-page-dcb.ui",
"DcbPage",
_("DCB")));
if (!self) {
diff --git a/src/connection-editor/page-dsl.c b/src/connection-editor/page-dsl.c
index de1ad828..b07a1b5e 100644
--- a/src/connection-editor/page-dsl.c
+++ b/src/connection-editor/page-dsl.c
@@ -215,7 +215,7 @@ ce_page_dsl_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-dsl.ui",
+ "/org/gnome/nm_connection_editor/ce-page-dsl.ui",
"DslPage",
_("DSL/PPPoE")));
if (!self) {
diff --git a/src/connection-editor/page-ethernet.c b/src/connection-editor/page-ethernet.c
index f41b2783..aea7d128 100644
--- a/src/connection-editor/page-ethernet.c
+++ b/src/connection-editor/page-ethernet.c
@@ -346,7 +346,7 @@ ce_page_ethernet_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-ethernet.ui",
+ "/org/gnome/nm_connection_editor/ce-page-ethernet.ui",
"EthernetPage",
_("Ethernet")));
if (!self) {
diff --git a/src/connection-editor/page-general.c b/src/connection-editor/page-general.c
index 665f1164..4641e61d 100644
--- a/src/connection-editor/page-general.c
+++ b/src/connection-editor/page-general.c
@@ -368,7 +368,7 @@ ce_page_general_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-general.ui",
+ "/org/gnome/nm_connection_editor/ce-page-general.ui",
"GeneralPage",
_("General")));
if (!self) {
diff --git a/src/connection-editor/page-infiniband.c b/src/connection-editor/page-infiniband.c
index 61394477..fb9a0694 100644
--- a/src/connection-editor/page-infiniband.c
+++ b/src/connection-editor/page-infiniband.c
@@ -143,7 +143,7 @@ ce_page_infiniband_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-infiniband.ui",
+ "/org/gnome/nm_connection_editor/ce-page-infiniband.ui",
"InfinibandPage",
_("InfiniBand")));
if (!self) {
diff --git a/src/connection-editor/page-ip-tunnel.c b/src/connection-editor/page-ip-tunnel.c
index af479fca..0a1ec02d 100644
--- a/src/connection-editor/page-ip-tunnel.c
+++ b/src/connection-editor/page-ip-tunnel.c
@@ -171,7 +171,7 @@ ce_page_ip_tunnel_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-ip-tunnel.ui",
+ "/org/gnome/nm_connection_editor/ce-page-ip-tunnel.ui",
"IPTunnelPage",
_("IP tunnel")));
if (!self) {
diff --git a/src/connection-editor/page-ip4.c b/src/connection-editor/page-ip4.c
index dd42bd78..fa807dfa 100644
--- a/src/connection-editor/page-ip4.c
+++ b/src/connection-editor/page-ip4.c
@@ -1220,7 +1220,7 @@ ce_page_ip4_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-ip4.ui",
+ "/org/gnome/nm_connection_editor/ce-page-ip4.ui",
"IP4Page",
_("IPv4 Settings")));
if (!self) {
diff --git a/src/connection-editor/page-ip6.c b/src/connection-editor/page-ip6.c
index 1f452007..4fce0d9c 100644
--- a/src/connection-editor/page-ip6.c
+++ b/src/connection-editor/page-ip6.c
@@ -1202,7 +1202,7 @@ ce_page_ip6_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-ip6.ui",
+ "/org/gnome/nm_connection_editor/ce-page-ip6.ui",
"IP6Page",
_("IPv6 Settings")));
if (!self) {
diff --git a/src/connection-editor/page-macsec.c b/src/connection-editor/page-macsec.c
index 43bfc433..a25cbe9d 100644
--- a/src/connection-editor/page-macsec.c
+++ b/src/connection-editor/page-macsec.c
@@ -185,7 +185,7 @@ ce_page_macsec_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-macsec.ui",
+ "/org/gnome/nm_connection_editor/ce-page-macsec.ui",
"MacsecPage",
_("MACsec")));
if (!self) {
diff --git a/src/connection-editor/page-mobile.c b/src/connection-editor/page-mobile.c
index a9d0a922..62cdfa58 100644
--- a/src/connection-editor/page-mobile.c
+++ b/src/connection-editor/page-mobile.c
@@ -303,7 +303,7 @@ ce_page_mobile_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-mobile.ui",
+ "/org/gnome/nm_connection_editor/ce-page-mobile.ui",
"MobilePage",
_("Mobile Broadband")));
if (!self) {
diff --git a/src/connection-editor/page-ppp.c b/src/connection-editor/page-ppp.c
index de01bf20..3bd84a47 100644
--- a/src/connection-editor/page-ppp.c
+++ b/src/connection-editor/page-ppp.c
@@ -274,7 +274,7 @@ ce_page_ppp_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-ppp.ui",
+ "/org/gnome/nm_connection_editor/ce-page-ppp.ui",
"PppPage",
_("PPP Settings")));
if (!self) {
diff --git a/src/connection-editor/page-proxy.c b/src/connection-editor/page-proxy.c
index 1c2febae..36ff5908 100644
--- a/src/connection-editor/page-proxy.c
+++ b/src/connection-editor/page-proxy.c
@@ -210,7 +210,7 @@ ce_page_proxy_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-proxy.ui",
+ "/org/gnome/nm_connection_editor/ce-page-proxy.ui",
"ProxyPage",
_("Proxy")));
if (!self) {
diff --git a/src/connection-editor/page-team-port.c b/src/connection-editor/page-team-port.c
index 1a1f8e95..c896551e 100644
--- a/src/connection-editor/page-team-port.c
+++ b/src/connection-editor/page-team-port.c
@@ -647,7 +647,7 @@ ce_page_team_port_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-team-port.ui",
+ "/org/gnome/nm_connection_editor/ce-page-team-port.ui",
"TeamPortPage",
/* Translators: a "Team Port" is a network
* device that is part of a team.
diff --git a/src/connection-editor/page-team.c b/src/connection-editor/page-team.c
index 062f46a7..f4d07824 100644
--- a/src/connection-editor/page-team.c
+++ b/src/connection-editor/page-team.c
@@ -1026,7 +1026,7 @@ ce_page_team_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-team.ui",
+ "/org/gnome/nm_connection_editor/ce-page-team.ui",
"TeamPage",
_("Team")));
if (!self) {
diff --git a/src/connection-editor/page-vlan.c b/src/connection-editor/page-vlan.c
index f5d4c8d7..4d94f13b 100644
--- a/src/connection-editor/page-vlan.c
+++ b/src/connection-editor/page-vlan.c
@@ -589,7 +589,7 @@ ce_page_vlan_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-vlan.ui",
+ "/org/gnome/nm_connection_editor/ce-page-vlan.ui",
"VlanPage",
_("VLAN")));
if (!self) {
diff --git a/src/connection-editor/page-wifi-security.c b/src/connection-editor/page-wifi-security.c
index b34f427e..20a14646 100644
--- a/src/connection-editor/page-wifi-security.c
+++ b/src/connection-editor/page-wifi-security.c
@@ -469,7 +469,7 @@ ce_page_wifi_security_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-wifi-security.ui",
+ "/org/gnome/nm_connection_editor/ce-page-wifi-security.ui",
"WifiSecurityPage",
_("Wi-Fi Security")));
if (!self) {
diff --git a/src/connection-editor/page-wifi.c b/src/connection-editor/page-wifi.c
index c6948a52..d11ff5bc 100644
--- a/src/connection-editor/page-wifi.c
+++ b/src/connection-editor/page-wifi.c
@@ -435,7 +435,7 @@ ce_page_wifi_new (NMConnectionEditor *editor,
connection,
parent_window,
client,
- "/org/freedesktop/network-manager-applet/ce-page-wifi.ui",
+ "/org/gnome/nm_connection_editor/ce-page-wifi.ui",
"WifiPage",
_("Wi-Fi")));
if (!self) {
diff --git a/src/connection-editor/ppp-auth-methods-dialog.c b/src/connection-editor/ppp-auth-methods-dialog.c
index 346c31e1..40642e6e 100644
--- a/src/connection-editor/ppp-auth-methods-dialog.c
+++ b/src/connection-editor/ppp-auth-methods-dialog.c
@@ -86,7 +86,7 @@ ppp_auth_methods_dialog_new (gboolean refuse_eap,
builder = gtk_builder_new ();
- if (!gtk_builder_add_from_resource (builder, "/org/freedesktop/network-manager-applet/ce-ppp-auth-methods.ui", &error)) {
+ if (!gtk_builder_add_from_resource (builder, "/org/gnome/nm_connection_editor/ce-ppp-auth-methods.ui", &error)) {
g_warning ("Couldn't load builder resource: %s", error->message);
g_error_free (error);
return NULL;