[Zorba-coders] [Bug 990587] Re: Zorba with modules does not build if only JRE is installed (no javac or jar)

2012-04-30 Thread Chris Hillery
This is a duplicate of bug 988090, but since this one has more detail
I'll mark the other one as a dupe.

Assigning to me as this is basically my stuff.

** Changed in: zorba
 Assignee: Cezar Andrei (cezar-andrei) = Chris Hillery (ceejatec)

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

Title:
  Zorba with modules does not build if only JRE is installed (no javac
  or jar)

Status in Zorba - The XQuery Processor:
  New

Bug description:
  If a target machine has the JRE installed but it doesn't have the
  javac and/or jar executables, Zorba fails to build.

  1. Install JRE on the machine and make sure the full JSE is not installed 
(there should be no javac or jar executable)
  2. Checkout the trunk
  3. Checkout all the modules
  4. run cmake .. in the build folder

  The util-jvm and data-formatting modules fail to properly configure
  and this results in a Zorba cmake error instead of disabling the data-
  formatting module.

  The output I get:

  -- --- Module:   util-jvm---
  -- Looking for JNI
  -- Looking for Java
  -- Java version 1.6.0.24 configured successfully!
  -- Could NOT find Java (missing:  Java_JAR_EXECUTABLE Java_JAVAC_EXECUTABLE) 
(found version 1.6.0.24)
  -- Building Zorba without util-jvm module.
  -- ---
  -- 
  CMake Error at 
/home/colea/xquery_bzr/zorba_modules/schema-tools/CMakeLists.txt:22 
(FIND_PACKAGE):
Could not find module Findzorba_util-jvm_module.cmake or a configuration
file for package zorba_util-jvm_module.

Adjust CMAKE_MODULE_PATH to find Findzorba_util-jvm_module.cmake or set
zorba_util-jvm_module_DIR to the directory containing a CMake configuration
file for zorba_util-jvm_module.  The file will have one of the following
names:

  zorba_util-jvm_moduleConfig.cmake
  zorba_util-jvm_module-config.cmake


  -- Java and/or JNI not found; skipping schema-tools module.

  
  ...

  --  BEGIN Configuring module Data-Formatting 
  CMake Error at 
/home/colea/xquery_bzr/zorba_modules/data-formatting/CMakeLists.txt:25 
(FIND_PACKAGE):
Could not find module Findzorba_util-jvm_module.cmake or a configuration
file for package zorba_util-jvm_module.

Adjust CMAKE_MODULE_PATH to find Findzorba_util-jvm_module.cmake or set
zorba_util-jvm_module_DIR to the directory containing a CMake configuration
file for zorba_util-jvm_module.  The file will have one of the following
names:

  zorba_util-jvm_moduleConfig.cmake
  zorba_util-jvm_module-config.cmake


  -- Java and/or JNI not found; skipping data-formating module.
  --  END Configuring module Data-Formatting 

  ...

  -- Configuring incomplete, errors occurred!

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/990587/+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 988090] Re: data-formatting should build without util-jvm

2012-04-30 Thread Chris Hillery
*** This bug is a duplicate of bug 990587 ***
https://bugs.launchpad.net/bugs/990587

** This bug has been marked a duplicate of bug 990587
   Zorba with modules does not build if only JRE is installed (no javac or jar)

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

Title:
  data-formatting should build without util-jvm

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The data-formatting module currently marks util-jvm as REQUIRED, and
  fails with a somewhat mysterious message if it is not there. We should
  (a) make it build without util-jvm (albeit without including the xsl-
  fo module), and (b) improve the error message to point to the util-jvm
  module.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/988090/+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-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Chris Hillery
Chris Hillery has proposed merging 
lp:~zorba-coders/zorba/bug-990587-data-formatting into 
lp:zorba/data-formatting-module.

Requested reviews:
  Chris Hillery (ceejatec)
  Nicolae Brinza (nbrinza)
Related bugs:
  Bug #990587 in Zorba: Zorba with modules does not build if only JRE is 
installed (no javac or jar)
  https://bugs.launchpad.net/zorba/+bug/990587

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-module.
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt	2012-04-11 13:45:56 +
+++ CMakeLists.txt	2012-04-30 10:00:25 +
@@ -22,28 +22,32 @@
 # The util-jvm tool finds Java and JNI, so all standard cached JAVA_
 # variables will be set. util-jvm also caches Java_FOUND and JNI_FOUND
 # for us.
