|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Another Beginner's Question
> <refentry> > <refnamediv> > <refname>Test</refname> > <refpurpose> </refpurpose></refnamediv> > <refsect1> > <title>Object Orientation</title> > <para>In order...</para> > [...] > <xsl:template match="refentry"> > <h1><xsl:value-of select="refname" /></h1> > </xsl:template> > > <xsl:template match="refentry"> > <p><xsl:value-of select="para" /></p> > </xsl:template> In your XSL, you are saying that while processing 'refentry' elements, you want to go process 'refname' elements that are children of the node currently being processed. But your XML is such that 'para' and 'refname' elements are grandchildren of 'refentry' elements. So, adjust your XPath expressions in the select="..." attributes appropriately. <xsl:value-of select="refnamediv/refname"/> <xsl:value-of select="refsect1/para"/> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! 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
|

Cart








