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

2012-10-23 Thread Matthias Brantner
Matthias Brantner has proposed merging lp:~zorba-coders/zorba/bug-867209 into 
lp:zorba.

Commit message:
fix for bug 867209: improved error message for XQST0045

Requested reviews:
  Matthias Brantner (matthias-brantner)
  Till Westmann (tillw)
Related bugs:
  Bug #867209 in Zorba: Very confusing message for err:XQST0045
  https://bugs.launchpad.net/zorba/+bug/867209

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

fix for bug 867209: improved error message for XQST0045
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-867209/+merge/131074
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/compiler/translator/translator.cpp'
--- src/compiler/translator/translator.cpp	2012-10-22 15:10:23 +
+++ src/compiler/translator/translator.cpp	2012-10-23 19:12:19 +
@@ -3478,7 +3478,7 @@
 ns == XQUERY_MATH_FN_NS)
 {
   RAISE_ERROR(err::XQST0045, func_decl-get_location(),
-  ERROR_PARAMS(qnameItem-getLocalName()));
+  ERROR_PARAMS(qnameItem-getLocalName(), ZED(FUNCTION), ns));
 }
 
 if (! theModuleNamespace.empty()  ns != theModuleNamespace)
@@ -4121,8 +4121,7 @@
 if (AnnotationInternal::lookup(lExpandedQName) == AnnotationInternal::zann_end)
 {
   RAISE_ERROR(err::XQST0045, loc,
-  ERROR_PARAMS( % + (\ + lExpandedQName-getNamespace() + \
-+ : + lExpandedQName-getLocalName(;
+  ERROR_PARAMS(lExpandedQName-getLocalName(), ZED(ANNOTATION), annotNS));
 }
 
 //recognised = true;

=== modified file 'src/diagnostics/diagnostic_en.xml'
--- src/diagnostics/diagnostic_en.xml	2012-10-09 15:28:45 +
+++ src/diagnostics/diagnostic_en.xml	2012-10-23 19:12:19 +
@@ -377,7 +377,7 @@
codehttp://www.w3.org/2001/XMLSchema-instance/code,
codehttp://www.w3.org/2005/xpath-functions/code.
   /comment
-  value$1: invalid function or annotation namespace/value
+  value$1: $2 declared in reserved namespace${ 3}/value
 /diagnostic
 
 diagnostic code=XQST0046
@@ -4009,6 +4009,14 @@
   valueunexpected extra content at the end of the document (consider using the jsoniq-multiple-top-level-items option)/value
 /entry
 
+entry key=FUNCTION
+  valuefunction/value
+/entry
+
+entry key=ANNOTATION
+  valueannotation/value
+/entry
+
   /subvalues
 
 /diagnostic-list

=== modified file 'src/diagnostics/pregenerated/dict_en.cpp'
--- src/diagnostics/pregenerated/dict_en.cpp	2012-10-09 15:28:45 +
+++ src/diagnostics/pregenerated/dict_en.cpp	2012-10-23 19:12:19 +
@@ -216,7 +216,7 @@
   { XQST0038, multiple default collation declarations },
   { XQST0039, \$1\: duplicate parameter name },
   { XQST0040, \$1\: non-distinct expanded attribute QName },
-  { XQST0045, \$1\: invalid function or annotation namespace },
+  { XQST0045, \$1\: $2 declared in reserved namespace${ 3} },
   { XQST0046, ${\1\: }invalid URI literal${: 2} },
   { XQST0047, \$1\: duplicate target namespace },
   { XQST0048, \$1\: not in library namespace },
@@ -507,6 +507,7 @@
 #if !defined(ZORBA_NO_FULL_TEXT)
   { ZXQP8403, thesaurus data error${: 1} },
 #endif
+  { ~ANNOTATION, annotation },
   { ~AllMatchesHasExcludes, AllMatches contains StringExclude },
   { ~AlreadySpecified, already specified },
   { ~ArithOpNotDefinedBetween_23, arithmetic operation not defined between types \$2\ and \$3\ },
@@ -583,6 +584,7 @@
   { ~FTST0009_BadStopWordsLang, for current stop words },
   { ~FTST0009_BadThesaurusLang, for given thesaurus },
   { ~FTST0009_BadTokenizerLang, for current tokenizer },
+  { ~FUNCTION, function },
   { ~FileNotFoundOrReadable, file not found or readable },
   { ~FnNilledArgNotNode, fn:nilled() argument not a node },
   { ~FnOnlyInXQueryVersion_3, function only available in XQuery $3 },

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

2012-10-23 Thread Matthias Brantner
Review: Approve


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

2012-10-23 Thread Till Westmann
Review: Approve

works for me :)
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-867209/+merge/131074
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-867209 into lp:zorba

2012-10-23 Thread Till Westmann
The proposal to merge lp:~zorba-coders/zorba/bug-867209 into lp:zorba has been 
updated.

Status: Needs review = Approved

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

2012-10-23 Thread Zorba Build Bot
Validation queue job bug-867209-2012-10-23T19-19-42.43Z is finished. The final 
status was:

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

2012-10-23 Thread Matthias Brantner
Matthias Brantner has proposed merging lp:~zorba-coders/zorba/bug-1070551 into 
lp:zorba.

Commit message:
fix for bug #1070551 (zerr:ZOSE0003 stream read failure)

Requested reviews:
  Matthias Brantner (matthias-brantner)
Related bugs:
  Bug #1070551 in Zorba: zerr:ZOSE0003 stream read failure
  https://bugs.launchpad.net/zorba/+bug/1070551

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1070551/+merge/131099
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1070551/+merge/131099
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'ChangeLog'
--- ChangeLog	2012-10-22 20:06:08 +
+++ ChangeLog	2012-10-23 21:12:22 +
@@ -21,6 +21,7 @@
   * Fixed bug #1067706 (wrong const folding in mutually recursive udfs)
   * Fixed bug #1021492 (while computeing the sources of a prolog var, skip
 any var-setting exprs that appear in non-used (and non-optimized) functions). 
+  * Fixed bug #1070551 (zerr:ZOSE0003 stream read failure)
 
 version 2.7
 

=== modified file 'src/store/naive/atomic_items.cpp'
--- src/store/naive/atomic_items.cpp	2012-09-19 21:16:15 +
+++ src/store/naive/atomic_items.cpp	2012-10-23 21:12:22 +
@@ -3711,6 +3711,7 @@
 std::streambuf * pbuf;
 pbuf = theIstream.rdbuf();
 pbuf-pubseekoff(0, std::ios::beg);
+theIstream.clear();
   }
   theIsConsumed = true;
   return theIstream;

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

