Merge lp:~robert-ancell/gnome-control-center-signon/unity-control-center into lp:gnome-control-center-signon

Proposed by Robert Ancell
Status: Merged
Approved by: Alberto Mardegan
Approved revision: 174
Merged at revision: 173
Proposed branch: lp:~robert-ancell/gnome-control-center-signon/unity-control-center
Merge into: lp:gnome-control-center-signon
Diff against target: 488 lines (+81/-73)
19 files modified
.bzrignore (+4/-4)
Makefile.am (+9/-9)
README (+4/-5)
configure.ac (+24/-24)
data/unity-credentials-panel.desktop.in.in (+4/-3)
debian/changelog (+6/-0)
debian/control (+15/-13)
debian/copyright (+2/-2)
debian/unity-control-center-signon.install (+1/-1)
libaccount-plugin/application-plugin.c (+1/-1)
libaccount-plugin/plugin.c (+1/-1)
online-accounts-preferences.in (+2/-2)
po/POTFILES.in (+1/-1)
po/POTFILES.skip (+1/-1)
src/cc-credentials-application.vala (+1/-1)
src/cc-credentials-panel.c (+1/-1)
src/cc-credentials-preferences.vala (+1/-1)
tests/autopilot/setup.py (+2/-2)
tests/autopilot/unity_control_center_signon/test_control_center_signon.py (+1/-1)
To merge this branch: bzr merge lp:~robert-ancell/gnome-control-center-signon/unity-control-center
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Alberto Mardegan (community) Approve
Sebastien Bacher Pending
Review via email: mp+205110@code.launchpad.net

Commit message

Use unity-control-center instead of gnome-control-center

To post a comment you must log in.
Revision history for this message
Alberto Mardegan (mardy) wrote :