-FIND_PACKAGE (zorba_util-jvm_module REQUIRED)
-
-IF (JNI_FOUND)
-  INCLUDE_DIRECTORIES (${zorba_util-jvm_module_INCLUDE_DIRS})
-  
-  ENABLE_TESTING ()
-  INCLUDE (CTest)
-
-  SET_CMAKE_MODULE_PATH ()
-
-  FIND_PACKAGE (Zorba REQUIRED HINTS ${ZORBA_BUILD_DIR})
-  INCLUDE (${Zorba_USE_FILE})
-
-  ADD_SUBDIRECTORY (src)
-  #ADD_TEST_DIRECTORY (${CMAKE_SOURCE_DIR}/test)
-
-  DONE_DECLARING_ZORBA_URIS ()
-
-ELSE (JNI_FOUND)
-  MESSAGE ( STATUS Java and/or JNI not found; skipping data-formating module.)
-ENDIF(JNI_FOUND)
-
+FIND_PACKAGE (zorba_util-jvm_module QUIET)
+
+IF (zorba_util-jvm_module_FOUND)
+  IF (JNI_FOUND)
+INCLUDE_DIRECTORIES (${zorba_util-jvm_module_INCLUDE_DIRS})
+
+ENABLE_TESTING ()
+INCLUDE (CTest)
+
+SET_CMAKE_MODULE_PATH ()
+
+FIND_PACKAGE (Zorba REQUIRED HINTS ${ZORBA_BUILD_DIR})
+INCLUDE (${Zorba_USE_FILE})
+
+ADD_SUBDIRECTORY (src)
+#ADD_TEST_DIRECTORY (${CMAKE_SOURCE_DIR}/test)
+
+DONE_DECLARING_ZORBA_URIS ()
+
+  ELSE (JNI_FOUND)
+MESSAGE ( STATUS Java and/or JNI not found; skipping data-formating module.)
+  ENDIF(JNI_FOUND)
+
+ELSE (zorba_util-jvm_module_FOUND)
+  MESSAGE (STATUS Zorba's util-jvm module not found; skipping data-formatting module.)
+ENDIF (zorba_util-jvm_module_FOUND)
 
 
 MESSAGE (STATUS  END Configuring module Data-Formatting )

-- 
Mailing list: https://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-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-990587-data-formatting into 
lp:zorba/data-formatting-module has been updated.

Commit Message changed to:

Report gracefully if util-jvm module is not found.

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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/bug-990587-schema-tools into lp:zorba/schema-tools-module

2012-04-30 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
Your team Zorba Coders is subscribed to branch lp:zorba/schema-tools-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/bug-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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/bug-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-990587-data-formatting into 
lp:zorba/data-formatting-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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/bug-990587-schema-tools into lp:zorba/schema-tools-module

2012-04-30 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-990587-schema-tools into 
lp:zorba/schema-tools-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
Your team Zorba Coders is subscribed to branch lp:zorba/schema-tools-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/bug-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-990587-data-formatting-2012-04-30T10-02-42.29Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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] [Bug 990587] Re: Zorba with modules does not build if only JRE is installed (no javac or jar)

2012-04-30 Thread Chris Hillery
** Branch linked: lp:~zorba-coders/zorba/bug-990587-data-formatting

** Branch linked: lp:~zorba-coders/zorba/bug-990587-schema-tools

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

Title:
  Zorba with modules does not build if only JRE is installed (no javac
  or jar)

Status in Zorba - The XQuery Processor:
  New

Bug description:
  If a target machine has the JRE installed but it doesn't have the
  javac and/or jar executables, Zorba fails to build.

  1. Install JRE on the machine and make sure the full JSE is not installed 
(there should be no javac or jar executable)
  2. Checkout the trunk
  3. Checkout all the modules
  4. run cmake .. in the build folder

  The util-jvm and data-formatting modules fail to properly configure
  and this results in a Zorba cmake error instead of disabling the data-
  formatting module.

  The output I get:

  -- --- Module:   util-jvm---
  -- Looking for JNI
  -- Looking for Java
  -- Java version 1.6.0.24 configured successfully!
  -- Could NOT find Java (missing:  Java_JAR_EXECUTABLE Java_JAVAC_EXECUTABLE) 
