zorba-coders team mailing list archive
-
zorba-coders team
-
Mailing list archive
-
Message #09811
[Merge] lp:~zorba-coders/zorba/data-cleaning-11-to-30 into lp:zorba/data-cleaning-module
Matthias Brantner has proposed merging lp:~zorba-coders/zorba/data-cleaning-11-to-30 into lp:zorba/data-cleaning-module.
Requested reviews:
Matthias Brantner (matthias-brantner)
Chris Hillery (ceejatec)
For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/data-cleaning-11-to-30/+merge/106029
replaced occurrences of XQuery version 1.1 with 3.0
--
https://code.launchpad.net/~zorba-coders/zorba/data-cleaning-11-to-30/+merge/106029
Your team Zorba Coders is subscribed to branch lp:zorba/data-cleaning-module.
=== modified file 'src/com/zorba-xquery/www/modules/data-cleaning/hybrid-string-similarity.xq'
--- src/com/zorba-xquery/www/modules/data-cleaning/hybrid-string-similarity.xq 2011-08-01 11:26:53 +0000
+++ src/com/zorba-xquery/www/modules/data-cleaning/hybrid-string-similarity.xq 2012-05-16 17:31:23 +0000
@@ -21,7 +21,7 @@
: character-based string similarity functions and token-based string similarity functions.
:
: The logic contained in this module is not specific to any particular XQuery implementation,
- : although the module requires the trigonometic functions of XQuery 1.1 or a math extension
+ : although the module requires the trigonometic functions of XQuery 3.0 or a math extension
: function such as sqrt($x as numeric) for computing the square root.
:
: @author Bruno Martins and Diogo Simões
=== modified file 'src/com/zorba-xquery/www/modules/data-cleaning/token-based-string-similarity.xq'
--- src/com/zorba-xquery/www/modules/data-cleaning/token-based-string-similarity.xq 2011-08-01 11:26:53 +0000
+++ src/com/zorba-xquery/www/modules/data-cleaning/token-based-string-similarity.xq 2012-05-16 17:31:23 +0000
@@ -1,4 +1,4 @@
-xquery version "1.0";
+xquery version "3.0";
(:
: Copyright 2006-2009 The FLWOR Foundation.
@@ -26,7 +26,7 @@
: typographical conventions often lead to rearrangement of words (e.g., "John Smith" versus "Smith, John").
:
: The logic contained in this module is not specific to any particular XQuery implementation,
- : although the module requires the trigonometic functions of XQuery 1.1 or a math extension
+ : although the module requires the trigonometic functions of XQuery 3.0 or a math extension
: function such as sqrt($x as numeric) for computing the square root.
:
: @author Bruno Martins
Follow ups