LGTM, thanks!

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file '.bzrignore'
--- .bzrignore 2013-06-17 11:15:46 +0000
+++ .bzrignore 2014-02-06 10:26:03 +0000
@@ -24,16 +24,16 @@
24/data/com.canonical.webcredentials.capture.service24/data/com.canonical.webcredentials.capture.service
25/data/credentials-preferences.desktop25/data/credentials-preferences.desktop
26/data/credentials-preferences.desktop.in26/data/credentials-preferences.desktop.in
27/data/gnome-credentials-panel.desktop27/data/unity-credentials-panel.desktop
28/data/gnome-credentials-panel.desktop.in28/data/unity-credentials-panel.desktop.in
29/data/update-accounts.desktop29/data/update-accounts.desktop
30/data/update-accounts.desktop.in30/data/update-accounts.desktop.in
31/debian/autoreconf.after31/debian/autoreconf.after
32/debian/autoreconf.before32/debian/autoreconf.before
33/debian/files33/debian/files
34/debian/gir1.2-accountplugin-1.0/34/debian/gir1.2-accountplugin-1.0/
35/debian/gnome-control-center-signon/35/debian/unity-control-center-signon/
36/debian/gnome-control-center-signon-autopilot/36/debian/unity-control-center-signon-autopilot/
37/debian/libaccount-plugin-1.0-0/37/debian/libaccount-plugin-1.0-0/
38/debian/libaccount-plugin-1.0-dev/38/debian/libaccount-plugin-1.0-dev/
39/debian/libaccount-plugin-1.0-doc/39/debian/libaccount-plugin-1.0-doc/
4040
=== modified file 'Makefile.am'
--- Makefile.am 2013-06-05 09:01:13 +0000
+++ Makefile.am 2014-02-06 10:26:03 +0000
@@ -3,7 +3,7 @@
3DISTCHECK_CONFIGURE_FLAGS = \3DISTCHECK_CONFIGURE_FLAGS = \
4 --enable-gtk-doc \4 --enable-gtk-doc \
5 --enable-introspection=yes \5 --enable-introspection=yes \
6 --with-gnome-control-center6 --with-unity-control-center
77
8# libaccount-plugin.8# libaccount-plugin.
9lib_LTLIBRARIES = libaccount-plugin-@LIBACCOUNT_PLUGIN_API_VERSION@.la9lib_LTLIBRARIES = libaccount-plugin-@LIBACCOUNT_PLUGIN_API_VERSION@.la
@@ -42,7 +42,7 @@
42# Credentials control center applet.42# Credentials control center applet.
43cappletname = credentials43cappletname = credentials
4444
45if WITH_GNOME_CONTROL_CENTER45if WITH_UNITY_CONTROL_CENTER
46ccpanelsdir = $(CCPANELDIR)46ccpanelsdir = $(CCPANELDIR)
47ccpanels_LTLIBRARIES = libcredentials.la47ccpanels_LTLIBRARIES = libcredentials.la
48endif48endif
@@ -101,7 +101,7 @@
101bin_PROGRAMS = credentials-preferences101bin_PROGRAMS = credentials-preferences
102else !ENABLE_STANDALONE_PREFERENCES102else !ENABLE_STANDALONE_PREFERENCES
103noinst_PROGRAMS = credentials-preferences103noinst_PROGRAMS = credentials-preferences
104if WITH_GNOME_CONTROL_CENTER104if WITH_UNITY_CONTROL_CENTER
105preferences_ldadd = libcredentials.la105preferences_ldadd = libcredentials.la
106endif106endif
107endif107endif
@@ -170,12 +170,12 @@
170 tests/test-control-center.sh170 tests/test-control-center.sh
171endif171endif
172172
173if WITH_GNOME_CONTROL_CENTER173if WITH_UNITY_CONTROL_CENTER
174tests_ldadd = \174tests_ldadd = \
175 $(CREDENTIALS_PANEL_LIBS) \175 $(CREDENTIALS_PANEL_LIBS) \
176 libaccount-plugin-@LIBACCOUNT_PLUGIN_API_VERSION@.la \176 libaccount-plugin-@LIBACCOUNT_PLUGIN_API_VERSION@.la \
177 libcredentials.la177 libcredentials.la
178else !WITH_GNOME_CONTROL_CENTER178else !WITH_UNITY_CONTROL_CENTER
179tests_ldadd = \179tests_ldadd = \
180 $(CREDENTIALS_PANEL_LIBS) \180 $(CREDENTIALS_PANEL_LIBS) \
181 libaccount-plugin-@LIBACCOUNT_PLUGIN_API_VERSION@.la181 libaccount-plugin-@LIBACCOUNT_PLUGIN_API_VERSION@.la
@@ -382,18 +382,18 @@
382@INTLTOOL_DESKTOP_RULE@382@INTLTOOL_DESKTOP_RULE@
383383
384desktopdir = $(datadir)/applications384desktopdir = $(datadir)/applications
385if WITH_GNOME_CONTROL_CENTER385if WITH_UNITY_CONTROL_CENTER
386if ENABLE_STANDALONE_PREFERENCES386if ENABLE_STANDALONE_PREFERENCES
387desktop_in_files = \387desktop_in_files = \
388 data/credentials-preferences.desktop.in \388 data/credentials-preferences.desktop.in \
389 data/gnome-credentials-panel.desktop.in \389 data/unity-credentials-panel.desktop.in \
390 data/update-accounts.desktop.in390 data/update-accounts.desktop.in
391else !ENABLE_STANDALONE_PREFERENCES391else !ENABLE_STANDALONE_PREFERENCES
392desktop_in_files = \392desktop_in_files = \
393 data/gnome-credentials-panel.desktop.in \393 data/unity-credentials-panel.desktop.in \
394 data/update-accounts.desktop.in394 data/update-accounts.desktop.in
395endif395endif
396else !WITH_GNOME_CONTROL_CENTER396else !WITH_UNITY_CONTROL_CENTER
397if ENABLE_STANDALONE_PREFERENCES397if ENABLE_STANDALONE_PREFERENCES
398desktop_in_files = \398desktop_in_files = \
399 data/credentials-preferences.desktop.in \399 data/credentials-preferences.desktop.in \
400400
=== modified file 'README'
--- README 2012-10-25 13:36:35 +0000
+++ README 2014-02-06 10:26:03 +0000
@@ -2,10 +2,9 @@
2------------------------------------------2------------------------------------------
33
4This project is a configuration interface for the Online Accounts framework in4This project is a configuration interface for the Online Accounts framework in
5Ubuntu. It uses the patched GNOME Control Center in Ubuntu, with support for5Ubuntu. Under Unity, it appears as a panel in the Unity Control Center.
6external configuration panels, to show Online Accounts settings in the Control6Alternatively, a standalone credentials-preferences binary can be built, which
7Center. Alternatively, a standalone credentials-preferences binary can be7allows distributions without the Unity Control Center to use the
8built, which allows distributions without the patched Control Center to use the
9configuration UI.8configuration UI.
109
11libaccount-plugin10libaccount-plugin
@@ -34,4 +33,4 @@
34Resources33Resources
35---------34---------
3635
37https://launchpad.net/online-accounts-gnome-control-center36https://launchpad.net/gnome-control-center-signon
3837
=== modified file 'configure.ac'
--- configure.ac 2013-06-05 10:46:16 +0000
+++ configure.ac 2014-02-06 10:26:03 +0000
@@ -1,8 +1,8 @@
1AC_INIT([Credentials Control Center],1AC_INIT([Credentials Control Center],
2 [0.1.7],2 [0.1.7],
3 [https://bugs.launchpad.net/online-accounts-gnome-control-center],3 [https://bugs.launchpad.net/gnome-control-center-signon],
4 [credentials-control-center],4 [credentials-control-center],
5 [https://launchpad.net/online-accounts-gnome-control-center])5 [https://launchpad.net/gnome-control-center-signon])
66
7AC_CONFIG_AUX_DIR([build-aux])7AC_CONFIG_AUX_DIR([build-aux])
8AC_CONFIG_SRCDIR([src/cc-credentials-panel.c])8AC_CONFIG_SRCDIR([src/cc-credentials-panel.c])
@@ -46,31 +46,31 @@
46GLIB_REQUIRED="glib-2.0 gio-2.0 gio-unix-2.0 >= 2.29.5"46GLIB_REQUIRED="glib-2.0 gio-2.0 gio-unix-2.0 >= 2.29.5"
47GMODULE_REQUIRED="gmodule-2.0"47GMODULE_REQUIRED="gmodule-2.0"
48GTK_REQUIRED="gtk+-3.0 >= 3.0.0"48GTK_REQUIRED="gtk+-3.0 >= 3.0.0"
49GNOME_CONTROL_CENTER_REQUIRED="libgnome-control-center"49UNITY_CONTROL_CENTER_REQUIRED="libunity-control-center"
5050
51AC_ARG_VAR([control_center_extensiondir],51AC_ARG_VAR([control_center_extensiondir],
52 [Install control center panel to the given extension dir. Alternatively, get the installation path from pkg-config.])52 [Install control center panel to the given extension dir. Alternatively, get the installation path from pkg-config.])
5353
54AC_ARG_WITH([gnome-control-center],54AC_ARG_WITH([unity-control-center],
55 [AS_HELP_STRING([--without-gnome-control-center],55 [AS_HELP_STRING([--without-unity-control-center],
56 [Ignore the presence of gnome-control-center and disable it])])56 [Ignore the presence of unity-control-center and disable it])])
5757
58AS_IF([test "x$with_gnome_control_center" != "xno"],58AS_IF([test "x$with_unity_control_center" != "xno"],
59 [PKG_CHECK_EXISTS([$GNOME_CONTROL_CENTER_REQUIRED],59 [PKG_CHECK_EXISTS([$UNITY_CONTROL_CENTER_REQUIRED],
60 [have_gnome_control_center=yes],60 [have_unity_control_center=yes],
61 [have_gnome_control_center=no])],61 [have_unity_control_center=no])],
62 [have_gnome_control_center=no])62 [have_unity_control_center=no])
6363
64AS_IF([test "x$have_gnome_control_center" = "xyes"],64AS_IF([test "x$have_unity_control_center" = "xyes"],
65 [AS_IF([test -n "$control_center_extensiondir"],65 [AS_IF([test -n "$control_center_extensiondir"],
66 [AC_SUBST([CCPANELDIR], [$control_center_extensiondir])],66 [AC_SUBST([CCPANELDIR], [$control_center_extensiondir])],
67 [AC_SUBST([CCPANELDIR], [`$PKG_CONFIG --variable=extensiondir $GNOME_CONTROL_CENTER_REQUIRED`])])],67 [AC_SUBST([CCPANELDIR], [`$PKG_CONFIG --variable=extensiondir $UNITY_CONTROL_CENTER_REQUIRED`])])],
68 [GNOME_CONTROL_CENTER_REQUIRED=""68 [UNITY_CONTROL_CENTER_REQUIRED=""
69 AS_IF([test "x$with_gnome_control_center" = "xyes"],69 AS_IF([test "x$with_unity_control_center" = "xyes"],
70 [AC_MSG_ERROR([gnome-control-center support requested but not found])])])70 [AC_MSG_ERROR([unity-control-center support requested but not found])])])
7171
72AM_CONDITIONAL([WITH_GNOME_CONTROL_CENTER],72AM_CONDITIONAL([WITH_UNITY_CONTROL_CENTER],
73 [test "x$have_gnome_control_center" = "xyes"])73 [test "x$have_unity_control_center" = "xyes"])
7474
75# Standalone preferences binary.75# Standalone preferences binary.
76AC_ARG_ENABLE([standalone-preferences],76AC_ARG_ENABLE([standalone-preferences],
@@ -85,15 +85,15 @@
85 [test "x$have_standalone_preferences" = "xyes"])85 [test "x$have_standalone_preferences" = "xyes"])
8686
87AS_IF([test "x$have_standalone_preferences" = "xno" -a \87AS_IF([test "x$have_standalone_preferences" = "xno" -a \
88 "x$have_gnome_control_center" = "xno"],88 "x$have_unity_control_center" = "xno"],
89 [AC_MSG_WARN([Both the standalone preferences panel and the gnome-control-center panel are disabled. Only libaccount-plugin will be built.])])89 [AC_MSG_WARN([Both the standalone preferences panel and the unity-control-center panel are disabled. Only libaccount-plugin will be built.])])
9090
91PKG_CHECK_MODULES([CREDENTIALS_PANEL],91PKG_CHECK_MODULES([CREDENTIALS_PANEL],
92 [$LIBACCOUNTS_GLIB_REQUIRED92 [$LIBACCOUNTS_GLIB_REQUIRED
93 $LIBSIGNON_GLIB_REQUIRED93 $LIBSIGNON_GLIB_REQUIRED
94 $GLIB_REQUIRED94 $GLIB_REQUIRED
95 $GTK_REQUIRED95 $GTK_REQUIRED
96 $GNOME_CONTROL_CENTER_REQUIRED])96 $UNITY_CONTROL_CENTER_REQUIRED])
9797
98# libaccount-plugin variables.98# libaccount-plugin variables.
99AC_SUBST([LIBACCOUNT_PLUGIN_SO_VERSION], [0:0:0])99AC_SUBST([LIBACCOUNT_PLUGIN_SO_VERSION], [0:0:0])
@@ -157,7 +157,7 @@
157AC_CONFIG_FILES([157AC_CONFIG_FILES([
158Makefile158Makefile
159data/credentials-preferences.desktop.in159data/credentials-preferences.desktop.in
160data/gnome-credentials-panel.desktop.in160data/unity-credentials-panel.desktop.in
161data/update-accounts.desktop.in161data/update-accounts.desktop.in
162doc/account-plugin/Makefile162doc/account-plugin/Makefile
163doc/account-plugin/version.xml163doc/account-plugin/version.xml
164164
=== renamed file 'data/gnome-credentials-panel.desktop.in.in' => 'data/unity-credentials-panel.desktop.in.in'
--- data/gnome-credentials-panel.desktop.in.in 2013-02-21 12:18:27 +0000
+++ data/unity-credentials-panel.desktop.in.in 2014-02-06 10:26:03 +0000
@@ -1,10 +1,11 @@
1[Desktop Entry]1[Desktop Entry]
2_Name=Online Accounts2_Name=Online Accounts
3_Comment=Online account credentials and settings3_Comment=Online account credentials and settings
4Exec=gnome-control-center credentials4Exec=unity-control-center credentials
5Icon=credentials-preferences5Icon=credentials-preferences
6Terminal=false6Terminal=false
7Type=Application7Type=Application
8StartupNotify=true8StartupNotify=true
9Categories=GNOME;GTK;Settings;DesktopSettings;X-GNOME-Settings-Panel;X-GNOME-PersonalSettings;9Categories=GNOME;GTK;Settings;DesktopSettings;X-Unity-Settings-Panel;X-GNOME-PersonalSettings;
10X-GNOME-Settings-Panel=credentials10OnlyShowIn=Unity;
11X-Unity-Settings-Panel=credentials
1112
=== modified file 'debian/changelog'
--- debian/changelog 2013-11-26 19:09:04 +0000
+++ debian/changelog 2014-02-06 10:26:03 +0000
@@ -1,3 +1,9 @@
1gnome-control-center-signon (0.1.7~+14.04.20131126.2-0ubuntu1+unity) UNRELEASED; urgency=low
2
3 * Use unity-control-center instead of gnome-control-center
4
5 -- Robert Ancell <robert.ancell@canonical.com> Mon, 02 Dec 2013 16:15:41 +1300
6
1gnome-control-center-signon (0.1.7~+14.04.20131126.2-0ubuntu1) trusty; urgency=low7gnome-control-center-signon (0.1.7~+14.04.20131126.2-0ubuntu1) trusty; urgency=low
28
3 [ Ken VanDine ]9 [ Ken VanDine ]
410
=== modified file 'debian/control'
--- debian/control 2013-11-25 15:08:23 +0000
+++ debian/control 2014-02-06 10:26:03 +0000
@@ -13,9 +13,9 @@
13 gtk-doc-tools,13 gtk-doc-tools,
14 libaccounts-glib-dev (>= 1.10),14 libaccounts-glib-dev (>= 1.10),
15 libgirepository1.0-dev (>= 0.10),15 libgirepository1.0-dev (>= 0.10),
16 libgnome-control-center-dev,
17 libgtk-3-dev,16 libgtk-3-dev,
18 libsignon-glib-dev (>= 1.8),17 libsignon-glib-dev (>= 1.8),
18 libunity-control-center-dev,
19 pkg-config,19 pkg-config,
20 python,20 python,
21 python-distutils-extra,21 python-distutils-extra,
@@ -29,9 +29,9 @@
29# just go ahead. ~online-accounts will notice and sync up the code again.29# just go ahead. ~online-accounts will notice and sync up the code again.
30Vcs-Bzr: https://code.launchpad.net/~online-accounts/gnome-control-center-signon/trunk30Vcs-Bzr: https://code.launchpad.net/~online-accounts/gnome-control-center-signon/trunk
3131
32Package: gnome-control-center-signon32Package: unity-control-center-signon
33Architecture: i386 amd64 armhf arm6433Architecture: i386 amd64 armhf arm64
34Depends: gnome-control-center (>= 3.4.2-0ubuntu10),34Depends: unity-control-center,
35 libaccount-plugin-1.0-0 (= ${binary:Version}),35 libaccount-plugin-1.0-0 (= ${binary:Version}),
36 libaccount-plugin-generic-oauth, 36 libaccount-plugin-generic-oauth,
37 libaccount-plugin-google,37 libaccount-plugin-google,
@@ -39,8 +39,10 @@
39 signond,39 signond,
40 ${misc:Depends},40 ${misc:Depends},
41 ${shlibs:Depends},41 ${shlibs:Depends},
42Description: GNOME Control Center extension for single signon42Conflicts: gnome-control-center-signon
43 GNOME Control Center extension for single signon43Replaces: gnome-control-center-signon
44Description: Unity Control Center extension for single signon
45 Unity Control Center extension for single signon
4446
45Package: libaccount-plugin-1.0-047Package: libaccount-plugin-1.0-0
46Section: libs48Section: libs
@@ -49,9 +51,9 @@
49Depends: ${misc:Depends},51Depends: ${misc:Depends},
50 ${shlibs:Depends},52 ${shlibs:Depends},
51 signond53 signond
52Recommends: gnome-control-center-signon54Recommends: unity-control-center-signon
53Description: libaccount-plugin for GNOME Control Center55Description: libaccount-plugin for Unity Control Center
54 GNOME Control Center library for libaccounts56 Unity Control Center library for libaccounts
5557
56Package: libaccount-plugin-1.0-dev58Package: libaccount-plugin-1.0-dev
57Section: libdevel59Section: libdevel
@@ -64,8 +66,8 @@
64 libsignon-glib-dev (>= 1.8),66 libsignon-glib-dev (>= 1.8),
65 ${misc:Depends},67 ${misc:Depends},
66 ${shlibs:Depends},68 ${shlibs:Depends},
67Description: libaccount-plugin for GNOME Control Center - devel69Description: libaccount-plugin for Unity Control Center - devel
68 GNOME Control Center library for libaccounts - devel70 Unity Control Center library for libaccounts - devel
6971
70Package: gir1.2-accountplugin-1.072Package: gir1.2-accountplugin-1.0
71Section: introspection73Section: introspection
@@ -82,15 +84,15 @@
82Section: doc84Section: doc
83Architecture: all85Architecture: all
84Depends: ${misc:Depends}86Depends: ${misc:Depends}
85Description: libaccount-plugin for GNOME Control Center - Developer Docs87Description: libaccount-plugin for Unity Control Center - Developer Docs
86 .88 .
87 This package provides the developer documentation for the libaccount-plugin89 This package provides the developer documentation for the libaccount-plugin
88 library.90 library.
8991
90Package: gnome-control-center-signon-autopilot92Package: unity-control-center-signon-autopilot
91Architecture: all93Architecture: all
92Depends: autopilot-desktop (>= 1.4),94Depends: autopilot-desktop (>= 1.4),
93 gnome-control-center-signon (= ${source:Version}),95 unity-control-center-signon (= ${source:Version}),
94 uoa-integration-tests,96 uoa-integration-tests,
95 ${misc:Depends},97 ${misc:Depends},
96Description: Test package for Ubuntu Online Accounts - Desktop98Description: Test package for Ubuntu Online Accounts - Desktop
9799
=== modified file 'debian/copyright'
--- debian/copyright 2012-11-14 16:12:55 +0000
+++ debian/copyright 2014-02-06 10:26:03 +0000
@@ -1,7 +1,7 @@
1Format: http://dep.debian.net/deps/dep51Format: http://dep.debian.net/deps/dep5
2Upstream-Name: online-accounts-gnome-control-center2Upstream-Name: gnome-control-center-signon
3Upstream-Contact: Alberto Mardegan <alberto.mardegan@canonical.com>3Upstream-Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
4Source: https://launchpad.net/online-accounts-gnome-control-center4Source: https://launchpad.net/gnome-control-center-signon
55
6Files: *6Files: *
7Copyright: 2012 Canonical Ltd.7Copyright: 2012 Canonical Ltd.
88
=== renamed file 'debian/gnome-control-center-signon-autopilot.install' => 'debian/unity-control-center-signon-autopilot.install'
=== renamed file 'debian/gnome-control-center-signon.install' => 'debian/unity-control-center-signon.install'
--- debian/gnome-control-center-signon.install 2013-07-08 22:49:20 +0000
+++ debian/unity-control-center-signon.install 2014-02-06 10:26:03 +0000
@@ -1,7 +1,7 @@
1usr/bin/online-accounts-preferences1usr/bin/online-accounts-preferences
2usr/bin/credentials-preferences2usr/bin/credentials-preferences
3usr/lib/*/update-accounts3usr/lib/*/update-accounts
4usr/lib/*/control-center-1/panels/*.so4usr/lib/*/unity-control-center-1/panels/*.so
5usr/share/applications5usr/share/applications
6usr/share/dbus-1/services/com.canonical.webcredentials.capture.service6usr/share/dbus-1/services/com.canonical.webcredentials.capture.service
7usr/share/help7usr/share/help
88
=== modified file 'libaccount-plugin/application-plugin.c'
--- libaccount-plugin/application-plugin.c 2012-05-15 06:38:01 +0000
+++ libaccount-plugin/application-plugin.c 2014-02-06 10:26:03 +0000
@@ -25,7 +25,7 @@
25 * @short_description: Base class for application plugins.25 * @short_description: Base class for application plugins.
26 * @include: libaccount-plugin/application-plugin.h26 * @include: libaccount-plugin/application-plugin.h
27 *27 *
28 * Application plugins for the credentials panel of the GNOME control center28 * Application plugins for the credentials panel of the Unity control center
29 * need to subclass #ApApplicationPlugin and implement its build_widget()29 * need to subclass #ApApplicationPlugin and implement its build_widget()
30 * virtual method.30 * virtual method.
31 * This method will be called by the credentials panel when it needs to show a31 * This method will be called by the credentials panel when it needs to show a
3232
=== modified file 'libaccount-plugin/plugin.c'
--- libaccount-plugin/plugin.c 2013-03-22 10:37:14 +0000
+++ libaccount-plugin/plugin.c 2014-02-06 10:26:03 +0000
@@ -25,7 +25,7 @@
25 * @short_description: Base class for account plugins.25 * @short_description: Base class for account plugins.
26 * @include: libaccount-plugin/plugin.h26 * @include: libaccount-plugin/plugin.h
27 *27 *
28 * Account plugins for the credentials panel of the GNOME control center need28 * Account plugins for the credentials panel of the Unity control center need
29 * to subclass #ApPlugin and implement its build_widget() virtual method.29 * to subclass #ApPlugin and implement its build_widget() virtual method.
30 * This method will be called by the credentials panel when it needs to show a30 * This method will be called by the credentials panel when it needs to show a
31 * UI to handle some operations on the account, such as creation, editing or31 * UI to handle some operations on the account, such as creation, editing or
3232
=== modified file 'online-accounts-preferences.in'
--- online-accounts-preferences.in 2012-11-21 15:08:53 +0000
+++ online-accounts-preferences.in 2014-02-06 10:26:03 +0000
@@ -1,8 +1,8 @@
1#!/bin/sh -e1#!/bin/sh -e
22
3if test @DESKTOPDIR@/gnome-credentials-panel.desktop3if test @DESKTOPDIR@/unity-credentials-panel.desktop
4then4then
5 gnome-control-center credentials $@5 unity-control-center credentials $@
6else6else
7 credentials-preferences $@7 credentials-preferences $@
8fi8fi
99
=== modified file 'po/POTFILES.in'
--- po/POTFILES.in 2012-10-23 06:45:16 +0000
+++ po/POTFILES.in 2014-02-06 10:26:03 +0000
@@ -1,5 +1,5 @@
1data/credentials-preferences.desktop.in.in1data/credentials-preferences.desktop.in.in
2data/gnome-credentials-panel.desktop.in.in2data/unity-credentials-panel.desktop.in.in
3src/cc-credentials-account-details-page.vala3src/cc-credentials-account-details-page.vala
4src/cc-credentials-accounts-model.vala4src/cc-credentials-accounts-model.vala
5src/cc-credentials-accounts-page.vala5src/cc-credentials-accounts-page.vala
66
=== modified file 'po/POTFILES.skip'
--- po/POTFILES.skip 2012-10-25 10:35:47 +0000
+++ po/POTFILES.skip 2014-02-06 10:26:03 +0000
@@ -1,5 +1,5 @@
1data/credentials-preferences.desktop.in1data/credentials-preferences.desktop.in
2data/gnome-credentials-panel.desktop.in2data/unity-credentials-panel.desktop.in
3src/cc-credentials-account-details-page.c3src/cc-credentials-account-details-page.c
4src/cc-credentials-accounts-model.c4src/cc-credentials-accounts-model.c
5src/cc-credentials-accounts-page.c5src/cc-credentials-accounts-page.c
66
=== modified file 'src/cc-credentials-application.vala'
--- src/cc-credentials-application.vala 2012-09-06 09:39:45 +0000
+++ src/cc-credentials-application.vala 2014-02-06 10:26:03 +0000
@@ -19,7 +19,7 @@
1919
20/**20/**
21 * Standalone application for configuring web credentials accounts outside of21 * Standalone application for configuring web credentials accounts outside of
22 * GNOME Control Center.22 * Unity Control Center.
23 */23 */
24public class Cc.Credentials.Application : Gtk.Application24public class Cc.Credentials.Application : Gtk.Application
25{25{
2626
=== modified file 'src/cc-credentials-panel.c'
--- src/cc-credentials-panel.c 2013-07-11 19:47:02 +0000
+++ src/cc-credentials-panel.c 2014-02-06 10:26:03 +0000
@@ -19,7 +19,7 @@
19 */19 */
2020
21#include <gtk/gtk.h>21#include <gtk/gtk.h>
22#include <libgnome-control-center/cc-panel.h>22#include <libunity-control-center/cc-panel.h>
23#include <glib/gi18n-lib.h>23#include <glib/gi18n-lib.h>
24#include <stdlib.h>24#include <stdlib.h>
25#include "config.h"25#include "config.h"
2626
=== modified file 'src/cc-credentials-preferences.vala'
--- src/cc-credentials-preferences.vala 2012-08-31 12:39:57 +0000
+++ src/cc-credentials-preferences.vala 2014-02-06 10:26:03 +0000
@@ -18,7 +18,7 @@
18 */18 */
1919
20/**20/**
21 * Web credentials preferences widget. This can be packed into the GNOME21 * Web credentials preferences widget. This can be packed into the Unity
22 * Control Center or used in a standalone application.22 * Control Center or used in a standalone application.
23 */23 */
24public class Cc.Credentials.Preferences : Gtk.Notebook24public class Cc.Credentials.Preferences : Gtk.Notebook
2525
=== modified file 'tests/autopilot/setup.py'
--- tests/autopilot/setup.py 2013-05-03 17:58:21 +0000
+++ tests/autopilot/setup.py 2014-02-06 10:26:03 +0000
@@ -3,11 +3,11 @@
3from distutils.core import setup3from distutils.core import setup
4from DistUtilsExtra.command import build_extra4from DistUtilsExtra.command import build_extra
55
6setup(name="gnome-control-center-signon-autopilot",6setup(name="unity-control-center-signon-autopilot",
7 version="0.1",7 version="0.1",
8 author="Alberto Mardegan",8 author="Alberto Mardegan",
9 author_email="alberto.mardegan@canonical.com",9 author_email="alberto.mardegan@canonical.com",
10 url="http://launchpad.net/uoa-integration-tests",10 url="http://launchpad.net/uoa-integration-tests",
11 license="GNU General Public License v3 (GPLv3)",11 license="GNU General Public License v3 (GPLv3)",
12 packages=["gnome_control_center_signon"],12 packages=["unity_control_center_signon"],
13 cmdclass={"build": build_extra.build_extra,})13 cmdclass={"build": build_extra.build_extra,})
1414
=== renamed directory 'tests/autopilot/gnome_control_center_signon' => 'tests/autopilot/unity_control_center_signon'
=== modified file 'tests/autopilot/unity_control_center_signon/test_control_center_signon.py'
--- tests/autopilot/gnome_control_center_signon/test_control_center_signon.py 2013-11-14 09:34:33 +0000
+++ tests/autopilot/unity_control_center_signon/test_control_center_signon.py 2014-02-06 10:26:03 +0000
@@ -81,7 +81,7 @@
81class ControlCenterTests(AutopilotTestCase):81class ControlCenterTests(AutopilotTestCase):
82 def setUp(self):82 def setUp(self):
83 super(ControlCenterTests, self).setUp()83 super(ControlCenterTests, self).setUp()
84 self.app = self.launch_test_application('gnome-control-center', 'credentials', capture_output=True)84 self.app = self.launch_test_application('unity-control-center', 'credentials', capture_output=True)
8585
86 def test_title(self):86 def test_title(self):
87 """ Checks whether the Online Accounts window title is correct """87 """ Checks whether the Online Accounts window title is correct """

Subscribers

People subscribed via source and target branches

to all changes: