You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axkit-dev@xml.apache.org by ma...@apache.org on 2003/09/08 09:05:46 UTC

cvs commit: xml-axkit/t/htdocs/style/xslt-basic identity.xsl

matts       2003/09/08 00:05:46

  Added:       t/htdocs/style/xslt-basic identity.xsl
  Log:
  Identity stylesheet
  
  Revision  Changes    Path
  1.1                  xml-axkit/t/htdocs/style/xslt-basic/identity.xsl
  
  Index: identity.xsl
  ===================================================================
  <?xml version="1.0"?>
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  
  <xsl:output method="html"/>
  
  <xsl:template match="*|@*">
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>
  
  </xsl:stylesheet>