| English | Français | >> Deutsch << | Magyar | 中文 | Polski | adultinternetusers > Tutorials > XSLT Tutorial |
| Intro / Suchen / adultinternetusers |
| >> Seite 17 << | Zurück | Vor | Inhalt | Element-Index |
|
XML Quelltext
<source> <AAA id="a1" pos="start"> <BBB id="b1"/> <BBB id="b2"/> </AAA> <AAA id="a2"> <BBB id="b3"/> <BBB id="b4"/> <CCC id="c1"> <CCC id="c2"/> </CCC> <BBB id="b5"> <CCC id="c3"/> </BBB> </AAA> </source> Ausgabe
<H3>AAAa1</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>child::BBB/attribute::id</TD> <TD>BBB/@id</TD> </TR> <TR> <TD>b1</TD> <TD>b1</TD> </TR> </TABLE> <H3>AAAa2</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>child::BBB/attribute::id</TD> <TD>BBB/@id</TD> </TR> <TR> <TD>b3</TD> <TD>b3</TD> </TR> </TABLE> HTML-Ansicht
AAAa1
AAAa2
|
XSLT Stylesheet
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="AAA"> <H3> <xsl:value-of select="name()"/> <xsl:text/> <xsl:value-of select="@id"/> </H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD> <xsl:text>child::BBB/attribute::id</xsl:text> </TD> <TD> <xsl:text>BBB/@id</xsl:text> </TD> </TR> <TR> <TD> <xsl:value-of select="child::BBB/attribute::id"/> </TD> <TD> <xsl:value-of select="BBB/@id"/> </TD> </TR> </TABLE> </xsl:template> </xsl:stylesheet> |
|
XML Quelltext
<source> <AAA id="a1" pos="start"> <BBB id="b1"/> <BBB id="b2"/> </AAA> <AAA id="a2"> <BBB id="b3"/> <BBB id="b4"/> <CCC id="c1"> <CCC id="c2"/> </CCC> <BBB id="b5"> <CCC id="c3"/> </BBB> </AAA> </source> Ausgabe
<H3>BBBb1</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a1</TD> <TD>a1</TD> </TR> </TABLE> <H3>BBBb2</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a1</TD> <TD>a1</TD> </TR> </TABLE> <H3>BBBb3</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a2</TD> <TD>a2</TD> </TR> </TABLE> <H3>BBBb4</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a2</TD> <TD>a2</TD> </TR> </TABLE> <H3>BBBb5</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>parent::*/attribute::id</TD> <TD>../@id</TD> </TR> <TR> <TD>a2</TD> <TD>a2</TD> </TR> </TABLE> HTML-Ansicht
BBBb1
BBBb2
BBBb3
BBBb4
BBBb5
|
XSLT Stylesheet
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="BBB"> <H3> <xsl:value-of select="name()"/> <xsl:text/> <xsl:value-of select="@id"/> </H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD> <xsl:text>parent::*/attribute::id</xsl:text> </TD> <TD> <xsl:text>../@id</xsl:text> </TD> </TR> <TR> <TD> <xsl:value-of select="parent::*/attribute::id"/> </TD> <TD> <xsl:value-of select="../@id"/> </TD> </TR> </TABLE> </xsl:template> </xsl:stylesheet> |
|
XML Quelltext
<source> <AAA id="a1" pos="start"> <BBB id="b1"/> <BBB id="b2"/> </AAA> <AAA id="a2"> <BBB id="b3"/> <BBB id="b4"/> <CCC id="c1"> <CCC id="c2"/> </CCC> <BBB id="b5"> <CCC id="c3"/> </BBB> </AAA> </source> Ausgabe
<H3>CCCc1</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>name(/descendant-or-self::*)</TD> <TD>name(//*)</TD> </TR> <TR> <TD>source</TD> <TD>source</TD> </TR> </TABLE> <H3>CCCc2</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>name(/descendant-or-self::*)</TD> <TD>name(//*)</TD> </TR> <TR> <TD>source</TD> <TD>source</TD> </TR> </TABLE> <H3>CCCc3</H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD>name(/descendant-or-self::*)</TD> <TD>name(//*)</TD> </TR> <TR> <TD>source</TD> <TD>source</TD> </TR> </TABLE> HTML-Ansicht
CCCc1
CCCc2
CCCc3
|
XSLT Stylesheet
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <xsl:template match="CCC"> <H3> <xsl:value-of select="name()"/> <xsl:text/> <xsl:value-of select="@id"/> </H3> <TABLE border="1"> <TR> <TH>full</TH> <TH>abbreviated</TH> </TR> <TR> <TD> <xsl:text>name(/descendant-or-self::*)</xsl:text> </TD> <TD> <xsl:text>name(//*)</xsl:text> </TD> </TR> <TR> <TD> <xsl:value-of select="name(/descendant-or-self::*)"/> </TD> <TD> <xsl:value-of select="name(//*)"/> </TD> </TR> </TABLE> <xsl:apply-templates/> </xsl:template> </xsl:stylesheet> |
Also, you will want to check out Stanton California so you can see what's up and they are part of Stanton City Hall as well.
You can also get Organic Skin Care products from Bliss Bath Body and you must check out their Natural Body Lotions and bath soaps
Now if you are looking for the best deals on surf clothing from Quiksilver and Roxy then you have to check these amazing deals here:
Hey, check out this Organic Skin Care European Soaps along with Natural Lavender Body Lotion and shea butter
This is the guy we need in government office. His name is Kevin Carr City Of Stanton Council Candidate and he is a great guy. and we can get surf t shirts surfing shirt and And you must check out this website swim suit swimming suit and swim trunks