(found version 1.6.0.24)
  -- Building Zorba without util-jvm module.
  -- ---
  -- 
  CMake Error at 
/home/colea/xquery_bzr/zorba_modules/schema-tools/CMakeLists.txt:22 
(FIND_PACKAGE):
Could not find module Findzorba_util-jvm_module.cmake or a configuration
file for package zorba_util-jvm_module.

Adjust CMAKE_MODULE_PATH to find Findzorba_util-jvm_module.cmake or set
zorba_util-jvm_module_DIR to the directory containing a CMake configuration
file for zorba_util-jvm_module.  The file will have one of the following
names:

  zorba_util-jvm_moduleConfig.cmake
  zorba_util-jvm_module-config.cmake


  -- Java and/or JNI not found; skipping schema-tools module.

  
  ...

  --  BEGIN Configuring module Data-Formatting 
  CMake Error at 
/home/colea/xquery_bzr/zorba_modules/data-formatting/CMakeLists.txt:25 
(FIND_PACKAGE):
Could not find module Findzorba_util-jvm_module.cmake or a configuration
file for package zorba_util-jvm_module.

Adjust CMAKE_MODULE_PATH to find Findzorba_util-jvm_module.cmake or set
zorba_util-jvm_module_DIR to the directory containing a CMake configuration
file for zorba_util-jvm_module.  The file will have one of the following
names:

  zorba_util-jvm_moduleConfig.cmake
  zorba_util-jvm_module-config.cmake


  -- Java and/or JNI not found; skipping data-formating module.
  --  END Configuring module Data-Formatting 

  ...

  -- Configuring incomplete, errors occurred!

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

2012-04-30 Thread Zorba Build Bot
Validation queue job bug-990587-data-formatting-2012-04-30T10-02-42.29Z is 
finished. The final status was:

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

2012-04-30 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-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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/bug-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bug-990587-data-formatting into 
lp:zorba/data-formatting-module has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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/bug925143 into lp:zorba

2012-04-30 Thread Cezar Andrei
Review: Approve

Looks good.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug925143/+merge/102791
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/bug925143 into lp:zorba

2012-04-30 Thread Cezar Andrei
The proposal to merge lp:~zorba-coders/zorba/bug925143 into lp:zorba has been 
updated.

Status: Needs review = Approved

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

2012-04-30 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug925143-2012-04-30T14-39-05.395Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug925143/+merge/102791
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-990587-schema-tools into lp:zorba/schema-tools-module

2012-04-30 Thread Nicolae Brinza
Review: Approve

Tested it and it works.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
Your team Zorba Coders is subscribed to branch lp:zorba/schema-tools-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/bug-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Nicolae Brinza
Review: Approve

Tested it and it works.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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/bug925143 into lp:zorba

2012-04-30 Thread Zorba Build Bot
Validation queue job bug925143-2012-04-30T14-39-05.395Z is finished. The final 
status was:

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

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

Status: Approved = Merged

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

2012-04-30 Thread Sorin Marian Nasoi
The proposal to merge lp:~zorba-coders/zorba/fix_bug_962216 into lp:zorba has 
been updated.

Status: Needs review = Approved

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

2012-04-30 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/fix_bug_962216-2012-04-30T15-31-56.1Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix_bug_962216/+merge/103281
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-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-990587-data-formatting into 
lp:zorba/data-formatting-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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/fix_bug_987830 into lp:zorba

2012-04-30 Thread Sorin Marian Nasoi
 The module files should contain syntactically valid XQuery code. The formal
 semantics spec you cite is not concerned with syntax, and not everything
 described there has a coresponding syntactic construct. The none type is one
 example from the formal semantics that cannot be expressed syntactically. To
 see what types can be expressed syntactically, you have to look here:
 
 http://www.w3.org/TR/xquery-30/#id-sequencetype-syntax
I see this makes sense.

One more thing though: where is the exception added for the fn:error function:
http://www.w3.org/TR/xpath-functions-30/#func-error ?

