[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)

  • From: "G. Ken Holman" <gkholman@C...>
  • To: "ML XMLDev" <xml-dev@i...>
  • Date: Wed, 13 Jan 1999 10:02:31 -0500

xsl image tag
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!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.