1.1 --- a/styles/vym2xhtml.xsl Tue Jan 03 09:44:41 2006 +0000
1.2 +++ b/styles/vym2xhtml.xsl Wed Jan 25 09:33:50 2006 +0000
1.3 @@ -57,7 +57,7 @@
1.4 <xsl:param name="imagemap" select="''"/>
1.5
1.6 <!-- This stylesheet is able to process the following VYM version -->
1.7 -<xsl:param name="vym.version" select="'1.7.5'"/>
1.8 +<xsl:param name="vym.version" select="'1.7.7'"/>
1.9
1.10 <!-- Should the VYM XML format be checked -->
1.11 <xsl:param name="checkvym.version" select="1"/>
1.12 @@ -263,21 +263,21 @@
1.13 <xsl:choose>
1.14 <xsl:when test="$link.style = 'name'">
1.15 <a href="{$url}">
1.16 - <img src="{concat($image.flags.path,'url-small.png')}" border="0" alt="URL"/>
1.17 + <img src="{concat($image.flags.path,'url-16x16.png')}" border="0" alt="URL"/>
1.18 <xsl:text> </xsl:text>
1.19 <xsl:apply-templates/>
1.20 </a>
1.21 </xsl:when>
1.22 <xsl:when test="$link.style = 'url'">
1.23 <a href="{$url}">
1.24 - <img src="{concat($image.flags.path,'url-small.png')}" border="0" alt="URL"/>
1.25 + <img src="{concat($image.flags.path,'url-16x16.png')}" border="0" alt="URL"/>
1.26 <xsl:text> </xsl:text>
1.27 <xsl:value-of select="$url"/>
1.28 </a>
1.29 </xsl:when>
1.30 <xsl:when test="$link.style = 'both'">
1.31 <a href="{$url}">
1.32 - <img src="{concat($image.flags.path,'url-small.png')}" border="0" alt="URL"/>
1.33 + <img src="{concat($image.flags.path,'url-16x16.png')}" border="0" alt="URL"/>
1.34 <xsl:text> </xsl:text>
1.35 <xsl:apply-templates/> (<xsl:value-of select="$url"/>)
1.36 </a>