[Zorba-coders] [Merge] lp:~zorba-coders/zorba/2.8-release-prep into lp:zorba

2013-01-14 Thread Cezar Andrei
The proposal to merge lp:~zorba-coders/zorba/2.8-release-prep into lp:zorba has 
been updated.

Status: Needs review = Approved

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

2013-01-14 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/2.8-release-prep-2013-01-14T17-08-49.165Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/2.8-release-prep/+merge/142856
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/2.8-release-prep into lp:zorba

2013-01-14 Thread Cezar Andrei
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/2.8-release-prep/+merge/142856
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/2.8-release-prep into lp:zorba

2013-01-14 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/2.8-release-prep into lp:zorba has 
been updated.

Status: Approved = Merged

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

2013-01-14 Thread Zorba Build Bot
Validation queue job 2.8-release-prep-2013-01-14T17-08-49.165Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/2.8-release-prep/+merge/142856
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/couchbase-module-new-options into lp:zorba/couchbase-module

2013-01-14 Thread Juan Zacarias
Juan Zacarias has proposed merging 
lp:~zorba-coders/zorba/couchbase-module-new-options into 
lp:zorba/couchbase-module.

Commit message:
*Added new options to the cb:view Function:
-limit option, allows the user to limit the numbers of results shown by the 
view
-stale option, allows the user to specify when to update the view: update 
after the view is returned(default by couchbase), update before the view is 
returned, and don't update if the view function is called.

*Added a new option to the cb:put-text and cb:put-binary Functions: 
-wait option, allows the user to wait for confirmation from couchbase that 
the key/value pair was stored in disk.

Modified test view.xq using the new options so it doesn't fail when ran for the 
first time.

Requested reviews:
  Sorin Marian Nasoi (sorin.marian.nasoi)
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
-- 
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
Your team Zorba Coders is subscribed to branch lp:zorba/couchbase-module.
=== modified file 'examples/example.xq'
--- examples/example.xq	2013-01-10 07:59:35 +
+++ examples/example.xq	2013-01-14 21:43:21 +
@@ -7,7 +7,7 @@
   password : null,
   bucket : default});
 variable $view-name := cb:create-view($instance, zip, zip, {key : doc.state, values : doc.pop});
-variable $data := cb:view($instance, $view-name);
+variable $data := cb:view($instance, $view-name, {stale : false});
 for $d in jn:members($data(rows))
 let $state := $d(key)
 group by $state

=== modified file 'src/couchbase.xq'
--- src/couchbase.xq	2013-01-10 08:07:25 +
+++ src/couchbase.xq	2013-01-14 21:43:21 +
@@ -232,7 +232,10 @@
  : @option operation type of operation, possible values are 
  : add, replace, set, append and prepend.
  : @option encoding the encoding that should be used for the
- :   value (default is UTF-8).
+ : value (default is UTF-8).
+ : @option wait variable for setting if a wait for persistancy in 
+ : the storing key is needed, possible values are persist 
+ : and false.
  : 
  : @error cb:LCB0002 if any error occurs in the communication with
  :   the server.
@@ -241,6 +244,7 @@
  : @error cb:CB0006 if the given encoding is not supported.
  : @error cb:CB0007 if any of the options is not supported.
  : @error cb:CB0009 if the given expiration time is not an xs:integer. 
+ : @error cb:CB0011 if the stored Variable was not stored
  :
  : @return a empty sequence.
  :)  
@@ -286,6 +290,9 @@
  : expiration time in seconds.
  : @option operation type of operation, possible values are 
  : add, replace, set, append and prepend.
+ : @option wait variable for setting if a wait for persistancy in 
+ : the storing key is needed, possible values are persist 
+ : and false.
  :
  : @error cb:LCB0002 if any error occurs in the communication with
  :   the server.
@@ -293,6 +300,7 @@
  :   of values.
  : @error cb:CB0007 if any of the options is not supported.
  : @error cb:CB0009 if the given expiration time is not an xs:integer.
+ : @error cb:CB0011 if the stored Variable was not stored
  :
  : @return a empty sequence.
  :)  
@@ -365,8 +373,18 @@
  :(e.g. _design/test/_view/vies).
  : @param $options JSONiq object with additional options
  :
- : @option encoding string with the name of the encoding of the returned
- :   strings (if not UTF-8).
+ : @option Json object whith options for the querying the view. available options:
+ : encoding string with the name of the encoding of the returned
+ : strings (if not UTF-8).
+ : stale option's value is a string with the type of stale to be used. 
+ : Valid values:
+ :   ok : the view is not updated
+ :   false : the view is updated before the function view is executed, 
+ :this options needs the key to be on disk before the call of the 
+ :view function.
+ :   update_after : the view is updated after the call of view
+ : limit option's value is an integer which sets a number of how many 
+ : rows the view will show.  
  :
  : @error cb:LCB0002 if any error occurs in the communication with
  :   the server.

