[Zorba-coders] [Bug 997230] Re: open filestream prevents file deletion on windows

2012-05-21 Thread Dennis Knochenwefel
true, the second example does work on linux (my fault).

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

Title:
  open filestream prevents file deletion on windows

Status in Zorba - The XQuery Processor:
  New

Bug description:
  the bug fix for bug #996084 seems to be a bit more tricky on windows.
  If you execute the attached example on a windows machine you will get:

  user-defined error [file:FOFL]: An unknown error occured:
  "C:\data.txt": I/O error: 32 failed (error The process cannot access
  the file because it is being used by another process): Can not delete
  file: C:\data.txt; raised at
  zorba\modules\org\expath\ns\file.xq.src\file_function.cpp:82

  The problem is that the file cannot be deleted as long as the file
  stream is open. This example query works on linux.

  This makes the 2 tests test/rbkt/zorba/file/copy_* fail on windows.
  Any idea how to solve this?

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/997230/+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 1002313] [NEW] Plan Serializer test fails

2012-05-21 Thread William Candillon
Public bug reported:

The following queries:
declare namespace an = "http://www.zorba-xquery.com/annotations";;
declare namespace o = "http://www.zorba-xquery.com/options/features";;
declare option o:enable "hof";

declare %private variable $handlers := ();

declare %an:sequential function local:add($handler)
{
  $handlers := ($handlers, $handler);
};

