Konvertering af XML
Hvordan skal mit XSLT dokument se ud, for at følgende to XML-dokumenter transformeres ens:<!-- dokument 1 -->
<myxml>
<flash>
<url>clip.gif</url>
</flash>
<flash>
<url>daclip.gif</url>
</flash>
<text>
<value>Help, i'm a fish</value>
<place>1</place>
</text>
<text>
<value>My god, You are a fish</value>
<place>2</place>
</text>
</myxml>
<!-- dokument 2 -->
<myxml>
<p>
<flash>
<url>http://www.arsmatrix.com/map_clip.gif</url>
</flash>
<flash>
<url>http://www.arsmatrix.com/daclip.gif</url>
</flash>
</p>
<p>
<text>
<value>Help, i'm a fish</value>
<place>1</place>
</text>
</p>
<text>
<value>My god, You are a fish</value>
<place>2</place>
</text>
</myxml>
Begge skulle gerne transformeres til:
&flash1=clip.gif&flash2=daclip.gif&totalFlashes=2&text1=Help, i'm a fish&textArea1=&textPlace1=&textAlignment1=&text2=My god, You are a fish&textArea2=&textPlace2=&textAlignment2=&totalTexts=2&totalImages=0&totalMovies=0&totalSounds=0
Dokument 1 har jeg fået transformeret (se http://www.firmacentrum.dk/transform.xsl), men samme XSLT virker ikke med dokument 2 - hvordan kan jeg få det til at virke?
På forhånd tak,
Hans