Thanks,
Sorin
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix_bug_987830/+merge/103370
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/fix_bug_962216 into lp:zorba

2012-04-30 Thread Zorba Build Bot
Validation queue job fix_bug_962216-2012-04-30T15-31-56.1Z is finished. The 
final status was:

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

2012-04-30 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/fix_bug_962216/+merge/103281
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-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-990587-data-formatting-2012-04-30T16-03-35.505Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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] [Bug 986580] Re: fs::lsdir() improvements

2012-04-30 Thread Paul J. Lucas
** Changed in: zorba
   Status: In Progress = Fix Committed

** Changed in: zorba
Milestone: None = 2.5

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

Title:
  fs::lsdir() improvements

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  I noticed that this function was added.  There are a few of problems
  with its implementation:

  1. It forces the user to use a vector.  What if I want to use a list?
  Or something else?

  2. It uses std::string.  The majority of the Zorba code base uses
  zstring.

  3. It always reads the entire directory whether you want it or not.
  (WHat if there are 10,000 files in a directory?)  Instead, it ought to
  provide an iterator that you can stop any time you please.

  4. After the initial check for an error from opendir(), the code
  doesn't check for any subsequent errors, e.g., it does not check
  closedir() for error.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/986580/+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 962220] Re: full-text module

2012-04-30 Thread Paul J. Lucas
** 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/962220

Title:
  full-text module

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  Implement a new module that provides basic full-text related
  functions.

  - accessing thesaurus
  - stemming
  - tokenization
  - accessing stop-words

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

2012-04-30 Thread Sorin Marian Nasoi
Review: Approve


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

2012-04-30 Thread Sorin Marian Nasoi
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/fix_bug_987830/+merge/103370
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:~diogo-simoes89/zorba/DC-documentation into lp:zorba/data-cleaning-module

2012-04-30 Thread Sorin Marian Nasoi
Review: Approve


-- 
https://code.launchpad.net/~diogo-simoes89/zorba/DC-documentation/+merge/103902
Your team Zorba Coders is subscribed to branch lp:zorba/data-cleaning-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:~diogo-simoes89/zorba/DC-documentation into lp:zorba/data-cleaning-module

2012-04-30 Thread Sorin Marian Nasoi
The proposal to merge lp:~diogo-simoes89/zorba/DC-documentation into 
lp:zorba/data-cleaning-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~diogo-simoes89/zorba/DC-documentation/+merge/103902
-- 
https://code.launchpad.net/~diogo-simoes89/zorba/DC-documentation/+merge/103902
Your team Zorba Coders is subscribed to branch lp:zorba/data-cleaning-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] [Bug 992037] [NEW] Miscellaneous warnings on Windows

2012-04-30 Thread Paul J. Lucas
Public bug reported:

First warning:

include\zorba\transcode_stream.h(275) : warning C4355: 'this' : used in
base member initializer list

Second warning:

src\runtime\json\jsonml_array.cpp(201) : warning C4800:
'zorba::whitespace::type' : forcing value to bool 'true' or 'false'
(performance warning)

** Affects: zorba
 Importance: Undecided
 Assignee: Paul J. Lucas (paul-lucas)
 Status: Triaged

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

Title:
  Miscellaneous warnings on Windows

Status in Zorba - The XQuery Processor:
  Triaged

Bug description:
  First warning:

  include\zorba\transcode_stream.h(275) : warning C4355: 'this' : used
  in base member initializer list

  Second warning:

  src\runtime\json\jsonml_array.cpp(201) : warning C4800:
  'zorba::whitespace::type' : forcing value to bool 'true' or 'false'
  (performance warning)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/992037/+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 992037] Re: Miscellaneous warnings on Windows

2012-04-30 Thread Paul J. Lucas
** Description changed:

  First warning:
  
- include\zorba/transcode_stream.h(275) : warning C4355: 'this' : used in
+ include\zorba\transcode_stream.h(275) : warning C4355: 'this' : used in
  base member initializer list
  
  Second warning:
  
  src\runtime\json\jsonml_array.cpp(201) : warning C4800:
  'zorba::whitespace::type' : forcing value to bool 'true' or 'false'
  (performance warning)

** Branch linked: lp:~paul-lucas/zorba/bug-992037

** Changed in: zorba
   Importance: Undecided = Low

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

