xsl-list
[Top] [All Lists]

RE: [xsl] limit a string to a certain word count

2007-03-14 01:12:51


Not sure if it supports 1 or 2, but I noticed that my XSL has 
the following XML header:

<xsl:stylesheet 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">

What is the 2.0 equivilant?  Just:

<xsl:stylesheet 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="2.0">


The version attribute in the stylesheet can be seen as a statement of
intent, that it needs a 1.0 or 2.0 processor (it's a bit more subtle than
that, but that will do for the moment). There are some environments, for
example Altova, where the system chooses an XSLT 1.0 processor or a 2.0
processor depending on the version attribute. But in general, if you use 2.0
facilities then you need to make sure you are using an XSLT processor that
supports 2.0, and sadly many existing processors do not.

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--