[Zorba-coders] [Bug 857842] Re: Assertion failed with simple content element with comments

2011-10-06 Thread Matthias Brantner
** Changed in: zorba
Milestone: None => 2.1

-- 
You received this bug notification because you are a member of Zorba
Coders, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/857842

Title:
  Assertion failed with simple content element with comments

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following query causes an assertion failure at line 3465 in
  node_items.cpp

  import schema namespace s = "http://www.xqdoc.org/1.0";;

  let $hostInfo :=http://www.xqdoc.org/1.0";>
  
  TS4J5UJ
  N/A
  
  
  DGQEb8Q
  
  

  return
validate { $hostInfo }

  If i understand correctly the validator should construct only one text
  child for  with value "TSF4J5UJ"

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/857842/+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 868258] Re: Assertion failed with collection delete

2011-10-06 Thread Matthias Brantner
** Changed in: zorba
Milestone: None => 2.1

-- 
You received this bug notification because you are a member of Zorba
Coders, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/868258

Title:
  Assertion failed with collection delete

Status in Zorba - The XQuery Processor:
  New

Bug description:
  Trying to delete a collection twice during the same snapshot causes an
  assertion to fail.

  import module namespace ddl = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/ddl";;
  import module namespace dml = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/dml";;

  ddl:create(xs:QName("ddl:coll"),(,));
  (
  ddl:delete(xs:QName("ddl:coll")),
  ddl:delete(xs:QName("ddl:coll"))
  );

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/868258/+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 857263] Re: Build/install doc is terrible

2011-10-06 Thread Matthias Brantner
** Changed in: zorba
Milestone: None => 2.1

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

Title:
  Build/install doc is terrible

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The build.dox, installation.dox, build_ubuntu.dox, and several related
  files have numerous errors. Here are some:

  - build.dox mentions there are a number of build options, but does not
  document them. (It previously pointed to a page of *XQuery* options,
  but I deleted that link.)

  - installation.dox includes stuff about building (not just
  installing), and that stuff is all Makefile-specific.

  - installation.dox refers to setting LD_LIBRARY_PATH and so on which
  is not, as far as I know, required. The final section about ldconfig
  on Ubuntu is also obsolete and wrong as far as I know.

  - build_ubuntu.dox is not entirely accurate, but a lot of it is
  redundant with the main build instructions.

  - If we have build_ubuntu.dox, we should probably have separate pages
  for (at least) Fedora, Windows, and MacOS too. There is a lot of
  information specific to Linux, Windows, and MacOS on the main build
  page that could probably be spread around.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/857263/+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 862089] Re: Split binary/xq install directories for modules

2011-10-06 Thread Matthias Brantner
** Changed in: zorba
Milestone: None => 2.1

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

Title:
  Split binary/xq install directories for modules

Status in Zorba - The XQuery Processor:
  New

Bug description:
  This is at the request of the Fedora package maintainer.

  Currently Zorba installs the .xq (and .xsd) files for schemas and the
  .so/.dll files for module external functions into the same directory,
  by default share/zorba-VERSION/modules. This does not meet Fedora
  packaging requirements, which state that any platform-dependent files
  such as .so files must go into lib/lib64 directories. Ideally, non-
  platform dependent files such as .xq and .xsd should be filed in
  share.

  There is another problem with the above scheme: since this directory
  is where non-core modules will install themselves also (and the only
  place Zorba will look for them), they are implicitly tied to Zorba's
  version number even though they should have independent versioning.

  The proposal is to split this into a total of four directories:
  platform-dependent/platform-independent, and Zorba-version-specific
  /non-Zorba-version-specific (ie, core modules vs. non-core modules).
  So, for instance:

  CMAKE_INSTALL_PREFIX/
   share/
modules/
core-modules/
 2.1/
   lib64/
modules/
core-modules/
 2.1/

  where "2.1" is the Zorba version.

  The easy way to do this would be to simply put all of the above on the
  default module-path, and change the install process to put everything
  in the right places. One downside to this is that it means Zorba will
  look in many wrong places when doing any URI resolution and when
  loading .so files - it knows it is looking for (say) an .xq file, but
  it will look in the two lib/ directories as well because they're all
  on the same module path.

  A better way to do this would be to separate the concepts inside Zorba
  as well, and have a "URI Path" for all URI resolution which is
  separate from the "module path" which is used for loading external
  function libraries. Zorba could do that for itself easily enough. The
  only issue is what would be the interpretation of --module-path (and
  the corresponding C++ API function) - would that be a backward-
  incompatible change?

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/862089/+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:~fcavalieri/zorba/bugs2 into lp:zorba

2011-10-06 Thread Matthias Brantner
Review: Approve


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

2011-10-06 Thread Matthias Brantner
Review: Approve


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

2011-10-06 Thread Matthias Brantner
Review: Needs Fixing

Not mentioned in ChangeLog

function name too long? node-structural-information

difference between following-in-document-order-of following-of? Following is 
always in document order.

zerr:: => zerr:

creating a structural URI may raise an error. However, non of the functions of 
the module catches the error and adds a query location to it.

-- 
https://code.launchpad.net/~fcavalieri/zorba/structuralrelationships2/+merge/78395
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/identifiers into lp:zorba

2011-10-06 Thread Matthias Brantner
Review: Needs Fixing

Please see the data lifecycle   
   
 documentation about details on management and manipulation of 
collections.
=>
Please see the data lifecycle   
   
 documentation about details on storing nodes in collections or as 
documents.


Computes an immutable and opaque node reference 
=>
Returns an immutable and opaque node reference...

The function returns the empty sequence if the node
that is referenced was deleted.
=>
The function returns the empty sequence if the node
that is referenced does not exist (e.g. because it was deleted or the temporary 
node is not available anymore)

zerr::ZAPI0028
=>
zerr:ZAPI0028

Can any of the functions return ZAPI0029? If so, it's not documented. Same for 
ZAPI0030.


fix indentation in NodeByReferenceIterator (two spaces)
Also, add a space before and after the assignment

Fix comment in FnGenerateIdIterator => remove e.g. z0.1.1.c.50

