Skip to content

Commit

Permalink
merged branch Tobion/patch-2 (PR #6166)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.0 branch.

Commits
-------

57edf56 removed wrong routing xsd statement `mixed="true"`

Discussion
----------

removed wrong routing xsd statement `mixed="true"`

mixed="true" means that the element could contain both text and other elements, e.g.
`<requirement key="_locale">text <subelement /></requirement>`
But this wrong and such a definition would not even validate against the scheme as the xsd does not define which elements would be expected inside.
  • Loading branch information
fabpot committed Dec 2, 2012
2 parents afdd08b + 57edf56 commit 90e910f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -31,7 +31,7 @@
<xsd:attribute name="prefix" type="xsd:string" />
</xsd:complexType>

<xsd:complexType name="element" mixed="true">
<xsd:complexType name="element">
<xsd:attribute name="key" type="xsd:string" />
</xsd:complexType>
</xsd:schema>

0 comments on commit 90e910f

Please sign in to comment.