Fix freemind import/export notes.

This commit is contained in:
Paulo Gustavo Veiga
2012-12-01 17:22:54 -03:00
parent 6c1188314b
commit bad11bea88
13 changed files with 337 additions and 43 deletions

View File

@@ -8,7 +8,7 @@
<jxb:bindings node="/xsd:schema/xsd:complexType[@name='topicType']/xsd:attribute[@name='text']" schemaLocation="mindmap.xsd">
<jxb:property name="textAttr"/>
</jxb:bindings>
<jxb:bindings node="/xsd:schema/xsd:complexType[@name='note']/xsd:attribute[@name='text']" schemaLocation="mindmap.xsd">
<jxb:bindings node="/xsd:schema/xsd:complexType[@name='note']/xsd:simpleContent/xsd:extension/xsd:attribute[@name='text']" schemaLocation="mindmap.xsd">
<jxb:property name="textAttr"/>
</jxb:bindings>
</jxb:bindings>

View File

@@ -48,10 +48,11 @@
</xsd:complexType>
<xsd:complexType name="note">
<xsd:sequence>
<xsd:element minOccurs='0' maxOccurs='1' type="xsd:string" name="text"/>
</xsd:sequence>
<xsd:attribute name="text" type="xsd:string"/>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="text" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:element name="relationship" type="relationshipType"/>