Why is hasReference still needed?

What is the following change in node_items.cpp for?
513 -theTypesMap = new NodeTypeMap(source->theTypesMap->object_count(), 
false);
514 +theTypesMap = new NodeTypeMap(source->theTypesMap->size(), false);

What is the CopyMode's theCopyReference member for? Isn't it always false?
-- 
https://code.launchpad.net/~zorba-coders/zorba/identifiers/+merge/78383
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:~matthias-brantner/zorba/bug-fixing into lp:zorba/data-converters-module

2011-10-06 Thread noreply
The proposal to merge lp:~matthias-brantner/zorba/bug-fixing into 
lp:zorba/data-converters-module has been updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~matthias-brantner/zorba/bug-fixing/+merge/78515
-- 
https://code.launchpad.net/~matthias-brantner/zorba/bug-fixing/+merge/78515
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-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:~matthias-brantner/zorba/bug-fixing into lp:zorba/data-converters-module

2011-10-06 Thread Zorba Build Bot
Validation queue job bug-fixing-2011-10-06T21-58-37.448Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~matthias-brantner/zorba/bug-fixing/+merge/78515
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-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:~matthias-brantner/zorba/bug-fixing into lp:zorba/data-converters-module

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-fixing-2011-10-06T21-58-37.448Z/log.html
-- 
https://code.launchpad.net/~matthias-brantner/zorba/bug-fixing/+merge/78515
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-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:~matthias-brantner/zorba/bug-fixing into lp:zorba/data-converters-module

2011-10-06 Thread Matthias Brantner
The proposal to merge lp:~matthias-brantner/zorba/bug-fixing into 
lp:zorba/data-converters-module has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~matthias-brantner/zorba/bug-fixing/+merge/78515
-- 
https://code.launchpad.net/~matthias-brantner/zorba/bug-fixing/+merge/78515
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-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:~matthias-brantner/zorba/bug-fixing into lp:zorba/data-converters-module

2011-10-06 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~matthias-brantner/zorba/bug-fixing/+merge/78515
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-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:~matthias-brantner/zorba/bug-fixing into lp:zorba/data-converters-module

2011-10-06 Thread Matthias Brantner
Matthias Brantner has proposed merging lp:~matthias-brantner/zorba/bug-fixing 
into lp:zorba/data-converters-module.

Requested reviews:
  Matthias Brantner (matthias-brantner)

For more details, see:
https://code.launchpad.net/~matthias-brantner/zorba/bug-fixing/+merge/78515

fix a broken link in the documentation 
-- 
https://code.launchpad.net/~matthias-brantner/zorba/bug-fixing/+merge/78515
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-module.
=== modified file 'src/com/zorba-xquery/www/modules/converters/json.xq'
--- src/com/zorba-xquery/www/modules/converters/json.xq	2011-08-18 22:09:48 +
+++ src/com/zorba-xquery/www/modules/converters/json.xq	2011-10-06 21:56:26 +
@@ -31,7 +31,7 @@
   : Both types of functions are available to parse and serialize two
   : types of XDM-JSON mappings:the first mapping called in this document 
   : simple XDM-JSON has been
-  : http://snelson.org.uk/archives/2008/02/parsing_json_in.php#more";>
+  : http://john.snelson.org.uk/parsing-json-into-xquery";>
   : proposed by John Snelsonthe second mapping is called 
   : http://jsonml.org/";>JsonMLIn the following, we
   : briefly describe both mappings.
@@ -62,7 +62,7 @@
   : @author Sorin Nasoi
   : @library http://www.digip.org/jansson/";>Jansson library for encoding, decoding and manipulating JSON data
   :
-  : @see http://snelson.org.uk/archives/2008/02/parsing_json_in.php#more";>Mapping proposed by John Snelson
+  : @see http://john.snelson.org.uk/parsing-json-into-xquery";>Mapping proposed by John Snelson
   : @see http://jsonml.org"; target="_blank">JSonML
   : @see http://www.digip.org/jansson/doc/2.0/";>Jansson library for encoding, decoding and manipulating JSON data
   : @project data processing/data converters

-- 
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:~ceejatec/zorba/sf-2.0-branch into lp:~zorba-coders/zorba/2.0

2011-10-06 Thread noreply
The proposal to merge lp:~ceejatec/zorba/sf-2.0-branch into 
lp:~zorba-coders/zorba/2.0 has been updated.

Status: Needs review => Merged

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/sf-2.0-branch/+merge/76823
-- 
https://code.launchpad.net/~ceejatec/zorba/sf-2.0-branch/+merge/76823
Your team Zorba Coders is subscribed to branch lp:~zorba-coders/zorba/2.0.

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


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

2011-10-06 Thread Federico Cavalieri
The proposal to merge lp:~zorba-coders/zorba/identifiers into lp:zorba has been 
updated.

Description changed to:

Changed the implementation of the reference module.
Now the module provides functions to compute an immutable and opaque reference
for any node, either temporary or stored in a collection and for retrieving
nodes given their identifier. The identifiers are immutable, i.e. a node
identifier do not change during the node lifetime. Identifiers are also
unique, in that, two nodes with different identities have different identifiers.
A node, at any time during its lifetime, can be retrieved by its identifier.

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

2011-10-06 Thread Federico Cavalieri
The proposal to merge lp:~zorba-coders/zorba/identifiers into lp:zorba has been 
updated.

Commit Message changed to:

Changed the implementation of the reference module.
Now the module provides functions to compute an immutable and opaque reference
for any node, either temporary or stored in a collection and for retrieving
nodes given their identifier. The identifiers are immutable, i.e. a node
identifier do not change during the node lifetime. Identifiers are also
unique, in that, two nodes with different identities have different identifiers.
A node, at any time during its lifetime, can be retrieved by its identifier.

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

2011-10-06 Thread Federico Cavalieri
I think identifies was identities.
Fixing again
-- 
https://code.launchpad.net/~zorba-coders/zorba/identifiers/+merge/78383
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/identifiers into lp:zorba

2011-10-06 Thread Federico Cavalieri
Thanks,

I fixed 
a generated identifier has never been generated before.
with
in that two different nodes will never have identical identifiers.

