[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

how to always call a template at the end of xsl:templa

Subject: how to always call a template at the end of xsl:template
From: Xiaocun Xu <xiaocunxu@xxxxxxxxx>
Date: Tue, 21 Oct 2003 10:19:23 -0700 (PDT)
xsl call template mode
Hi,

  I need to log row ID for error reporting and this
has to be done at end of all rows regardless of
template mode.  The obvious way is to add
<xsl:call-template name="logRowId"/> at end of each of
the <xsl:template match="row"> regardless of mode, the
problem is maintainence as I need to pepper this call
to all row templates (there are a number of row
templates with different modes) and I need to continue
remember add this call at end of each new row template
mode in the future.  Is there a clean way to always
call template logRowId at end of <xsl:template
match="row"> regardless of mode?  Sample source XML
and XSLT below.

thanks,
Xiaocun

Source XML:
<row row="7">
	<cell column="1">host</cell>
	<cell column="3">fsc1_BA1</cell>
	<cell column="4">unacknowledged</cell>
	<cell column="5">rfx</cell>
	<cell column="7">lead</cell>
</row>
<row row="9">
	<cell column="1">respondent</cell>
	<cell column="2">s1</cell>
	<cell column="3">s1_AM1</cell>
	<cell column="4">unacknowledged</cell>
	<cell column="5">rfx</cell>
</row>


XSLT:
<xsl:apply-templates select="//row[@row &lt; 8]"
mode="host"/>
<xsl:apply-templates select="//row[@row &gt; 8]"
mode="respondent"/>

<xsl:template match="row" mode="host">
	<!-- skip unnecessary details -->
	<xsl:call-template name="logRowId"/>
</xsl:template>
<xsl:template match="row" mode="respondent">
	<!-- skip unnecessary details -->
	<xsl:call-template name="logRowId"/>
</xsl:template>

<!-- log row ID for error reporting -->
<xsl:template name="logRowId">
	<xsl:element name="Logs">
		<xsl:attribute name="rowID"><xsl:value-of
select="@row"/></xsl:attribute>
	</xsl:element>
</xsl:template>

__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.