xsl-list
[Top] [All Lists]

RE: Identity Transformations

2004-03-03 08:46:59
$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(_at_)lists(_dot_)mulberrytech(_dot_)com
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com]On Behalf Of 
Michael Kay
Sent: Wednesday, March 03, 2004 2:02 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
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(_at_)lists(_dot_)mulberrytech(_dot_)com 
[mailto:owner-xsl-
# list(_at_)lists(_dot_)mulberrytech(_dot_)com] On Behalf Of Karl J. Stubsjoen
# Sent: 03 March 2004 02:35
# To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
# 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



<Prev in Thread] Current Thread [Next in Thread>