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: XPATH and XSL(T)


I don't know that such a glossary exists. However, you might try using the
following (XPath) example code with RenderX to create your own glossary in
PDF format. I haven't tested this, so I don't know if it really works. Of
course, you would need to first download and install RenderX at
http://www.renderx.com/products.html. ( I don't work for them and have no
affiliation with them.) And somebody on this mailing list might club me over
the head for providing code that doesn't work--but at least they'll probably
tell you what does work.

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
<body>
<xsl:for-each select="http://www.w3.org/TR/xpath/a">
<p>
<xsl:value-of
select="http://www.w3.org/TR/xpath/a#xpointer(string-range(/A,'*', *,*)" />
<br />
</p>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

----- Original Message -----
From: "Brian Thornton" <briant@deliveryasp.com>
To: <xsl-list@mulberrytech.com>
Sent: Tuesday, November 14, 2000 5:23 PM
Subject: XPATH and XSL(T)


> ANyone knoe a a quick refrence or glossary for these?
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 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]