home *** CD-ROM | disk | FTP | other *** search
Wrap
XML for Beginners: Part 2 _________________________ Here's an example of an "extended" link. <list xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="extended"> <!-- Bands and their members --> <band xlink:type="locator" xlink:role="band" xlink:href="the_prodigy.xml"/> <member xlink:type="locator" xlink:label="member" xlink:href="leeroy.xml"/> <member xlink:type="locator" xlink:label="member" xlink:href="liam.xml"/> <member xlink:type="locator" xlink:label="member" xlink:href="keith.xml"/> <member xlink:type="locator" xlink:label="member" xlink:href="maxim.xml"/> <bind xlink:type="arc" xlink:from="band" xlink:to="member"/> </list> ********** The best method of incorporating images is to use xlink: <?xml version="1.0"?> <wines xmlns="http://www.mysite.com/wines" xmlns:xlink="http://www.w3.org/1999/xlink"> <brand marque="Caliterra" xlink:type="simple" xlink:href="http://www.mysite.com/wines/caliterra"> <description xlink:type="simple" xlink:href="http://www.mysite.com/wines/caliterra/label.jpg" xlink:actuate="onLoad" xlink:show="embed"> A smooth label for a smooth wine. </description> </brand> </wines> ********** Here's our stylesheet for turning XML into HTML. Confusingly, all XSLT files are themselves written in XML format, so the file starts with an XML declaration. On the third line it goes on to identify itself as XSLT. <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/REC-html40" version="1.0"> <xsl:output method="html"/> <xsl:template match="/"> <HTML><HEAD><TITLE>TinHat Security Newsletter</TITLE></HEAD> <BODY><H1>TinHat Security Newsletter</H1> <H2>Today's Battlefields</H2> <xsl:for-each select="News/Item"> <P><A HREF="#{generate-id(.)}"> <xsl:value-of select="Title"/></A><BR/> <SMALL>by <xsl:value-of select="Author"/></SMALL><BR/> <xsl:value-of select="Abstract"/></P> </xsl:for-each> </BODY></HTML> </xsl:template> </xsl:stylesheet> ********** That doesn't make a lot of sense on its own, separated from the XML data file that it applies to, so let's take a look at that: <?xml version="1.0"?> <News> <URL>http://oemcomputer/index</URL> <Item> <Title>Watch out for Klez!</Title> <Author>Andrew Starling</Author> <Abstract>If you haven't downloaded the Microsoft patch to protect against Klez, get it right now.</Abstract> <Para>Probably the worst aspect of the Klez virus is that you don't need to open an attachment to catch it etcĂ </Para> <Para>Second paragraph, and so on</Para> </Item> </News> *********** WML is itself a kind of XML, which is why there are references to XML in the xsl:output line of the XSLT file that follows. <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="xml" doctype-public="-//WAPFORUM//DTD WML 1.1//EN" doctype-system="http://www.wapforum.org/DTD/wml_1.1.xml"/> <xsl:template match="/"> <wml> <card id="toc" title="TinHat Security Newsletter"> <p align="center"><b>Today's Battlefields</b></p> <xsl:for-each select="News/Item"> <p><anchor><xsl:value-of select="Title"/><go href="#{generate-id(.)}"/></anchor></p> </xsl:for-each> </card> </wml> </xsl:template> </xsl:stylesheet> ***********