rxform 0.1.3

Rust implementation of pyxform: convert XLSForm spreadsheets to ODK XForm XML
Documentation
<?xml version="1.0"?>
<h:html xmlns="http://www.w3.org/2002/xforms" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:h="http://www.w3.org/1999/xhtml" xmlns:jr="http://openrosa.org/javarosa" xmlns:odk="http://www.opendatakit.org/xforms" xmlns:orx="http://openrosa.org/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <h:head>
    <h:title>text_and_integer</h:title>
    <model odk:xforms-version="1.0.0">
      <itext>
        <translation lang="english">
          <text id="/data/your_name:label">
            <value>What is your name?</value>
          </text>
          <text id="/data/your_age:label">
            <value>How many years old are you?</value>
          </text>
        </translation>
      </itext>
      <instance>
        <data id="text_and_integer">
          <your_name/>
          <your_age/>
          <meta>
            <instanceID/>
          </meta>
        </data>
      </instance>
      <bind nodeset="/data/your_name" type="string"/>
      <bind nodeset="/data/your_age" type="int"/>
      <bind jr:preload="uid" nodeset="/data/meta/instanceID" readonly="true()" type="string"/>
    </model>
  </h:head>
  <h:body>
    <input ref="/data/your_name">
      <label ref="jr:itext('/data/your_name:label')"/>
    </input>
    <input ref="/data/your_age">
      <label ref="jr:itext('/data/your_age:label')"/>
    </input>
  </h:body>
</h:html>