xsl-list
[Top] [All Lists]

Re: [xsl] Building complex, hierarchical html datasets

2009-05-19 07:21:20

also if you are constantly going up the ancestor axis to see what kind
of thing you have, then it may be simpler to pass the information down.

So if for example your template for reg (amd law and exp-level-1 etc)
said
<xsl:apply-templates>
  <xsl:with-param name="heading"  tunnel="yes" select="(heading[(_at_)type
='electronic-only'],heading[(_at_)type ='running-head'],heading)[1]"/>
</xsl:apply=templates/>

Then the template that needs the heading needn't mess about with the
ancestor axis at all, just have

<xsl:template match="abc">
<xsl:param name="heading" tunnel="yes"/>
..
<xsl:value-of select="$heading"/>


and the right heading will have been set by the template on the ancestor
already.

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--