xsl-list
[Top] [All Lists]

[xsl] Schema-awareness and built-in types

2014-06-11 10:45:15
The following doesn't work in an XSLT processor with basic conformance:

<xsl:element name="a" type="xs:integer">5</xsl:element>

even though you can create variables using the built-in types:

<xsl:variable name="a" select="5" as="xs:integer"/>

or use the constructor functions:

<xsl:variable name="a" select="xs:integer('5')"/>

What's the reason for this restriction? Why can't I use built-in types
to annotate new nodes?
--
Max Toro
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>