=== modified file 'src/couchbase.xq.src/couchbase.cpp'
--- src/couchbase.xq.src/couchbase.cpp	2013-01-10 07:59:35 +
+++ src/couchbase.xq.src/couchbase.cpp	2013-01-14 21:43:21 +
@@ -190,6 +190,30 @@
   return NULL;
 }
 
+String
+  CouchbaseFunction::ViewOptions::getPathOptions()
+{
+  String lPathOptions(?);
+  bool lAmp = false;
+  if (theStaleOption != )
+  {
+lPathOptions.append(theStaleOption);
+lAmp = true;
+  }
+  if (theLimitOption != )
+  {
+if(lAmp)
+  lPathOptions.append();
+lPathOptions.append(theLimitOption);
+lAmp = true;
+  }
+
+  if (lPathOptions == ?)
+lPathOptions = ;
+
+  return lPathOptions;
+}
+
 void
   

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

2013-01-14 Thread Rodolfo Ochoa
Rodolfo Ochoa has proposed merging lp:~zorba-coders/zorba/bug1099584 into 
lp:zorba.

Commit message:
The information about the APIs in the main page is incomplete.

Requested reviews:
  Rodolfo Ochoa (rodolfo-ochoa)
  Chris Hillery (ceejatec)
Related bugs:
  Bug #1099584 in Zorba: Error in API Documentation - Main Page
  https://bugs.launchpad.net/zorba/+bug/1099584

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug1099584/+merge/143190

The information about the APIs in the main page is incomplete.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1099584/+merge/143190
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'doc/zorba/indexpage.dox.in'
--- doc/zorba/indexpage.dox.in	2012-09-19 21:16:15 +
+++ doc/zorba/indexpage.dox.in	2013-01-14 22:01:22 +
@@ -11,10 +11,12 @@
 \section apis APIs
   - a href=../../cxx/html/index.htmlC++ API/a
   - a class=el href=../../c/html/index.htmlC API/a
+  - a class=el href=../../xqj/html/index.htmlXQJ API/a
   - a class=el href=../../java/html/index.htmlJava API/a
+  - a class=el href=../../php/html/index.htmlPHP API/a
   - a class=el href=../../python/html/index.htmlPython API/a
+  - a class=el href=../../csharp/html/index.htmlC# API/a
   - a class=el href=../../ruby/html/index.htmlRuby API/a
-  - a class=el href=../../php/html/index.htmlPHP API/a
 
 \section generalarchitecture General Architecture
   - \ref data_lifecycle

-- 
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/bug1099584 into lp:zorba

2013-01-14 Thread Rodolfo Ochoa
The proposal to merge lp:~zorba-coders/zorba/bug1099584 into lp:zorba has been 
updated.

Commit Message changed to:

The information about the APIs in the main page is incomplete.

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

2013-01-14 Thread Chris Hillery
Review: Needs Fixing

I was a bit confused by the choices for parameter values for stale and 
wait, but it looks like those come directly from Couchbase itself, so OK then.

One change: This failed on the RQ the first time the test was run, but not on 
later RQ runs. That implies to me that later RQ runs are probably seeing 
leftover data from the earlier runs. The view.xq test case should clean up 
after itself by deleting the value that it inserts, at least IMHO. Possibly 
other test cases have a similar issue; please check.
-- 
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
Your team Zorba Coders is subscribed to branch lp:zorba/couchbase-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/couchbase-module-new-options into lp:zorba/couchbase-module

2013-01-14 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/couchbase-module-new-options into 
lp:zorba/couchbase-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
-- 
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
Your team Zorba Coders is subscribed to branch lp:zorba/couchbase-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/bug1099584 into lp:zorba

2013-01-14 Thread Rodolfo Ochoa
Review: Approve


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

2013-01-14 Thread Chris Hillery
Review: Approve


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

2013-01-14 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug1099584-2013-01-14T22-05-12.465Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1099584/+merge/143190
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/bug1099584 into lp:zorba

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

Status: Needs review = Approved

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

2013-01-14 Thread Zorba Build Bot
Validation queue job bug1099584-2013-01-14T22-05-12.465Z is finished. The final 
status was:

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

2013-01-14 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug1099584 into lp:zorba has been 
updated.

Status: Approved = Merged

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

2013-01-14 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/couchbase-module-new-options-2013-01-14T22-34-42.475Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
Your team Zorba Coders is subscribed to branch lp:zorba/couchbase-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/couchbase-module-new-options into lp:zorba/couchbase-module

2013-01-14 Thread Zorba Build Bot
Validation queue job couchbase-module-new-options-2013-01-14T22-34-42.475Z is 
finished. The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
Your team Zorba Coders is subscribed to branch lp:zorba/couchbase-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/couchbase-module-new-options into lp:zorba/couchbase-module

