English | Français | >> Deutsch << | Magyar | 中文 | Polski ZVON > Tutorials > XSLT Tutorial
>> Seite 69 << | Zurück | Vor | Inhalt | Element-Index

Weitere Beispiele zum Thema "xsl:include" und "xsl:import".

XSLT Stylesheet 1

XML Quelltext
<source>

<AAA/>
<BBB/>
<CCC/>

</source>

Ausgabe
<DIV style="color:red">AAA (according to Stylesheet 1 (id2.xsl)</DIV>

<DIV style="color:red">BBB (according to Stylesheet 1 (id2.xsl)</DIV>

<DIV style="color:red">CCC (according to Stylesheet 1 (id2.xsl)</DIV>

HTML-Ansicht
AAA (according to Stylesheet 1 (id2.xsl)
BBB (according to Stylesheet 1 (id2.xsl)
CCC (according to Stylesheet 1 (id2.xsl)
XSLT Stylesheet (file: id2.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/*/*">
     <DIV style="color:red">
          <xsl:value-of select="name()"/>
          <xsl:text> (according to Stylesheet 1 (id2.xsl)</xsl:text>
     </DIV>
</xsl:template>


</xsl:stylesheet>


XSLT Stylesheet 2

XML Quelltext
<source>

<AAA/>
<BBB/>
<CCC/>

</source>

Ausgabe
<DIV style="color:blue">AAA(according to this stylesheet)</DIV>

<DIV style="color:blue">BBB(according to this stylesheet)</DIV>

<DIV style="color:blue">CCC(according to this stylesheet)</DIV>

HTML-Ansicht
AAA(according to this stylesheet)
BBB(according to this stylesheet)
CCC(according to this stylesheet)
XSLT Stylesheet (file: id3.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:include href="id2.xsl"/>
<xsl:template match="/">
     <xsl:apply-templates/>
</xsl:template>

<xsl:template match="/*/*">
     <DIV style="color:blue">
          <xsl:value-of select="name()"/>
          <xsl:text>(according to this stylesheet)</xsl:text>
     </DIV>
</xsl:template>


</xsl:stylesheet>


XSLT Stylesheet 3

XML Quelltext
<source>

<AAA/>
<BBB/>
<CCC/>

</source>

Ausgabe
<DIV style="color:blue">AAA(according to this stylesheet)</DIV>

<DIV style="color:blue">BBB(according to this stylesheet)</DIV>

<DIV style="color:blue">CCC(according to this stylesheet)</DIV>

HTML-Ansicht
AAA(according to this stylesheet)
BBB(according to this stylesheet)
CCC(according to this stylesheet)
XSLT Stylesheet (file: id4.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:import href="id2.xsl"/>
<xsl:template match="/">
     <xsl:apply-templates/>
</xsl:template>

<xsl:template match="/*/*">
     <DIV style="color:blue">
          <xsl:value-of select="name()"/>
          <xsl:text>(according to this stylesheet)</xsl:text>
     </DIV>
</xsl:template>


</xsl:stylesheet>


XSLT Stylesheet 4

XML Quelltext
<source>

<AAA/>
<BBB/>
<CCC/>

</source>

Ausgabe
<DIV style="color:red">AAA (according to Stylesheet 1 (id2.xsl)</DIV>

<DIV style="color:red">BBB (according to Stylesheet 1 (id2.xsl)</DIV>

<DIV style="color:red">CCC (according to Stylesheet 1 (id2.xsl)</DIV>

HTML-Ansicht
AAA (according to Stylesheet 1 (id2.xsl)
BBB (according to Stylesheet 1 (id2.xsl)
CCC (according to Stylesheet 1 (id2.xsl)
XSLT Stylesheet (file: id5.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
     <xsl:apply-templates/>
</xsl:template>

<xsl:template match="/*/*">
     <DIV style="color:blue">
          <xsl:value-of select="name()"/>
          <xsl:text>(according to this stylesheet)</xsl:text>
     </DIV>
</xsl:template>

<xsl:include href="id2.xsl"/>

</xsl:stylesheet>