[Zorba-coders] [Merge] lp:~zorba-coders/zorba/oauth-status-codes into lp:zorba/oauth-module

2013-06-06 Thread Chris Hillery
Chris Hillery has proposed merging lp:~zorba-coders/zorba/oauth-status-codes 
into lp:zorba/oauth-module.

Commit message:
Accept HTTP status codes 201 and 202.

Requested reviews:
  Matthias Brantner (matthias-brantner)
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/oauth-status-codes/+merge/167707
-- 
https://code.launchpad.net/~zorba-coders/zorba/oauth-status-codes/+merge/167707
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.
=== modified file 'src/com/zorba-xquery/www/modules/oauth/client.xq'
--- src/com/zorba-xquery/www/modules/oauth/client.xq	2013-04-02 04:00:45 +
+++ src/com/zorba-xquery/www/modules/oauth/client.xq	2013-06-06 07:25:34 +
@@ -626,13 +626,14 @@
   let $body := if($response[2] instance of xs:base64Binary) then base64:decode($response[2]) else $response[2]
   let $status := xs:integer($head/@status)
   return
-if($status eq 200)
+if($status ge 200 and $status le 202)
 then 
   if ($format-params) then
 oauth:parse-parameters($body)
   else 
 $response
-else if ( ($status ge 301 and $status le 303) or $status eq 307 ) then { 
+else if ( ($status ge 301 and $status le 303) or 
+  ($status eq 307) ) then { 
   replace value of node $protected-resource/@href with
 data($head/http-client:header[@name eq Location]/@value);
   oauth:format-request(

-- 
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/oauth-status-codes into lp:zorba/oauth-module

2013-06-06 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/oauth-status-codes/+merge/167707
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-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/oauth-status-codes into lp:zorba/oauth-module

2013-06-06 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/oauth-status-codes into 
lp:zorba/oauth-module has been updated.

Commit Message changed to:

Accept HTTP status codes 201 and 202.

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/oauth-status-codes/+merge/167707
-- 
https://code.launchpad.net/~zorba-coders/zorba/oauth-status-codes/+merge/167707
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Sorin Marian Nasoi
Sorin Marian Nasoi has proposed merging 
lp:~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures into lp:zorba.

Commit message:
- bumped FOTS version
- added LP/W3C bug numbers to all expected FOTS failures

Requested reviews:
  Sorin Marian Nasoi (sorin.marian.nasoi)
Related bugs:
  Bug #1167427 in Zorba: Multiple decimal-format declarations
  https://bugs.launchpad.net/zorba/+bug/1167427
  Bug #1172273 in Zorba: failures in app-CatalogCheck
  https://bugs.launchpad.net/zorba/+bug/1172273

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'test/fots/CMakeLists.txt'
--- test/fots/CMakeLists.txt	2013-06-05 15:06:53 +
+++ test/fots/CMakeLists.txt	2013-06-06 17:46:28 +
@@ -109,6 +109,15 @@
 EXPECTED_FOTS_FAILURE (SLOW fn-matches.re re00987 1131313)
 EXPECTED_FOTS_FAILURE (SLOW app-Demos itunes 0)
 
+#The following test-cases fail because fn:available-environment-variables does not return ()
+#However thy all pass if one sets the following environment variables (on Linux):
+# export QTTEST='42'
+# export QTTEST2='other'
+EXPECTED_FOTS_FAILURE (SLOW fn-available-environment-variables fn-available-environment-variables-011 1187692)
+EXPECTED_FOTS_FAILURE (SLOW fn-environment-variable environment-variable-005 1187692)
+EXPECTED_FOTS_FAILURE (SLOW fn-environment-variable environment-variable-006 1187692)
+EXPECTED_FOTS_FAILURE (SLOW fn-environment-variable environment-variable-007 1187692)
+
 #crashing/hanging tests. These are not run but marked as 'tooBig' by FOTS driver.
 EXPECTED_FOTS_FAILURE (CRASH fn-matches.re re00975 1070533)
 EXPECTED_FOTS_FAILURE (CRASH fn-matches.re re00976 1070533)
@@ -117,6 +126,25 @@
 #disputed tests. These test are run but marked as 'pass' by FOTS driver.
 #All these entries should have a *valid* opened bug number from W3C bugzilla.
 EXPECTED_FOTS_FAILURE (DISPUTED prod-VarDecl.external K2-ExternalVariablesWith-22 21960)
+EXPECTED_FOTS_FAILURE (DISPUTED app-CatalogCheck Catalog002 22277)
+EXPECTED_FOTS_FAILURE (DISPUTED app-CatalogCheck Catalog013 22280)
+EXPECTED_FOTS_FAILURE (DISPUTED app-CatalogCheck Catalog014 22281)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-001 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-005 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-006 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-007 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-015 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-016 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-020 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-028 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-034 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-035 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-037 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-041 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-042 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED prod-SchemaImport empty-union-049 22294)
+EXPECTED_FOTS_FAILURE (DISPUTED fn-format-dateTime format-dateTime-006 22282)
+EXPECTED_FOTS_FAILURE (DISPUTED misc-XMLEdition XML10-4ed-Excluded-char-1 13869)
 
 # Next three possibly unique to old RQ machine, but they need to be
 # marked for the RQ to pass.
@@ -125,129 +153,127 @@
 
 # This test passes on the old and new RQ machines, but fails for Sorin.
 #EXPECTED_FOTS_FAILURE (fn-normalize-unicode fn-normalize-unicode-11 0)
-EXPECTED_FOTS_FAILURE (app-CatalogCheck Catalog002 1172273)
-EXPECTED_FOTS_FAILURE (app-CatalogCheck Catalog004 1172273)
-EXPECTED_FOTS_FAILURE (app-CatalogCheck Catalog010 1172273)
-EXPECTED_FOTS_FAILURE (app-CatalogCheck Catalog011 1172273)
-EXPECTED_FOTS_FAILURE (app-CatalogCheck Catalog013 1172273)
-EXPECTED_FOTS_FAILURE (app-CatalogCheck Catalog014 1172273)
-EXPECTED_FOTS_FAILURE (fn-available-environment-variables fn-available-environment-variables-011 0)
-EXPECTED_FOTS_FAILURE (fn-environment-variable environment-variable-005 0)
-EXPECTED_FOTS_FAILURE (fn-environment-variable environment-variable-006 0)
-EXPECTED_FOTS_FAILURE (fn-environment-variable environment-variable-007 0)
-EXPECTED_FOTS_FAILURE (fn-fold-left fold-left-009 0)
-EXPECTED_FOTS_FAILURE (fn-format-dateTime format-dateTime-006 0)
-EXPECTED_FOTS_FAILURE (fn-format-number numberformat41 1167427)
-EXPECTED_FOTS_FAILURE (fn-format-number numberformat42 1167427)
+
+EXPECTED_FOTS_FAILURE (app-CatalogCheck Catalog010 1187807)
+EXPECTED_FOTS_FAILURE (app-CatalogCheck Catalog011 1187807)
+EXPECTED_FOTS_FAILURE (fn-fold-left fold-left-009 1187685)
+EXPECTED_FOTS_FAILURE (fn-fold-right 

Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Sorin Marian Nasoi
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Sorin Marian Nasoi
The proposal to merge 
lp:~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures into lp:zorba 
has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/add_LP_bug_numbers_to_expected_failures-2013-06-06T17-47-47.602Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/new-jsoniq into lp:zorba

2013-06-06 Thread Nicolae Brinza
The proposal to merge lp:~zorba-coders/zorba/new-jsoniq into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Zorba Build Bot
The attempt to merge 
lp:~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures into lp:zorba 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:281 
(message):
  Validation queue job
  add_LP_bug_numbers_to_expected_failures-2013-06-06T17-47-47.602Z is
  finished.  The final status was:

  

  5 tests did not succeed - changes not commited.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/new-jsoniq-2013-06-06T18-12-45.616Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Zorba Build Bot
The proposal to merge 
lp:~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures into lp:zorba 
has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/new-jsoniq into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:281 
(message):
  Validation queue job new-jsoniq-2013-06-06T18-12-45.616Z is finished.  The
  final status was:

  

  No tests were run - build or configure step must have failed.

  Not commiting changes.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/new-jsoniq into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Paul J. Lucas
Paul J. Lucas has proposed merging lp:~paul-lucas/zorba/bug-1188100 into 
lp:zorba.

Commit message:
Now converting regex in fn:tokenize().

Requested reviews:
  Paul J. Lucas (paul-lucas)
Related bugs:
  Bug #1188100 in Zorba: regex issues with 'q' flag in fn:tokenize
  https://bugs.launchpad.net/zorba/+bug/1188100

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826

Now converting regex in fn:tokenize().
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'ChangeLog'
--- ChangeLog	2013-06-03 23:05:34 +
+++ ChangeLog	2013-06-06 18:35:30 +
@@ -22,6 +22,7 @@
   * Fixed implementation of fn:deep-equal according to latest W3C spec.
   * Must apply document ordering on the domain expression of a FOR clause, if
 the FOR clause is followed by a sequential clause.
+  * Fixed bug #1188100 (regex issues with 'q' flag in fn:tokenize)
   * Fixed invalid memory access error occuring during sequence type matching
 for user-defined types.
 

=== modified file 'src/runtime/strings/strings_impl.cpp'
--- src/runtime/strings/strings_impl.cpp	2013-05-09 00:21:51 +
+++ src/runtime/strings/strings_impl.cpp	2013-06-06 18:35:30 +
@@ -1688,10 +1688,9 @@
 store::Item_t result,
 PlanState planState) const
 {
-  zstring token;
+  zstring pattern, token;
   store::Item_t item;
   bool tmp;
-  zstring strval;
   unicode::string u_string;
 
   FnTokenizeIteratorState* state;
@@ -1699,28 +1698,24 @@
 
   if (consumeNext(item, theChildren[0].getp(), planState))
   {
-item-getStringValue2(strval);
-state-theString = strval.str();
+item-getStringValue2(state-theString);
   }
 
   if (!consumeNext(item, theChildren[1].getp(), planState))
 ZORBA_ASSERT(false);
 
-  item-getStringValue2(strval);
-  state-thePattern = strval.str();
+  item-getStringValue2(pattern);
 
   if(theChildren.size() == 3)
   {
 if (!consumeNext(item, theChildren[2].getp(), planState))
   ZORBA_ASSERT (false);
-
-item-getStringValue2(strval);
-
-state-theFlags = strval.str();
+item-getStringValue2(state-theFlags);
   }
 
   try
   {
+convert_xquery_re( pattern, state-thePattern, state-theFlags.c_str() );
 static zstring const empty;
 tmp = utf8::match_part( empty, state-thePattern, state-theFlags );
   }
@@ -1732,7 +1727,7 @@
 
   if(tmp)
 throw XQUERY_EXCEPTION(
-  err::FORX0003, ERROR_PARAMS( state-thePattern ), ERROR_LOC( loc )
+  err::FORX0003, ERROR_PARAMS( pattern ), ERROR_LOC( loc )
 );
 
 

=== modified file 'test/fots/CMakeLists.txt'
--- test/fots/CMakeLists.txt	2013-06-05 15:06:53 +
+++ test/fots/CMakeLists.txt	2013-06-06 18:35:30 +
@@ -167,8 +167,6 @@
 EXPECTED_FOTS_FAILURE (fn-serialize serialize-xml-008 0)
 EXPECTED_FOTS_FAILURE (fn-string-length fn-string-length-22 0)
 EXPECTED_FOTS_FAILURE (fn-string-length fn-string-length-24 0)
-EXPECTED_FOTS_FAILURE (fn-tokenize fn-tokenize-31 0)
-EXPECTED_FOTS_FAILURE (fn-tokenize fn-tokenize-32 0)
 EXPECTED_FOTS_FAILURE (fn-unparsed-text fn-unparsed-text-038 0)
 EXPECTED_FOTS_FAILURE (fn-unparsed-text fn-unparsed-text-039 0)
 EXPECTED_FOTS_FAILURE (fn-unparsed-text fn-unparsed-text-042 0)

-- 
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Paul J. Lucas
Review: Approve


-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1188100-2013-06-06T18-37-44.259Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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/new-jsoniq into lp:zorba

2013-06-06 Thread Nicolae Brinza
The proposal to merge lp:~zorba-coders/zorba/new-jsoniq into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Sorin Marian Nasoi
The proposal to merge 
lp:~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures into lp:zorba 
has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Sorin Marian Nasoi
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Sorin Marian Nasoi
The proposal to merge 
lp:~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures into lp:zorba 
has been updated.

Commit Message changed to:

- bumped FOTS version
- added LP/W3C bug numbers to all expected FOTS failures
- added the description of the test-case as part of FOTS driver output

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
The attempt to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:281 
(message):
  Validation queue job bug-1188100-2013-06-06T18-37-44.259Z is finished.  The
  final status was:

  

  5 tests did not succeed - changes not commited.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
The proposal to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/new-jsoniq-2013-06-06T19-02-00.114Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/new-jsoniq into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:281 
(message):
  Validation queue job new-jsoniq-2013-06-06T19-02-00.114Z is finished.  The
  final status was:

  

  2 tests did not succeed - changes not commited.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/new-jsoniq into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/add_LP_bug_numbers_to_expected_failures-2013-06-06T19-27-44.985Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue job 
add_LP_bug_numbers_to_expected_failures-2013-06-06T19-27-44.985Z is finished. 
The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1, 
Needs Fixing  1, Pending  1, Needs Information  1, Resubmit  1. Got: 1 
Approve.
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Zorba Build Bot
The proposal to merge 
lp:~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures into lp:zorba 
has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/new-jsoniq into lp:zorba

2013-06-06 Thread Nicolae Brinza
The proposal to merge lp:~zorba-coders/zorba/new-jsoniq into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/new-jsoniq-2013-06-06T20-57-55.433Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue job new-jsoniq-2013-06-06T20-57-55.433Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1, 
Needs Fixing  1, Pending  1, Needs Information  1, Resubmit  1. Got: 1 
Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1188100-2013-06-06T21-23-43.673Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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/new-jsoniq into lp:zorba

2013-06-06 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/new-jsoniq into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
-- 
https://code.launchpad.net/~zorba-coders/zorba/new-jsoniq/+merge/167824
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
The attempt to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:281 
(message):
  Validation queue job bug-1188100-2013-06-06T21-23-43.673Z is finished.  The
  final status was:

  

  1 tests did not succeed - changes not commited.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
The proposal to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1188100-2013-06-07T02-44-46.144Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue job bug-1188100-2013-06-07T02-44-46.144Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1, 
Needs Fixing  1, Pending  1, Needs Information  1, Resubmit  1. Got: 1 
Approve.
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
The proposal to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Matthias Brantner
The proposal to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1188100-2013-06-07T03-25-40.447Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
The attempt to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:281 
(message):
  Validation queue job bug-1188100-2013-06-07T03-25-40.447Z is finished.  The
  final status was:

  

  1 tests did not succeed - changes not commited.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
The proposal to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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/bug-1180220 into lp:zorba

2013-06-06 Thread Paul J. Lucas
The proposal to merge lp:~zorba-coders/zorba/bug-1180220 into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1180220/+merge/167177
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1180220/+merge/167177
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/bug-1188100 into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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/bug-1180220 into lp:zorba

2013-06-06 Thread Paul J. Lucas
The proposal to merge lp:~zorba-coders/zorba/bug-1180220 into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1180220/+merge/167177
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1180220/+merge/167177
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/bug-1180220 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1180220-2013-06-07T05-03-17.543Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1180220/+merge/167177
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/bug-1180220 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue job bug-1180220-2013-06-07T05-03-17.543Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1180220/+merge/167177
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/bug-1180220 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1, 
Needs Fixing  1, Pending  1, Needs Information  1, Resubmit  1. Got: 2 
Approve, 1 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1180220/+merge/167177
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:~paul-lucas/zorba/bug-1188100 into lp:zorba

2013-06-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1188100-2013-06-07T05-28-43.84Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-1188100/+merge/167826
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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/add_LP_bug_numbers_to_expected_failures into lp:zorba

2013-06-06 Thread Chris Hillery
The proposal to merge 
lp:~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures into lp:zorba 
has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
-- 
https://code.launchpad.net/~zorba-coders/zorba/add_LP_bug_numbers_to_expected_failures/+merge/167819
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