|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Xpath and Ranges
Thanks for all the help guys! I will supply my results as best I can: I'm using a "cleanup" stylesheet to fix some bad XML (docbook) Here is the cleanup.xsl's opening statements: <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exslt="http://exslt.org/common" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:xalan="http://xml.apache.org/xalan" xmlns:date="http://exslt.org/dates-and-times" exclude-result-prefixes="date xalan exslt msxsl"> <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" doctype-system="C:\docbook\XML\docbookx.dtd"/> Here is the template where I am trying to grab a set of nodes in order to wrap them in a parent node (since this is docbook Im trying to wrap things in sect1) <xsl:template match="for $T1 in (//title)[1], $T2 in (//title)[2] return ($T1, //*[. >> $T1 and . << $T2])"> <xsl:element name="sect1"> <xsl:apply-templates/> </xsl:element> </xsl:template> I've installed Saxon 8.7.3N, and use XMLSpy with this commandline: c:\saxon\Transform.exe -o %2 %1 %3 The error I get is: XSLT Pattern syntax error at char 0 on line 83 (the template above), In {for $}: Unexpected token in patter, found "for" Failed to compile stylesheet, 1 error detected. Hope that helps..let me know if I can supply any more information. FYI the material Im apply this too is going to be open to the public (its actually apart of the OGL, open gaming license). So, Im trying to learn how to apply XPATH. Thanks! David White -----Original Message----- From: Michael Kay [mailto:mike@xxxxxxxxxxxx] Sent: Friday, August 04, 2006 8:35 AM To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx Subject: RE: Xpath and Ranges > > Could it be my software? XMLSpy 2006? > Does your xsl:stylesheet element specify version="2.0"? IIRC, XMLSpy invokes a 2.0 processor when you specify version="2.0", and a 1.0 processor otherwise. Michael Kay http://www.saxonica.com/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Cast Your Vote
We need your help – Vote for DataDirect XML Products!
Winners and finalists announced at SOA World Conference in November. Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|







