1 <?xml version='1.0'?>
   2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
   3   <!-- FileName: SimpleInclude.xsl -->
   4   <!-- Author: shane_curcuru@lotus.com -->
   5   <!-- Purpose: Basic import and include tests for StreamSource APIs. -->
   6 
   7 <xsl:template match="list">
   8   <include-list>
   9     <xsl:apply-imports/>
  10   </include-list>
  11 </xsl:template>
  12 
  13 <xsl:template match="item[@match-by='include']">
  14   <matched-by-include>
  15     <xsl:value-of select="." />
  16   </matched-by-include>
  17 </xsl:template>
  18 
  19 </xsl:stylesheet>