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

2012-04-02 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/markos-scratch into lp:zorba has 
been updated.

Commit Message changed to:

Fixed bug #967864 (var substitution did not update theFreeVars property)

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

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


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

2012-04-02 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/markos-scratch-2012-04-02T07-50-00.583Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/100355
Your team Zorba Coders is subscribed to branch lp:zorba.

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


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

2012-04-02 Thread Zorba Build Bot
Validation queue job markos-scratch-2012-04-02T07-50-00.583Z is finished. The 
final status was:

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

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


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

2012-04-02 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/markos-scratch into lp:zorba has 
been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/100355
-- 
https://code.launchpad.net/~zorba-coders/zorba/markos-scratch/+merge/100355
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 967864] Re: domainExpr != NULL assertion failed

2012-04-02 Thread Markos Zaharioudakis
** Changed in: zorba
   Status: New = Fix Committed

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

Title:
  domainExpr != NULL assertion failed

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  Compiling the following query results in a failing assertion
  (expr::compute_return_type):

  let $y := ./count[@meaning eq yes]
  let $output := if (./@level = 3) then $y else $y
  return if (./@nr = 3) then b{$output}/b else $output

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/967864/+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 971565] [NEW] Image module crashes upon MVG image.

2012-04-02 Thread Ghislain Fourny
Public bug reported:

The following test

zorba_image_module/image/basic_svg.xq

leads to a segmentation fault, because the following assertion fails
when lImage.magick() is set to MVG:

if (lImage.magick().compare(SVG) != 0) {
  ImageFunction::throwErrorWithQName(aDynCtx, IM002, The passed 
xs:base64Binary is not an image of type SVG);
}

The following fix seems to solve this:

if (lImage.magick().compare(SVG) != 0  lImage.magick().compare(MVG) != 0) 
{
  ImageFunction::throwErrorWithQName(aDynCtx, IM002, The passed 
xs:base64Binary is not an image of type SVG);
}

** Affects: zorba
 Importance: Undecided
 Assignee: Matthias Brantner (matthias-brantner)
 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/971565

Title:
  Image module crashes upon MVG image.

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following test

  zorba_image_module/image/basic_svg.xq

  leads to a segmentation fault, because the following assertion fails
  when lImage.magick() is set to MVG:

  if (lImage.magick().compare(SVG) != 0) {
ImageFunction::throwErrorWithQName(aDynCtx, IM002, The passed 
xs:base64Binary is not an image of type SVG);
  }

  The following fix seems to solve this:

  if (lImage.magick().compare(SVG) != 0  lImage.magick().compare(MVG) != 
0) {
ImageFunction::throwErrorWithQName(aDynCtx, IM002, The passed 
xs:base64Binary is not an image of type SVG);
  }

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

2012-04-02 Thread Paul J. Lucas
The proposal to merge lp:~zorba-coders/zorba/bug-966355 into lp:zorba has been 
updated.

Status: Approved = Needs review

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

2012-04-02 Thread Paul J. Lucas
The proposal to merge lp:~zorba-coders/zorba/bug-966355 into lp:zorba has been 
updated.

Commit Message changed to:

Added operators for built-in types (when ZORBA_WITH_BIG_INTEGER=OFF).

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

2012-04-02 Thread Paul J. Lucas
The proposal to merge lp:~zorba-coders/zorba/bug-966355 into lp:zorba has been 
updated.

Status: Approved = Needs review

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

2012-04-02 Thread Paul J. Lucas
The proposal to merge lp:~zorba-coders/zorba/bug-966355 into lp:zorba has been 
updated.

Status: Needs review = Approved

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

2012-04-02 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-966355-2012-04-02T15-29-21.432Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-966355/+merge/100316
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-966355 into lp:zorba

2012-04-02 Thread Paul J. Lucas
Also note that changes like:

  xs_integer pos = 1;

to:

  xs_integer pos( 1 );

are not simply stylistic: now that the constructors are explicit, the original 
line generates a compile-time error.  It would alternatively need to be changed 
to:

  xs_integer pos = xs_integer( 1 );

that serves no purpose other than being verbose.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-966355/+merge/100316
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-966355 into lp:zorba

2012-04-02 Thread Zorba Build Bot
Validation queue job bug-966355-2012-04-02T15-29-21.432Z is finished. The final 
status was:

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

2012-04-02 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1, 
Needs Fixing  1, Pending  1. Got: 4 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-966355/+merge/100316
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-966355 into lp:zorba

2012-04-02 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bug-966355 into lp:zorba has been 
updated.

Status: Approved = Needs review

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