- From: Arthur Ryman via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 27 May 2007 13:49:19 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/wsdl20 In directory hutz:/tmp/cvs-serv5302/wsdl20 Modified Files: zml2html-symbols-unicode.xsl Log Message: substituted < and > for ⟨ and ⟩ because Firefox 2.0 isn't rendering them correctly Index: zml2html-symbols-unicode.xsl =================================================================== RCS file: /sources/public/2002/ws/desc/wsdl20/zml2html-symbols-unicode.xsl,v retrieving revision 1.2 retrieving revision 1.3 diff -C 2 -d -r1.2 -r1.3 *** zml2html-symbols-unicode.xsl 31 Dec 2004 22:03:03 -0000 1.2 --- zml2html-symbols-unicode.xsl 27 May 2007 13:49:16 -0000 1.3 *************** *** 26,29 **** --- 26,33 ---- <!-- Change Log: + + 2007-05-27: Arthur Ryman <ryman@ca.ibm.com> + - substituted < and > for ⟨ and ⟩ because Firefox 2.0 isn't + rendering them correctly 2004-12-28: Arthur Ryman <ryman@ca.ibm.com> *************** *** 144,155 **** <!-- Free type definition \ldata, \rdata --> ! <!-- U+300A looks like « or ⟨⟨--> <xsl:template match="z:ldata" mode="unicode"> ! <span style="position: relative; left: .125em;">⟨</span><xsl:text>⟨</xsl:text> </xsl:template> ! <!-- U+300B looks like » or ⟩⟩--> <xsl:template match="z:rdata" mode="unicode"> ! <span style="position: relative; left: .125em;">⟩</span><xsl:text>⟩</xsl:text> </xsl:template> --- 148,159 ---- <!-- Free type definition \ldata, \rdata --> ! <!-- U+300A looks like « or ⟨⟨, however Firefox 2.0 is not rendering it --> <xsl:template match="z:ldata" mode="unicode"> ! <span style="position: relative; left: .125em;"><</span><xsl:text><</xsl:text> </xsl:template> ! <!-- U+300B looks like » or ⟩⟩, however Firefox 2.0 is not rendering it --> <xsl:template match="z:rdata" mode="unicode"> ! <span style="position: relative; left: .125em;">></span><xsl:text>></xsl:text> </xsl:template> *************** *** 439,448 **** </xsl:template> <xsl:template match="z:langle" mode="unicode"> ! <xsl:text>⟨</xsl:text> </xsl:template> <xsl:template match="z:rangle" mode="unicode"> ! <xsl:text>⟩</xsl:text> </xsl:template> --- 443,454 ---- </xsl:template> + <!-- Firefox 2.0 is not rendering ⟨ --> <xsl:template match="z:langle" mode="unicode"> ! <xsl:text><</xsl:text> </xsl:template> + <!-- Firefox 2.0 is not rendering ⟩ --> <xsl:template match="z:rangle" mode="unicode"> ! <xsl:text>></xsl:text> </xsl:template>
Received on Sunday, 27 May 2007 13:49:21 UTC