Re: [xsl] Re: Identifying Existence of Attributes

Subject: Re: [xsl] Re: Identifying Existence of Attributes
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Mon, 17 Mar 2003 12:10:15 -0500
Joe,

If you simply put your code for the @indent attribute (when it exists) in a separate template, a simple apply-templates will work:

<xsl:template match="Text">
  <xsl:apply-templates select="@indent"/>
  your stuff for Text here
</xsl:template>

<xsl:template match="@indent">
  do your indent thing here
</xsl:template>

If the @indent attribute doesn't exist, no templates will be applied to it.

Similarly, xsl:copy-of select="@indent" will fail to copy an indent attribute that doesn't exist.

Cheers,
Wendell


====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ======================================================================


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



Current Thread