| <?xml version='1.0'?> |
| <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
| <!-- FileName: EmbeddedImpIncl.xsl --> |
| <!-- Author: shane_curcuru@lotus.com --> |
| <!-- Purpose: Basic import and include tests with differen systemId's. --> |
| <!-- This is EmbeddedImpIncl.xsl, used for setSystemId testing Note that different settings of systemIds will have different expected results! --> |
| <!-- We re-use the stylesheets from the SystemId test here --> |
| <xsl:import href="impincl/SystemIdImport.xsl"/> |
| <xsl:include href="impincl/SystemIdInclude.xsl"/> |
| |
| <xsl:template match="doc"> |
| <out> |
| <xsl:apply-templates/> |
| </out> |
| </xsl:template> |
| |
| <xsl:template match="list" priority="-1"> |
| <main-list> |
| <xsl:apply-templates/> |
| </main-list> |
| </xsl:template> |
| |
| <xsl:template match="item[not(@match-by)]"> |
| <matched-by-main> |
| <xsl:value-of select="." /> |
| </matched-by-main> |
| </xsl:template> |
| |
| </xsl:stylesheet> |