How 2 output tags att with XSL (RETRY)

G. Ken Holman gkholman at CraneSoftwrights.com
Wed Jan 13 15:05:16 GMT 1999


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 at CraneSoftwrights.com
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 at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)




More information about the Xml-dev mailing list