2012-10-23 Thread Matthias Brantner
Review: Approve


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

2012-10-23 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/bug-1070551 into lp:zorba has been 
updated.

Status: Needs review = Approved

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

2012-10-23 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1070551-2012-10-23T21-14-48.425Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1070551/+merge/131099
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/test-bug-1070551 into lp:zorba/security-module

2012-10-23 Thread Matthias Brantner
Matthias Brantner has proposed merging lp:~zorba-coders/zorba/test-bug-1070551 
into lp:zorba/security-module.

Commit message:
test to cover bug 1070551 (zerr:ZOSE0003 stream read failure)

Requested reviews:
  Matthias Brantner (matthias-brantner)
  David Graf (davidagraf)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/test-bug-1070551/+merge/131101

test to cover bug 1070551 (zerr:ZOSE0003 stream read failure)
-- 
https://code.launchpad.net/~zorba-coders/zorba/test-bug-1070551/+merge/131101
Your team Zorba Coders is subscribed to branch lp:zorba/security-module.
=== added file 'test/ExpQueryResults/security/hash-binary2.xml.res'
--- test/ExpQueryResults/security/hash-binary2.xml.res	1970-01-01 00:00:00 +
+++ test/ExpQueryResults/security/hash-binary2.xml.res	2012-10-23 21:18:19 +
@@ -0,0 +1,1 @@
+true

