Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/fn-type-inference into lp:zorba

2011-12-20 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/fn-type-inference/+merge/86339
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/fn-type-inference into lp:zorba

2011-12-20 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/fn-type-inference into lp:zorba 
has been updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
There are additional revisions which have not been approved in review. Please 
seek review and approval of these new revisions.
-- 
https://code.launchpad.net/~zorba-coders/zorba/fn-type-inference/+merge/86339
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/fn-type-inference into lp:zorba

2011-12-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/fn-type-inference into lp:zorba 
has been updated.

Status: Approved => Needs review

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

2011-12-20 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/fn-type-inference into lp:zorba 
has been updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/fn-type-inference-2011-12-20T10-10-18.743Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/fn-type-inference/+merge/86339
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/markos-scratch into lp:zorba

2011-12-20 Thread Markos Zaharioudakis
Markos Zaharioudakis has proposed merging lp:~zorba-coders/zorba/markos-scratch 
into lp:zorba.

Requested reviews:
  Markos Zaharioudakis (markos-za)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/86380

allow for the default element and function namespaces to be set multiple times 
via the c++ api
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/86380
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/api/staticcontextimpl.cpp'
--- src/api/staticcontextimpl.cpp	2011-12-20 09:04:58 +
+++ src/api/staticcontextimpl.cpp	2011-12-20 11:12:31 +
@@ -194,7 +194,7 @@
 
 /
 String
