This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Problem Merging multiple XML files




> <xsl:stylesheet xmlns:xsl="uri:xsl">

That isn't XSL 
 which would be

xmlns:xsl="http://www.w3.org/1999/XSL/Transform";

it isn't even the "XSL" language (that is really unrelated to XSL)
that is built into IE5, which would be

xmlns:xsl="http://www.w3.org/TR/WD-xsl";

> <xsl:for-each select="PICTUREGALLERY/PICTURE" order-by="+DATETAKEN">
xsl:for-each does not have an order-by attribute in XSLT so it appears
that this stylesheet is intended to be the non-standard, deprecated
Microsoft dialect, in which case the URI should be
xmlns:xsl="http://www.w3.org/TR/WD-xsl";
however better would be to use Microsoft's XSLT implementation
(which is in IE6 or by upgrading IE5 with MSXML3)

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]