=== added file 'test/Queries/security/hash-binary2.xq'
--- test/Queries/security/hash-binary2.xq	1970-01-01 00:00:00 +
+++ test/Queries/security/hash-binary2.xq	2012-10-23 21:18:19 +
@@ -0,0 +1,8 @@
+import module namespace f = http://expath.org/ns/file;;
+import module namespace hash = http://www.zorba-xquery.com/modules/cryptography/hash;;
+
+variable $f := f:read-binary(resolve-uri(ls));
+
+variable $h := hash:sha1-binary($f);
+
+starts-with(a attr={$h || $f}//@attr, CT6WCSr3)

-- 
Mailing list: https://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/test-bug-1070551 into lp:zorba/security-module

2012-10-23 Thread Matthias Brantner
proposal 
https://code.launchpad.net/~zorba-coders/zorba/bug-1070551/+merge/131099 needs 
to be merged first
-- 
https://code.launchpad.net/~zorba-coders/zorba/test-bug-1070551/+merge/131101
Your team Zorba Coders is subscribed to branch lp:zorba/security-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/test-bug-1070551 into lp:zorba/security-module

2012-10-23 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/test-bug-1070551/+merge/131101
Your team Zorba Coders is subscribed to branch lp:zorba/security-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.7 into lp:~zorba-coders/zorba/zorba-experimental

2012-10-23 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/zorba-2.7 into 
lp:~zorba-coders/zorba/zorba-experimental has been updated.

Status: Needs review = Approved

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

-- 
Mailing list: https://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.7 into lp:~zorba-coders/zorba/zorba-experimental

2012-10-23 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/zorba-2.7 into 
lp:~zorba-coders/zorba/zorba-experimental failed. Below is the output from the 
failed tests.

experimental build started for lp:~zorba-coders/zorba/zorba-2.7. Check out 
http://zorba-2.7.zorba-xquery.com/ in half an hour or so. Logfile at 
http://zorbatest.lambda.nu:8080/remotequeue/experimental/zorba-2.7.log .


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

-- 
Mailing list: https://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.7 into lp:~zorba-coders/zorba/zorba-experimental

2012-10-23 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/zorba-2.7 into 
lp:~zorba-coders/zorba/zorba-experimental has been updated.

Status: Approved = Needs review

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

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

2012-10-23 Thread Zorba Build Bot
Validation queue job bug-1070551-2012-10-23T21-14-48.425Z is finished. The 
final status was:

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

2012-10-23 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/bug-1070551/+merge/131099
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-1070551 into lp:zorba

2012-10-23 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bug-1070551 into lp:zorba has been 
updated.

Status: Approved = Needs review

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

2012-10-23 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/zorba-2.7 into 
lp:~zorba-coders/zorba/zorba-experimental has been updated.

Status: Approved = Needs review

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

-- 
Mailing list: https://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/find-geos-include into lp:zorba/geo-module

2012-10-23 Thread Chris Hillery
Chris Hillery has proposed merging lp:~zorba-coders/zorba/find-geos-include 
into lp:zorba/geo-module.

Commit message:
Correct finding GEOS include directory.

Requested reviews:
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
-- 
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
Your team Zorba Coders is subscribed to branch lp:zorba/geo-module.
=== modified file 'cmake_modules/FindGeos.cmake'
--- cmake_modules/FindGeos.cmake	2011-02-23 12:55:52 +
+++ cmake_modules/FindGeos.cmake	2012-10-24 00:29:20 +
@@ -26,7 +26,7 @@
 ENDIF (GEOS_INCLUDE_DIR)
 
 # Look for the header file.
-FIND_PATH(GEOS_INCLUDE_DIR geos.h PATHS /usr/local/include/geos/) 
+FIND_PATH(GEOS_INCLUDE_DIR geos/geos.h PATHS /usr/local/include/geos/) 
 MARK_AS_ADVANCED(GEOS_INCLUDE_DIR)
 
 # Look for the library.

-- 
Mailing list: https://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/find-geos-include into lp:zorba/geo-module

2012-10-23 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/find-geos-include into 
lp:zorba/geo-module has been updated.

Commit Message changed to:

Correct finding GEOS include directory.

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
-- 
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
Your team Zorba Coders is subscribed to branch lp:zorba/geo-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/find-geos-include into lp:zorba/geo-module

2012-10-23 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
Your team Zorba Coders is subscribed to branch lp:zorba/geo-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/find-geos-include into lp:zorba/geo-module

2012-10-23 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
Your team Zorba Coders is subscribed to branch lp:zorba/geo-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/find-geos-include into lp:zorba/geo-module

2012-10-23 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/find-geos-include into 
lp:zorba/geo-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
-- 
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
Your team Zorba Coders is subscribed to branch lp:zorba/geo-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/find-geos-include into lp:zorba/geo-module

2012-10-23 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/find-geos-include-2012-10-24T00-42-33.94Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
Your team Zorba Coders is subscribed to branch lp:zorba/geo-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/bug1058231 into lp:zorba

2012-10-23 Thread Chris Hillery
Review: Needs Fixing

I think you need to remove the corresponding getenv code from 
bin/path_util.cpp, or else it'll get executed twice when running zorba.exe.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1058231/+merge/129531
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/find-geos-include into lp:zorba/geo-module

2012-10-23 Thread Zorba Build Bot
Validation queue job find-geos-include-2012-10-24T00-42-33.94Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/find-geos-include/+merge/131116
Your team Zorba Coders is subscribed to branch lp:zorba/geo-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.7 into lp:~zorba-coders/zorba/zorba-experimental

2012-10-23 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/zorba-2.7 into 
lp:~zorba-coders/zorba/zorba-experimental has been updated.

Status: Needs review = Approved

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

-- 
Mailing list: https://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.7 into lp:~zorba-coders/zorba/zorba-experimental

2012-10-23 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/zorba-2.7 into 
lp:~zorba-coders/zorba/zorba-experimental failed. Below is the output from the 
failed tests.

experimental build started for lp:~zorba-coders/zorba/zorba-2.7. Check out 
http://zorba-2.7.zorba-xquery.com/ in half an hour or so. Logfile at 
http://zorbatest.lambda.nu:8080/remotequeue/experimental/zorba-2.7.log .


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

-- 
Mailing list: https://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.7 into lp:~zorba-coders/zorba/zorba-experimental

2012-10-23 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/zorba-2.7 into 
lp:~zorba-coders/zorba/zorba-experimental has been updated.

Status: Approved = Needs review

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

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