declare function local:emit()
{
  for $h in $handlers
  return $h()
}; 
declare %an:sequential function local:test()
{
  local:add(local:handle#1);
  local:emit()
};

declare function local:handle($message)
{
  trace($message, "message")
};

local:test()


Fails with the plan serializer (segfault)

** Affects: zorba
 Importance: Undecided
 Status: New

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

Title:
  Plan Serializer test fails

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following queries:
  declare namespace an = "http://www.zorba-xquery.com/annotations";;
  declare namespace o = "http://www.zorba-xquery.com/options/features";;
  declare option o:enable "hof";

  declare %private variable $handlers := ();

  declare %an:sequential function local:add($handler)
  {
$handlers := ($handlers, $handler);
  };

  declare function local:emit()
  {
for $h in $handlers
return $h()
  }; 
  declare %an:sequential function local:test()
  {
local:add(local:handle#1);
local:emit()
  };

  declare function local:handle($message)
  {
trace($message, "message")
  };

  local:test()

  
  Fails with the plan serializer (segfault)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1002313/+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 1002313] Re: Plan Serializer test fails

2012-05-21 Thread William Candillon
** Branch linked: lp:~zorba-coders/zorba/bug-1002313

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

Title:
  Plan Serializer test fails

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following queries:
  declare namespace an = "http://www.zorba-xquery.com/annotations";;
  declare namespace o = "http://www.zorba-xquery.com/options/features";;
  declare option o:enable "hof";

  declare %private variable $handlers := ();

  declare %an:sequential function local:add($handler)
  {
$handlers := ($handlers, $handler);
  };

  declare function local:emit()
  {
for $h in $handlers
return $h()
  }; 
  declare %an:sequential function local:test()
  {
local:add(local:handle#1);
local:emit()
  };

  declare function local:handle($message)
  {
trace($message, "message")
  };

  local:test()

  
  Fails with the plan serializer (segfault)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1002313/+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 1002313] Re: Plan Serializer test fails

2012-05-21 Thread William Candillon
Assign to you for dispatching.

** Changed in: zorba
Milestone: None => 2.5

** Changed in: zorba
 Assignee: (unassigned) => Matthias Brantner (matthias-brantner)

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

Title:
  Plan Serializer test fails

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following queries:
  declare namespace an = "http://www.zorba-xquery.com/annotations";;
  declare namespace o = "http://www.zorba-xquery.com/options/features";;
  declare option o:enable "hof";

  declare %private variable $handlers := ();

  declare %an:sequential function local:add($handler)
  {
$handlers := ($handlers, $handler);
  };

  declare function local:emit()
  {
for $h in $handlers
return $h()
  }; 
  declare %an:sequential function local:test()
  {
local:add(local:handle#1);
local:emit()
  };

  declare function local:handle($message)
  {
trace($message, "message")
  };

  local:test()

  
  Fails with the plan serializer (segfault)

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

2012-05-21 Thread Markos Zaharioudakis
Review: Needs Fixing

I ran into this problem myself in the plan serializer branch. The correct fix 
is to get the sctx from theBodyExpr:

TypeManager* tm = theBodyExpr->get_sctx()->get_typemanager();

-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106475
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 1002313] Re: Plan Serializer test fails

2012-05-21 Thread Matthias Brantner
The problem doesn't seem to be related to plan serialization. Instead,
it's a problem with higher-order functions which are still have
experimental status.

** Changed in: zorba
Milestone: 2.5 => None

** Tags added: hof

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

Title:
  Plan Serializer test fails

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following queries:
  declare namespace an = "http://www.zorba-xquery.com/annotations";;
  declare namespace o = "http://www.zorba-xquery.com/options/features";;
  declare option o:enable "hof";

  declare %private variable $handlers := ();

  declare %an:sequential function local:add($handler)
  {
$handlers := ($handlers, $handler);
  };

  declare function local:emit()
  {
for $h in $handlers
return $h()
  }; 
  declare %an:sequential function local:test()
  {
local:add(local:handle#1);
local:emit()
  };

  declare function local:handle($message)
  {
trace($message, "message")
  };

  local:test()

  
  Fails with the plan serializer (segfault)

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

2012-05-21 Thread Matthias Brantner
Matthias Brantner has proposed merging lp:~zorba-coders/zorba/bug-1001463 into 
lp:zorba.

Requested reviews:
  Matthias Brantner (matthias-brantner)
  Markos Zaharioudakis (markos-za)
Related bugs:
  Bug #1001463 in Zorba: "type not available during computation of function 
caching"
  https://bugs.launchpad.net/zorba/+bug/1001463

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

fix for bug #1001463 (type not available during computation of function 
caching).

The problem is that the wrong TypeManager is used for checking the 
subtype-relationship during the computation of the function-caching property.

-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'ChangeLog'
--- ChangeLog	2012-05-18 22:01:56 +
+++ ChangeLog	2012-05-21 18:33:24 +
@@ -4,6 +4,7 @@
 version 2.x
 
   * Fixed bug #867170 (Variables declared in Prolog are Overwritten inside the query)
+  * Fixed bug #1001463 (type not available during computation of function caching)
 
 
 version 2.5

=== modified file 'src/functions/udf.cpp'
--- src/functions/udf.cpp	2012-05-03 12:31:51 +
+++ src/functions/udf.cpp	2012-05-21 18:33:24 +
@@ -492,7 +492,7 @@
 
   // parameter and return types are subtype of xs:anyAtomicType?
   const xqtref_t& lRes = theSignature.returnType();
-  TypeManager* tm = lRes->get_manager();
+  TypeManager* tm = theBodyExpr->get_sctx()->get_typemanager();
 
   if (!TypeOps::is_subtype(tm,
*lRes,

=== added file 'test/rbkt/ExpQueryResults/zorba/udf/udf-recursive-2.xml.res'
--- test/rbkt/ExpQueryResults/zorba/udf/udf-recursive-2.xml.res	1970-01-01 00:00:00 +
+++ test/rbkt/ExpQueryResults/zorba/udf/udf-recursive-2.xml.res	2012-05-21 18:33:24 +
@@ -0,0 +1,1 @@
+false

=== added file 'test/rbkt/Queries/zorba/udf/schema.xsd'
--- test/rbkt/Queries/zorba/udf/schema.xsd	1970-01-01 00:00:00 +
+++ test/rbkt/Queries/zorba/udf/schema.xsd	2012-05-21 18:33:24 +
@@ -0,0 +1,13 @@
+
+http://foo.com/schemas/schema";
+  xmlns = "http://foo.com/schemas/schema";
+   xmlns:xs="http://www.w3.org/2001/XMLSchema"; elementFormDefault="qualified">
+
+
+
+
+
+  
+
+
+

=== added file 'test/rbkt/Queries/zorba/udf/udf-recursive-2.xq'
--- test/rbkt/Queries/zorba/udf/udf-recursive-2.xq	1970-01-01 00:00:00 +
+++ test/rbkt/Queries/zorba/udf/udf-recursive-2.xq	2012-05-21 18:33:24 +
@@ -0,0 +1,10 @@
+import schema namespace d = "http://foo.com/schemas/schema"; at "schema.xsd";
+
+declare function local:recursion($param as element(*, d:Content)?) as xs:boolean
+{
+  if ($param)
+  then local:recursion(())
+  else false()
+};
+
+local:recursion(validate {  })

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


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

2012-05-21 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/bug-1001463 into lp:zorba has been 
updated.

Commit Message changed to:

fix for bug #1001463 (type not available during computation of function 
caching).

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-05-21 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-05-21 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/bug-1001463 into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1001463-2012-05-21T18-35-03.122Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-05-21 Thread Zorba Build Bot
Validation queue job bug-1001463-2012-05-21T18-35-03.122Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

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

2012-05-21 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/xquery_visitor/+merge/106490
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-05-21 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bug-1001463 into lp:zorba has been 
updated.

Status: Approved => Needs review

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

2012-05-21 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/xquery_visitor into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/xquery_visitor-2012-05-21T19-09-00.923Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/xquery_visitor/+merge/106490
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/xquery_visitor into lp:zorba

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


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job xquery_visitor-2012-05-21T19-09-00.923Z 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/xquery_visitor/+merge/106490
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/xquery_visitor into lp:zorba

2012-05-21 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/xquery_visitor into lp:zorba has 
been updated.

Status: Approved => Needs review

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

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


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

2012-05-21 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-05-21 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/bug-1001463 into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1001463-2012-05-21T19-19-50.63Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
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/xquery_visitor into lp:zorba

2012-05-21 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/xquery_visitor into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2012-05-21 Thread Matthias Brantner
Matthias Brantner has proposed merging 
lp:~zorba-coders/zorba/doc-data_lifecycle into lp:zorba.

Requested reviews:
  Matthias Brantner (matthias-brantner)
  William Candillon (wcandillon)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/doc-data_lifecycle/+merge/106695

added stacks and queues to the data lifecycle documentation
-- 
https://code.launchpad.net/~zorba-coders/zorba/doc-data_lifecycle/+merge/106695
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'doc/zorba/data_lifecycle.dox'
--- doc/zorba/data_lifecycle.dox	2012-05-03 12:31:51 +
+++ doc/zorba/data_lifecycle.dox	2012-05-21 19:31:21 +
@@ -7,13 +7,13 @@
 
 \image html data_lifecycle.png
 
-The store contains several types of data containers: documents, collections, and other structures (for the moment only unordered maps are supported, but more such structures -- like stacks or queues -- will be supported in future versions).
+The store contains several types of data containers: documents, collections, and other structures.
 Each such container is identified by a name, which can be a URI or a QName.
 The association between the name and the content of the containers is maintained by the store during the lifetime of the container.
 
 There are two kinds of containers: static and dynamic.
 Collections can be either static or dynamic.
-Documents and maps can only be dynamic. 
+Documents, maps, stacks, and queues can only be dynamic. 
 
 \image html store_concepts.png
 
@@ -109,7 +109,17 @@
   
 Unordered Maps
 DDL / DML
-http://www.zorba-xquery.com/modules/store/static/data-structures/unordered-map
+http://www.zorba-xquery.com/modules/store/dynamic/data-structures/unordered-map
+  
+  
+Stacks
+DDL / DML
+http://www.zorba-xquery.com/modules/store/dynamic/data-structures/stack
+  
+  
+Queues
+DDL / DML
+http://www.zorba-xquery.com/modules/store/dynamic/data-structures/queue
   
 
 

=== modified file 'doc/zorba/store_concepts.png'
Binary files doc/zorba/store_concepts.png	2012-05-03 12:31:51 + and doc/zorba/store_concepts.png	2012-05-21 19:31:21 + differ
-- 
Mailing list: https://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/doc-data_lifecycle into lp:zorba

2012-05-21 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/doc-data_lifecycle/+merge/106695
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-05-21 Thread Zorba Build Bot
Validation queue job bug-1001463-2012-05-21T19-19-50.63Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1001463/+merge/106686
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-05-21 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug-1001463 into lp:zorba has been 
updated.

Status: Approved => Merged

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

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/xquery_visitor-2012-05-21T19-53-16.437Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/xquery_visitor/+merge/106490
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 1001463] Re: type not available during computation of function caching

2012-05-21 Thread Zorba Build Bot
** Changed in: zorba
   Status: In Progress => 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/1001463

Title:
  type not available during computation of function caching

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  The following query and schema cause an error to be raised because the
  schema type doesn't seem to be available when trying to determine if
  function caching should be done.

  import schema namespace d = "http://foo.com/schemas/schema"; at
  "schema.xsd";

  declare function local:recursion($param as element(*, d:Content)?) as 
xs:boolean
  {
if ($param)
then local:recursion(())
else false()
  };

  local:recursion()

  
  http://foo.com/schemas/schema";
xmlns = "http://foo.com/schemas/schema";
 xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
elementFormDefault="qualified">
 
  

  

 
  

  The error reported is:

  type error [err:XPTY0004]: "[NodeXQType elementNode?
  content=[UserDefinedXQType   Content@http://foo.com/schemas/schema
  isComplex emptyContent base:[XQType ANY_TYPE_KIND*] ]]": invalid type:
  not among in-scope schema types; raised at
  /home/mbrantner/zorba/sandbox/src/types/typeops.cpp:522

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1001463/+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/doc-data_lifecycle into lp:zorba