Is this ok?




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

2011-10-06 Thread Matthias Brantner
Review: Needs Fixing

Minor comments from Ghislain;

node-reference.xq
line 41: do -> does
line 42: in that, a generated identifier has never been generated before. -> in 
that two nodes with different identifies will never have identical identifiers.
("generate" is an implementation detail).
Same for lines 73/74.
line 96: missing newline

nodes.h
line 366: node-by-identifier -> node-by-reference?
-- 
https://code.launchpad.net/~zorba-coders/zorba/identifiers/+merge/78383
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:~danielturcanu/zorba/mytrunk into lp:zorba

2011-10-06 Thread Daniel Turcanu
So you propose a function like file:resolve-path-to-uri($baseUri, $filePath) ?
I guess it's fine too.
-- 
https://code.launchpad.net/~danielturcanu/zorba/mytrunk/+merge/78253
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:~fcavalieri/zorba/bugs2 into lp:zorba

2011-10-06 Thread Zorba Build Bot
The proposal to merge lp:~fcavalieri/zorba/bugs2 into lp:zorba has been updated.

Status: Approved => Needs review

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

2011-10-06 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve > 0, Disapprove < 1. 
Got: 1 Pending.
-- 
https://code.launchpad.net/~fcavalieri/zorba/bugs2/+merge/78401
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:~fcavalieri/zorba/bugs2 into lp:zorba

2011-10-06 Thread Zorba Build Bot
Validation queue job bugs2-2011-10-06T13-02-59.302Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~fcavalieri/zorba/bugs2/+merge/78401
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:~fcavalieri/zorba/bugs into lp:zorba

2011-10-06 Thread Zorba Build Bot
The proposal to merge lp:~fcavalieri/zorba/bugs into lp:zorba has been updated.

Status: Approved => Needs review

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

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bugs2-2011-10-06T13-02-59.302Z/log.html
-- 
https://code.launchpad.net/~fcavalieri/zorba/bugs2/+merge/78401
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:~fcavalieri/zorba/bugs into lp:zorba

2011-10-06 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve > 0, Disapprove < 1. 
Got: 1 Pending.
-- 
https://code.launchpad.net/~fcavalieri/zorba/bugs/+merge/78396
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:~fcavalieri/zorba/bugs into lp:zorba

2011-10-06 Thread Zorba Build Bot
Validation queue job bugs-2011-10-06T12-43-59.901Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~fcavalieri/zorba/bugs/+merge/78396
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:~fcavalieri/zorba/bugs2 into lp:zorba

2011-10-06 Thread Federico Cavalieri
The proposal to merge lp:~fcavalieri/zorba/bugs2 into lp:zorba has been updated.

Status: Needs review => Approved

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

2011-10-06 Thread Federico Cavalieri
Federico Cavalieri has proposed merging lp:~fcavalieri/zorba/bugs2 into 
lp:zorba.

Requested reviews:
  Markos Zaharioudakis (markos-za)

For more details, see:
https://code.launchpad.net/~fcavalieri/zorba/bugs2/+merge/78401

Fixed bug 868258
-- 
https://code.launchpad.net/~fcavalieri/zorba/bugs2/+merge/78401
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'ChangeLog'
--- ChangeLog	2011-10-05 22:39:18 +
+++ ChangeLog	2011-10-06 12:52:36 +
@@ -41,6 +41,7 @@
   * Fixed bug #863730 (static delete-node* functions don't raise ZDDY0012)
   * Implemented the probe-index-range-value for general indexes
   * Fixed bug #867662 ("nullptr" warning)
+  * Fixed bug #868258 (Assertion failure with two delete collection)
 
 version 2.0.1
 

