xsl-list
[Top] [All Lists]

RE: Oracle-->Cursor showing <col_row num="1">

2005-08-19 08:41:47

I would like to eliminate the layer with the <indications_row 
num="1">

Sounds like a classic "modified identity transform":

<xsl:template match="*">
  <xsl:copy><xsl:copy-of select="@*"/><xsl:apply-templates/></xsl:copy>
</xsl:template>

<xsl:template match="indications_row">
  <xsl:apply-templates/>
</xsl:template>

Michael Kay
http://www.saxonica.com/



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



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