|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: How 2 output tags att with XSL (RETRY)
At 99/01/13 13:44 +0900, Shinichiro HAMADA wrote:
>I am studying XML and XSL with IE5. And I wrote a simple sample with them
>like as following.
>...
>above xsl file is written for convert input xml file to a table structure,
>but i have no idea to embed given image filename from xml into the "src"
>attribute's value of "image" tag.
>
>If anyone knows how to do, please give me any advice.
The example below illustrates an approach to this. The way I've written
"test.xml" below is directly viewable with IE5b2, since it includes the
link to the stylesheet.
I hope this helps.
............. Ken
T:\FTEMP>type test.xml
<?xml version="1.0"?>
<?xml:stylesheet type="text/xsl" href="test.msxsl"?>
<items>
<item>
<param>hoge1</param>
<picture>hoge1.gif</picture>
</item>
<item>
<param>hoge2</param>
<picture>hoge2.gif</picture>
</item>
</items>
T:\FTEMP>type test.msxsl
<?xml version="1.0"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/TR/WD-xsl"
xmlns="http://www.w3.org/TR/REC-html40"
result-ns="">
<xsl:template match="/">
<table>
<xsl:for-each select="items/item">
<tr>
<td>
<xsl:value-of select="param"/>
</td>
<td>
<img>
<xsl:attribute><xsl:value-of select="picture"/></xsl:attribute>
</img>
</td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
T:\FTEMP>call msxsl test.xml test.msxsl test.htm
T:\FTEMP>type test.htm
<table>
<tr>
<td>
hoge1
</td>
<td>
<img item="hoge1.gif" />
</td>
</tr>
<tr>
<td>
hoge2
</td>
<td>
<img item="hoge2.gif" />
</td>
</tr>
</table>
T:\FTEMP>
--
G. Ken Holman mailto:gkholman@C...
Crane Softwrights Ltd. http://www.CraneSoftwrights.com/x/
Training: http://www.CraneSoftwrights.com/x/schedule.htm
Resources: http://www.CraneSoftwrights.com/x/resources.htm
Shareware: http://www.CraneSoftwrights.com/x/shareware.htm
Next XSL Training (see training link): WWW8 - 1999-05-11
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@i... the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








