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

AW: suppression of the transformation of character entities in

  • To: <xml-dev@l...>
  • Subject: AW: suppression of the transformation of character entities in XSLT?
  • From: "Sascha Pogacar (XPECT MEDIA)" <sascha.pogacar@x...>
  • Date: Thu, 22 May 2003 18:20:10 +0200
  • Thread-index: AcMgeulygs6d3M28TzSIW3HBsCG9jgAAc+xw
  • Thread-topic: suppression of the transformation of character entities in XSLT?

the spits lyrics
Due to some helpfull answeres, here some codeexamples to illustrate the
process.

1. I have a big xml with movie informations and some other with
theaterinformations and more. In the Movies.xml a part for the reviedata
looks like this:
		<review>
			<P>Brad Gluckman is Malibu&#146;s most unwanted
rapper. He spends his days hangin&#146; at the Malibrew Coffee Shop with
his pimpin&#146; crew, Mocha, Monster and Hadji, and bustin&#146; rhymes
about his hard-core life up in &#147;the &#145;Bu.&#148; Immersed in
hip-hop culture, B-Rad spits lyrics about his phat life and this beach
boy is convinced that his wack rhymes are tighter than Hadji&#146;s
cornrows. While B-Rad thinks his lyrical stylings and hip-hop lifestyle
are down, he&#146;s actually taking his whole family down with him
&#150; especially his father, Bill Gluckman, who is currently
campaigning to be the next governor of California. Bill doesn&#146;t
understand his son and thinks all B-Rad needs is some unusual family
therapy--or tough love--to cure him of his gangsta delusions. But ...

2. in the script i do some combinations and rearrangements with the
informations i get. And then I give it to the xslt, which looks like
this:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
	<xsl:output method="xml" version="1.0" indent="yes" />

	<xsl:template match="root">
	<xsl:element name="root">
			<xsl:apply-templates select="movie"/>
			<xsl:apply-templates
select="theaters|Theaters"/>
	</xsl:element>
	</xsl:template>

	<xsl:template match="theaters|Theaters">
	<xsl:element name="theaters">
			<xsl:apply-templates select="Theater|theater"/>
	</xsl:element>
	</xsl:template>

	<xsl:template match="theater|Theater">
	<xsl:element name="theater">
		<xsl:apply-templates select="@*|node()"/>
		<xsl:apply-templates
select="/root/shows/showtime[@theater_id=current()/@TheaterId]"/>
	</xsl:element>
	</xsl:template>
	
	<xsl:template match="@TheaterId">
	</xsl:template>
	
	<xsl:template match="@fieldname">
	</xsl:template>

	<xsl:template match="@fn">
	</xsl:template>
	
	<xsl:template match="showtime">
			<xsl:apply-templates select="showtimes"/>
	</xsl:template>

	<xsl:template match="@*|node()">
		<xsl:copy>
			<xsl:apply-templates select="@*|node()"/>
		</xsl:copy>
	</xsl:template>
</xsl:stylesheet>

3. Alter my transformation, the same content looks like this:

<review>
			<P>Brad Gluckman is Malibu's most unwanted
rapper. He spends his days hangin' at the Malibrew Coffee Shop with his
pimpin' crew, Mocha, Monster and Hadji, and bustin' rhymes about his
hard-core life up in "the 'Bu." Immersed in hip-hop culture, B-Rad spits
lyrics about his phat life and this beach boy is convinced that his wack
rhymes are tighter than Hadji's cornrows. While B-Rad thinks his lyrical
stylings and hip-hop lifestyle are down, he's actually taking his whole
family down with him - especially his father, Bill Gluckman, who is
currently campaigning to be the next governor of California. Bill
doesn't understand his son and thinks all B-Rad needs is some unusual
family therapy--or tough love--to cure him of his gangsta delusions. But
when therapy can't solve the B-Rad public relations problem in time to
stop Bill Gluckman's disastrous slide in the polls, campaign manager Tom
G...

See my problem. Thanks for your help so far...

best

Sascha Pogacar


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
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

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.