2012-05-21 Thread William Candillon
Review: Approve


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

2012-05-21 Thread William Candillon
The proposal to merge lp:~zorba-coders/zorba/doc-data_lifecycle into lp:zorba 
has been updated.

Status: Needs review => Approved

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

2012-05-21 Thread Zorba Build Bot
Validation queue job xquery_visitor-2012-05-21T19-53-16.437Z is finished. The 
final status was:

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

2012-05-21 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/xquery_visitor into lp:zorba has 
been updated.

Status: Approved => Merged

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

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/doc-data_lifecycle-2012-05-21T20-27-01.434Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/doc-data_lifecycle/+merge/106695
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/doc-data_lifecycle into lp:zorba

2012-05-21 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/doc-data_lifecycle into lp:zorba 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job doc-data_lifecycle-2012-05-21T20-27-01.434Z 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/doc-data_lifecycle/+merge/106695
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/doc-data_lifecycle into lp:zorba

2012-05-21 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/doc-data_lifecycle into lp:zorba 
has been updated.

Status: Approved => Needs review

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

2012-05-21 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/doc-data_lifecycle into lp:zorba 
has been updated.

Status: Needs review => Approved

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

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/doc-data_lifecycle-2012-05-21T20-33-59.527Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/doc-data_lifecycle/+merge/106695
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/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Matthias Brantner
Matthias Brantner has proposed merging 
lp:~zorba-coders/zorba/build-util_jvm_module into lp:zorba/util-jvm-module.

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

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707

