Forgive me but my english isn't very good in handwriting.
Great template really, i like it!
Unfortunately for me, default html version want show me "Close window"
button!
Please help! Thank you!

Code: Select all
<span id="movieDescription">
<![CDATA[
<xsl:value-of select="description"/>
]]>
</span>
Paramount Jay wrote:There is a little mistake in the script, the last actor is never showed in the list of actors! So you have to modify the transform.xml script like this (search the first line of the script and replace all the template tag):Ok, let's talk now about the famous html line break! To make it visible in your page replaceCode: Select all
<xsl:template name="commas_to_br"> <xsl:param name="src" /> <xsl:choose> <xsl:when test="contains($src, ',')"> <xsl:value-of select="substring-before($src, ',')" /> <br /> <xsl:call-template name="commas_to_br"> <xsl:with-param name="src" select="substring-after($src, ',')" /> </xsl:call-template> </xsl:when> <xsl:otherwise> <xsl:value-of select="$src" /> </xsl:otherwise> </xsl:choose> </xsl:template>
byCode: Select all
<xsl:value-of select="description" />
and add thisCode: Select all
<xsl:call-template name="html_br"> <xsl:with-param name="src" select="description" /> </xsl:call-template>
just before this line:Code: Select all
<xsl:template name="html_br"> <xsl:param name="src" /> <xsl:choose> <xsl:when test="contains($src, '<br>')"> <xsl:value-of select="substring-before($src, '<br>')" /> <br /> <xsl:call-template name="html_br"> <xsl:with-param name="src" select="substring-after($src, '<br>')" /> </xsl:call-template> </xsl:when> <xsl:otherwise> <xsl:value-of select="$src" /> </xsl:otherwise> </xsl:choose> </xsl:template>
This will replace the <br> in the description by a REAL line break!Code: Select all
<xsl:template name="commas_to_br">
But this value hasn't effect on my columns, even with others numbers.<thead>
<th width="80"><a href="...>
What template is this ? I like it.., I have also a huge list with movies, and because of the heaviness of Willspo's script, I want to change...