-StaticContextImpl::getNamespaceURIByPrefix( const String& aPrefix ) const
+StaticContextImpl::getNamespaceURIByPrefix(const String& aPrefix) const
 {
   try
   {
@@ -220,12 +220,11 @@
 
 /
 bool
-StaticContextImpl::setDefaultElementAndTypeNamespace( const String& aURI )
+StaticContextImpl::setDefaultElementAndTypeNamespace(const String& aURI)
 {
   ZORBA_TRY
 const zstring& lURI = Unmarshaller::getInternalString(aURI);
-QueryLoc loc;
-theCtx->set_default_elem_type_ns(lURI, loc);
+theCtx->set_default_elem_type_ns(lURI, false, QueryLoc::null);
 return true;
   ZORBA_CATCH
   return false;
@@ -236,7 +235,7 @@
 
 /
 String
-StaticContextImpl::getDefaultElementAndTypeNamespace( ) const
+StaticContextImpl::getDefaultElementAndTypeNamespace() const
 {
   try
   {
@@ -258,12 +257,12 @@
 
 /
 bool
-StaticContextImpl::setDefaultFunctionNamespace( const String& aURI )
+StaticContextImpl::setDefaultFunctionNamespace(const String& aURI)
 {
   ZORBA_TRY
 const zstring& lURI = Unmarshaller::getInternalString(aURI);
 QueryLoc loc;
-theCtx->set_default_function_ns(lURI, loc);
+theCtx->set_default_function_ns(lURI, false, loc);
 return true;
   ZORBA_CATCH
   return false;

=== modified file 'src/compiler/translator/translator.cpp'
--- src/compiler/translator/translator.cpp	2011-12-20 09:04:58 +
+++ src/compiler/translator/translator.cpp	2011-12-20 11:12:31 +
@@ -1981,7 +1981,7 @@
   RAISE_ERROR(err::XQST0070, loc, ERROR_PARAMS(pfx, ZED(NoRebindPrefix)));
 
 if (prefix->get_default_bit())
-  theSctx->set_default_elem_type_ns(targetNS, loc);
+  theSctx->set_default_elem_type_ns(targetNS, true, loc);
 
 if (! pfx.empty())
   theSctx->bind_ns(pfx, targetNS, loc, err::XQST0033);
@@ -2658,10 +2658,10 @@
   switch (v.get_mode())
   {
   case ParseConstants::ns_element_default:
-theSctx->set_default_elem_type_ns(v.get_default_namespace(), loc);
+theSctx->set_default_elem_type_ns(v.get_default_namespace(), true, loc);
 break;
   case ParseConstants::ns_function_default:
-theSctx->set_default_function_ns(v.get_default_namespace(), loc);
+theSctx->set_default_function_ns(v.get_default_namespace(), true, loc);
 break;
   }
   return NULL;
@@ -10841,35 +10841,29 @@
 {
   if ((ZSTREQ(prefix, "xml") && !ZSTREQ(uri, XML_NS)))
   {
-throw XQUERY_EXCEPTION(
-  err::XQST0070,
-  ERROR_PARAMS( prefix, ZED( NoRebindPrefix ) ),
-  ERROR_LOC( loc )
-);
+RAISE_ERROR(err::XQST0070, loc,
+ERROR_PARAMS(prefix, ZED(NoRebindPrefix)));
   }
 
   if ((ZSTREQ(uri, XML_NS) && !ZSTREQ(prefix, "xml")) ||
ZSTREQ(uri, XMLNS_NS))
   {
-throw XQUERY_EXCEPTION(
-  err::XQST0070, ERROR_PARAMS( uri, ZED( NoBindURI ) ), ERROR_LOC( loc )
-);
+RAISE_ERROR(err::XQST0070, loc, ERROR_PARAMS(uri, ZED(NoBindURI)));
   }
 
   theSctx->bind_ns(prefix, uri, loc, err::XQST0071);
   theNSCtx->bind_ns(prefix, uri);
 
   if (prefix.empty())
-theSctx->set_default_elem_type_ns(uri, loc);
+theSctx->set_default_elem_type_ns(uri, true, loc);
 }
 else if (valueExpr == NULL)
 {
   if (ZSTREQ(prefix, "xml"))
-throw XQUERY_EXCEPTION(
-  err::XQST0070,
-  ERROR_PARAMS( prefix, ZED( NoRebindPrefix ) ),
-  ERROR_LOC( loc )
-);
+  {
+RAISE_ERROR(err::XQST0070, loc,
+ERROR_PARAMS(prefix, ZED(NoRebindPrefix)));
+  }
 
   // unbind the prefix
   zstring empty;
@@ -10877,7 +10871,7 @@
   theNSCtx->bind_ns(prefix, empty);
 
   if (prefix.empty())
-theSctx->set_default_elem_type_ns(empty, loc);
+theSctx->set_default_elem_type_ns(empty, true, loc);
 }
 else
 {

=== modified file 'src/context/root_static_context.cpp'
--- src/context/root_static_context.cpp	2011-12-20 09:04:58 +
+++ src/context/root_static_context.cpp	2011-12-20 11:12:31 +0

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

2011-12-20 Thread Markos Zaharioudakis
Review: Approve


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

2011-12-20 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/markos-scratch into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/markos-scratch-2011-12-20T11-26-10.94Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/86380
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/markos-scratch into lp:zorba

2011-12-20 Thread Zorba Build Bot
Validation queue job markos-scratch-2011-12-20T11-26-10.94Z is finished. The 
final status was:

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

2011-12-20 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/markos-scratch into lp:zorba has 
been updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/86380
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/86380
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] [Bug 898581] Re: Debugger: syntax error client block

2011-12-20 Thread Gabriel Petrovay
** Branch linked: lp:~zorba-coders/zorba/debugger_enhancements

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/898581

Title:
  Debugger: syntax error client block

Status in Zorba - The XQuery Processor:
  New

Bug description:
  If one submits a query with syntax errors, the debugger command line
  reports the error but it blocks. (On Windows at least)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/898581/+subscriptions

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

2011-12-20 Thread Daniel Turcanu
Review: Approve

Compiled and regenerated exi documentation and it went fine.
-- 
https://code.launchpad.net/~zorba-coders/zorba/fixes_xqdoc/+merge/86103
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:~nbrinza/zorba/bugs into lp:zorba

2011-12-20 Thread Nicolae Brinza
Reposting a comment, as I have incorrectly put it in the description of the 
change:

Markos,

There are some tests in the XQTS with the document-node(schema-element()) node 
test. But they indeed do not cover all the cases. In fact I found a few queries 
involving variable declared "as document-node(schema-element())" and "instance 
of" expressions which did not work correctly in Zorba. I have added a few tests 
to cover them.

-- 
https://code.launchpad.net/~nbrinza/zorba/bugs/+merge/86150
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:~nbrinza/zorba/bugs into lp:zorba

2011-12-20 Thread Nicolae Brinza

I have struggled to reproduce the regression that is reported by the remote 
queue, but I have not been successful: the test passes on my machine. I have 
merged again the trunk into the branch and I'm resubmitting it again in the 
hopes it was a problem with the merge. Please re-approve.



-- 
https://code.launchpad.net/~nbrinza/zorba/bugs/+merge/86150
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:~nbrinza/zorba/bugs into lp:zorba

2011-12-20 Thread Nicolae Brinza
Nicolae Brinza has proposed merging lp:~nbrinza/zorba/bugs into lp:zorba.

Requested reviews:
  Markos Zaharioudakis (markos-za)
  Matthias Brantner (matthias-brantner)
Related bugs:
  Bug #867256 in Zorba: ""instance of document-node(element(x))" in predicate"
  https://bugs.launchpad.net/zorba/+bug/867256

For more details, see:
https://code.launchpad.net/~nbrinza/zorba/bugs/+merge/86408

Fix for lp: bug #867256 - test Steps-leading-lone-slash-8a is failing. 

-- 
https://code.launchpad.net/~nbrinza/zorba/bugs/+merge/86408
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'ChangeLog'
--- ChangeLog	2011-12-20 11:50:23 +
+++ ChangeLog	2011-12-20 14:39:27 +
@@ -1,5 +1,9 @@
 Zorba - The XQuery Processor
 
+version 2.x
+
+  * Fixed bug #867256 (document-node(element(x)) types and tests were not working correctly)
+   
 version 2.2
 
   * Caching of results for recursive functions with atomic parameter and return types.

=== modified file 'src/types/typeimpl.cpp'
--- src/types/typeimpl.cpp	2011-07-01 05:22:12 +
+++ src/types/typeimpl.cpp	2011-12-20 14:39:27 +
@@ -361,7 +361,7 @@
 
 
 bool NodeXQType::is_subtype(
-const TypeManager* tm, 
+const TypeManager* tm,
 const NodeXQType& supertype,
 const QueryLoc& loc) const
 {
@@ -443,7 +443,7 @@
 
 
 bool NodeXQType::is_supertype(
-const TypeManager* tm, 
+const TypeManager* tm,
 const store::Item* subitem,
 const QueryLoc& loc) const
 {
@@ -488,14 +488,29 @@
 }
   }
 
-  if (m_node_kind != store::StoreConsts::elementNode && 
-  m_node_kind != store::StoreConsts::attributeNode)
+  // document-node( E ) matches any document node that contains exactly one element
+  // node, optionally accompanied by one or more comment and processing instruction
+  // nodes, if E is an ElementTest or SchemaElementTest that matches the element node.
+  bool is_element_test = (
+  m_node_kind == store::StoreConsts::documentNode &&
+  m_content_type != NULL &&
+  m_content_type->type_kind() == XQType::NODE_TYPE_KIND);
+
+  if (m_node_kind != store::StoreConsts::elementNode &&
+  m_node_kind != store::StoreConsts::attributeNode &&
+  !is_element_test)
 return true;
 
   if (m_content_type == NULL ||
   m_content_type->type_kind() == XQType::ANY_TYPE_KIND)
 return true;
 
+  if (is_element_test)
+  {
+xqtref_t documentNodeType = tm->create_value_type(subitem, loc);
+return TypeOps::is_subtype(tm, *documentNodeType, *this);
+  }
+
   xqtref_t subContentType = tm->create_named_type(subitem->getType(),
   TypeConstants::QUANT_ONE,
   loc,

=== added file 'test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-03.xml.res'
--- test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-03.xml.res	1970-01-01 00:00:00 +
+++ test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-03.xml.res	2011-12-20 14:39:27 +
@@ -0,0 +1,1 @@
+true
\ No newline at end of file

=== added file 'test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-05.xml.res'
--- test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-05.xml.res	1970-01-01 00:00:00 +
+++ test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-05.xml.res	2011-12-20 14:39:27 +
@@ -0,0 +1,1 @@
+false
\ No newline at end of file

=== added file 'test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-06.xml.res'
--- test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-06.xml.res	1970-01-01 00:00:00 +
+++ test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-06.xml.res	2011-12-20 14:39:27 +
@@ -0,0 +1,1 @@
+false
\ No newline at end of file

=== added file 'test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-07.xml.res'
--- test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-07.xml.res	1970-01-01 00:00:00 +
+++ test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-07.xml.res	2011-12-20 14:39:27 +
@@ -0,0 +1,1 @@
+true
\ No newline at end of file

=== added file 'test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-08.xml.res'
--- test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-08.xml.res	1970-01-01 00:00:00 +
+++ test/rbkt/ExpQueryResults/zorba/schemas/doc-node-schema-elem-test-08.xml.res	2011-12-20 14:39:27 +
@@ -0,0 +1,1 @@
+false
\ No newline at end of file

=== modified file 'test/rbkt/Queries/CMakeLists.txt'
--- test/rbkt/Queries/CMakeLists.txt	2011-12-20 09:04:58 +
+++ test/rbkt/Queries/CMakeLists.txt	2011-12-20 14:39:27 +
@@ -210,7 +210,6 @@
 
 IF (FOUND_XQTS AND NOT ZORBA_TEST_W3C_TO_SUBMIT_RESULTS)
 
-  EXPECTED_FAILURE(test/rbkt/w3c_testsuite/XQuery/PathExpr/Steps/Steps-leading-lone-slash-8a 3408285)
   EXPECTED_FAILURE(test/rbkt/w3c_testsuite/XQuery/Functions/QNameFunc/NamespaceURIForPrefixFunc/K2-NamespaceURIForPr

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

2011-12-20 Thread David Graf
Review: Approve

I reviewed CMakeConfiguration.txt, bin/CMakeLists.txt, 
bin/debugger/config.h.cmake.

Looks good to me. I was only thinking if it would be a good idea to remove the 
option ZORBA_WITH_DEBUGGER_CLIENT (generating the debugger client if debugging 
is switched on). The less options to better.
-- 
https://code.launchpad.net/~zorba-coders/zorba/debugger_client/+merge/86305
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/fixes_xqdoc into lp:zorba

2011-12-20 Thread Sorin Marian Nasoi
The proposal to merge lp:~zorba-coders/zorba/fixes_xqdoc into lp:zorba has been 
updated.

Commit Message changed to:

Fixed the title for the links of the functions in the function summary table.
Fixed the function parameters.
Small fixes for better XHTML 1.0 conformance.

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

2011-12-20 Thread Sorin Marian Nasoi
Review: Approve


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

2011-12-20 Thread Daniel Turcanu
Review: Approve


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

2011-12-20 Thread Sorin Marian Nasoi
The proposal to merge lp:~zorba-coders/zorba/fixes_xqdoc into lp:zorba has been 
updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/fixes_xqdoc-2011-12-20T15-27-14.76Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/fixes_xqdoc/+merge/86417
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/fixes_xqdoc into lp:zorba

2011-12-20 Thread Zorba Build Bot
Validation queue job fixes_xqdoc-2011-12-20T15-27-14.76Z is finished. The final 
status was:

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

2011-12-20 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/fixes_xqdoc into lp:zorba has been 
updated.

Status: Approved => Merged

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

2011-12-20 Thread Gabriel Petrovay
Use the conversation "Can we please have libedit on the build server?" for 
opinions about ZORBA_WITH_DEBUGGER_CLIENT.
-- 
https://code.launchpad.net/~zorba-coders/zorba/debugger_client/+merge/86305
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/debugger_client into lp:zorba

2011-12-20 Thread Gabriel Petrovay
The proposal to merge lp:~zorba-coders/zorba/debugger_client into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2011-12-20 Thread Gabriel Petrovay
The proposal to merge lp:~zorba-coders/zorba/debugger_client into lp:zorba has 
been updated.

Commit Message changed to:

Mature zorba debugger with graceful degradation if libedit not found.

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/debugger_client-2011-12-20T16-40-29.862Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/debugger_client/+merge/86305
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/debugger_client into lp:zorba

2011-12-20 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/debugger_client into lp:zorba 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:272 
(message):
  Validation queue job debugger_client-2011-12-20T16-40-29.862Z 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/debugger_client/+merge/86305
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/debugger_client into lp:zorba

2011-12-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/debugger_client into lp:zorba has 
been updated.

Status: Approved => Needs review

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

2011-12-20 Thread Matthias Brantner
The proposal to merge lp:~nbrinza/zorba/bugs into lp:zorba has been updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bugs-2011-12-20T16-46-13.591Z/log.html
-- 
https://code.launchpad.net/~nbrinza/zorba/bugs/+merge/86408
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:~nbrinza/zorba/bugs into lp:zorba

2011-12-20 Thread Matthias Brantner
The proposal to merge lp:~nbrinza/zorba/bugs into lp:zorba has been updated.

Commit Message changed to:

Fix for lp: bug #867256 - test Steps-leading-lone-slash-8a is failing.

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

2011-12-20 Thread Zorba Build Bot
The attempt to merge lp:~nbrinza/zorba/bugs into lp:zorba failed. Below is the 
output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:272 
(message):
  Validation queue job bugs-2011-12-20T16-46-13.591Z 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/~nbrinza/zorba/bugs/+merge/86408
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:~nbrinza/zorba/bugs into lp:zorba

2011-12-20 Thread Zorba Build Bot
The proposal to merge lp:~nbrinza/zorba/bugs into lp:zorba has been updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~nbrinza/zorba/bugs/+merge/86408
-- 
https://code.launchpad.net/~nbrinza/zorba/bugs/+merge/86408
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/debugger_client into lp:zorba

2011-12-20 Thread Gabriel Petrovay
The proposal to merge lp:~zorba-coders/zorba/debugger_client into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/debugger_client-2011-12-20T17-21-18.291Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/debugger_client/+merge/86305
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/debugger_client into lp:zorba

2011-12-20 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/debugger_client into lp:zorba 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:272 
(message):
  Validation queue job debugger_client-2011-12-20T17-21-18.291Z 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/debugger_client/+merge/86305
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/debugger_client into lp:zorba

2011-12-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/debugger_client into lp:zorba has 
been updated.

Status: Approved => Needs review

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

2011-12-20 Thread Gabriel Petrovay
The proposal to merge lp:~zorba-coders/zorba/debugger_client into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/debugger_client-2011-12-20T18-12-16.752Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/debugger_client/+merge/86305
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/debugger_client into lp:zorba

2011-12-20 Thread Zorba Build Bot
Validation queue job debugger_client-2011-12-20T18-12-16.752Z is finished. The 
final status was:

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

2011-12-20 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/debugger_client into lp:zorba has 
been updated.

Status: Approved => Merged

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

2011-12-20 Thread Rodolfo Ochoa
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Status: Approved => Needs review

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

2011-12-20 Thread Rodolfo Ochoa
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Status: Needs review => Approved

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

2011-12-20 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Commit Message changed to:

-Added createDayTimeDuration
-Added createYearMonthDuration
-Added createDocumentNode
-Added createCommentNode
-Added createPiNode

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

2011-12-20 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/ItemFactory/+merge/86125
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/ItemFactory into lp:zorba

2011-12-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/ItemFactory/+merge/86125
-- 
https://code.launchpad.net/~zorba-coders/zorba/ItemFactory/+merge/86125
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] [Bug 907070] [NEW] Item API needs operator<

2011-12-20 Thread Paul J. Lucas
Public bug reported:

To emit the string value of an Item to an ostream, you currently have to
use getStringValue() or getStringValue2(). This is inefficient since a
string that is otherwise not needed needs to be created.

Instead, there should be a global operator<< defined:

std::ostream& operator<<( std::ostream&, store::Item const& );

Its implementation could simply call a new protected, pure virtual
member function for Item:

virtual void emit( std::ostream& ) const = 0;

** Affects: zorba
 Importance: Undecided
 Assignee: Matthias Brantner (matthias-brantner)
 Status: New


** Tags: item store

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/907070

Title:
  Item API needs operator<<

Status in Zorba - The XQuery Processor:
  New

Bug description:
  To emit the string value of an Item to an ostream, you currently have
  to use getStringValue() or getStringValue2(). This is inefficient
  since a string that is otherwise not needed needs to be created.

  Instead, there should be a global operator<< defined:

  std::ostream& operator<<( std::ostream&, store::Item const& );

  Its implementation could simply call a new protected, pure virtual
  member function for Item:

  virtual void emit( std::ostream& ) const = 0;

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/907070/+subscriptions

-- 
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] [Bug 907070] Re: Item API needs operator<

2011-12-20 Thread Matthias Brantner
** Changed in: zorba
Milestone: None => 2.2

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/907070

Title:
  Item API needs operator<<

Status in Zorba - The XQuery Processor:
  New

Bug description:
  To emit the string value of an Item to an ostream, you currently have
  to use getStringValue() or getStringValue2(). This is inefficient
  since a string that is otherwise not needed needs to be created.

  Instead, there should be a global operator<< defined:

  std::ostream& operator<<( std::ostream&, store::Item const& );

  Its implementation could simply call a new protected, pure virtual
  member function for Item:

  virtual void emit( std::ostream& ) const = 0;

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/907070/+subscriptions

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

2011-12-20 Thread Rodolfo Ochoa
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/ItemFactory-2011-12-20T21-51-30.924Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/ItemFactory/+merge/86125
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/ItemFactory into lp:zorba

2011-12-20 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:272 
(message):
  Validation queue job ItemFactory-2011-12-20T21-51-30.924Z 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/ItemFactory/+merge/86125
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/ItemFactory into lp:zorba

2011-12-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Status: Approved => Needs review

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

2011-12-20 Thread Rodolfo Ochoa
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/ItemFactory-2011-12-20T22-25-18.544Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/ItemFactory/+merge/86125
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/ItemFactory into lp:zorba

2011-12-20 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:272 
(message):
  Validation queue job ItemFactory-2011-12-20T22-25-18.544Z 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/ItemFactory/+merge/86125
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/ItemFactory into lp:zorba

2011-12-20 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Status: Approved => Needs review

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

2011-12-20 Thread Rodolfo Ochoa
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Status: Needs review => Approved

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

2011-12-20 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/ItemFactory-2011-12-20T22-53-17.591Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/ItemFactory/+merge/86125
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/ItemFactory into lp:zorba

2011-12-20 Thread Zorba Build Bot
Validation queue job ItemFactory-2011-12-20T22-53-17.591Z is finished. The 
final status was:

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

2011-12-20 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/ItemFactory into lp:zorba has been 
updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/ItemFactory/+merge/86125
-- 
https://code.launchpad.net/~zorba-coders/zorba/ItemFactory/+merge/86125
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] [Bug 905041] Re: can't redefine Default Function Namespace

2011-12-20 Thread Rodolfo Ochoa
** Changed in: zorba
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/905041

Title:
  can't redefine Default Function Namespace

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  Instead I get the error:
  static error [err:XQST0066]: multiple element/type/function namespace 
declarations

  when using StaticContext method: setDefaultFunctionNamespace

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/905041/+subscriptions

-- 
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] [Bug 905039] Re: can't redefine Default Element And Type Namespace

2011-12-20 Thread Rodolfo Ochoa
** Changed in: zorba
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/905039

Title:
  can't redefine Default Element And Type Namespace

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  using setDefaultElementAndTypeNamespace from the StaticContext instead of 
redefining I get the error:
  static error [err:XQST0066]: multiple element/type/function namespace 
declarations

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/905039/+subscriptions

-- 
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] [Bug 870347] Re: Strings still in the pool from StaticContext

2011-12-20 Thread Rodolfo Ochoa
** Changed in: zorba
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/870347

Title:
  Strings still in the pool from StaticContext

Status in Zorba - The XQuery Processor:
  Invalid

Bug description:
  I'm having the following error:
  i = 15 String http://www.foo.com is still in the pool
  i = 137 String http://www.w3.org/2005/xquery-local-functions is still in the 
pool
  Zorba Internal Fatal Error in 
C:\zorba\repo\xqj\src\store\naive\string_pool.cpp:42:"count == 0": condition 
failed: 2 strings remain in the string pool

  the basic steps to reproduce are the following:

void* aStore = zorba::StoreManager::getStore();
Zorba* aZorba = Zorba::getInstance(lStore);
StaticContext_t lContext = aZorba->createStaticContext();
lContext->addNamespace("foo", "http://www.foo.com";);
XQuery_t aQuery = aZorba->compileQuery("", lContext);
aQuery->execute();
lZorba->shutdown();
zorba::StoreManager::shutdownStore(lStore);

  Zorba crashes and report the error.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/870347/+subscriptions

-- 
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