You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dm...@apache.org on 2001/06/28 23:00:06 UTC

cvs commit: xml-xalan/test/tests/conf/select select75.xsl select75.xml

dmarston    01/06/28 14:00:06

  Added:       test/tests/conf/select select75.xsl select75.xml
  Log:
  We needed a case that had just select="/" in it.
  
  Revision  Changes    Path
  1.1                  xml-xalan/test/tests/conf/select/select75.xsl
  
  Index: select75.xsl
  ===================================================================
  <?xml version="1.0"?>
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  
    <!-- FileName: select75 -->
    <!-- Document: http://www.w3.org/TR/xpath -->
    <!-- DocVersion: 19991116 -->
    <!-- Section: 5.1 Root node -->
    <!-- Creator: David Marston -->
    <!-- Purpose: Ensure that select='/' gets what it should. -->
  
  <xsl:template match="/">
    <out>
      <xsl:apply-templates select="doc"/>
      <xsl:text>
  </xsl:text>
    </out>
  </xsl:template>
  
  <xsl:template match="doc">
    <xsl:apply-templates select="comment()" mode="showcomments"/>
    <xsl:apply-templates select="inner"/>
  </xsl:template>
  
  <xsl:template match="inner">
    <xsl:apply-templates select="/" mode="showcomments"/>
  </xsl:template>
  
  <xsl:template match="/" mode="showcomments">
    <xsl:text>
  ...Back to top...</xsl:text>
    <xsl:apply-templates select="comment()" mode="showcomments"/>
  </xsl:template>
  
  <xsl:template match="comment()" mode="showcomments">
    <xsl:text>
  Comment found:</xsl:text>
    <xsl:value-of select="."/>
  </xsl:template>
  
  </xsl:stylesheet>
  
  
  
  1.1                  xml-xalan/test/tests/conf/select/select75.xml
  
  Index: select75.xml
  ===================================================================
  <?xml version="1.0"?> 
  <!-- First comment -->
  <doc>
    <!-- Front comment -->
    <inner/>
    <!-- Back comment -->
  </doc>
  <!-- Last comment -->
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org