Title:
  Miscellaneous warnings on Windows

Status in Zorba - The XQuery Processor:
  Triaged

Bug description:
  First warning:

  include\zorba\transcode_stream.h(275) : warning C4355: 'this' : used
  in base member initializer list

  Second warning:

  src\runtime\json\jsonml_array.cpp(201) : warning C4800:
  'zorba::whitespace::type' : forcing value to bool 'true' or 'false'
  (performance warning)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/992037/+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-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/bug-990587-data-formatting into 
lp:zorba/data-formatting-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 bug-990587-data-formatting-2012-04-30T16-03-35.505Z is
  finished.  The final status was:

  

  2 tests did not succeed - changes not commited.


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

-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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:~diogo-simoes89/zorba/DC-documentation into lp:zorba/data-cleaning-module

2012-04-30 Thread Zorba Build Bot
The proposal to merge lp:~diogo-simoes89/zorba/DC-documentation into 
lp:zorba/data-cleaning-module has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~diogo-simoes89/zorba/DC-documentation/+merge/103902
-- 
https://code.launchpad.net/~diogo-simoes89/zorba/DC-documentation/+merge/103902
Your team Zorba Coders is subscribed to branch lp:zorba/data-cleaning-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/bug-990587-schema-tools into lp:zorba/schema-tools-module

2012-04-30 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-990587-schema-tools-2012-04-30T21-51-49.171Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
Your team Zorba Coders is subscribed to branch lp:zorba/schema-tools-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/bug-990587-schema-tools into lp:zorba/schema-tools-module

2012-04-30 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/bug-990587-schema-tools into 
lp:zorba/schema-tools-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 bug-990587-schema-tools-2012-04-30T21-51-49.171Z is
  finished.  The final status was:

  

  2 tests did not succeed - changes not commited.


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

-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
Your team Zorba Coders is subscribed to branch lp:zorba/schema-tools-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/bug-990587-schema-tools into lp:zorba/schema-tools-module

2012-04-30 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bug-990587-schema-tools into 
lp:zorba/schema-tools-module has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
Your team Zorba Coders is subscribed to branch lp:zorba/schema-tools-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/bug-988417-block-internal-module into lp:zorba

2012-04-30 Thread Till Westmann
It seemed to me that the whole point of distinguishing between built-in modules 
and other modules here was that one does not want to invoke the the existing 
URI resolution mechanisms. Wanting to keep this spirit of the existing code, I 
proposed this solution. If that's not needed, then that's fine with me.
(The one thing that I'm not extremely fond of is that we would invoke 
exceptions to find the answer to a simple question, but I can live with that.)

Obviously going through the URIMapper mechanism would have the great advantage 
of not forcing the user of the API to find out which modules are internal and 
which ones aren't. This would also make programs written agains this API more 
robust wrt. to changes in the internal/external classification of modules.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-988417-block-internal-module/+merge/103542
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/fix-rq-28msec into lp:zorba

2012-04-30 Thread Chris Hillery
Chris Hillery has proposed merging lp:~zorba-coders/zorba/fix-rq-28msec into 
lp:zorba.

Requested reviews:
  Chris Hillery (ceejatec)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'bin/test/mymod.xq'
--- bin/test/mymod.xq	2012-04-24 12:39:38 +
+++ bin/test/mymod.xq	2012-04-30 23:34:25 +
@@ -14,7 +14,7 @@
  : limitations under the License.
 :)
 
