zorba-coders team mailing list archive
-
zorba-coders team
-
Mailing list archive
-
Message #04439
[Merge] lp:~danielturcanu/zorba/csv_conv_module into lp:zorba/data-converters-module
Daniel Turcanu has proposed merging lp:~danielturcanu/zorba/csv_conv_module into lp:zorba/data-converters-module.
Requested reviews:
Cezar Andrei (cezar-andrei)
Zorba Coders (zorba-coders)
Related bugs:
Bug #925133 in Zorba: "replace string restriction with xs:boolean in csv-options.xsd"
https://bugs.launchpad.net/zorba/+bug/925133
For more details, see:
https://code.launchpad.net/~danielturcanu/zorba/csv_conv_module/+merge/91337
Changed type in csv options from xs:string to xs:boolean
--
https://code.launchpad.net/~danielturcanu/zorba/csv_conv_module/+merge/91337
Your team Zorba Coders is requested to review the proposed merge of lp:~danielturcanu/zorba/csv_conv_module into lp:zorba/data-converters-module.
=== modified file 'src/com/zorba-xquery/www/modules/converters/csv-options.xsd'
--- src/com/zorba-xquery/www/modules/converters/csv-options.xsd 2011-08-17 23:28:43 +0000
+++ src/com/zorba-xquery/www/modules/converters/csv-options.xsd 2012-02-02 19:36:21 +0000
@@ -35,20 +35,8 @@
</restriction>
</simpleType>
</attribute>
- <attribute name="ignore-foreign-input" default="false">
- <simpleType>
- <restriction base="string">
- <pattern value="true|false"/>
- </restriction>
- </simpleType>
- </attribute>
- <attribute name="accept-all-lines" default="false">
- <simpleType>
- <restriction base="string">
- <pattern value="true|false"/>
- </restriction>
- </simpleType>
- </attribute>
+ <attribute name="ignore-foreign-input" type="boolean" default="false"/>
+ <attribute name="accept-all-lines" type="boolean" default="false"/>
</complexType>
<complexType name="start-from-rowType">
<attribute name="line">
Follow ups