[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-1188052-oauth-update into lp:zorba/oauth-module

2013-07-10 Thread Chris Hillery
Chris Hillery has proposed merging 
lp:~zorba-coders/zorba/bug-1188052-oauth-update into lp:zorba/oauth-module.

Requested reviews:
  Zorba Coders (zorba-coders)
Related bugs:
  Bug #1188052 in Zorba: Update non-core module oauth
  https://bugs.launchpad.net/zorba/+bug/1188052

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1188052-oauth-update/+merge/173872
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1188052-oauth-update/+merge/173872
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/bug-1188052-oauth-update into lp:zorba/oauth-module.
=== modified file 'src/CMakeLists.txt'
--- src/CMakeLists.txt	2012-04-12 08:44:46 +
+++ src/CMakeLists.txt	2013-07-10 07:39:27 +
@@ -12,11 +12,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# all external module libraries are generated in the directory
-# of the corresponding .xq file
-MESSAGE(STATUS Add com)
+DECLARE_ZORBA_MODULE (URI http://zorba.io/modules/oauth; VERSION 1.0 FILE client.xq)
 DECLARE_ZORBA_SCHEMA (URI http://www.zorba-xquery.com/schemas/oauth/parameters; FILE parameters.xsd)
 DECLARE_ZORBA_SCHEMA (URI http://www.zorba-xquery.com/schemas/oauth/service-provider; FILE service-provider.xsd)
 
-ADD_SUBDIRECTORY(com)
-MESSAGE(STATUS End modules)
+

=== renamed file 'src/com/zorba-xquery/www/modules/oauth/client.xq' = 'src/client.xq'
--- src/com/zorba-xquery/www/modules/oauth/client.xq	2013-06-15 23:33:19 +
+++ src/client.xq	2013-07-10 07:39:27 +
@@ -19,16 +19,16 @@
 (:~
  : This module provides the functions necessary to acquire access to the personal
  : resources of a user through the open standard called
- : a href=http://oauth.net/; target=_blankOAuth/a.
+ : a href=http://oauth.net/; target=_blankOAuth/a.p/
  : The application/mashup creator does not need to know the
- : specifics of a href=http://oauth.net/; target=_blankOAuth/a to use this module.
+ : specifics of OAuth to use this module.p/
  : @author Stephanie Russell
  : @author a href=mailto:william.candil...@28msec.comWilliam Candillon/a
  : @see a href=http://oauth.net/; target=_blankOAuth Website/a
  : @project Zorba/OAuth/Client
  :
  :)
-module namespace oauth = http://www.zorba-xquery.com/modules/oauth/client;;
+module namespace oauth = http://zorba.io/modules/oauth;;
 
 import module namespace ra = http://www.zorba-xquery.com/modules/random;;
 import module namespace hmac = http://www.zorba-xquery.com/modules/cryptography/hmac#2.0;;
@@ -37,11 +37,6 @@
 
 import module namespace base64 = http://www.zorba-xquery.com/modules/converters/base64;;
 
-(:~
- : Use err module functions for throwing errors.
- :)
-import module namespace oerr = http://www.zorba-xquery.com/modules/oauth/error;;
-
 import schema namespace sp = http://www.zorba-xquery.com/schemas/oauth/service-provider;;
 import schema namespace p = http://www.zorba-xquery.com/schemas/oauth/parameters;;
 
@@ -52,10 +47,36 @@
 
 declare option op:disable f:trace;
 
-declare option ver:module-version 2.0;
-
-(:~
- : Utility function to build a service provider object.
+declare option ver:module-version 1.0;
+
+
+(:~
+ : Error code for unsupported signing method
+ :)
+declare %private variable $oauth:UNSUPPORTED_SIGNING_METHOD as xs:QName :=
+  xs:QName(oauth:UNSUPPORTED_SIGNING_METHOD);
+
+(:~
+ : Error code for attempt to access unauthorized resource
+ :)
+declare %private variable $oauth:UNAUTHORIZED as xs:QName :=
+  xs:QName(oauth:UNAUTHORIZED);
+
+(:~
+ : Error code for HTTP error from server
+ :)
+declare %private variable $oauth:SERVER_ERROR as xs:QName :=
+  xs:QName(oauth:SERVER_ERROR);
+
+(:~
+ : Error code for unknown parameter
+ :)
+declare %private variable $oauth:UNKNOWN_PARAMETER as xs:QName :=
+  xs:QName(oauth:UNKNOWN_PARAMETER);
+
+
+(:~
+ : Utility function to build a service provider object.p/
  : This object contains the information required by the 
  : OAuth client to interact with an OAuth service provider.
  : For instance the following expression:
@@ -132,7 +153,7 @@
 };
 
 (:~
- : Create an OAuth Parameters instance.
+ : Create an OAuth Parameters instance.p/
  : Instances of OAuth parameters are used to 
  : contain value/pair data such as emoauth_token/em
  : and emoauth_token_secret/em.
@@ -146,6 +167,7 @@
  :   p:parameter name=oauth_token value=# /
  : /p:parameters
  : /pre
+ :
  : @param $name parameter name
  : @param $value parameter value
  : @return instance of the OAuth parameters XML schema.
@@ -161,7 +183,7 @@
 };
 
 (:~
- : Adds an OAuth parameter to an OAuth Parameters instance.
+ : Adds an OAuth parameter to an OAuth Parameters instance.p/
  : Instances of OAuth parameters are used to 
  : contain value/pair data such as emoauth_token/em
  : and emoauth_token_secret/em.
@@ -199,17 +221,18 @@
 };
 
 (:~
- : This function returns the string value of the parameters whose key matches a $string input.
- : @param $params element parameters
- : 

Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/process-2 into lp:zorba/process-module

2013-07-10 Thread Ghislain Fourny
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824
Your team Zorba Coders is subscribed to branch lp:zorba/process-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_node-position-module into lp:zorba

2013-07-10 Thread Juan Zacarias
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_node-position-module/+merge/173105
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_info-extraction-module into lp:zorba/info-extraction-module

2013-07-10 Thread Juan Zacarias
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_info-extraction-module/+merge/170463
Your team Zorba Coders is subscribed to branch lp:zorba/info-extraction-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_geo-module into lp:zorba/geo-module

2013-07-10 Thread Juan Zacarias
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212
Your team Zorba Coders is subscribed to branch lp:zorba/geo-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_node-position-module into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/update3.0_node-position-module/+merge/173105

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_node-position-module/+merge/173105
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/process-2 into lp:zorba/process-module

2013-07-10 Thread Nicolae Brinza
The proposal to merge lp:~zorba-coders/zorba/process-2 into 
lp:zorba/process-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824
-- 
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824
Your team Zorba Coders is subscribed to branch lp:zorba/process-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/process-2 into lp:zorba/process-module

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824
Your team Zorba Coders is subscribed to branch lp:zorba/process-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_node-position-module into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue succeeded - proposal merged!
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_node-position-module/+merge/173105
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_node-position-module into lp:zorba

2013-07-10 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/update3.0_node-position-module 
into lp:zorba has been updated.

Status: Needs review = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/update3.0_node-position-module/+merge/173105
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_node-position-module/+merge/173105
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_geo-module into lp:zorba/geo-module

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212
Your team Zorba Coders is subscribed to branch lp:zorba/geo-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/process-2 into lp:zorba/process-module

2013-07-10 Thread Zorba Build Bot
Validation queue succeeded - proposal merged!
-- 
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824
Your team Zorba Coders is subscribed to branch lp:zorba/process-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/process-2 into lp:zorba/process-module

2013-07-10 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/process-2 into 
lp:zorba/process-module has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824
-- 
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824
Your team Zorba Coders is subscribed to branch lp:zorba/process-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_geo-module into lp:zorba/geo-module

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212
Your team Zorba Coders is subscribed to branch lp:zorba/geo-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/process-2 into lp:zorba/process-module

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824
Your team Zorba Coders is subscribed to branch lp:zorba/process-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/process-2 into lp:zorba/process-module

2013-07-10 Thread Zorba Build Bot
Validation queue result for 
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824

Stage ZorbaVQ failed.

Check console output at http://jenkins.lambda.nu/job/ZorbaVQ/92/console to view 
the results.
-- 
https://code.launchpad.net/~zorba-coders/zorba/process-2/+merge/171824
Your team Zorba Coders is subscribed to branch lp:zorba/process-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_geo-module into lp:zorba/geo-module

2013-07-10 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/update3.0_geo-module into 
lp:zorba/geo-module has been updated.

Status: Needs review = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212
Your team Zorba Coders is subscribed to branch lp:zorba/geo-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_geo-module into lp:zorba/geo-module

2013-07-10 Thread Zorba Build Bot
Validation queue succeeded - proposal merged!
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212
Your team Zorba Coders is subscribed to branch lp:zorba/geo-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_info-extraction-module into lp:zorba/info-extraction-module

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/update3.0_info-extraction-module/+merge/170463

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_info-extraction-module/+merge/170463
Your team Zorba Coders is subscribed to branch lp:zorba/info-extraction-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_geo-module into lp:zorba/geo-module

2013-07-10 Thread Zorba Build Bot
Validation queue result for 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212

Stage CommitZorba failed.

Check console output at http://jenkins.lambda.nu/job/CommitZorba/19/console to 
view the results.
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_geo-module/+merge/170212
Your team Zorba Coders is subscribed to branch lp:zorba/geo-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_info-extraction-module into lp:zorba/info-extraction-module

2013-07-10 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/update3.0_info-extraction-module 
into lp:zorba/info-extraction-module has been updated.

Status: Needs review = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/update3.0_info-extraction-module/+merge/170463
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_info-extraction-module/+merge/170463
Your team Zorba Coders is subscribed to branch lp:zorba/info-extraction-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/update3.0_info-extraction-module into lp:zorba/info-extraction-module

2013-07-10 Thread Zorba Build Bot
Validation queue succeeded - proposal merged!
-- 
https://code.launchpad.net/~zorba-coders/zorba/update3.0_info-extraction-module/+merge/170463
Your team Zorba Coders is subscribed to branch lp:zorba/info-extraction-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue result for 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085

Stage ZorbaVQ failed.

Check console output at http://jenkins.lambda.nu/job/ZorbaVQ/94/console to view 
the results.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue result for 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085

Stage ZorbaVQ failed.

Check console output at http://jenkins.lambda.nu/job/ZorbaVQ/95/console to view 
the results.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue result for 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085

Stage ZorbaVQ failed.

Check console output at http://jenkins.lambda.nu/job/ZorbaVQ/96/console to view 
the results.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba

2013-07-10 Thread Zorba Build Bot
Validation queue result for 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085

Stage TestZorbaUbuntu failed.
3 tests failed (8345 total tests run).

Check test results at 
http://jenkins.lambda.nu/job/TestZorbaUbuntu/67/testReport/ to view the results.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1189786-json-update/+merge/174085
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/bug-1189786-json-update into lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp