Re: Another newbie question

Subject: Re: Another newbie question
From: "Betty L. Harvey" <harvey@xxxxxxxxxxxxxxxxx>
Date: Mon, 13 Mar 2000 16:34:32 -1000 (HST)
Microsoft IE supports a working draft of XSL.  It works
with the following Namespace declaration:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/TR/WD-xsl";>

If you want the images to display, you will need to do something
like the following:

<xsl:template match="home">
td>
      <img>
        <xsl:attribute name="src">
             <xsl:value-of select="@href"/>
        </xsl:attribute>
      </img>
     <xsl:apply-templates/>
</td>
</xsl:template>

Hope this helps.  It is difficult to troubleshoot problems when
you can't see the output |-).

Betty


On Mon, 13 Mar 2000, Nicole Gustas wrote:

> Unfortunately, it doesn't seem to work.  Is there a specific spot that I should add
> those lines in at?
> 
> "Betty L. Harvey" wrote:
> 
> > Nicole:
> >
> >         It isn't you, it is IE.  Try adding the following lines to
> > your XSL:
> >
> > <xsl:template>
> >         <xsl:apply-templates/>
> > </xsl:template>
> >
> > <xsl:template match="text()">
> >         <xsl:value-of />
> > </xsl:template>
> >
> > I think that will solve your problem.
> >
> > Betty
> >
> > On Mon, 13 Mar 2000, Nicole Gustas wrote:
> >
> > > I am banging my head against the wall working on My Very First XML Page (TM) and
> > > was hoping someone here could help me, as I'm fairly sure it's the XSL I bollixed
> > > up.
> > >
> > > The XSL is as follows:
> > > <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
> > > <xsl:template match="document">
> > > <xsl:apply-templates/>
> > >
> > > </xsl:template>
> > > <body bgcolor="Black" text="White" link="#CCCCCC" vlink="Red" alink="Blue"/>
> > > <xsl:template match="title">
> > >  <font face="arial,helvetica,helv" size="+3"><b><xsl:apply-templates
> > > select="name"/>
> > >  <xsl:apply-templates select="num"/></b></font>
> > >
> > > </xsl:template>
> > > <xsl:template match="body">
> > >  <table width="600" border="0" cellpadding="6">
> > >  <tr>
> > >  <td align="top" valign="left">
> > >   <xsl:apply-templates match="img"/>
> > >  </td>
> > >  <td align="top" valign="left">
> > >   <p><font color="#000000"><xsl:apply-templates match="text"/></font></p>
> > >  </td>
> > >  </tr>
> > >  </table>
> > > </xsl:template>
> > > </xsl:stylesheet>
> > >
> > > ...and the XML is:
> > >
> > > <?xml version="1.0"?>
> > > <?xml-stylesheet type="text/xsl" href="gallery.xsl"?>
> > > <!DOCTYPE document SYSTEM "gallery.dtd">
> > > <document>
> > > <title name="John" num="3"/>
> > > <body>
> > > <img src="john3.jpg" alt="Lighting Candles" height="257" width="287"/>
> > > <text>Lighting candles.</text>
> > > </body>
> > > <footer>
> > > <index href="index.htm"/>
> > > <yplt href="../pretty.htm"/>
> > > <home href="../index.html"/>
> > > <copyright/>
> > > </footer>
> > > </document>
> > >
> > > I am trying to emulate:
> > > http://www.obscure.org/~rednikki/john/john3.htm
> > >
> > > but so far all I get is the black background.
> > >
> > > Obviously, I've screwed up.  If anyone can take the time to point me in the right
> > > direction, I'd be much obliged.
> > >
> > > - Nikki
> > >
> > >
> > >  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> > >
> >
> >  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread