cheap nfl jerseys china cheap nfl jerseys free shipping wholesale nfl jerseys china wholesale jerseys from china cheap nfl jerseys free shipping cheap nfl jerseys for sale cheap jerseys free shipping wholesale nfl jerseys from china cheap nfl jerseys sale cheap nike nfl jerseys china wholesale jerseys free shipping cheap nfl jerseys wholesale wholesale nfl jerseys online cheap nfl jerseys wholesale china jerseys wholesale cheap coach handbags outlet authentic designer handbags cheap coach handbags outlet cheap coach purses outlet discount coach bags coach bags sale coach purse outlet cheap real coach purses coach handbags sale online coach purse outlet michael kors outlet online store cheap michael kors bags cheap michael kors purse michael kors factory outlet online cheap michael kors handbags cheap michael kors purses michael kors bags outlet online cheap michael kors purse michael kors handbags discount cheap michael kors purse michael kors handbags discount
cheap nfl jerseys china cheap nfl jerseys free shipping wholesale nfl jerseys china wholesale jerseys from china cheap nfl jerseys free shipping cheap nfl jerseys for sale cheap jerseys free shipping wholesale nfl jerseys from china cheap nfl jerseys sale cheap nike nfl jerseys china wholesale jerseys free shipping cheap nfl jerseys wholesale wholesale nfl jerseys online cheap nfl jerseys wholesale china jerseys wholesale cheap coach handbags outlet authentic designer handbags cheap coach handbags outlet cheap coach purses outlet discount coach bags coach bags sale coach purse outlet cheap real coach purses coach handbags sale online coach purse outlet michael kors outlet online store cheap michael kors bags cheap michael kors purse michael kors factory outlet online cheap michael kors handbags cheap michael kors purses michael kors bags outlet online cheap michael kors purse michael kors handbags discount cheap michael kors purse michael kors handbags discount
>> pag. 67 << | indietro | avanti | indice | indice analitico

67.

Altri stylesheet possono essere importati (xsl:import) o inclusi (xsl:include) in uno stylesheet. Le due operazioni sono analoghe, ma le definizioni e le regole dello stylesheet che importa hanno la precedenza su quello dello stylesheet importato. Questo stylesheet e questo stylesheet sono importati o inclusi.

XSLT stylesheet 1

XML Source
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

Output
IMPORTING STYLESHEETS

HTML view
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 Source
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

Output
IMPORTING STYLESHEETS

HTML view
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 Source
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

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

HTML view

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 Source
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

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

HTML view

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 Source
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

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

HTML view

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 Source
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

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

HTML view

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>