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. 69 << | indietro | avanti | indice | indice analitico

69.

Altri esempi di xsl:include e xsl:import.

XSLT stylesheet 1

XML Source
<source>

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

</source>

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

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

</source>

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

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

</source>

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

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

</source>

Output
<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 view
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>