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

2012-08-28 Thread Markos Zaharioudakis
Markos Zaharioudakis has proposed merging lp:~zorba-coders/zorba/bug-1038410 
into lp:zorba.

Requested reviews:
  Markos Zaharioudakis (markos-za)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1038410/+merge/121543

Fixed bug #1038410 (Memory leaks in parser, trace iterator, and general index)
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1038410/+merge/121543
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'ChangeLog'
--- ChangeLog	2012-08-24 23:20:23 +
+++ ChangeLog	2012-08-28 07:06:22 +
@@ -2,14 +2,21 @@
 
 version 2.7
 
+New Features:
+  * Allow prolog variables to be referenced before they are declared (XQuery 3.0 feature)
+
 Bug Fixes/Other Changes:
   * Fixed bug #898792 (Dynamically computed strings can now be cast to xs:QName)
   * Fixed bugs #899364 and 899363 (throw XQST0103 in case of non-distinct window
 variables)
   * Fixed bug #899366 (enforce the type declaration of a window variable)
   * Fixed bug #1024892 (index declaration references udf declared after the index)
+<<< TREE
   * Fixed bug #1039488 (inserting more than one pair at once in a JSON object)
 
+===
+  * Fixed bug #1038410 (Memory leaks in parser, trace iterator, and general index)
+>>> MERGE-SOURCE
 
 version 2.6
 

=== modified file 'src/compiler/parser/xquery_parser.y'
--- src/compiler/parser/xquery_parser.y	2012-08-16 18:31:02 +
+++ src/compiler/parser/xquery_parser.y	2012-08-28 07:06:22 +
@@ -2660,6 +2660,7 @@
   $$ = $3; // to prevent the Bison warning
   error(@2, "syntax error, unexpected QName \""
   + static_cast($3)->operator[](0)->get_var_name()->get_qname().str() + "\" (missing \"$\" sign?)");
+  delete $3;
   YYERROR;
 }
   |
@@ -2675,14 +2676,14 @@
 VarInDeclList :
 VarInDecl
 {
-  VarInDeclList *vdl = new VarInDeclList( LOC(@$) );
+  VarInDeclList* vdl = new VarInDeclList( LOC(@$) );
   vdl->push_back( dynamic_cast($1) );
   $$ = vdl;
 }
   |
 VarInDeclList COMMA DOLLAR VarInDecl
 {
-  if ( VarInDeclList *vdl = dynamic_cast($1) )
+  if ( VarInDeclList* vdl = dynamic_cast($1) )
 vdl->push_back( dynamic_cast($4) );
   $$ = $1;
 }
@@ -2693,6 +2694,7 @@
   $$ = $1; // to prevent the Bison warning
   error(@3, "syntax error, unexpected QName \""
   + static_cast($3)->get_var_name()->get_qname().str() + "\" (missing \"$\" sign?)");
+  delete $1;
   YYERROR;
 }
 ;

=== modified file 'src/runtime/errors_and_diagnostics/errors_and_diagnostics_impl.cpp'
--- src/runtime/errors_and_diagnostics/errors_and_diagnostics_impl.cpp	2012-08-16 18:31:02 +
+++ src/runtime/errors_and_diagnostics/errors_and_diagnostics_impl.cpp	2012-08-28 07:06:22 +
@@ -104,13 +104,13 @@
 );
   }
 
