2002/ws/desc/wsdl20 zml2html-symbols-unicode.xsl,1.2,1.3

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 &lt; and &gt; for &lang; and &rang; 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 &laquo; or &lang;&lang;-->
  	<xsl:template match="z:ldata" mode="unicode">
! 		<span style="position: relative; left: .125em;">&lang;</span><xsl:text>&lang;</xsl:text>
  	</xsl:template>
  
! 	<!-- U+300B looks like &raquo; or &rang;&rang;-->
  	<xsl:template match="z:rdata" mode="unicode">
! 		<span style="position: relative; left: .125em;">&rang;</span><xsl:text>&rang;</xsl:text>
  	</xsl:template>
  
--- 148,159 ----
  	<!-- Free type definition \ldata, \rdata -->
  
! 	<!-- U+300A looks like &laquo; or &lang;&lang;, however Firefox 2.0 is not rendering it -->
  	<xsl:template match="z:ldata" mode="unicode">
! 		<span style="position: relative; left: .125em;">&lt;</span><xsl:text>&lt;</xsl:text>
  	</xsl:template>
  
! 	<!-- U+300B looks like &raquo; or &rang;&rang;, however Firefox 2.0 is not rendering it -->
  	<xsl:template match="z:rdata" mode="unicode">
! 		<span style="position: relative; left: .125em;">&gt;</span><xsl:text>&gt;</xsl:text>
  	</xsl:template>
  
***************
*** 439,448 ****
  	</xsl:template>
  
  	<xsl:template match="z:langle" mode="unicode">
! 		<xsl:text>&lang;</xsl:text>
  	</xsl:template>
  
  	<xsl:template match="z:rangle" mode="unicode">
! 		<xsl:text>&rang;</xsl:text>
  	</xsl:template>
  
--- 443,454 ----
  	</xsl:template>
  
+ 	<!-- Firefox 2.0 is not rendering &lang; -->
  	<xsl:template match="z:langle" mode="unicode">
! 		<xsl:text>&lt;</xsl:text>
  	</xsl:template>
  
+ 	<!-- Firefox 2.0 is not rendering &rang; -->
  	<xsl:template match="z:rangle" mode="unicode">
! 		<xsl:text>&gt;</xsl:text>
  	</xsl:template>
  

Received on Sunday, 27 May 2007 13:49:21 UTC