also link against libzorba
-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.
=== modified file 'src/CMakeLists.txt'
--- src/CMakeLists.txt	2012-05-18 10:36:07 +
+++ src/CMakeLists.txt	2012-05-21 20:58:24 +
@@ -33,7 +33,7 @@
 # The important stuff is the library, which we install in Zorba's
 # default lib directory.
 ADD_LIBRARY(util-jvm SHARED util-jvm.cpp JavaVMSingleton.cpp)
-TARGET_LINK_LIBRARIES(util-jvm "${JAVA_JVM_LIBRARY}")
+TARGET_LINK_LIBRARIES(util-jvm "${JAVA_JVM_LIBRARY}" zorba_${ZORBA_STORE_NAME})
 INSTALL(TARGETS util-jvm DESTINATION lib)
 
 # Set this in the parent scope so it will be put into our Config.cmake 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


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/opt-count-index-probe into lp:zorba

2012-05-21 Thread Till Westmann
Review: Approve

The change looks good. 

Only 2 general comments:
1) func_sequences_impl.cpp
It seems wasteful to first codegen the underlying probe iterators and then to 
re-create them here. It would be nice to parameterize the codeine on the way 
down - but I guess that there's no easy way of doing that …

2) index_dll.h/.cpp
There is a lot of redundancy in the ProbeIndex Iterators. This is obviously 
independent of this merge proposal, but this merge proposal makes it very clear.

-- 
https://code.launchpad.net/~zorba-coders/zorba/opt-count-index-probe/+merge/105528
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/opt-count-index-probe into lp:zorba

