← Back to team overview

zorba-coders team mailing list archive

[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:
  Zorba Coders (zorba-coders)
  Cezar Andrei (cezar-andrei)
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/92072

Changed type in csv options from xs:string to xs:boolean
-- 
https://code.launchpad.net/~danielturcanu/zorba/csv_conv_module/+merge/92072
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-08 16:49:52 +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