2013-01-14 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1, 
Needs Fixing  1, Pending  1. Got: 1 Needs Fixing, 1 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
Your team Zorba Coders is subscribed to branch lp:zorba/couchbase-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/couchbase-module-new-options into lp:zorba/couchbase-module

2013-01-14 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/couchbase-module-new-options into 
lp:zorba/couchbase-module has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
-- 
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
Your team Zorba Coders is subscribed to branch lp:zorba/couchbase-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/couchbase-module-new-options into lp:zorba/couchbase-module

2013-01-14 Thread Juan Zacarias
It didn't fail because the created views remain on the database. They are not 
deleted since they shouldn't be cleaned with the module, but the views are 
database management work. I will add a delete view just like the create view 
which are management functions.
-- 
https://code.launchpad.net/~zorba-coders/zorba/couchbase-module-new-options/+merge/143187
Your team Zorba Coders is subscribed to branch lp:zorba/couchbase-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/bug1099622 into lp:zorba

2013-01-14 Thread Rodolfo Ochoa
Rodolfo Ochoa has proposed merging lp:~zorba-coders/zorba/bug1099622 into 
lp:zorba.

Commit message:
Fix for PHP finding on Windows

Requested reviews:
  Juan Zacarias (juan457)
  Chris Hillery (ceejatec)
Related bugs:
  Bug #1099622 in Zorba: PHP Detection
  https://bugs.launchpad.net/zorba/+bug/1099622

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug1099622/+merge/143213

Fix for PHP finding on Windows
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1099622/+merge/143213
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'cmake_modules/FindPHP5.cmake'
--- cmake_modules/FindPHP5.cmake	2012-10-18 00:03:08 +
+++ cmake_modules/FindPHP5.cmake	2013-01-15 00:03:22 +
@@ -157,16 +157,18 @@
 ENDIF(PHP5_VERSION LESS 5)
 
 ELSE (NOT WIN32 OR CYGWIN)
-MESSAGE(STATUS Windows Environment Configuration...)
-#On Windows, set PHP5_INCLUDE_DIR with -D
-MESSAGE(STATUS Path to source:  ${PHP5_INCLUDE_DIR})
-SET(PHP5_INCLUDES ${PHP5_INCLUDE_DIR})
-#SET(PHP5_EXTENSION_DIR  CACHE PATH Path to the ext subdir in binary PHP5)
-ENDIF (NOT WIN32 OR CYGWIN)
- 
+
+  WINDOWS CONFIG
+
 IF(NOT PHP5_INCLUDE_DIR )
   SET (PHP5_INCLUDE_DIR ${CMAKE_PREFIX_PATH})
 ENDIF(NOT PHP5_INCLUDE_DIR )
+
+MESSAGE(STATUS Windows Environment Configuration.)
+MESSAGE(STATUS PHP Path:  ${PHP5_INCLUDE_DIR})
+SET(PHP5_INCLUDES ${PHP5_INCLUDE_DIR})
+
+ENDIF (NOT WIN32 OR CYGWIN)
  
 set(PHP5_MAIN_INCLUDE_DIR ${PHP5_INCLUDE_DIR}/main)
 set(PHP5_TSRM_INCLUDE_DIR ${PHP5_INCLUDE_DIR}/TSRM)
@@ -176,8 +178,6 @@
 set(PHP5_DATE_INCLUDE_DIR ${PHP5_INCLUDE_DIR}/ext/date/lib)
 set(PHP5_STANDARD_INCLUDE_DIR ${PHP5_INCLUDE_DIR}/ext/standard)
 
-MESSAGE(STATUS ${PHP5_MAIN_INCLUDE_DIR})
-
 IF(PHP5_EXECUTABLE AND PHP5_INCLUDES)
 SET(PHP5_FOUND yes)
 MESSAGE(STATUS Found PHP5-Version ${PHP5_VERSION})

-- 
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/bug1099622 into lp:zorba

2013-01-14 Thread Juan Zacarias
Review: Approve


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

2013-01-14 Thread Rodolfo Ochoa
Review: Approve


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

2013-01-14 Thread Rodolfo Ochoa
The proposal to merge lp:~zorba-coders/zorba/bug1099622 into lp:zorba has been 
updated.

Status: Needs review = Approved

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

2013-01-14 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug1099622-2013-01-15T00-36-14.137Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1099622/+merge/143213
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/bug1099622 into lp:zorba

2013-01-14 Thread Zorba Build Bot
Validation queue job bug1099622-2013-01-15T00-36-14.137Z is finished. The final 
status was:

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

2013-01-14 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug1099622 into lp:zorba has been 
updated.

Status: Approved = Merged

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