Re: Another newbie question

Subject: Re: Another newbie question
From: "Betty L. Harvey" <harvey@xxxxxxxxxxxxxxxxx>
Date: Mon, 13 Mar 2000 15:03:19 -1000 (HST)
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


Current Thread