xsl-list
[Top] [All Lists]

Re: attributes and elements

2003-12-04 13:05:17
Bruce D'Arcus wrote:
                <content>
--->                    <xsl:if test="*/condition">
--->                        <xsl:apply-templates/>
--->                    </xsl:if>

The test test, whether one of the child elements of the
section element has a condicion element as child.
I just can't quite match the XSLT with your problem spec,
as a rather wild guess I'd say try:
  ...
    <content>
      <xsl:apply-templates mode="filter-condition"/>
    ...


  <xsl:template match="*[(_at_)condition='screen']"
     mode="filter-condition">
     <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="node()" mode="filter-condition"/>


J.Pietschmann



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



<Prev in Thread] Current Thread [Next in Thread>