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

Stylesheet-Vorlagen k?nnen ineinander entweder importiert (xsl:import) oder inkludiert (xsl:include) werden. Importieren und inkludieren ist beinahe das selbe. Beim importieren jedoch, bekomen die Regeln und Definitionen des importierten Stylesheet eine h?hrere Priorit?t als die des Templates in dem importiert wird. XSLT Stylesheet 1 und XSLT Stylesheet 2 sind in das übriggebliebene Stylesheet importiert oder inkludiert worden.

XSLT Stylesheet 1

XML Quelltext
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

Ausgabe
IMPORTING STYLESHEETS

HTML-Ansicht
IMPORTING STYLESHEETS
XSLT Stylesheet (file: id2.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:variable name="id2">Stylesheet 1(id2.xsl)</xsl:variable>
<xsl:variable name="t">Variable t from id2.xsl</xsl:variable>

</xsl:stylesheet>


XSLT Stylesheet 2

XML Quelltext
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

Ausgabe
IMPORTING STYLESHEETS

HTML-Ansicht
IMPORTING STYLESHEETS
XSLT Stylesheet (file: id3.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:variable name="id3">Stylesheet 2(id3.xsl)</xsl:variable>
<xsl:variable name="t">Variable t from id3.xsl</xsl:variable>

</xsl:stylesheet>


XSLT Stylesheet 3

XML Quelltext
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

Ausgabe
<P>Stylesheet 1(id2.xsl)</P>
<P>Stylesheet 2(id3.xsl)</P>

HTML-Ansicht

Stylesheet 1(id2.xsl)

Stylesheet 2(id3.xsl)

XSLT Stylesheet (file: id4.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:import href="id3.xsl"/>
<xsl:include href="id2.xsl"/>
<xsl:template match="/">
     <P>
          <xsl:value-of select="$id2"/>
     </P>
     <P>
          <xsl:value-of select="$id3"/>
     </P>
</xsl:template>


</xsl:stylesheet>


XSLT Stylesheet 4

XML Quelltext
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

Ausgabe
<P>Stylesheet 1(id2.xsl)</P>
<P>Stylesheet 2(id3.xsl)</P>
<P>Variable t from id3.xsl</P>

HTML-Ansicht

Stylesheet 1(id2.xsl)

Stylesheet 2(id3.xsl)

Variable t from id3.xsl

XSLT Stylesheet (file: id7.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:import href="id2.xsl"/>
<xsl:import href="id3.xsl"/>
<xsl:template match="/">
     <P>
          <xsl:value-of select="$id2"/>
     </P>
     <P>
          <xsl:value-of select="$id3"/>
     </P>
     <P>
          <xsl:value-of select="$t"/>
     </P>
</xsl:template>


</xsl:stylesheet>


XSLT Stylesheet 5

XML Quelltext
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

Ausgabe
<P>Stylesheet 1(id2.xsl)</P>
<P>Stylesheet 2(id3.xsl)</P>
<P>Variable t from id2.xsl</P>

HTML-Ansicht

Stylesheet 1(id2.xsl)

Stylesheet 2(id3.xsl)

Variable t from id2.xsl

XSLT Stylesheet (file: id8.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:import href="id3.xsl"/>
<xsl:import href="id2.xsl"/>
<xsl:template match="/">
     <P>
          <xsl:value-of select="$id2"/>
     </P>
     <P>
          <xsl:value-of select="$id3"/>
     </P>
     <P>
          <xsl:value-of select="$t"/>
     </P>
</xsl:template>


</xsl:stylesheet>


XSLT Stylesheet 6

XML Quelltext
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

Ausgabe
<P>Stylesheet 1(id2.xsl)</P>
<P>Stylesheet 2(id3.xsl)</P>
<P>Variable t from id2.xsl</P>

HTML-Ansicht

Stylesheet 1(id2.xsl)

Stylesheet 2(id3.xsl)

Variable t from id2.xsl

XSLT Stylesheet (file: id9.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:import href="id3.xsl"/>
<xsl:include href="id2.xsl"/>
<xsl:template match="/">
     <P>
          <xsl:value-of select="$id2"/>
     </P>
     <P>
          <xsl:value-of select="$id3"/>
     </P>
     <P>
          <xsl:value-of select="$t"/>
     </P>
</xsl:template>


</xsl:stylesheet>