RE: [xsl] Identity Transformations

Subject: RE: [xsl] Identity Transformations
From: "Karl J. Stubsjoen" <karl@xxxxxxxxxxxxx>
Date: Wed, 3 Mar 2004 08:46:59 -0700
$c is a parameter which is passed to the stylesheet from my scripting
language (ASP).
It looks something like this:

<campaign>
	<table>
		.. a bunch more xhtml ..
	</table>
</campaign>

Other template rules:  there are other variables, and there is a source/root
(don't know how you refer to this) XML document for the stylesheet.

So I guess my question becomes:  how do you perform an identity
transformation (similar to below) against an xml fragment that is a
variable/parameter of the stylesheet?

Karl


-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Michael Kay
Sent: Wednesday, March 03, 2004 2:02 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] Identity Transformations


It rather depends on (a) what's in the variable, and (b) what other template
rules exist.

For example, if $c is a document node (e.g. the root of a temporary tree)
then it will not match this pattern.

Michael Kay

# -----Original Message-----
# From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx [mailto:owner-xsl-
# list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Karl J. Stubsjoen
# Sent: 03 March 2004 02:35
# To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
# Subject: [xsl] Identity Transformations
#
# Hi,
#
# The following apply-templates:
#
#     	<xsl:apply-templates select="$c"/>
#
#
# Is not getting me to:
#
# <xsl:template match="@* | node()">
#     <xsl:copy>
# 	    <xsl:apply-templates select="@* | node()"/>
#     </xsl:copy>
# </xsl:template>
#
#
# I'm not sure what is wrong.  I am apply-templates with a variable and not
# the original document tree.  Is this the problem?
#
# Karl
#
#
#  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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



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


Current Thread