Hvodden hullen gør man.
Hejsa..Jeg er lidt vaklende i XML/XSL så jeg bliver nød til at spørge.
jeg har en XML jeg gerne vil have vist med en XSL template.
Al tekst formatering går fint men billeder kan jeg simpelthen ikke få til at virke.
hvodden går man? - Det skal da lige sige at jeg 'parser' XML-filen gennem en Linux/Tomcat/Cocoon installation.
(jeg smækker lige XML-filen og XSL fil med ind.)
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- generate HTML skeleton on root element -->
<xsl:template match="/">
<html>
<head>
<title><xsl:apply-templates select="page/title"/></title>
</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<!-- story is used later by the Meerkat example -->
<xsl:template match="p|story">
<p><xsl:apply-templates/></p>
</xsl:template>
<!-- convert sections to HTML headings -->
<xsl:template match="s1">
<h1><xsl:apply-templates select="@title"/></h1>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="image">
<xsl:apply-templates select='@href'/>
</xsl:template>
</xsl:stylesheet>
også lige XML-filen.
<?xml version="1.0" encoding="iso-8859-1"?>
<page>
<title>This is the pageOne.xml example</title>
<s2 title="Section one">
<p>This is the text of section one</p>
</s2>
<s2 title="Section two">
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
<P>This is another text for section two</P>
</s2>
<imageset>
<image href='http://128.9.205.249/edpic/P000020.jpg'></image>
</imageset>
</page>