=== modified file 'src/store/naive/pul_primitives.cpp'
--- src/store/naive/pul_primitives.cpp	2011-09-27 06:25:16 +
+++ src/store/naive/pul_primitives.cpp	2011-10-06 12:52:36 +
@@ -807,7 +807,8 @@
 void UpdDeleteCollection::apply()
 {
   theCollection = GET_STORE().getCollection(theName, theDynamicCollection);
-  assert(theCollection);
+  if (theCollection == NULL)
+return;//If two delete collection are issued in the same snapshot is a noop
   SimpleCollection* collection = static_cast(theCollection.getp());
 
   std::vector indexes;

=== added file 'test/rbkt/ExpQueryResults/zorba/collections/delete_double.xml.res'
--- test/rbkt/ExpQueryResults/zorba/collections/delete_double.xml.res	1970-01-01 00:00:00 +
+++ test/rbkt/ExpQueryResults/zorba/collections/delete_double.xml.res	2011-10-06 12:52:36 +
@@ -0,0 +1,1 @@
+OK
\ No newline at end of file

=== added file 'test/rbkt/Queries/zorba/collections/delete_double.xq'
--- test/rbkt/Queries/zorba/collections/delete_double.xq	1970-01-01 00:00:00 +
+++ test/rbkt/Queries/zorba/collections/delete_double.xq	2011-10-06 12:52:36 +
@@ -0,0 +1,10 @@
+import module namespace ddl = "http://www.zorba-xquery.com/modules/store/dynamic/collections/ddl";;
+import module namespace dml = "http://www.zorba-xquery.com/modules/store/dynamic/collections/dml";;
+
+ddl:create(xs:QName("ddl:coll"),(,));
+(
+ddl:delete(xs:QName("ddl:coll")),
+ddl:delete(xs:QName("ddl:coll"))
+);
+
+"OK"
\ No newline at end of file

-- 
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:~fcavalieri/zorba/bugs into lp:zorba

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bugs-2011-10-06T12-43-59.901Z/log.html
-- 
https://code.launchpad.net/~fcavalieri/zorba/bugs/+merge/78396
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:~fcavalieri/zorba/structuralrelationships2 into lp:zorba

2011-10-06 Thread Zorba Build Bot
The proposal to merge lp:~fcavalieri/zorba/structuralrelationships2 into 
lp:zorba has been updated.

Status: Approved => Needs review

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

2011-10-06 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve > 0, Disapprove < 1. 
Got: 1 Pending.
-- 
https://code.launchpad.net/~fcavalieri/zorba/structuralrelationships2/+merge/78395
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:~fcavalieri/zorba/structuralrelationships2 into lp:zorba

2011-10-06 Thread Zorba Build Bot
Validation queue job structuralrelationships2-2011-10-06T12-27-03.031Z is 
finished. The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~fcavalieri/zorba/structuralrelationships2/+merge/78395
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:~fcavalieri/zorba/bugs into lp:zorba

2011-10-06 Thread Federico Cavalieri
The proposal to merge lp:~fcavalieri/zorba/bugs into lp:zorba has been updated.

Status: Needs review => Approved

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

2011-10-06 Thread Federico Cavalieri
Federico Cavalieri has proposed merging lp:~fcavalieri/zorba/bugs into lp:zorba.

Requested reviews:
  Markos Zaharioudakis (markos-za)

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

Changed output of toString in update_consts.h
-- 
https://code.launchpad.net/~fcavalieri/zorba/bugs/+merge/78396
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/store/api/update_consts.h'
--- src/store/api/update_consts.h	2011-06-21 05:41:24 +
+++ src/store/api/update_consts.h	2011-10-06 12:35:27 +
@@ -126,90 +126,88 @@
 {
   switch(k) 
   {
-  case UP_DELETE:
-return "delete";
-  case UP_INSERT_INTO:
-return "insert_into";
-  case UP_INSERT_INTO_FIRST:
-return "insert_into_first";
-  case UP_INSERT_INTO_LAST:
-return "insert_into_last";
-  case UP_INSERT_BEFORE:
-return "insert_before";
-  case UP_INSERT_AFTER:
-return "insert_after";
-  case UP_INSERT_ATTRIBUTES:
-return "insert_attributes";
-  case UP_REPLACE_CHILD:
-return "replace_child";
-  case UP_REPLACE_ATTRIBUTE:
-return "replace_attribute";
-  case UP_REPLACE_CONTENT:
-return "replace_content";
-  case UP_REPLACE_ATTR_VALUE:
-return "replace_attr_value";
-  case UP_REPLACE_TEXT_VALUE:
-return "replace_text_value";
-  case UP_REPLACE_PI_VALUE:
-return "replace_pi_value";
-  case UP_REPLACE_COMMENT_VALUE:
-return "replace_comment_value";
-  case UP_RENAME_ELEM:
-return "rename_elem";
-  case UP_RENAME_ATTR:
-return "rename_attr";
-  case UP_RENAME_PI:
-return "rename_pi";
-  case UP_PUT:
-return "put";
-  case UP_CREATE_COLLECTION:
-return "create_collection";
-  case UP_COLLECTION:
-return "update_collection";
-  case UP_DELETE_COLLECTION:
-return "delete_collection";
-  case UP_INSERT_INTO_COLLECTION:
-return "insert_into_coll";
-  case UP_INSERT_FIRST_INTO_COLLECTION:
-return "insert_first_into_collection";
-  case UP_INSERT_LAST_INTO_COLLECTION:
-return "insert_last_into_collection";
-  case UP_INSERT_BEFORE_INTO_COLLECTION:
-return "insert_before_into_collection";
-  case UP_INSERT_AFTER_INTO_COLLECTION:
-return "insert_after_into_collection";
-  case UP_INSERT_AT_INTO_COLLECTION:
-return "insert_at_into_collection";
-  case UP_REMOVE_FROM_COLLECTION:
-return "remove_from_collection";
-  case UP_REMOVE_AT_FROM_COLLECTION:
-return "remove_at_from_collection";
-  case UP_CREATE_INDEX:
-return "create index";
-  case UP_DROP_INDEX:
-return "drop index";
-  case UP_REBUILD_INDEX:
-return "refresh index";
-  case UP_ACTIVATE_IC:
-return "activate integrity constraint";
-  case UP_ACTIVATE_FOREIGN_KEY_IC:
-return "activate foreign key integrity constraint";
-  case UP_DEACTIVATE_IC:
-return "deactivate integrity constraint";
-  case UP_CREATE_DOCUMENT:
-return "create document";
-  case UP_DELETE_DOCUMENT:
-return "delete document";
-  case UP_CREATE_HASHMAP:
-return "create hashmap";
-  case UP_DESTROY_HASHMAP:
-return "destroy hashmap";
-  case UP_INSERT_INTO_HASHMAP:
-return "inserto_into_hashmap";
-  case UP_REMOVE_FROM_HASHMAP:
-return "remove_from_hashmap";
-  default:
-return "";
+case UP_DELETE:
+  return "delete";
+case UP_INSERT_INTO:
+  return "insertInto";
+case UP_INSERT_INTO_FIRST:
+  return "insertIntoAsFirst";
+case UP_INSERT_INTO_LAST:
+  return "insertIntoAsLast";
+case UP_INSERT_BEFORE:
+  return "insertBefore";
+case UP_INSERT_AFTER:
+  return "insertAfter";
+case UP_INSERT_ATTRIBUTES:
+  return "insertAttributes";
+case UP_REPLACE_CHILD:
+case UP_REPLACE_ATTRIBUTE:
+  return "replaceNode";
+case UP_REPLACE_CONTENT:
+  return "replaceElementContent";
+case UP_REPLACE_ATTR_VALUE:
+case UP_REPLACE_TEXT_VALUE:
+case UP_REPLACE_PI_VALUE:
+case UP_REPLACE_COMMENT_VALUE:
+  return "replaceValue";
+case UP_RENAME_ELEM:
+case UP_RENAME_ATTR:
+case UP_RENAME_PI:
+  return "rename";
+case UP_PUT:
+  return "put";
+case UP_CREATE_COLLECTION:
+  return "createCollection";
+case UP_COLLECTION:
+  return "updateCollection";
+case UP_DELETE_COLLECTION:
+  return "deleteCollection";
+case UP_INSERT_INTO_COLLECTION:
+  return "insertIntoCollection";
+case UP_INSERT_FIRST_INTO_COLLECTION:
+  return "insertFirstIntoCollection";
+case UP_INSERT_LAST_INTO_COLLECTION:
+  return "insertLastIntoCollection";
+case UP_INSERT_BEFORE_INTO_COLLECTION:
+  return "insertBeforeIntoCollection";
+case UP_INSERT_AFTER_INTO_COLLECTION:
+  return "insertAfterIntoCollection";
+case UP_INSERT_AT_INTO_COLLECTION:
+  return "insertAtIntoCollection";
+case UP_REMOVE_FROM_COLLECTION:
+  return "removeFromCollection";
+case UP_REMOVE_AT_FROM_COLLECTION:
+  return "removeAtFromCollection";
+case UP_CREATE_INDEX:
+  return "createIndex";

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

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/structuralrelationships2-2011-10-06T12-27-03.031Z/log.html
-- 
https://code.launchpad.net/~fcavalieri/zorba/structuralrelationships2/+merge/78395
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:~fcavalieri/zorba/structuralrelationships2 into lp:zorba

2011-10-06 Thread Federico Cavalieri
The proposal to merge lp:~fcavalieri/zorba/structuralrelationships2 into 
lp:zorba has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~fcavalieri/zorba/structuralrelationships2/+merge/78395
-- 
https://code.launchpad.net/~fcavalieri/zorba/structuralrelationships2/+merge/78395
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:~danielturcanu/zorba/mytrunk into lp:zorba

2011-10-06 Thread Chris Hillery
Sorry, but we implement a spec. You've suggested at least two changes which 
would break our compliance with that spec, so I don't have much choice but to 
quote the spec back at you.

It sounds like what you want would be best served by an extension to the Expath 
file module. As I said in my previous note, I'd certainly support you if you 
wanted to propose adding the two-argument form of file:path-to-uri(). It would 
be easy to implement, since we already have this functionality in the C++ API 
(zorba::filesystem_path::normalize_path()). Alternately, you could introduce a 
new internal module for your needs, or even add a "change working directory" 
function to the system module - I'd ask on zorba-coders for comments if you're 
considering either of those options.
-- 
https://code.launchpad.net/~danielturcanu/zorba/mytrunk/+merge/78253
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:~davidagraf/zorba/allow_c_files into lp:zorba

2011-10-06 Thread noreply
The proposal to merge lp:~davidagraf/zorba/allow_c_files into lp:zorba has been 
updated.

Status: Approved => Merged

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

2011-10-06 Thread Zorba Build Bot
Validation queue job allow_c_files-2011-10-06T10-58-01.553Z is finished. The 
final status was:

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

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/allow_c_files-2011-10-06T10-58-01.553Z/log.html
-- 
https://code.launchpad.net/~davidagraf/zorba/allow_c_files/+merge/77816
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:~ceejatec/zorba/download-modules into lp:zorba

2011-10-06 Thread noreply
The proposal to merge lp:~ceejatec/zorba/download-modules into lp:zorba has 
been updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
-- 
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
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:~ceejatec/zorba/download-modules into lp:zorba

2011-10-06 Thread Zorba Build Bot
Validation queue job download-modules-2011-10-06T10-42-06.48Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
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:~davidagraf/zorba/allow_c_files into lp:zorba

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~davidagraf/zorba/allow_c_files into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~davidagraf/zorba/allow_c_files/+merge/77816
-- 
https://code.launchpad.net/~davidagraf/zorba/allow_c_files/+merge/77816
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:~danielturcanu/zorba/mytrunk into lp:zorba

2011-10-06 Thread Daniel Turcanu
Please stop giving arguments from the spec. I also know the spec.
I am trying to come with a solution to the problem. This problem cannot be 
solved by sticking to the spec.

So I want like this: have a variable that contains an absolute or relative file 
system path, and resolve it to a base absolute URI. There should be no 
if(is_absolute_path) and no if(win32) in the xquery code. Right now this 
doesn't work, because our URI implementation considers the absolute Win32 path 
as a relative path, because it doesn't start with slash.

Maybe we shoud add another function in the file module, like 
file:path-to-uri-path, which should add a slash for absolute win32 paths, and 
leave the relative paths as they are.
-- 
https://code.launchpad.net/~danielturcanu/zorba/mytrunk/+merge/78253
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:~ceejatec/zorba/download-modules into lp:zorba

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/download-modules-2011-10-06T10-42-06.48Z/log.html
-- 
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
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/identifiers into lp:zorba

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

Status: Approved => Needs review

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

2011-10-06 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve > 0, Disapprove < 1. 
Got: 1 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/identifiers/+merge/78383
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/identifiers into lp:zorba

2011-10-06 Thread Zorba Build Bot
Validation queue job identifiers-2011-10-06T10-20-22.864Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/identifiers/+merge/78383
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:~ceejatec/zorba/download-modules into lp:zorba

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/download-modules into lp:zorba has 
been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
-- 
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
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:~ceejatec/zorba/download-modules into lp:zorba

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/download-modules into lp:zorba has 
been updated.

Commit Message changed to:

Updated DownloadModules to get modules from Launchpad. (Reviewed by David Graf)

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
-- 
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
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:~ceejatec/zorba/download-modules into lp:zorba

2011-10-06 Thread Chris Hillery
Review: Approve

David looked it over and said things were OK.
-- 
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
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:~davidagraf/zorba/allow_c_files into lp:zorba

2011-10-06 Thread Chris Hillery
Review: Approve

Seems perfectly reasonable.
-- 
https://code.launchpad.net/~davidagraf/zorba/allow_c_files/+merge/77816
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/identifiers into lp:zorba

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/identifiers-2011-10-06T10-20-22.864Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/identifiers/+merge/78383
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:~fcavalieri/zorba/structuralrelationships into lp:zorba

2011-10-06 Thread Zorba Build Bot
The proposal to merge lp:~fcavalieri/zorba/structuralrelationships into 
lp:zorba has been updated.

Status: Approved => Needs review

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

2011-10-06 Thread Zorba Build Bot
The attempt to merge lp:~fcavalieri/zorba/structuralrelationships 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 structuralrelationships-2011-10-06T09-59-16.332Z 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/~fcavalieri/zorba/structuralrelationships/+merge/78375
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/identifiers into lp:zorba

2011-10-06 Thread Federico Cavalieri
The proposal to merge lp:~zorba-coders/zorba/identifiers into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/identifiers/+merge/78383
-- 
https://code.launchpad.net/~zorba-coders/zorba/identifiers/+merge/78383
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:~ceejatec/zorba/download-modules into lp:zorba

2011-10-06 Thread Chris Hillery
Chris Hillery has proposed merging lp:~ceejatec/zorba/download-modules into 
lp:zorba.

Requested reviews:
  David Graf (davidagraf)

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
-- 
https://code.launchpad.net/~ceejatec/zorba/download-modules/+merge/78376
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'modules/DownloadModules.cmake'
--- modules/DownloadModules.cmake	2011-06-26 09:43:12 +
+++ modules/DownloadModules.cmake	2011-10-06 10:01:25 +
@@ -27,11 +27,10 @@
 get_filename_component (cwd ${CMAKE_CURRENT_LIST_FILE} PATH)
 
 # Find SVN
-FIND_PROGRAM(SVN_EXECUTABLE svn DOC "subversion command line client")
-IF(NOT SVN_EXECUTABLE)
-  message (FATAL_ERROR "Subversion is required; not found")
-ENDIF(NOT SVN_EXECUTABLE)
-set (svn "${SVN_EXECUTABLE}")
+FIND_PROGRAM(svn svn DOC "subversion command line client")
+
+# Find BZR
+FIND_PROGRAM(bzr bzr DOC "bazaar command line client")
 
 # Check parameters
 if (NOT outdir)
@@ -68,22 +67,27 @@
   endif (NOT ${_modfound} EQUAL -1)
 endif (allmodules)
 
-# Ensure we recognize vc-type
-if (NOT ${_modvc} STREQUAL "svn")
-  message (FATAL_ERROR "Unknown vc-type '${_modvc}' for module "
-"'${_modname}' in modules/ExternalModules.conf!")
-endif (NOT ${_modvc} STREQUAL "svn")
-
 # Download
 if (_getmod)
   message ("Downloading module '${_modname}'...")
-  # QQQ Ridiculous and slow hack, but Sourceforge has been incredibly
-  # unreliable lately so this is the best choice I've got to make
-  # the remote queue semi-stable
-  foreach (s 1 2)
-execute_process (COMMAND "${svn}" checkout "${_modurl}" "${_modname}"
+  if (${_modvc} STREQUAL "svn")
+# QQQ Ridiculous and slow hack, but Sourceforge has been
+# incredibly unreliable lately so this is the best choice I've
+# got to make the remote queue semi-stable
+foreach (s 1 2)
+  execute_process (COMMAND "${svn}" checkout "${_modurl}" "${_modname}"
+WORKING_DIRECTORY "${outdir}" TIMEOUT 60)
+endforeach (s 1 2)
+
+  elseif (${_modvc} STREQUAL "bzr")
+execute_process (COMMAND "${bzr}" branch "${_modurl}" "${_modname}"
   WORKING_DIRECTORY "${outdir}" TIMEOUT 60)
-  endforeach (s 1 2)
+
+  else (${_modvc} STREQUAL "svn")
+message (FATAL_ERROR "Unknown vc-type '${_modvc}' for module "
+  "'${_modname}' in modules/ExternalModules.conf!")
+
+  endif (${_modvc} STREQUAL "svn")
 endif (_getmod)
   endif (modline)
 endforeach (modline)

=== modified file 'modules/ExternalModules.conf'
--- modules/ExternalModules.conf	2011-07-26 10:07:30 +
+++ modules/ExternalModules.conf	2011-10-06 10:01:25 +
@@ -18,19 +18,19 @@
 # Format:
 #   short-mod-name   vc-type   url
 # where "short-mod-name" is a convenient tag for identifying the module;
-# "vc-type" is the type of version control software (so far only "svn"
-# is supported); and "url" is the URL to check out.
+# "vc-type" is the type of version control software (so far only "bzr"
+# and "svn" are supported); and "url" is the URL to check out.
 
-data-cleaning   svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/data-cleaning/trunk
-data-converters svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/data-converters/trunk
-data-formatting svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/data-formatting/trunk
-email   svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/email/trunk
-excel   svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/excel/trunk
-geo svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/geo/trunk
-http-client svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/http-client/trunk
-image   svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/image/trunk
-languages   svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/languages/trunk
-oauth   svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/oauth/trunk
-process svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/process/trunk
-securitysvn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/security/trunk
-system  svn  http://zorba.svn.sourceforge.net/svnroot/zorba/modules/system/trunk
+data-cleaning   bzr  lp:zorba/data-cleaning-module
+data-converters bzr  lp:zorba/data-converters-module
+data-formatting bzr  lp:zorba/data-formatting-module
+email   bzr  lp:zorba/email-module
+excel   bzr  lp:zorba/excel-module
+geo bzr  lp:zorba/geo-module
+http-client bzr  lp:zorba/http-client-module
+image   bzr  lp:zorba/image-module
+languages   bzr  lp:zorba/languages-module
+oauth   bzr  lp:zorba/oauth-module
+process bzr  lp:zorba/process-module
+securitybzr  lp:zorba/security-module
+system  bzr  lp:zorba/system-module

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

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/structuralrelationships-2011-10-06T09-59-16.332Z/log.html
-- 
https://code.launchpad.net/~fcavalieri/zorba/structuralrelationships/+merge/78375
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:~fcavalieri/zorba/structuralrelationships into lp:zorba

2011-10-06 Thread Federico Cavalieri
The proposal to merge lp:~fcavalieri/zorba/structuralrelationships into 
lp:zorba has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~fcavalieri/zorba/structuralrelationships/+merge/78375
-- 
https://code.launchpad.net/~fcavalieri/zorba/structuralrelationships/+merge/78375
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 867195] Re: External updating function illegal here only in debug mode

2011-10-06 Thread Federico Cavalieri
** Changed in: zorba
   Status: Fix Committed => Fix Released

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

Title:
  External updating function illegal here only in debug mode

Status in Zorba - The XQuery Processor:
  Fix Released

Bug description:
  The following query declares an updating function which invokes an external 
updating function. 
  The actual updating function called does not seems to be relevant.

  import module namespace doc = 
"http://www.zorba-xquery.com/modules/store/dynamic/documents";;
  declare updating function local:aaa($uri)
  {
  doc:put($uri, document{element{"a"}{"a"}}) 
  };
  local:aaa("http://aaa";);
  doc:document("http://aaa";)

  In debug mode:
  :5,1: update static error 
[err:XUST0001]: updating expression illegal here; raised at 
/zorba/pulsrc/src/compiler/expression/expr_base.cpp:99 

  In release mode:
  
  a

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/867195/+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 869025] [NEW] Segmentation fault with getReference

2011-10-06 Thread Federico Cavalieri
Public bug reported:

The following query causes a segmentation fault:
import module namespace ddl = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/ddl";;
import module namespace dml = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/dml";;
import module namespace ref = 
"http://www.zorba-xquery.com/modules/node-reference";;

ddl:create(xs:QName("ddl:coll"));
dml:insert-nodes-last(xs:QName("ddl:coll"),text {"aa"});
ref:node-reference(dml:collection(xs:QName("ddl:coll")))

** Affects: zorba
 Importance: High
 Assignee: Federico Cavalieri (fcavalieri)
 Status: New

** Description changed:

  The following query causes a segmentation fault:
  import module namespace ddl = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/ddl";;
  import module namespace dml = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/dml";;
  import module namespace ref = 
"http://www.zorba-xquery.com/modules/node-reference";;
  
  ddl:create(xs:QName("ddl:coll"));
- dml:insert-nodes-last(xs:QName("ddl:coll"),element {"bb"}{text {"aa"}});
+ dml:insert-nodes-last(xs:QName("ddl:coll"),text {"aa"});
  ref:node-reference(dml:collection(xs:QName("ddl:coll")))

** Changed in: zorba
 Assignee: (unassigned) => Federico Cavalieri (fcavalieri)

** Changed in: zorba
   Importance: Undecided => High

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

Title:
  Segmentation fault with getReference

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following query causes a segmentation fault:
  import module namespace ddl = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/ddl";;
  import module namespace dml = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/dml";;
  import module namespace ref = 
"http://www.zorba-xquery.com/modules/node-reference";;

  ddl:create(xs:QName("ddl:coll"));
  dml:insert-nodes-last(xs:QName("ddl:coll"),text {"aa"});
  ref:node-reference(dml:collection(xs:QName("ddl:coll")))

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/869025/+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 869024] [NEW] Zorba crashes with getReference

2011-10-06 Thread Federico Cavalieri
Public bug reported:

The following query sometimes causes Zorba to crash:

import module namespace ddl = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/ddl";;
import module namespace dml = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/dml";;
import module namespace ref = 
"http://www.zorba-xquery.com/modules/node-reference";;

ddl:create(xs:QName("ddl:coll"));
dml:insert-nodes-last(xs:QName("ddl:coll"),element {"bb"}{text {"aa"}});
ref:node-reference(dml:collection(xs:QName("ddl:coll")))

This is caused by the following cast: 
const OrdPathNode* n = static_cast(node); 
which is not correct when node is a TextNode

** Affects: zorba
 Importance: Medium
 Assignee: Federico Cavalieri (fcavalieri)
 Status: New

** Changed in: zorba
 Assignee: (unassigned) => Federico Cavalieri (fcavalieri)

** Changed in: zorba
   Importance: Undecided => Medium

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

Title:
  Zorba crashes with getReference

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following query sometimes causes Zorba to crash:

  import module namespace ddl = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/ddl";;
  import module namespace dml = 
"http://www.zorba-xquery.com/modules/store/dynamic/collections/dml";;
  import module namespace ref = 
"http://www.zorba-xquery.com/modules/node-reference";;

  ddl:create(xs:QName("ddl:coll"));
  dml:insert-nodes-last(xs:QName("ddl:coll"),element {"bb"}{text {"aa"}});
  ref:node-reference(dml:collection(xs:QName("ddl:coll")))

  This is caused by the following cast: 
  const OrdPathNode* n = static_cast(node); 
  which is not correct when node is a TextNode

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/869024/+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:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Zorba Build Bot
The proposal to merge lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module 
has been updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


Re: [Zorba-coders] [Merge] lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Zorba Build Bot
The attempt to merge lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module 
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 test-oauth-2011-10-06T09-41-32.492Z 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/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/test-oauth-2011-10-06T09-41-32.492Z/log.html
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module 
has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Zorba Build Bot
The proposal to merge lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module 
has been updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


Re: [Zorba-coders] [Merge] lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Zorba Build Bot
The attempt to merge lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module 
failed. Below is the output from the failed tests.


Branched 10494 revision(s).
CMake Error: cmake version 2.8.2
Usage: /home/ceej/zo/tools/cmake-2.8.2-Linux-i386/bin/cmake -E [command] 
[arguments ...]
Available commands: 
  chdir dir cmd [args]...   - run command in a given directory
  rename oldname newname- rename a file or directory (on one volume)
  copy file destination - copy file to destination (either file or 
directory)
  copy_if_different in-file out-file  - copy file if input has changed
  copy_directory source destination   - copy directory 'source' content to 
directory 'destination'
  compare_files file1 file2 - check if file1 is same as file2
  echo [string]...  - displays arguments as text
  echo_append [string]...   - displays arguments as text but no new line
  environment   - display the current enviroment
  make_directory dir- create a directory
  md5sum file1 [...]- compute md5sum of files
  remove_directory dir  - remove a directory and its contents
  remove [-f] file1 file2 ... - remove the file(s), use -f to force it
  tar [cxt][vfz][cvfj] file.tar file/dir1 file/dir2 ... - create a tar archive
  time command [args] ...   - run command and return elapsed time
  touch file- touch a file.
  touch_nocreate file   - touch a file but do not create it.
  build build_dir   - build the project in build_dir.
  create_symlink old new- create a symbolic link new -> old

CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:270 
(message):
  Validation queue job test-oauth-2011-10-06T09-34-31.583Z is finished.  The
  final status was:

  

  Undetermined, probably an error - please email chill...@lambda.nu with the
  number of this job!


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

-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/test-oauth-2011-10-06T09-34-31.583Z/log.html
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module 
has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/tester-branch into lp:zorba has been 
updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
-- 
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
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:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Zorba Build Bot
The proposal to merge lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module 
has been updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/tester-branch into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
-- 
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
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:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Zorba Build Bot
The attempt to merge lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:270 
(message):
  Validation queue job test-oauth-2011-10-06T09-31-38.342Z is finished.  The
  final status was:

  

  Undetermined, probably an error - please email chill...@lambda.nu with the
  number of this job!


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

-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/test-oauth-2011-10-06T09-31-38.342Z/log.html
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Zorba Build Bot
The proposal to merge lp:~ceejatec/zorba/tester-branch into lp:zorba has been 
updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
-- 
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
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:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module 
has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


Re: [Zorba-coders] [Merge] lp:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Zorba Build Bot
The attempt to merge lp:~ceejatec/zorba/tester-branch into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:270 
(message):
  Validation queue job tester-branch-2011-10-06T09-24-00.837Z 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/~ceejatec/zorba/tester-branch/+merge/78366
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:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/tester-branch-2011-10-06T09-24-00.837Z/log.html
-- 
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
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:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Chris Hillery
Review: Approve

Will break.
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.

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


[Zorba-coders] [Merge] lp:~ceejatec/zorba/test-oauth into lp:zorba/oauth-module

2011-10-06 Thread Chris Hillery
Chris Hillery has proposed merging lp:~ceejatec/zorba/test-oauth into 
lp:zorba/oauth-module.

Requested reviews:
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
-- 
https://code.launchpad.net/~ceejatec/zorba/test-oauth/+merge/78367
Your team Zorba Coders is subscribed to branch lp:zorba/oauth-module.
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt	2011-08-10 14:04:57 +
+++ CMakeLists.txt	2011-10-06 09:28:27 +
@@ -18,6 +18,8 @@
 ENABLE_TESTING ()
 INCLUDE (CTest)
 
+will break
+
 LIST (APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake_modules")
 
 FIND_PACKAGE (Zorba REQUIRED HINTS "${ZORBA_BUILD_DIR}")

-- 
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:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/tester-branch into lp:zorba has been 
updated.

Status: Rejected => Approved

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
-- 
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
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:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/tester-branch into lp:zorba has been 
updated.

Status: Approved => Rejected

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
-- 
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
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:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Chris Hillery
The proposal to merge lp:~ceejatec/zorba/tester-branch into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
-- 
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
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:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Chris Hillery
Review: Approve

Will break
-- 
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
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:~ceejatec/zorba/tester-branch into lp:zorba

2011-10-06 Thread Chris Hillery
Chris Hillery has proposed merging lp:~ceejatec/zorba/tester-branch into 
lp:zorba.

Requested reviews:
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
-- 
https://code.launchpad.net/~ceejatec/zorba/tester-branch/+merge/78366
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt	2011-09-08 15:09:20 +
+++ CMakeLists.txt	2011-10-06 09:22:24 +
@@ -16,6 +16,7 @@
 ENABLE_TESTING()
 INCLUDE(CTest)
 
+is broken
 
 # overwriting the source and binary directories with the current zorba ones
 # this is usefull for other projects reusing zorba as a subcomponent

-- 
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:~danielturcanu/zorba/mytrunk into lp:zorba

2011-10-06 Thread Chris Hillery
HTTP and FTP URIs certainly don't work with filesystem paths. File: URIs only 
do by convention, and there are (somewhat hand-wavy) rules for mapping 
filesystem paths to file: URIs. But a filesystem path is-not-a file: URI, and 
so a filesystem path is never an appropriate argument for fn:resolve-uri() or 
in fact for any other function defined by XQuery F&O.

Also, URLs are no different than URIs except that URLs are expected to directly 
point to a resource, where a generic URI may simply name the resource. But they 
follow the same rules. Neither of them have any relationship to filesystem 
paths. I'm not saying this is good or bad, it's simply true. And Zorba most 
certainly works with full URIs, not just URLs.

file:path-to-uri() is documented to resolve relative filesystem paths using the 
current working directory as the base. So you're seeing your RBKT dir because 
that's the current working directory for testdriver, I suspect. Again, I'm not 
saying this is good or bad, it's simply true. I would certainly support you if 
you wanted to say that there should be a two-argument form of this function 
that allowed you to supply a different base URI or path, but you'll need to run 
that through the EXPath process (whatever that is).

Finally, regarding fn:encode-for-uri():

  http://www.w3.org/TR/xpath-functions/#func-encode-for-uri

It only escapes *characters* in a string which are illegal in the path segment 
of a URI. It is not intended in any way to convert a filesystem path to a valid 
URI (relative or otherwise).
-- 
https://code.launchpad.net/~danielturcanu/zorba/mytrunk/+merge/78253
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:~danielturcanu/zorba/mytrunk into lp:zorba

2011-10-06 Thread Daniel Turcanu
Maybe W3C doesn't care about file systems, but URIs do.
At least http, ftp and file all work with file system paths. We actually work 
with URL, not URI, we don't have general URIs so far.

I tested now file:path-to-uri and it doesn't do what I want: if I give it an 
absolute path, then it returns a complete URI, and if I give it a relative 
path, then it also returns a complete URI, with the path relative to my rbkt 
dir in the build directory. This seems like a wrong thing. If my rbkt dir is 
hardcoded in the file module, then it won't work for other users if I deploy 
the file module.

I still think that this is a job for fn:encode-for-uri. I need a function to 
encode a file system path into a path for URI. So if it is absolute path, make 
it absolute path for URI, not a full URI, and if it is relative path, make it 
relative path for URI.
And then this path I can apply to fn:resolve-uri.
-- 
https://code.launchpad.net/~danielturcanu/zorba/mytrunk/+merge/78253
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