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...@locus.apache.org on 2000/12/15 23:25:50 UTC

cvs commit: xml-xalan/test/tests/conf/reluri/level1/level2/level3 xreluri09a.xml level3_include1.xsl level3_import1.xsl

dmarston    00/12/15 14:25:48

  Added:       test/tests/conf/reluri/level1/level2/level3 xreluri09a.xml
                        level3_include1.xsl level3_import1.xsl
  Log:
  Copy of tests in Lotus/IBM repository
  
  Revision  Changes    Path
  1.1                  xml-xalan/test/tests/conf/reluri/level1/level2/level3/xreluri09a.xml
  
  Index: xreluri09a.xml
  ===================================================================
  <?xml version="1.0"?>
  <first>
  	<body>Watching the game, having a bud</body>
  </first>
  
  
  1.1                  xml-xalan/test/tests/conf/reluri/level1/level2/level3/level3_include1.xsl
  
  Index: level3_include1.xsl
  ===================================================================
  <?xml version='1.0'?>
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  
  <xsl:include href="../../../final_included.xsl"/>
  
  <xsl:template match="three-tag">
    From stylesheet level3_include1.xsl: <xsl:value-of select="self::node()"/>
    Including final_included.xsl
  </xsl:template>
  
  </xsl:stylesheet>
  
  
  1.1                  xml-xalan/test/tests/conf/reluri/level1/level2/level3/level3_import1.xsl
  
  Index: level3_import1.xsl
  ===================================================================
  <?xml version='1.0'?>
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  
  <xsl:import href="../../../final_imported.xsl"/>
  
  <xsl:template match="three-tag">
    From  stylesheet level3_import1.xsl: <xsl:value-of select="self::node()"/>
    importing final_imported.xsl
  </xsl:template>
  
  
  </xsl:stylesheet>