[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Wrong Characters Returned from Javascript Function

Subject: Wrong Characters Returned from Javascript Function
From: Larry Davis <larry.davis@xxxxxxxx>
Date: Thu, 31 May 2001 14:47:02 -0700
chr 39 in javascript
I have a JavaScript function that cleans apostrophes and quotation marks
from text as it is written as a parameter into another JavaScript function
on an html page.  The JavaScript function returns different symbols for the
copyright and trademark symbols.  I tried commenting out all the processes
inside escapeApos() function.  Even when I return the exact same string, the
characters are altered. There is an example of the output below.

We are using MSXML3 for transformation.

Any help would be appreciated.   

Thanks, Larry


XSL Code:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="user"
exclude-result-prefixes="msxsl user">
	<xsl:output method="html" version="4.0" omit-xml-declaration="yes"
indent="no" media-type="text/html" encoding="UTF-16"/>
	<msxsl:script language="JavaScript" implements-prefix="user">
			<![CDATA[function escapeApos(str_in) {
							var char1 = /'/gi;
//Chr(39)
							var char2 = /"/gi;
//Chr(34)
							str_in =
str_in.replace(char1, "\\'");
							str_in =
str_in.replace(char2, "\\'");
							return str_in;
			}]]>
</msxsl:script>
	<xsl:template match="/Items">
		<xsl:apply-templates select="Item"/>
	</xsl:template>
	<xsl:template match="Item">
		<P/>
		<a>
			<!--Write variables into html stream for javasccript
function -->
			<xsl:attribute
name="href">javascript:editItem(<xsl:value-of select="ItemID"/>,
'<xsl:value-of select="user:escapeApos(string(ItemShortDesc))"/> ')
</xsl:attribute>Edit This Item</a>
	</xsl:template>
</xsl:stylesheet>


XML Example:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="AposTest.xsl"?>
<Items>
	<Item>
		<ItemID>123</ItemID>
		<ItemShortDesc>Grimm's Fairy Tales ®</ItemShortDesc>
	</Item>
	<Item>
		<ItemID>123</ItemID>
		<ItemShortDesc>Bob's Fairy Tales ®</ItemShortDesc>
	</Item>
	<Item>
		<ItemID>123</ItemID>
		<ItemShortDesc>Roger's Fairy Tales ®</ItemShortDesc>
	</Item>
</Items>

XSL Returns:
<P></P>
<a href="javascript:editItem(123, 'Grimm\'s Fairy Tales %C2%AE ') ">Edit
This Item</a>
<P></P>
<a href="javascript:editItem(123, 'Bob\'s Fairy Tales %C2%AE ') ">Edit This
Item</a>
<P></P>
<a href="javascript:editItem(123, 'Roger\'s Fairy Tales %C2%AE ') ">Edit
This Item</a>

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.