2012-05-21 Thread Till Westmann
The proposal to merge lp:~zorba-coders/zorba/opt-count-index-probe into 
lp:zorba has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/opt-count-index-probe/+merge/105528
-- 
https://code.launchpad.net/~zorba-coders/zorba/opt-count-index-probe/+merge/105528
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/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/build-util_jvm_module into 
lp:zorba/util-jvm-module has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


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

2012-05-21 Thread Zorba Build Bot
Validation queue job doc-data_lifecycle-2012-05-21T20-33-59.527Z is finished. 
The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/doc-data_lifecycle/+merge/106695
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/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Chris Hillery
Hmm... doing it this way means that the util-jvm module can only be built as 
part of a Zorba build. It won't be buildable separately against a binary Zorba 
installation. That's *probably* OK, at least for now.

We also need to verify that this still works after you do a "make install" on a 
Mac. Matthias, can you check that?
-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


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

2012-05-21 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/doc-data_lifecycle into lp:zorba 
has been updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/doc-data_lifecycle/+merge/106695
-- 
https://code.launchpad.net/~zorba-coders/zorba/doc-data_lifecycle/+merge/106695
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/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/build-util_jvm_module-2012-05-21T21-06-30.78Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/build-util_jvm_module into 
lp:zorba/util-jvm-module failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job build-util_jvm_module-2012-05-21T21-06-30.78Z 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/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/build-util_jvm_module into 
lp:zorba/util-jvm-module has been updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/opt-count-index-probe into lp:zorba

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/opt-count-index-probe-2012-05-21T21-12-56.89Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/opt-count-index-probe/+merge/105528
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/opt-count-index-probe into lp:zorba

2012-05-21 Thread Zorba Build Bot
Validation queue job opt-count-index-probe-2012-05-21T21-12-56.89Z is finished. 
The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/opt-count-index-probe/+merge/105528
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/opt-count-index-probe into lp:zorba

2012-05-21 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/opt-count-index-probe into 
lp:zorba has been updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/opt-count-index-probe/+merge/105528
-- 
https://code.launchpad.net/~zorba-coders/zorba/opt-count-index-probe/+merge/105528
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 1001474] Re: Need Windows validation queue

2012-05-21 Thread Rodolfo Ochoa
http://www.2shared.com/file/GL01v3p1/libraries.html
http://www.2shared.com/fadmin/31094115/579079bc/libraries.zip.html

This are links to basic libraries to compile

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

Title:
  Need Windows validation queue

Status in Zorba - The XQuery Processor:
  New

Bug description:
  In order to truly support our goal of having the trunk always be
  releasable, we need the validation queue to build and test all changes
  on Windows as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1001474/+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 1001474] Re: Need Windows validation queue

2012-05-21 Thread Rodolfo Ochoa
This is the build.bat that is able to get the sources and compile
them...

** Attachment added: "build.bat"
   
https://bugs.launchpad.net/zorba/+bug/1001474/+attachment/3156735/+files/build.bat

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

Title:
  Need Windows validation queue

Status in Zorba - The XQuery Processor:
  New

Bug description:
  In order to truly support our goal of having the trunk always be
  releasable, we need the validation queue to build and test all changes
  on Windows as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1001474/+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 866717] Re: Fedora warnings: language bindings

2012-05-21 Thread Rodolfo Ochoa
>>We try and keep the code warning free, but the compiler and python code 
keeps changing. If you have fairly strict compiler warnings turned on 
you are more likely to get warnings like the above. Post your gcc 
compiler warning flags being used and I'll take a look. 

http://old.nabble.com/Re%3A-wrapper-compiler-warnings-p30381963.html

** Changed in: zorba
 Assignee: Rodolfo Ochoa (rodolfo-ochoa) => Sorin Marian Nasoi 
(sorin.marian.nasoi)

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

Title:
  Fedora warnings: language bindings

Status in Zorba - The XQuery Processor:
  Won't Fix

Bug description:
  swig/python/zorba_apiPYTHON_wrap.cxx: In function ‘PyTypeObject* 
_PySwigObject_type()’:
  swig/python/zorba_apiPYTHON_wrap.cxx:1846: warning: missing initializer for 
member ‘_typeobject::tp_version_tag’
  swig/python/zorba_apiPYTHON_wrap.cxx: In function ‘PyTypeObject* 
