diff -Nru uoa-integration-tests-0.1daily13.06.14/data/fake-oauth1.provider uoa-integration-tests-0.1+13.10.20131003.1/data/fake-oauth1.provider --- uoa-integration-tests-0.1daily13.06.14/data/fake-oauth1.provider 1970-01-01 00:00:00.000000000 +0000 +++ uoa-integration-tests-0.1+13.10.20131003.1/data/fake-oauth1.provider 2013-10-03 16:36:16.000000000 +0000 @@ -0,0 +1,26 @@ + + + FakeOAuthOne + fake-oauth + account-plugins + .*example\.com + generic-oauth + + + diff -Nru uoa-integration-tests-0.1daily13.06.14/debian/changelog uoa-integration-tests-0.1+13.10.20131003.1/debian/changelog --- uoa-integration-tests-0.1daily13.06.14/debian/changelog 2013-10-03 17:46:14.000000000 +0000 +++ uoa-integration-tests-0.1+13.10.20131003.1/debian/changelog 2013-10-03 17:46:14.000000000 +0000 @@ -1,3 +1,13 @@ +uoa-integration-tests (0.1+13.10.20131003.1-0ubuntu1) saucy; urgency=low + + [ Alberto Mardegan ] + * Add QML plugin. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 10 + + -- Ubuntu daily release Thu, 03 Oct 2013 16:36:26 +0000 + uoa-integration-tests (0.1daily13.06.14-0ubuntu1) saucy; urgency=low [ Ken VanDine ] diff -Nru uoa-integration-tests-0.1daily13.06.14/qml/fake-oauth/Main.qml uoa-integration-tests-0.1+13.10.20131003.1/qml/fake-oauth/Main.qml --- uoa-integration-tests-0.1daily13.06.14/qml/fake-oauth/Main.qml 1970-01-01 00:00:00.000000000 +0000 +++ uoa-integration-tests-0.1+13.10.20131003.1/qml/fake-oauth/Main.qml 2013-10-03 16:36:16.000000000 +0000 @@ -0,0 +1,9 @@ +import Ubuntu.OnlineAccounts.Plugin 1.0 + +OAuthMain { + creationComponent: OAuth { + function getUserName(reply) { + return "john" + } + } +} diff -Nru uoa-integration-tests-0.1daily13.06.14/qml/fake-oauth1/Main.qml uoa-integration-tests-0.1+13.10.20131003.1/qml/fake-oauth1/Main.qml --- uoa-integration-tests-0.1daily13.06.14/qml/fake-oauth1/Main.qml 1970-01-01 00:00:00.000000000 +0000 +++ uoa-integration-tests-0.1+13.10.20131003.1/qml/fake-oauth1/Main.qml 2013-10-03 16:36:16.000000000 +0000 @@ -0,0 +1,3 @@ +import Ubuntu.OnlineAccounts.Plugin 1.0 + +OAuthMain {} diff -Nru uoa-integration-tests-0.1daily13.06.14/setup.py uoa-integration-tests-0.1+13.10.20131003.1/setup.py --- uoa-integration-tests-0.1daily13.06.14/setup.py 2013-06-14 04:31:46.000000000 +0000 +++ uoa-integration-tests-0.1+13.10.20131003.1/setup.py 2013-10-03 16:36:16.000000000 +0000 @@ -10,7 +10,12 @@ url="http://launchpad.net/uoa-integration-tests", license="GNU General Public License v3 (GPLv3)", data_files=[ - ('share/accounts/providers', ['data/fake-oauth.provider']), + ('share/accounts/providers', [ + 'data/fake-oauth.provider', + 'data/fake-oauth1.provider', + ]), + ('share/accounts/qml-plugins/fake-oauth', ['qml/fake-oauth/Main.qml']), + ('share/accounts/qml-plugins/fake-oauth1', ['qml/fake-oauth1/Main.qml']), ('share/accounts/services', ['data/fake-service.service']), ('share/accounts/applications', ['data/uoa-integration-tests.application']), ('/etc/ssl/certs', ['data/uoa-test-server.pem']),