-module namespace foo = http://www.28msec.com/foo;;
+module namespace foo = http://www.zorba-xquery.com/foo;;
 
 declare function foo:test() {
   if (fn:true())

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

2012-04-30 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
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/fix-rq-28msec into lp:zorba

2012-04-30 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/fix-rq-28msec into lp:zorba has 
been updated.

Description changed to:

This module is not imported by anything; it is only used for checking 
zorbacmd's -l (compile library module) flag. So the namespace URI can be 
anything. I just changed it to a different site due to the changes in the way 
28msec.com handles unknown URLs. (Why this test case contacted 28msec.com *at 
all* is a different bug.)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
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-988417-block-internal-module into lp:zorba

2012-04-30 Thread Chris Hillery
IMHO, the point of built-in modules was to prevent the overhead of 
*compiling* those modules, not bypassing URI resolution per se. It is true, 
though, that invoking URI resolution implies a bit of performance overhead. I 
believe that if only the URI mapping stage is invoked that the overhead will be 
relatively small. It probably is important to bypass the URL Resolution stage, 
because that's where things like making network connections to download the 
module might occur.

I agree that using exceptions to communicate results isn't ideal, but I think 
the code reuse and API consolidation outweighs that concern in this case. 
However, it would actually be pretty easy to either modify apply_uri_mappers() 
or provide a slight variant of that method (with appropriate refactoring) which 
simply checked for DENY_ACCESS and returned a bool instead of throwing an 
exception. I could do that if you like.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-988417-block-internal-module/+merge/103542
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/fix-rq-28msec into lp:zorba

2012-04-30 Thread Till Westmann
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
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/fix-rq-28msec into lp:zorba

2012-04-30 Thread Till Westmann
The proposal to merge lp:~zorba-coders/zorba/fix-rq-28msec into lp:zorba has 
been updated.

Status: Needs review = Approved

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

2012-04-30 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/fix-rq-28msec-2012-04-30T23-46-03.84Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
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/fix-rq-28msec into lp:zorba

2012-04-30 Thread Zorba Build Bot
Validation queue job fix-rq-28msec-2012-04-30T23-46-03.84Z is finished. The 
final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
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/fix-rq-28msec into lp:zorba

2012-04-30 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/fix-rq-28msec into lp:zorba has 
been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-rq-28msec/+merge/104187
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-990587-schema-tools into lp:zorba/schema-tools-module

2012-04-30 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-990587-schema-tools into 
lp:zorba/schema-tools-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
Your team Zorba Coders is subscribed to branch lp:zorba/schema-tools-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/bug-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-990587-data-formatting-2012-05-01T00-21-37.286Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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] [Bug 992037] Re: Miscellaneous warnings on Windows

2012-04-30 Thread Paul J. Lucas
For the first warning, the code is actually correct as-is. The warning
is ONLY a warning. Hence, in this case, the warning should be disabled.

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

Title:
  Miscellaneous warnings on Windows

Status in Zorba - The XQuery Processor:
  Triaged

Bug description:
  First warning:

  include\zorba\transcode_stream.h(275) : warning C4355: 'this' : used
  in base member initializer list

  Second warning:

  src\runtime\json\jsonml_array.cpp(201) : warning C4800:
  'zorba::whitespace::type' : forcing value to bool 'true' or 'false'
  (performance warning)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/992037/+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-990587-schema-tools into lp:zorba/schema-tools-module

2012-04-30 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-990587-schema-tools-2012-05-01T00-52-53.21Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
Your team Zorba Coders is subscribed to branch lp:zorba/schema-tools-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/bug-990587-data-formatting into lp:zorba/data-formatting-module

2012-04-30 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug-990587-data-formatting into 
lp:zorba/data-formatting-module has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-data-formatting/+merge/104077
Your team Zorba Coders is subscribed to branch lp:zorba/data-formatting-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/bug-992304-compile-only into lp:zorba

2012-04-30 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-992304-compile-only/+merge/104194
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-992304-compile-only into lp:zorba

2012-04-30 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-992304-compile-only into 
lp:zorba has been updated.

Commit Message changed to:

Don't check the URI passed to FakeLibraryModuleURLResolver - just resolve it.

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-992304-compile-only/+merge/104194
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-992304-compile-only/+merge/104194
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 992304] Re: Executing lib_only query invokes URI resolution process

2012-04-30 Thread Chris Hillery
I have figured out that this only happens when compiling the query as a
library module, as with the -l command-line option. This happens because
Zorba actually creates a separate query that imports the module
namespace and executes that, registering a custom URLResolver for that
namespace URI that returns the original query.

The reason this ends up hitting the web is because the full URI mapping
is also done. So, in this case, the URL http://www.zorba-
xquery.com/foo gets turned into a number of candidate URIs, one of
which is http://www.zorba-xquery.com/foo.xq;. The custom URLResolver
recognizes only the original unchanged URI, so it returns nothing for
this URI, letting Zorba fall through to the built-in URLResolvers
including the HTTPURLResolver.

