zorba-coders team mailing list archive
-
zorba-coders team
-
Mailing list archive
-
Message #24420
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
Chris Hillery has proposed merging lp:~zorba-coders/zorba/bug-1189807 into lp:zorba.
Commit message:
Updated "xml" module to Zorba 3.0 standards. Deleted backwards-compatible x:parse-xml-fragment() functions.
Requested reviews:
Chris Hillery (ceejatec)
Related bugs:
Bug #1187825 in Zorba: "Remove parse-xml-fragment"
https://bugs.launchpad.net/zorba/+bug/1187825
Bug #1189807 in Zorba: "Update core module "xml""
https://bugs.launchpad.net/zorba/+bug/1189807
For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1189807/+merge/176627
--
https://code.launchpad.net/~zorba-coders/zorba/bug-1189807/+merge/176627
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'cmake_modules/GenZorbaRuntime.cmake'
--- cmake_modules/GenZorbaRuntime.cmake 2013-03-04 16:17:30 +0000
+++ cmake_modules/GenZorbaRuntime.cmake 2013-07-24 09:09:27 +0000
@@ -40,7 +40,7 @@
EXECUTE_PROCESS (
COMMAND
${ZORBA_EXE}
- -q "import module namespace file = 'http://expath.org/ns/file'; import module namespace x = 'http://www.zorba-xquery.com/modules/xml'; file:exists( 'a non existant file' )"
+ -q "import module namespace file = 'http://expath.org/ns/file'; import module namespace x = 'http://zorba.io/modules/xml'; file:exists( 'a non existant file' )"
RESULT_VARIABLE ZORBA_WORKS_RES
OUTPUT_VARIABLE ZORBA_WORKS_OUTPUT
)
=== modified file 'modules/CMakeLists.txt'
--- modules/CMakeLists.txt 2013-07-17 15:53:51 +0000
+++ modules/CMakeLists.txt 2013-07-24 09:09:27 +0000
@@ -19,6 +19,7 @@
ADD_SUBDIRECTORY(xqxq)
ADD_SUBDIRECTORY(w3c)
ADD_SUBDIRECTORY(full-text)
+ADD_SUBDIRECTORY(xml)
ADD_SUBDIRECTORY(json)
ADD_SUBDIRECTORY(nodes)
=== modified file 'modules/com/zorba-xquery/www/modules/CMakeLists.txt'
--- modules/com/zorba-xquery/www/modules/CMakeLists.txt 2013-07-17 15:48:38 +0000
+++ modules/com/zorba-xquery/www/modules/CMakeLists.txt 2013-07-24 09:09:27 +0000
@@ -70,12 +70,8 @@
URI "http://www.zorba-xquery.com/modules/schema")
DECLARE_ZORBA_MODULE(FILE string.xq VERSION 2.1
URI "http://www.zorba-xquery.com/modules/string")
-DECLARE_ZORBA_SCHEMA(FILE xml-options.xsd
- URI "http://www.zorba-xquery.com/modules/xml-options")
DECLARE_ZORBA_MODULE(FILE uri.xq VERSION 1.0
URI "http://www.zorba-xquery.com/modules/uri")
-DECLARE_ZORBA_MODULE(FILE xml.xq VERSION 2.0
- URI "http://www.zorba-xquery.com/modules/xml")
DECLARE_ZORBA_MODULE(FILE xqdoc.xq VERSION 2.0
URI "http://www.zorba-xquery.com/modules/xqdoc")
DECLARE_ZORBA_SCHEMA(FILE xqdoc-options.xsd
=== added directory 'modules/xml'
=== renamed file 'modules/com/zorba-xquery/www/modules/xml-options.xsd' => 'modules/xml/xml-options.xsd'
--- modules/com/zorba-xquery/www/modules/xml-options.xsd 2013-03-06 07:39:18 +0000
+++ modules/xml/xml-options.xsd 2013-07-24 09:09:27 +0000
@@ -15,7 +15,7 @@
- limitations under the License.
-->
<schema xmlns="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://www.zorba-xquery.com/modules/xml-options"
+ targetNamespace="http://zorba.io/modules/xml-options"
elementFormDefault="qualified" attributeFormDefault="qualified">
<element name="options">
=== renamed file 'modules/com/zorba-xquery/www/modules/xml.xq' => 'modules/xml/xml.xq'
--- modules/com/zorba-xquery/www/modules/xml.xq 2013-06-25 03:55:20 +0000
+++ modules/xml/xml.xq 2013-07-24 09:09:27 +0000
@@ -30,8 +30,8 @@
: them in a streaming fashion - each at a time:</p>
:
: <pre class="brush: xquery;">
- : import module namespace x = "http://www.zorba-xquery.com/modules/xml";
- : import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+ : import module namespace x = "http://zorba.io/modules/xml";
+ : import schema namespace opt = "http://zorba.io/modules/xml-options";
: x:parse(
: "<from1>Jani</from1><from2>Jani</from2><from3>Jani</from3>",
: <opt:options>
@@ -44,8 +44,8 @@
: before returning a sequence of nodes as shown in the following example:</p>
:
: <pre class="brush: xquery;">
- : import module namespace x = "http://www.zorba-xquery.com/modules/xml";
- : import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+ : import module namespace x = "http://zorba.io/modules/xml";
+ : import schema namespace opt = "http://zorba.io/modules/xml-options";
: x:parse(
: "<root>
: <from1>Jani1</from1>
@@ -68,10 +68,10 @@
: @project Zorba/Data Converters/XML
:
:)
-module namespace x = "http://www.zorba-xquery.com/modules/xml";
+module namespace x = "http://zorba.io/modules/xml";
import module namespace schema = "http://www.zorba-xquery.com/modules/schema";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
declare namespace zerr = "http://zorba.io/modules/zorba-errors";
declare namespace err = "http://www.w3.org/xqt-errors";
@@ -81,16 +81,18 @@
(:~
- : A function to parse XML files and fragments (i.e.
+ : <p>A function to parse XML files and fragments (i.e.
: <a href="http://www.w3.org/TR/xml/#wf-entities">external general parsed
- : entities</a>). The functions takes two arguments: the first one is the
+ : entities</a>).</p>
+ :
+ : <p>The functions takes two arguments: the first one is the
: string to be parsed and the second argument is an <options/> element that
: passes a list of options to the parsing function. They are described below.
: The options element must conform to the xml-options:options element type
: from the xml-options.xsd schema. Some of these
: will be passed to the underlying library (LibXml2) and further documentation
: for them can be found at <a href="http://xmlsoft.org/html/libxml-parser.html">
- : LibXml2 parser</a>.
+ : LibXml2 parser</a>.</p>
:
: The list of available options:
:
@@ -194,8 +196,8 @@
: An example that sets the base-uri of the parsed external entities:
: </p>
: <pre class="brush: xquery;">
- : import module namespace x = "http://www.zorba-xquery.com/modules/xml";
- : import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+ : import module namespace x = "http://zorba.io/modules/xml";
+ : import schema namespace opt = "http://zorba.io/modules/xml-options";
: x:parse("<from1>Jani</from1><from2>Jani</from2><from3>Jani</from3>",
: <opt:options>
: <opt:base-uri opt:value="urn:test"/>
@@ -235,201 +237,15 @@
(:~
- : <br/><p>
- : Note: this function is included for backwards compatibility purposes. It
- : is recommended that you use the x:parse() function instead.
- : </p><br/>
- :
- : A function to parse XML files and fragments (i.e.
- : <a href="http://www.w3.org/TR/xml/#wf-entities">external general parsed
- : entities</a>). The functions takes two arguments: the first one is the
- : string to be parsed and the second argument is a flags string
- : (eEdDsSlLwWfF]*(;[\p{L}]*)?) selecting the options described below.
- : <br/>
- : <br/>
- :
- : The convention for the flags is that a lower-case letter enables
- : an option and the corresponding upper-case letter disables it; specifying
- : both is an error; specifying neither leaves it implementation-defined
- : whether the option is enabled or disabled. Specifying the same option twice
- : is not an error, but specifying inconsistent options (for example "eE") is
- : a dynamic error. The options are:
- :
- : <ul>
- : <li>
- : eE - enables or disables processing of XML external entities. If the option
- : is enabled, the input must conform to the syntax extParsedEnt (production
- : [78] in XML 1.0, see <a href="http://www.w3.org/TR/xml/#wf-entities">
- : Well-Formed Parsed Entities</a>). The result of the function call is a list
- : of nodes corresponding to the top-level components of the content of the
- : external entity: that is, elements, processing instructions, comments, and
- : text nodes. CDATA sections and character references are expanded, and
- : adjacent characters are merged so the result contains no adjacent text
- : nodes. If this option is enabled, none of the options d, s, or l may be
- : enabled. If the option is disabled, the input must be a well-formed XML
- : document conforming to the Document production
- : (<a href="http://www.w3.org/TR/xml/#sec-well-formed">production [1] in XML 1.0</a>).
- : </li>
- :
- : <li>
- : dD - enables or disables DTD-based validation. If this option is enabled and
- : the input references a DTD, then the input must be a well-formed and
- : DTD-valid XML document. If the option is enabled and the input does not
- : reference a DTD then the option is ignored. If the option is disabled, the
- : input is not required to reference a DTD and if it does reference a DTD then
- : the DTD is ignored for validation purposes (though it will still be read for
- : purposes such as expanding entity references and identifying ID attributes).
- : </li>
- :
- : <li>
- : sS - enables or disables strict XSD-based validation. If this option is
- : enabled, the result is equivalent to processing the input with the option
- : disabled, and then copying the result using the XQuery "validate strict"
- : expression.
- : </li>
- :
- : <li>
- : lL - enables or disables lax XSD-based validation. If this option is enabled,
- : the result is equivalent to processing the input with the option disabled,
- : and then copying the result using the XQuery "validate lax " expression.
- : </li>
- :
- : <li>
- : wW - enables or disables whitespace stripping. If the option is enabled,
- : any whitespace-only text nodes that remain after any DTD-based or XSD-based
- : processing are stripped from the input; if it is disabled, such
- : whitespace-only text nodes are retained.
- : </li>
- :
- : <li>
- : fF - enables or disables fatal error processing. If fatal error processing
- : is enabled, then any failure to parse the input in the manner requested
- : results in a dynamic error. If fatal error processing is disabled, then any
- : failure to parse the input (and also, in the case of fn:doc, a failure to
- : obtain the input by dereferencing the supplied URI) results in the function
- : returning an empty sequence and raising no error.
- : </li>
- : </ul>
- :
- : @param $xml-string The string that holds the XML to be parsed. If empty,
- : the function will return an empty sequence
- : @param $options The options for the parsing
- : @return The parsed XML as a document node or a list of nodes, or an empty
- : sequence.
- :
- : @error zerr:ZXQD0003 The error will be raised if the options to the function
- : are inconsistent.
- :
- : @error err:FODC0006 The error will be raised if the input string is not a
- : valid XML document or fragment (external general parsed
- : entity) or if DTD validation was enabled and the
- : document has not passed it.
- :
- : @error err:XQDY0027 The error will be raised if schema validation was enabled
- : and the input document has not passed it.
- :
- : @deprecated
- :
- :)
-declare function x:parse-xml-fragment(
- $xml-string as xs:string?,
- $options as xs:string) as node()*
-{
- let $new_options := <opt:options>{
- if (contains($options, "e"))
- then <opt:parse-external-parsed-entity/> else (),
- if (contains($options, "d"))
- then <opt:DTD-validate/> else (),
- if (contains($options, "s"))
- then <opt:schema-validate opt:mode="strict"/>
- else (),
- if (contains($options, "l"))
- then <opt:schema-validate opt:mode="lax"/>
- else (),
- (: TODO: uncomment once the strip-boundary-space option is implemented
- if (contains($options, "w"))
- then <opt:strip-boundary-space/> else (), :)
- if (contains($options, "f"))
- then <opt:no-error/> else ()
- }</opt:options>
- return
- x:parse($xml-string, $new_options)
-};
-
-
-(:~
- : <br/><p>
- : Note: this function is included for backwards compatibility purposes. It
- : is recommended that you use the x:parse() function instead.
- : </p><br/>
- :
- : A function to parse XML files and fragments. The behavior is the
- : same as the parse-xml-fragment with two arguments.
- :
- : @param $xml-string The string that holds the XML to be parsed. If empty,
- : the function will return an empty sequence
- : @param $base-uri The baseURI that will be used as the baseURI for every
- : node returned by this function.
- : @param $options The options for the parsing (see parse-xml-fragment#2)
- : @return The parsed XML as a document node or a list of nodes, or an empty
- : sequence.
- :
- : @error zerr:ZXQD0003 The error will be raised if the options to the function
- : are inconsistent.
- :
- : @error err:FODC0006 The error will be raised if the input string is not a
- : valid XML document or fragment (external general parsed
- : entity) or if DTD validation was enabled and the
- : document has not passed it.
- :
- : @error err:XQDY0027 The error will be raised if schema validation was enabled
- : and the input document has not passed it.
- :
- : @error err:FODC0007 This error will be raised if $base-uri parameter passed
- : to the function is not a valid absolute URI.
- :
- : @deprecated
- :
- :)
-declare function x:parse-xml-fragment(
- $xml-string as xs:string?,
- $base-uri as xs:string,
- $options as xs:string) as node()*
-{
- let $new_options := <opt:options>{
- if (contains($options, "e"))
- then <opt:parse-external-parsed-entity/> else (),
- if (contains($options, "d"))
- then <opt:DTD-validate/> else (),
- if (contains($options, "s"))
- then <opt:schema-validate opt:mode="strict"/>
- else (),
- if (contains($options, "l"))
- then <opt:schema-validate opt:mode="lax"/>
- else (),
- (: TODO: uncomment once the strip-boundary-space option is implemented
- if (contains($options, "w"))
- then <opt:strip-boundary-space/> else (), :)
- if (contains($options, "f"))
- then <opt:no-error/> else (),
- <opt:base-uri>{
- attribute{xs:QName("opt:value")}{$base-uri}}
- </opt:base-uri>
- }</opt:options>
- return
- x:parse($xml-string, $new_options)
-};
-
-(:~
- : A function to canonicalize the given XML string, that is, transform
- : it into Canonical XML as defined by <a href="http://www.w3.org/TR/xml-c14n">Canonical XML</a>.
- :
- : <br/>Note: This function is not streamable, if a streamable string is used
- : as input for the function it will be materialized.
- :
- : <br/>Note: This function sets the
+ : <p>A function to canonicalize the given XML string, that is, transform
+ : it into Canonical XML as defined by <a href="http://www.w3.org/TR/xml-c14n">Canonical XML</a>.</p>
+ :
+ : <p>Note: This function is not streamable. If a streamable string is used
+ : as input for the function it will be materialized.</p>
+ :
+ : <p>Note: This function sets the
: <a href="http://xmlsoft.org/html/libxml-parser.html#xmlParserOption">XML_PARSE_NOERROR</a>
- : option when parsing the XML input.
+ : option when parsing the XML input.</p>
:
: @param $xml-string a string representation of a well formed XML to canonicalize. XML fragments are not allowed.
:
@@ -446,9 +262,9 @@
(:~
- : A function to canonicalize the given XML string, that is, transform
- : it into Canonical XML as defined by <a href="http://www.w3.org/TR/xml-c14n">Canonical XML</a>.
- : <br/>This version of the function allows specifying certain options to be
+ : <p>A function to canonicalize the given XML string, that is, transform
+ : it into Canonical XML as defined by <a href="http://www.w3.org/TR/xml-c14n">Canonical XML</a>.</p>
+ : <p>This version of the function allows specifying certain options to be
: used when initially parsing the XML string. These are of the same form
: as the options to x:parse#2(), although the following options are
: currently ignored for this function:
@@ -458,13 +274,13 @@
: <li><opt:schema-validate/></li>
: <li><opt:parse-external-parsed-entity/></li>
: </ul>
-
- : <br/>Note: This function is not streamable, if a streamable string is used
- : as input for the function it will be materialized.
+ : </p>
+ : <p>Note: This function is not streamable, if a streamable string is used
+ : as input for the function it will be materialized.</p>
:
- : <br/>Note: This function sets the
+ : <p>Note: This function sets the
: <a href="http://xmlsoft.org/html/libxml-parser.html#xmlParserOption">XML_PARSE_NOERROR</a>
- : option when parsing the XML input.
+ : option when parsing the XML input.</p>
: @param $xml-string a string representation of a well formed XML to canonicalize. XML fragments are not allowed.
: @param $options an XML containg options for the canonicalize function.
=== modified file 'src/context/static_context.cpp'
--- src/context/static_context.cpp 2013-07-17 15:48:38 +0000
+++ src/context/static_context.cpp 2013-07-24 09:09:27 +0000
@@ -473,7 +473,7 @@
const char*
static_context::ZORBA_XML_FN_NS =
-"http://www.zorba-xquery.com/modules/xml";
+"http://zorba.io/modules/xml";
#ifndef ZORBA_NO_FULL_TEXT
const char*
@@ -487,7 +487,7 @@
const char*
static_context::ZORBA_XML_FN_OPTIONS_NS =
-"http://www.zorba-xquery.com/modules/xml-options";
+"http://zorba.io/modules/xml-options";
/***************************************************************************//**
Target namespaces of zorba reserved modules
=== modified file 'src/functions/func_parse_fragment_impl.cpp'
--- src/functions/func_parse_fragment_impl.cpp 2012-11-22 21:06:39 +0000
+++ src/functions/func_parse_fragment_impl.cpp 2013-07-24 09:09:27 +0000
@@ -40,7 +40,7 @@
xqtref_t lParseOptType =
GENV_TYPESYSTEM.create_node_type(
store::StoreConsts::elementNode,
- createQName("http://www.zorba-xquery.com/modules/xml-options","","options"),
+ createQName(static_context::ZORBA_XML_FN_OPTIONS_NS,"","options"),
NULL,
TypeConstants::QUANT_QUESTION,
false,
@@ -49,7 +49,7 @@
{
DECL_WITH_KIND(sctx, fn_zorba_xml_parse,
- (createQName("http://www.zorba-xquery.com/modules/xml","","parse"),
+ (createQName(static_context::ZORBA_XML_FN_NS,"","parse"),
GENV_TYPESYSTEM.STRING_TYPE_QUESTION,
lParseOptType,
GENV_TYPESYSTEM.ANY_NODE_TYPE_STAR),
=== modified file 'src/functions/pregenerated/func_parse_fragment.cpp'
--- src/functions/pregenerated/func_parse_fragment.cpp 2013-03-06 07:39:18 +0000
+++ src/functions/pregenerated/func_parse_fragment.cpp 2013-07-24 09:09:27 +0000
@@ -67,7 +67,7 @@
{
DECL_WITH_KIND(sctx, fn_zorba_xml_canonicalize_impl,
- (createQName("http://www.zorba-xquery.com/modules/xml","","canonicalize-impl"),
+ (createQName("http://zorba.io/modules/xml","","canonicalize-impl"),
GENV_TYPESYSTEM.STRING_TYPE_ONE,
GENV_TYPESYSTEM.ELEMENT_TYPE_ONE,
GENV_TYPESYSTEM.STRING_TYPE_ONE),
=== modified file 'src/runtime/spec/mappings.xml'
--- src/runtime/spec/mappings.xml 2013-07-17 15:48:38 +0000
+++ src/runtime/spec/mappings.xml 2013-07-24 09:09:27 +0000
@@ -134,7 +134,7 @@
define="ZORBA_ITEM_FN_NS"
prefix="fn-zorba-item"/>
- <zorba:namespace uri="http://www.zorba-xquery.com/modules/xml"
+ <zorba:namespace uri="http://zorba.io/modules/xml"
define="ZORBA_XML_FN_NS"
prefix="fn-zorba-xml"/>
=== removed file 'test/rbkt/ExpQueryResults/zorba/parsing_and_serializing/parse-xml-fragment-19.xml.res'
--- test/rbkt/ExpQueryResults/zorba/parsing_and_serializing/parse-xml-fragment-19.xml.res 2012-04-24 19:59:53 +0000
+++ test/rbkt/ExpQueryResults/zorba/parsing_and_serializing/parse-xml-fragment-19.xml.res 1970-01-01 00:00:00 +0000
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<from1>Jani</from1>
-<from2>Jani</from2>
-<from3>Jani</from3>
\ No newline at end of file
=== removed file 'test/rbkt/ExpQueryResults/zorba/parsing_and_serializing/parse-xml-fragment-30.xml.res'
--- test/rbkt/ExpQueryResults/zorba/parsing_and_serializing/parse-xml-fragment-30.xml.res 2012-06-26 13:41:55 +0000
+++ test/rbkt/ExpQueryResults/zorba/parsing_and_serializing/parse-xml-fragment-30.xml.res 1970-01-01 00:00:00 +0000
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<from1>Jani</from1>
-<from2>Jani</from2>
-<from3>Jani</from3>
\ No newline at end of file
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/canonicalize-1.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/canonicalize-1.xq 2013-03-04 15:38:22 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/canonicalize-1.xq 2013-07-24 09:09:27 +0000
@@ -1,4 +1,4 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml#2.1";
+import module namespace x = "http://zorba.io/modules/xml#2.1";
let $xml := "<x b='1' a='2'/>"
return x:canonicalize($xml)
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/canonicalize-2.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/canonicalize-2.xq 2013-03-04 15:38:22 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/canonicalize-2.xq 2013-07-24 09:09:27 +0000
@@ -1,4 +1,4 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml#2.1";
+import module namespace x = "http://zorba.io/modules/xml#2.1";
let $xml := "aaaa"
return x:canonicalize($xml)
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/canonicalize-3.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/canonicalize-3.xq 2013-03-05 22:57:42 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/canonicalize-3.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml#2.1";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml#2.1";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
let $xml := '<document xmlns:ns="http://test">
<element1/>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-01.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-01.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-01.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-02.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-02.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-02.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-03.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-03.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-03.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-04.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-04.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-04.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-05.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-05.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-05.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"<?xml version='1.0'?>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-06.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-06.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-06.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-07.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-07.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-07.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-08.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-08.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-08.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-09.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-09.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-09.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-10.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-10.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-10.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-11.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-11.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-11.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"<?xml version='1.0'?>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-12.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-12.xq 2012-07-17 13:28:57 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-doctype-12.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"<?xml version='1.0'?>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-01.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-01.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-01.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?><root><from1>Jani</from1></root>",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-02.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-02.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-02.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-03.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-03.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-03.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-04.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-04.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-04.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-05.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-05.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-05.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-06.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-06.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-06.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-07.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-07.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-07.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-08.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-08.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-08.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root><from1>Jani1</from1></root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-09.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-09.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-09.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root><from1>Jani1</from1></root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-10.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-10.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-10.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root><from1>Jani1</from1></root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-11.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-11.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-11.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root><from1>Jani1</from1></root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-12.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-12.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-12.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root><root2><from1>Jani1</from1></root2></root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-13.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-13.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-13.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root><root2><root3><from1>Jani1</from1></root3></root2></root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-14.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-14.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-14.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root><root2><root3><from1>Jani1</from1></root3></root2></root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-15.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-15.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-15.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?><root>root1 text<root2>root2 text<root3>root3 text<from1>Jani1</from1></root3></root2></root>",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-16.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-16.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-16.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?><root>root1 text<root15>root15 text</root15><root2>root2 text<root3>root3 text<from1>Jani1</from1></root3></root2></root>",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-17.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-17.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-17.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?><root>root1 text<root15>root15 text</root15><root2>root2 text<root3>root3 text<from1>Jani1</from1></root3></root2></root>",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-18.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-18.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-18.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<root>Jani0<from1>Jani1</from1></root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-19.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-19.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-19.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-20.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-20.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-20.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-21.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-21.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-21.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-22.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-22.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-22.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-23.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-23.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-23.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-24.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-24.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-24.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-25.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-25.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-25.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-26.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-26.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-26.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-27.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-27.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-27.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-28.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-28.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-28.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-29.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-29.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-29.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-30.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-30.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-30.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<level1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-31.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-31.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-31.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
level0 text
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-32.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-32.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-32.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
level0 text
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-33.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-33.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-33.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
level0 text
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-34.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-34.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-34.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
level0 text
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-35.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-35.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-35.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
level0 text
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-36.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-36.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-36.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
level0 text
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-37.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-37.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-37.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<doc>
<foo>0</foo>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-38.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-38.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-38.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<doc>
<foo>0</foo>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-39.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-39.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-39.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<doc>
<foo>0</foo>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-40.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-40.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-40.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<n1:root xmlns:n1='ns' xmlns:m1='ms'><n2:root2 xmlns:n2='ns2' xmlns:m2='ms2'><n1:from1 xmlns:n3='ns3'><from2>Text from2</from2></n1:from1></n2:root2></n1:root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-41.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-41.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-41.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<n1:root xmlns:n1='ns' xmlns:m1='ms'><n2:root2 xmlns:n2='ns2' xmlns:m2='ms2'><n1:from1 xmlns:n3='ns3'><from2>Text from2</from2></n1:from1></n2:root2></n1:root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-42.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-42.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-42.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<n1:root xmlns:n1='ns' xmlns:m1='ms'><n2:root2 xmlns:n2='ns2' xmlns:m2='ms2'><n1:from1 xmlns:n3='ns3'><from2>Text from2</from2></n1:from1></n2:root2></n1:root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-43.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-43.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-43.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<n1:root xmlns:n1='ns' xmlns:m1='ms'><n2:root2 xmlns:n2='ns2' xmlns:m2='ms2'><n1:from1 xmlns:n3='ns3'><from2>Text from2</from2></n1:from1></n2:root2></n1:root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-44.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-44.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-44.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<n1:root xmlns:n1='ns' xmlns:m1='ms'><n2:root2 xmlns:n2='ns2' xmlns:m2='ms2'><n1:from1 xmlns:n3='ns3'><from2>Text from2</from2></n1:from1></n2:root2></n1:root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-45.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-45.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-45.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
<n1:root xmlns:n1='ns' xmlns:m1='ms'><n2:root2 xmlns:n2='ns2' xmlns:m2='ms2'><n1:from1 xmlns:n3='ns3'><from2>Text from2</from2></n1:from1></n2:root2></n1:root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-46.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-46.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-46.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<?xml version='1.0'?>
level0 text
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-47.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-47.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-47.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<root>
<test/>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-48.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-48.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-48.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<root>
<test/>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-49.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-49.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-49.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<root>
<test/>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-50.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-50.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-50.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<root>
<test/>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-51.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-51.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-51.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<root>
<test/>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-52.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-52.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-52.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<root>
<test/>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-53.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-53.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-53.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<mediawiki>
<page>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-54.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-54.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-54.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
import module namespace file = "http://expath.org/ns/file";
x:parse("<mediawiki>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-55.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-55.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-55.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
import module namespace file = "http://expath.org/ns/file";
x:parse("<mediawiki>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-56.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-56.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-56.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
import module namespace file = "http://expath.org/ns/file";
x:parse("<mediawiki>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-57.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-57.xq 2013-01-16 14:35:25 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-fragment-skip-root-57.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace parse-xml = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace parse-xml = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
import module namespace fetch = "http://www.zorba-xquery.com/modules/fetch";
variable $xmlcontents := fetch:content(resolve-uri("bad.xml"));
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-01.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-01.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-01.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<?xml version='1.0'?>
<!DOCTYPE note [
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-02.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-02.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-02.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<?xml version='1.0'?>
<!DOCTYPE note [
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-03.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-03.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-03.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<?xml version='1.0'?>
<from1>Jani</from1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-04.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-04.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-04.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("
<from1>Jani</from1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-05.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-05.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-05.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<?xml version='1.0'?><a/>",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-06.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-06.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-06.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<?xml version='1.0'?>
<from1>Jani</from1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-07.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-07.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-07.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
import schema namespace weather = "http://www.w3.org/test/weather" at "weather.xsd";
x:parse("<?xml version='1.0' encoding = 'UTF-8'?>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-08.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-08.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-08.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
import schema namespace weather = "http://www.w3.org/test/weather" at "weather.xsd";
x:parse("<?xml version='1.0' encoding = 'UTF-8'?>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-09.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-09.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-09.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<?xml version='1.0' encoding = 'UTF-8'?>
<atomic:root xmlns:atomic='http://www.w3.org/XQueryTest'>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-10.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-10.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-10.xq 2013-07-24 09:09:27 +0000
@@ -1,4 +1,4 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
+import module namespace x = "http://zorba.io/modules/xml";
x:parse("<?xml version='1.0'?>
<root>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-11.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-11.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-11.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<?xml version='1.0'?>
<!DOCTYPE note [
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-12.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-12.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-12.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
let $var := z:parse("<?xml version='1.0'?>
<from1>Jani</from1>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-13.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-13.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-13.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
for $var in z:parse("<from1>Jani</from1><from2>Jani</from2><from3>Jani</from3>",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-14.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-14.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-14.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<?xml version='1.0' encoding='UTF-8'?>
<!-- Comment-1 -->
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-15.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-15.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-15.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<a/>",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-16.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-16.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-16.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("<?xml version='1.0'?>
<!DOCTYPE note [
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-17.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-17.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-17.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<root><a id='0'>
0
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-18.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-18.xq 2013-02-07 17:24:36 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-18.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace z = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
z:parse("<root><a id='0'/></root></test>",
<opt:options>
=== removed file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-19.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-19.xq 2012-04-24 19:59:53 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-19.xq 1970-01-01 00:00:00 +0000
@@ -1,9 +0,0 @@
-(:
- Test that the backwards-compatible parse-xml-fragment() function works.
-:)
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-
-z:parse-xml-fragment("<from1>Jani</from1>
-<from2>Jani</from2>
-<from3>Jani</from3>",
-"e")
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-20.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-20.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-20.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
for $i in x:parse(
"<root><from1>Jani1</from1><from2>Jani2</from2></root>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-21.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-21.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-21.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-22.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-22.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-22.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("test",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-23.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-23.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-23.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("
test",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-24.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-24.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-24.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("test
",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-25.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-25.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-25.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("
test
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-26.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-26.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-26.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("one",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-27.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-27.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-27.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("on",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-28.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-28.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-28.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("o",
<opt:options>
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-29.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-29.xq 2012-12-12 20:35:19 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-29.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse("",
<opt:options>
=== removed file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-30.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-30.xq 2012-06-26 13:41:55 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-30.xq 1970-01-01 00:00:00 +0000
@@ -1,10 +0,0 @@
-(:
- Test that the backwards-compatible parse-xml-fragment() function
- works. Also test that it works with the "w" option enabled.
-:)
-import module namespace z = "http://www.zorba-xquery.com/modules/xml";
-
-z:parse-xml-fragment("<from1>Jani</from1>
-<from2>Jani</from2>
-<from3>Jani</from3>",
-"ew")
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-31.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-31.xq 2013-03-04 16:17:30 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-31.xq 2013-07-24 09:09:27 +0000
@@ -3,8 +3,8 @@
:)
import module namespace fetch = "http://www.zorba-xquery.com/modules/fetch";
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
let $xmlcontents := fetch:content(fn:resolve-uri("streamable.xml"))
let $contents := x:parse(
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-32.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-32.xq 2013-03-04 16:17:30 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-32.xq 2013-07-24 09:09:27 +0000
@@ -2,8 +2,8 @@
Test x:parse() with a single top element which has an attribute
:)
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
x:parse(
"<template head='test'></template>",
=== modified file 'test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-33.xq'
--- test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-33.xq 2013-03-04 16:17:30 +0000
+++ test/rbkt/Queries/zorba/parsing_and_serializing/parse-xml-fragment-33.xq 2013-07-24 09:09:27 +0000
@@ -1,5 +1,5 @@
-import module namespace x = "http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt = "http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x = "http://zorba.io/modules/xml";
+import schema namespace opt = "http://zorba.io/modules/xml-options";
import module namespace fetch = "http://www.zorba-xquery.com/modules/fetch";
variable $xmlcontents := fetch:content(resolve-uri("wiki.xml"));
=== modified file 'test/rbkt/Queries/zorba/string/AnalyzeString/http-client-doc.htm'
--- test/rbkt/Queries/zorba/string/AnalyzeString/http-client-doc.htm 2013-07-17 15:48:38 +0000
+++ test/rbkt/Queries/zorba/string/AnalyzeString/http-client-doc.htm 2013-07-24 09:09:27 +0000
@@ -522,7 +522,7 @@
</sup>
</li>
<li>
- <a href="www.zorba-xquery.com_modules_xml.html" title="http://www.zorba-xquery.com/modules/xml">xml</a>
+ <a href="www.zorba-xquery.com_modules_xml.html" title="http://zorba.io/modules/xml">xml</a>
<sup>
<a href="http://www.w3.org/TR/xquery-30/#dt-external-function" target="_blank" title="There are external functions (either private or public) declared in this module.">(E)</a>
</sup>
=== modified file 'test/rbkt/Queries/zorba/uris/file-base-uri.xq'
--- test/rbkt/Queries/zorba/uris/file-base-uri.xq 2013-05-01 23:06:33 +0000
+++ test/rbkt/Queries/zorba/uris/file-base-uri.xq 2013-07-24 09:09:27 +0000
@@ -1,6 +1,6 @@
import module namespace file="http://expath.org/ns/file";
-import module namespace x="http://www.zorba-xquery.com/modules/xml";
-import schema namespace opt="http://www.zorba-xquery.com/modules/xml-options";
+import module namespace x="http://zorba.io/modules/xml";
+import schema namespace opt="http://zorba.io/modules/xml-options";
let $uri := fn:resolve-uri( "input.xml", fn:static-base-uri() )
let $content := file:read-text($uri)
Follow ups
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-07
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: noreply, 2013-08-07
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-07
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-07
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-07
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-07
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-07
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-07
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-01
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-01
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-01
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-08-01
-
Re: [Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Luis Rodriguez Gonzalez, 2013-08-01
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Chris Hillery, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Zorba Build Bot, 2013-07-24
-
Re: [Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Chris Hillery, 2013-07-24
-
[Merge] lp:~zorba-coders/zorba/bug-1189807 into lp:zorba
From: Chris Hillery, 2013-07-24