_PySwigPacked_type()’:
  swig/python/zorba_apiPYTHON_wrap.cxx:2021: warning: missing initializer for 
member ‘_typeobject::tp_version_tag’
  swig/python/zorba_apiPYTHON_wrap.cxx: In function ‘PyTypeObject* 
swig_varlink_type()’:
  swig/python/zorba_apiPYTHON_wrap.cxx:12032: warning: missing initializer for 
member ‘_typeobject::tp_version_tag’
  PHP Notice:  Use of undefined constant URIResolverResult_UR_FODC0002 - 
assumed 'URIResolverResult_UR_FODC0002' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_FODC0003 - 
assumed 'URIResolverResult_UR_FODC0003' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_FODC0004 - 
assumed 'URIResolverResult_UR_FODC0004' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_FODC0005 - 
assumed 'URIResolverResult_UR_FODC0005' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_XQST0088 - 
assumed 'URIResolverResult_UR_XQST0088' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_XQST0046 - 
assumed 'URIResolverResult_UR_XQST0046' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_XQST0059 - 
assumed 'URIResolverResult_UR_XQST0059' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_XQST0057 - 
assumed 'URIResolverResult_UR_XQST0057' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_FODC0002 - 
assumed 'URIResolverResult_UR_FODC0002' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_FODC0003 - 
assumed 'URIResolverResult_UR_FODC0003' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_FODC0004 - 
assumed 'URIResolverResult_UR_FODC0004' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_FODC0005 - 
assumed 'URIResolverResult_UR_FODC0005' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_XQST0088 - 
assumed 'URIResolverResult_UR_XQST0088' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_XQST0046 - 
assumed 'URIResolverResult_UR_XQST0046' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_XQST0059 - 
assumed 'URIResolverResult_UR_XQST0059' in swig/php/generate_proxy.php on line 
108
  PHP Notice:  Use of undefined constant URIResolverResult_UR_XQST0057 - 
assumed 'URIResolverResult_UR_XQST0057' in swig/php/generate_proxy.php on line 
108
  swig/php/zorba_apiPHP5_wrap.cxx:2118:1: warning: "SWIG_exception" redefined
  swig/php/zorba_apiPHP5_wrap.cxx:1131:1: warning: this is the location of the 
previous definition
  swig/php/zorba_apiPHP5_wrap.cxx: In function ‘void 
_wrap_swig_zorba_api_alter_newobject(int, zval*, zval**, zval*, int)’:
  swig/php/zorba_apiPHP5_wrap.cxx:1084: warning: unused variable ‘thisown’
  swig/php/zorba_apiPHP5_wrap.cxx: In function ‘void 
_wrap_Item_createEmptyItem(int, zval*, zval**, zval*, int)’:
  swig/php/zorba_apiPHP5_wrap.cxx:2376: warning: label ‘fail’ defined but not 
used
  swig/php/zorba_apiPHP5_wrap.cxx: In function ‘void _wrap_new_Item(int, zval*, 
zval**, zval*, int)’:
  swig/php/zorba_apiPHP5_wrap.cxx:3179: warning: label ‘fail’ defined but not 
used
  swig/php/zorba_apiPHP5_wrap.cxx: In function ‘void 
__wrap_delete_Item(zend_rsrc_list_entry*, const char*)’:
  swig/php/zorba_apiPHP5_wrap.cxx:3212: warning: label ‘fail’ defined but not 
used
  swig/php/zorba_apiPHP5_wrap.cxx: In function ‘void _wrap_new_Iterator(int, 
zval*, zval**, zval*, int)’:
  swig/php/zorba_apiPHP5_wrap.cxx:3401: warning: label ‘fail’

Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/build-util_jvm_module into 
lp:zorba/util-jvm-module has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/build-util_jvm_module-2012-05-22T00-22-47.623Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread Zorba Build Bot
Validation queue job build-util_jvm_module-2012-05-22T00-22-47.623Z is 
finished. The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/build-util_jvm_module into lp:zorba/util-jvm-module

2012-05-21 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/build-util_jvm_module into 
lp:zorba/util-jvm-module has been updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
-- 
https://code.launchpad.net/~zorba-coders/zorba/build-util_jvm_module/+merge/106707
Your team Zorba Coders is subscribed to branch lp:zorba/util-jvm-module.

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


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