The fix is easy enough - simplify the custom URLResolver so it doesn't
even check the URL it is passed. We know it will always be the URL we
are expecting, even if it's been modified by URI Mapping, so we can just
return the query file resource directly. Tested locally and this works.

** Changed in: zorba
 Assignee: (unassigned) = Chris Hillery (ceejatec)

** Branch linked: lp:~zorba-coders/zorba/bug-992304-compile-only

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

Title:
  Executing lib_only query invokes URI resolution process

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following query:

  module namespace foo = http://www.zorba-xquery.com/foo;;

  declare function foo:test() {
if (fn:true())
then 1
else $a
  };

  (which is in the Zorba source as bin/test/mymod.xq) actually contacts
  www.zorba-xquery.com via HTTP and attempts to download /foo.xq. This
  means that the module namespace URI is undergoing URI resolution. I
  cannot imagine why this would be the case, but it leads not only to
  slowness but can cause the query to change behaviour depending on what
  www.zorba-xquery.com chooses to return. (In the original test case,
  the URL was at 28msec.com, and when 28msec.com changed from raising a
  404 error to returning a 200 with an error HTML page, the query
  started failing with a compilation error. Apparently Zorba was
  attempting to actually compile the HTML as an XQuery.)

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

2012-04-30 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-992304-compile-only into 
lp:zorba has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-992304-compile-only/+merge/104194
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-992304-compile-only/+merge/104194
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-990587-schema-tools into lp:zorba/schema-tools-module

2012-04-30 Thread Zorba Build Bot
Validation queue job bug-990587-schema-tools-2012-05-01T00-52-53.21Z is 
finished. The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-990587-schema-tools/+merge/104079
Your team Zorba Coders is subscribed to branch lp:zorba/schema-tools-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/bug-992304-compile-only into lp:zorba

2012-04-30 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/bug-992304-compile-only/+merge/104194
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-992304-compile-only into lp:zorba

2012-04-30 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bug-992304-compile-only into 
lp:zorba has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-992304-compile-only/+merge/104194
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-992304-compile-only/+merge/104194
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 992037] Re: Miscellaneous warnings on Windows

2012-04-30 Thread Paul J. Lucas
** Changed in: zorba
   Status: Triaged = In Progress

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

Title:
  Miscellaneous warnings on Windows

Status in Zorba - The XQuery Processor:
  In Progress

Bug description:
  First warning:

  include\zorba\transcode_stream.h(275) : warning C4355: 'this' : used
  in base member initializer list

  Second warning:

  src\runtime\json\jsonml_array.cpp(201) : warning C4800:
  'zorba::whitespace::type' : forcing value to bool 'true' or 'false'
  (performance warning)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/992037/+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 974474] Re: invalid regex Block Escapes not reported for ICU

2012-04-30 Thread Paul J. Lucas
The XML Schema Part 2 specification includes the note:

Note:  [Unicode Database] is subject to future revision. For example,
the mapping from code points to character properties might be updated.
All ·minimally conforming· processors ·must· support the character
properties defined in the version of [Unicode Database] that is current
at the time this specification became a W3C Recommendation. However,
implementors are encouraged to support the character properties defined
in any future version.

Since the Unicode Database can grow over time, there's no easy way to
know what is and isn't legal.

** Changed in: zorba
   Status: Confirmed = Won't Fix

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

Title:
  invalid regex Block Escapes not reported for ICU

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

Bug description:
  When using ICU, a query such as:

fn:matches( a, \p{IsBasic-Latin} )

  returns true even though it should raise error err:FORX0002 since
  IsBasic-Latin is not a valid Block Escape according to:

http://www.w3.org/TR/xmlschema-2/#charcter-classes

  in [36]. (It should be IsBasicLatin -- no '-'.)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/974474/+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-988417-block-internal-module into lp:zorba

2012-04-30 Thread Till Westmann
I've changed this as proposed (I think) and added some tests. 
Having the exception throw directly seems to have the advantage that I get 
consistent behavior between internal and external modules - so that seems to be 
good.

As resolution doesn't seem to happen in the current scenario, the only thing 
that's still not that nice is that we're updating the vector for something 
that's in principle a read-only operation. But, as you said, that's probably a 
minor overhead.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-988417-block-internal-module/+merge/103542
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