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

RE: Javascript looping expression in stylesheet

Subject: RE: Javascript looping expression in stylesheet
From: "Zoe Peng" <zoe@xxxxxxxxxxxx>
Date: Wed, 8 May 2002 18:18:26 -0400
javascript loop all xml doc
Thank you guys. 
It ends up to use <![CDATA[]]> to make javascript work. 
very strange...It works in CSS, too. 

// those two are produced the same results. =)
<!-- load the css file -->
<xsl:processing-instruction name="xml-stylesheet">
<xsl:text>href="menu.css" type="text/css"</xsl:text>
</xsl:processing-instruction>
 
<!-- load the css file -->
<style type="text/css">
<![CDATA[
        .link
        {
        ...
        }
]]>
</style>


--Zoe

> XSLT is XML, and all XML needs to escape certain characters. According
> to the XML specification
> (http://www.w3.org/TR/2000/REC-xml-20001006#syntax), section 2.6,
> Character Data and Markup:
> 
> The ampersand character (&) and the left angle bracket (<) may appear 
in
> their literal form only when used as markup delimiters, or within a
> comment, a processing instruction, or a CDATA section. If they are
> needed elsewhere, they must be escaped using either numeric character
> references or the strings "& amp ;" and "& lt ;" respectively.
> 
> [NOTE: omit the space characters in the quotes - I've added those so
> that some email programs don't thing they are HTML and render them as
> characters!]
> 
> The reason for this is that ampersand and left angle bracket have
> special meaning to XML: they indicate escaped characters and the start
> of XML tags, respectively. Know your XML.
> 
> So if you've only got a few occurrences of these characters, you can 
use
> the & amp ; and & lt ; symbols, or you can place the contents of the
> text block in a CDATA section, such as this:
> 
> <xsl:text>
>   <![CDATA[My funky text that uses < and & all the time...]]>
> </xsl:text>
> 
> Cheers,
> Stuart
>

 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.