You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by cu...@apache.org on 2001/05/02 17:02:05 UTC

cvs commit: xml-xalan/test/tests/api/xalanj2 identity.xsl identity.xml

curcuru     01/05/02 08:02:05

  Added:       test/tests/api/xalanj2 identity.xsl identity.xml
  Log:
  Basic stylesheet tests for Xalan-J 2.x specific automation
  
  Revision  Changes    Path
  1.1                  xml-xalan/test/tests/api/xalanj2/identity.xsl
  
  Index: identity.xsl
  ===================================================================
  <?xml version="1.0"?> 
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  
  <!-- From the XSLT spec: "the identity transformation can be written using xsl:copy as follows:" -->
    <xsl:template match="@*|node()">
      <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
      </xsl:copy>
    </xsl:template>
       
  </xsl:stylesheet>
  
  
  
  1.1                  xml-xalan/test/tests/api/xalanj2/identity.xml
  
  Index: identity.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <list>
    <item>Xalan-J 1.x</item>
    <item>Xalan-J 2.x</item>
    <item>Xalan-C 1.x</item>
    <list>
      <item>Xalan documentation</item>
      <item>Xalan tests</item>
    </list>
  </list>
  
  

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