xsl-list
[Top] [All Lists]

Re: xsl:apply-imports design pattern using a single stylesheet

2004-04-26 14:45:58
Somebody's creating an editor :)


  <xsl:template match="*">
    <xsl:choose>
      <xsl:when test="@revisionflag='inserted'">

      </xsl:when>
      <xsl:when test="boolean(@revisionflag)">

      </xsl:when>
      <xsl:otherwise>

      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>


best,
-Rob


Christian Roth wrote:
Hi,

this question is in close relation to

<http://www.dpawson.co.uk/xsl/sect2/apply-imports.html>

of David Pawson's XSLT FAQ.

I have the problem to surround (almost) any element of a DTD (here:
DocBook) by an additional element based on one of its attributes. Example:

<phrase revisionflag="added">...</phrase>

should become

<inserted><phrase>...</phrase></inserted>

or

<para revisionflag="deleted">...</para>

should become

<deleted><para>...</para></deleted>


What I want is to have a mechanism like this pseudo-code:

<xsl:template match="*[(_at_)revisionflag]">
    if( revisionflag = "deleted" ) {

        <deleted>
<xsl:apply-templates select=".", choosing among all defined templates except the one we're currently in />
        </deleted>

    } else if ( revisionflag == "inserted" ) {

        <inserted>
<xsl:apply-templates select=".", choosing among all defined templates except the one we're currently in />
        </inserted>

    } else {

<xsl:apply-templates select=".", choosing among all defined templates except the one we're currently in />

    }
</xsl:template>

, so that I have to code the wrapping of the element only at one place.
According to the FAQ mentioned above, this can be achieved by using two
stylesheets, where the main one contains my pseudo-coded template using
<xsl:apply-imports /> instead of my described pseudo-<xsl:apply-
templates> functionality, and the second, imported one contains the
normal, element-specific templates.

Is there a design pattern that lets me code this functionality in one
single stylesheet?

Regards, Christian.