-  if (state->theSerializer.get() == 0) {
-state->theSerializer.reset(new serializer(0));
+  if (state->theSerializer == 0)
+  {
+state->theSerializer = new serializer(0);
+
 Zorba_SerializerOptions options;
 options.omit_xml_declaration = ZORBA_OMIT_XML_DECLARATION_YES;
-SerializerImpl::setSerializationParameters(
-*(state->theSerializer), 
-options);
+SerializerImpl::setSerializationParameters(*(state->theSerializer), options);
   }
   state->theOS = theSctx->get_trace_stream();
 

=== modified file 'src/runtime/errors_and_diagnostics/pregenerated/errors_and_diagnostics.cpp'
--- src/runtime/errors_and_diagnostics/pregenerated/errors_and_diagnostics.cpp	2012-08-16 18:31:02 +
+++ src/runtime/errors_and_diagnostics/pregenerated/errors_and_diagnostics.cpp	2012-08-28 07:06:22 +
@@ -29,6 +29,7 @@
 #include "system/globalenv.h"
 
 
+#include "api/serialization/serializer.h"
 
 namespace zorba {
 
@@ -95,7 +96,7 @@
   theTagItem = NULL;
   theIndex = 0;
   theOS = 0;
-  theSerializer = std::auto_ptr(0);
+  theSerializer = NULL;
 }
 
 void TraceIteratorState::reset(PlanState& planState) {
@@ -103,7 +104,7 @@
   theTagItem = NULL;
   theIndex = 0;
   theOS = 0;
-  theSerializer = std::auto_ptr(0);
+  theSerializer = NULL;
 }
 // 
 

=== modified file 'src/runtime/errors_and_diagnostics/pregenerated/errors_and_diagnostics.h'
--- src/runtime/errors_and_diagnostics/pregenerated/errors_and_diagnostics.h	2012-08-16 18:31:02 +
+++ src/runtime/errors_and_diagnostics/pregenerated/errors_and_diagnostics.h	2012-08-28 07:06:22 +
@@ -73,7 +73,7 @@
   store::Item_t theTagItem; //
   uint32_t theIndex; //
   std::ostream* theOS; //
-  std::auto_ptr theSerializer; //
+  rchandle theSerializer; //
 
   TraceIteratorState();
 

=== modified file 'src/runtime/spec/errors_and_diagnostics/errors_and_diagnostics.xml'
--- src/runtime/spec/errors_and_diagnostics/errors_and_diagnostics.xml	2012-08-16 18:31:02 +
+++ src/runtime/spec/errors_and_diagnostics/errors_and_diagnostics.xml	2012-08-28 07:06:22 +
@@ -11,7 +11,11 @@
   xmlns:zorba="http://www.zorba-xquery.com";
   xml

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

2012-08-28 Thread Markos Zaharioudakis
Review: Approve


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

2012-08-28 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/bug-1038410 into lp:zorba has been 
updated.

Status: Needs review => Approved

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

2012-08-28 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1038410-2012-08-28T07-23-03.04Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1038410/+merge/121543
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-1038410 into lp:zorba

2012-08-28 Thread Zorba Build Bot
Validation queue job bug-1038410-2012-08-28T07-23-03.04Z is finished. The final 
status was:

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

2012-08-28 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug-1038410 into lp:zorba has been 
updated.

Status: Approved => Merged

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

2012-08-28 Thread William Candillon
The proposal to merge lp:~zorba-coders/zorba/bang_operator into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2012-08-28 Thread Zorba Build Bot
Attempt to merge into lp:zorba failed due to conflicts: 

text conflict in ChangeLog
-- 
https://code.launchpad.net/~zorba-coders/zorba/bang_operator/+merge/121347
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/bang_operator into lp:zorba

2012-08-28 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bang_operator into lp:zorba has 
been updated.

Status: Approved => Needs review

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

2012-08-28 Thread Ghislain Fourny
Thanks Matthias, I missed this one!
-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq-static-casts/+merge/118961
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/bang_operator into lp:zorba

2012-08-28 Thread William Candillon
The proposal to merge lp:~zorba-coders/zorba/bang_operator into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2012-08-28 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bang_operator-2012-08-28T14-03-07.533Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bang_operator/+merge/121347
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/bang_operator into lp:zorba

2012-08-28 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/bang_operator into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job bang_operator-2012-08-28T14-03-07.533Z 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/~zorba-coders/zorba/bang_operator/+merge/121347
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/bang_operator into lp:zorba

2012-08-28 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bang_operator into lp:zorba has 
been updated.

Status: Approved => Needs review

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

2012-08-28 Thread Cezar Andrei
Review: Needs Fixing

Isn't the following method wrong? You need to check that the strings are the 
same not just a subset one of another. Just say:
  return (test == null && query.result == null) || test.equals(queryRTesult);

2068+ static boolean checkResult(String test, String queryResult) {
2069+ System.out.println("Result:");
2070+ System.out.println(queryResult);
2071+ System.out.println("Expected:");
2072+ System.out.println(test);
2073+ return (queryResult.indexOf(test)>=0) || 
(test.indexOf(queryResult)>=0);
2074+ }
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug938320/+merge/118194
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/jsoniq-static-casts into lp:zorba

2012-08-28 Thread Markos Zaharioudakis
Ghislain, it seems that the jsoniq tree id is not currently used anywhere. Do 
you envision that it will ever be needed somewhere? If not, let's remove it.

Also, I don't like the "fix" "unfix" names. What about addInCollection and 
removeFromCollection? (but this is up to you, I will approve anyway).

-- 
https://code.launchpad.net/~zorba-coders/zorba/jsoniq-static-casts/+merge/118961
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/feature-uuid into lp:zorba

2012-08-28 Thread Paul J. Lucas
I added a mention to the build documentation.  Approve now?
-- 
https://code.launchpad.net/~zorba-coders/zorba/feature-uuid/+merge/118268
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-1042840 into lp:zorba

2012-08-28 Thread Markos Zaharioudakis
Markos Zaharioudakis has proposed merging lp:~zorba-coders/zorba/bug-1042840 
into lp:zorba.

Requested reviews:
  Markos Zaharioudakis (markos-za)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1042840/+merge/121682

Fixed bug #1042840 (qname pool free-list corruption)
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1042840/+merge/121682
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-1042840 into lp:zorba

2012-08-28 Thread Markos Zaharioudakis
Review: Approve


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

2012-08-28 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/bug-1042840 into lp:zorba has been 
updated.

Status: Needs review => Approved

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

2012-08-28 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1042840-2012-08-28T19-42-04.317Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1042840/+merge/121682
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-1042840 into lp:zorba

2012-08-28 Thread Zorba Build Bot
Validation queue job bug-1042840-2012-08-28T19-42-04.317Z is finished. The 
final status was:

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

2012-08-28 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug-1042840 into lp:zorba has been 
updated.

Status: Approved => Merged

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

2012-08-28 Thread William Candillon
The proposal to merge lp:~zorba-coders/zorba/bang_operator into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2012-08-28 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bang_operator-2012-08-28T20-47-02.025Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bang_operator/+merge/121347
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/fix-execute-scripts into lp:zorba

2012-08-28 Thread Chris Hillery
Chris Hillery has proposed merging lp:~zorba-coders/zorba/fix-execute-scripts 
into lp:zorba.

Requested reviews:
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'scripts/chk_kwqnames' (properties changed: -x to +x)
=== modified file 'scripts/create-doc-tar.sh.in' (properties changed: -x to +x)
=== modified file 'scripts/create_release.txt' (properties changed: -x to +x)
=== modified file 'scripts/find_boost_headers' (properties changed: -x to +x)
=== modified file 'scripts/find_macosx_libraries.sh' (properties changed: -x to +x)
=== modified file 'scripts/make_tags' (properties changed: -x to +x)
=== modified file 'scripts/osx_postflight.sh.in' (properties changed: -x to +x)
=== modified file 'scripts/update_svn_log' (properties changed: -x to +x)
=== modified file 'scripts/vgsummarize' (properties changed: -x to +x)
=== modified file 'scripts/zt-wn-compile' (properties changed: -x to +x)
=== modified file 'scripts/zt-wn-get' (properties changed: -x to +x)
=== modified file 'src/compiler/parser/copyparser.sh.cmake' (properties changed: -x to +x)
=== modified file 'test/apitest_spec' (properties changed: -x to +x)
=== modified file 'test/cmp_5thelem_test_results' (properties changed: -x to +x)
=== modified file 'test/cmp_ctest_logs' (properties changed: -x to +x)
=== modified file 'test/collect_ctest_log_errors' (properties changed: -x to +x)
=== modified file 'test/coverity/update.sh' (properties changed: -x to +x)
=== modified file 'test/ctest_query_emu' (properties changed: -x to +x)
=== modified file 'test/ctest_time_elapsed' (properties changed: -x to +x)
=== modified file 'test/ctest_undef_funcs' (properties changed: -x to +x)
=== modified file 'test/http-test-data/cgi-bin/test-binary' (properties changed: -x to +x)
=== modified file 'test/http-test-data/cgi-bin/test-text' (properties changed: -x to +x)
=== modified file 'test/http-test-data/cgi-bin/test-xml' (properties changed: -x to +x)
=== modified file 'test/rbkt/Scripts/cmp_ctest_logs' (properties changed: -x to +x)
=== modified file 'test/rbkt/Scripts/lbkt.sh.in' (properties changed: -x to +x)
=== modified file 'test/rbkt/Scripts/rbkt.sh.in' (properties changed: -x to +x)
=== modified file 'test/rbkt/Scripts/tidy_xmlfrag' (properties changed: -x to +x)
=== modified file 'test/rbkt/Scripts/w3c/import_w3c_full_text_testsuite.sh' (properties changed: -x to +x)
=== modified file 'test/rbkt/Scripts/w3c/import_w3c_testsuite.sh' (properties changed: -x to +x)
=== modified file 'test/rbkt/update_iter_plans' (properties changed: -x to +x)
=== modified file 'test/update/Scripts/import_w3c_update_testsuite.sh' (properties changed: -x to +x)
=== modified file 'test/zorbatest/compile' (properties changed: -x to +x)
=== modified file 'test/zorbatest/idx_snapshots' (properties changed: -x to +x)
=== modified file 'test/zorbatest/integrate' (properties changed: -x to +x)
=== modified file 'test/zorbatest/load_test_env' (properties changed: -x to +x)
=== modified file 'test/zorbatest/on_build_failure' (properties changed: -x to +x)
=== modified file 'test/zorbatest/process_test_results' (properties changed: -x to +x)
=== modified file 'test/zorbatest/report.xqy' (properties changed: -x to +x)
=== modified file 'test/zorbatest/report_acceptance_failure' (properties changed: -x to +x)
=== modified file 'test/zorbatest/run_fixture' (properties changed: -x to +x)
=== modified file 'test/zorbatest/run_pending_tests' (properties changed: -x to +x)
=== modified file 'test/zorbatest/run_test' (properties changed: -x to +x)
=== modified file 'test/zorbatest/setup_framework' (properties changed: -x to +x)
=== modified file 'test/zorbatest/testing/tests/acceptance/rbkt/run' (properties changed: -x to +x)
=== modified file 'test/zorbatest/testing/tests/acceptance/valgrind/run' (properties changed: -x to +x)
-- 
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/fix-execute-scripts into lp:zorba

2012-08-28 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
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/fix-execute-scripts into lp:zorba

2012-08-28 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/fix-execute-scripts into lp:zorba 
has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
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/bang_operator into lp:zorba

2012-08-28 Thread Zorba Build Bot
Validation queue job bang_operator-2012-08-28T20-47-02.025Z is finished. The 
final status was:

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

2012-08-28 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve > 1, Disapprove < 1, 
Needs Fixing < 1, Pending < 1. Got: 2 Approve, 2 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bang_operator/+merge/121347
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/bang_operator into lp:zorba

2012-08-28 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bang_operator into lp:zorba has 
been updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bang_operator/+merge/121347
-- 
https://code.launchpad.net/~zorba-coders/zorba/bang_operator/+merge/121347
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/fix-execute-scripts into lp:zorba

2012-08-28 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/fix-execute-scripts-2012-08-28T21-01-12.403Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
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/fix-execute-scripts into lp:zorba

2012-08-28 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
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/fix-execute-scripts into lp:zorba

2012-08-28 Thread Juan Zacarias
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
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/fix-execute-scripts into lp:zorba

2012-08-28 Thread Zorba Build Bot
Validation queue job fix-execute-scripts-2012-08-28T21-01-12.403Z is finished. 
The final status was:

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

2012-08-28 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/fix-execute-scripts into lp:zorba 
has been updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-execute-scripts/+merge/121706
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/bug938320 into lp:zorba

2012-08-28 Thread Rodolfo Ochoa
@Chris
ZorbaIOStream is the base class that should be used in other languages to 
stream to/from Zorba, it works as a wrapper for other language stream classes, 
for example, in Java this class becomes:
ZorbaInputWrapper to manage InputStream Objects
ZorbaOutputWrapper to manage OutputStream Objects
ZorbaReaderWrapper to manage Reader Objects
ZorbaWriterWrapper to manage Writer Objects

The documentation is now correct.

@Cezar
Changes completed, now is strict result comparison.
Note: these changes also showed a bug on XQJ's serialization.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug938320/+merge/118194
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/bug938320 into lp:zorba

2012-08-28 Thread Cezar Andrei
Review: Approve


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

2012-08-28 Thread Chris Hillery
Ah, ok, I get it. Thanks for the explanation. I'll review the rest of the code 
soon.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug938320/+merge/118194
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