kip 2003/08/23 01:51:45
Added: t/htdocs/style/directives/style
02_processor_inheritance_larry.xsl
02_processor_inheritance_moe.xsl
02_processor_inheritance_curly.xsl
Log:
Test that AddProcessor does inheritance the way we want it to (styles added
in child direcotories are *prepended* to the list of processor definitions, not
*appended*).
Revision Changes Path
1.1
xml-axkit/t/htdocs/style/directives/style/02_processor_inheritance_larry.xsl
Index: 02_processor_inheritance_larry.xsl
===================================================================
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="root">
<root>Larry...<xsl:value-of select="."/></root>
</xsl:template>
</xsl:stylesheet>
1.1
xml-axkit/t/htdocs/style/directives/style/02_processor_inheritance_moe.xsl
Index: 02_processor_inheritance_moe.xsl
===================================================================
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="root">
<root>Moe...<xsl:value-of select="."/></root>
</xsl:template>
</xsl:stylesheet>
1.1
xml-axkit/t/htdocs/style/directives/style/02_processor_inheritance_curly.xsl
Index: 02_processor_inheritance_curly.xsl
===================================================================
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="root">
<root>Curly</root>
</xsl:template>
</xsl:stylesheet>