kip 2003/05/25 18:44:59
Added: t/htdocs/style/xslt-basic 02_include.xsl 02_include_inc.xsl Log: XSL include test added Revision Changes Path 1.1 xml-axkit/t/htdocs/style/xslt-basic/02_include.xsl Index: 02_include.xsl =================================================================== <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="root"> <root>Child text added</root> </xsl:template> <xsl:include href="02_include_inc.xsl"/> </xsl:stylesheet> 1.1 xml-axkit/t/htdocs/style/xslt-basic/02_include_inc.xsl Index: 02_include_inc.xsl =================================================================== <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="root"> <root>Included overrides default</root> </xsl:template> </xsl:stylesheet>