2012-05-21 Thread Chris Hillery
Chris Hillery has proposed merging lp:~zorba-coders/zorba/zorba-2.5-prep into 
lp:zorba.

Requested reviews:
  Zorba Coders (zorba-coders)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/zorba-2.5-prep/+merge/106728
-- 
https://code.launchpad.net/~zorba-coders/zorba/zorba-2.5-prep/+merge/106728
Your team Zorba Coders is requested to review the proposed merge of 
lp:~zorba-coders/zorba/zorba-2.5-prep into lp:zorba.
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt	2012-05-17 09:43:03 +
+++ CMakeLists.txt	2012-05-22 01:13:22 +
@@ -438,7 +438,7 @@
 
 # zorba versioning
 SET(ZORBA_MAJOR_NUMBER "2")
-SET(ZORBA_MINOR_NUMBER "2")
+SET(ZORBA_MINOR_NUMBER "5")
 SET(ZORBA_PATCH_NUMBER "0")
 SET(ZORBA_VERSION ${ZORBA_MAJOR_NUMBER}.${ZORBA_MINOR_NUMBER}.${ZORBA_PATCH_NUMBER})
 MESSAGE(STATUS "Zorba version number: ${ZORBA_VERSION}")

=== modified file 'ChangeLog'
--- ChangeLog	2012-05-21 18:29:36 +
+++ ChangeLog	2012-05-22 01:13:22 +
@@ -1,16 +1,9 @@
 Zorba - The XQuery Processor
 
-
-version 2.x
-
-  * Fixed bug #867170 (Variables declared in Prolog are Overwritten inside the query)
-  * Fixed bug #1001463 (type not available during computation of function caching)
-
-
 version 2.5
 
 New Features:
-  * XQuery 3.0 functions
+  * New XQuery 3.0 functions
 - fn:available-environment-variables
 - fn:environment-variables
 - fn:uri-collection
@@ -20,30 +13,33 @@
 - fn:nilled#0
 - fn:path
   * Added base64:decode#2 function which also does transcoding
-  * Extended API for Python, Java, PHP and Ruby.
-  * Add jvm classpath to zorbacmd and to Zorba API. Tracked by #931816
-  * Added full-text module.
+  * Extended API for Python, Java, PHP and Ruby
+  * Added JVM classpath to zorbacmd and to Zorba API
+  * Added full-text module
   * Added support for NO_ICU (to not use ICU for unicode processing)
-  * Added XQJ support.
-  * Added CollectionManager and DocumentManager support for XQJ.
-  * New API EntityKind SOME_CONTENT
-  * API StreamResource is able to specify whether a stream is seekable
-  * New functions in the fetch module and the StaticContext to fetch
+  * Added XQJ support
+  * Added CollectionManager and DocumentManager support for XQJ
+  * Added new API EntityKind SOME_CONTENT
+  * Added new API StreamResource which is able to specify whether a
+stream is seekable or not.
+  * Added new functions in the fetch module and the StaticContext to fetch
 resources as binary
 
 Optimizations:
-  * optimized insertion into a collection (don't copy it if the node was created by an element constructor
-and is not used anywhere else in the query
+  * optimized insertion into a collection (don't copy it if the node was
+created by an element constructor and is not used anywhere else in the query)
+  * Fixed performance problem with the findNodeSources function of the no-copy rule
 
 Bug Fixes/Other Changes:
+  * Fixed bug #867170 (Variables declared in Prolog are Overwritten inside the query)
+  * Fixed bug #1001463 (type not available during computation of function caching)
   * Fixed bugs #905028 (Allow to set base URI to undefined)
-  * Fixed bugs #931501 and #866987 (improved error messages for fn:format-number(). Additionally, the function now throws the FODF1310 error instead of XTDE1310, as the 3.0 spec requires)
+  * Fixed bugs #931501 and #866987 (improved error messages for fn:format-number()
+  * fn:format-number raises FODF1310 instead of XTDE1310
   * Fixed bug 955170 (Catch clause with URILiteral-based wilcard NameTest)
-  * Fixed memory leak in case of index truncation
   * Fixed bug #862971 (no error upon duplicate function declarations)
-  * Fixed bug in mergeUpdates() method
   * Fixed bug 955135 (err:XQDY0044 not caught by try-catch expressions)
-  * Fixed bug #986075 (encountering flwor expr with no clauses; due to common subexression being formed when inlining var in if-then-else expression) 
+  * Fixed bug #986075 (encountering flwor expr with no clauses)
   * Fixed bug #967864 (var substitution did not update theFreeVars property)
   * Fixed bug #891650 (context size var not always declared within path expr)
   * Fixed bug #948879 (--uri-path doesn't work with fetch:content())
@@ -52,7 +48,6 @@
   * Fixed bug #866547 (protect index-join rule from general flwor)
   * Fixed bug #867253 (cdml:delete-nodes should only remove root nodes)
   * Fixed bug #967428 (do not hoist index creation outside a try-catch)
-  * Fixed performance problem with the findNodeSources function of the no-copy rule
   * Fixed bug #872234 (prevent a rewritting to take place in case of sequential expr)
   * Fixed bug #966706 (key uniqueness of index not enforced during incremental refresh)
   * Fixed bug #906494 (default compile with D_FILE_OFFSET_BITS=64)
@@ -64,7 +59,7 @@
   * Fixed bug #996084 (crash in Streamable*Item with file module)
   * Fixed bug #947627 (throw XQST0099 if more than one declarations of context item type in same module)
   * Fix

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

2012-05-21 Thread Chris Hillery
Review: Approve

I have tagged all branches with "zorba-2.5".
-- 
https://code.launchpad.net/~zorba-coders/zorba/zorba-2.5-prep/+merge/106728
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/zorba-2.5-prep into lp:zorba

2012-05-21 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/zorba-2.5-prep into lp:zorba has 
been updated.

Status: Needs review => Approved

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

2012-05-21 Thread Chris Hillery
Chris Hillery has proposed merging lp:~zorba-coders/zorba/rpath-fix into 
lp:zorba.

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

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/rpath-fix/+merge/106733
-- 
https://code.launchpad.net/~zorba-coders/zorba/rpath-fix/+merge/106733
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt	2012-05-17 09:43:03 +
+++ CMakeLists.txt	2012-05-22 01:46:19 +
@@ -65,6 +65,7 @@
 
 # Enable RPaths in installed binaries
 SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
+SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
 
 # turn on the folder grouping used by IDEs (VS or XCode)
 SET(ZORBA_USE_TARGET_FOLDERS ON CACHE BOOL "Activate use of target grouping into folders")

-- 
Mailing list: https://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/rpath-fix into lp:zorba

2012-05-21 Thread Chris Hillery
Review: Approve


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

2012-05-21 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/rpath-fix into lp:zorba has been 
updated.

Status: Needs review => Approved

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

2012-05-21 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/rpath-fix into lp:zorba has been 
updated.

Status: Approved => Needs review

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

2012-05-21 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/zorba-2.5-prep into lp:zorba has 
been updated.

Commit Message changed to:

Update changelog, update module tags for Zorba 2.5.

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

2012-05-21 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/rpath-fix into lp:zorba has been 
updated.

Commit Message changed to:

Set CMAKE_INSTALL_RPATH_USE_LINK_PATH to TRUE to have correct RPATHs in 
installed binaries. Add comment about INSTALL_NAME_DIR.

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

2012-05-21 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/rpath-fix into lp:zorba has been 
updated.

Status: Needs review => Approved

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

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/rpath-fix-2012-05-22T01-50-56.402Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/rpath-fix/+merge/106733
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/rpath-fix into lp:zorba

2012-05-21 Thread Zorba Build Bot
Validation queue job rpath-fix-2012-05-22T01-50-56.402Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/rpath-fix/+merge/106733
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/zorba-2.5-prep into lp:zorba

2012-05-21 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/zorba-2.5-prep-2012-05-22T02-22-50.034Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/zorba-2.5-prep/+merge/106728
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/rpath-fix into lp:zorba

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

2012-05-21 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/rpath-fix into lp:zorba has been 
updated.

Status: Approved => Needs review

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

2012-05-21 Thread Zorba Build Bot
Validation queue job zorba-2.5-prep-2012-05-22T02-22-50.034Z is finished. The 
final status was:

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

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

2012-05-21 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/zorba-2.5-prep into lp:zorba has 
been updated.

Status: Approved => Needs review

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