This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Re: Simple Replacement


Have a look at http://www.w3.org/TR/xslt#copying. There you can read about identity transformation.

The template matches on the root node (superfluous), on attributes and all nodes (includes elements, text nodes, comments and processing instructions), copies them and applies templates to all child nodes and attributes of the current node. With this template you can copy all and everything from input to output.

Joerg

ashu t wrote:
hello
i was not involved in this correspondence but
i was just looking at this and i found something confusing that's why i am asking this .what i am not getting is in this

<xsl:template match="/ | @* | node()">

    <xsl:copy>
      <xsl:apply-templates  select="@* | node()"/>
    </xsl:copy>
  </xsl:template>
in this template match what are you matching actually with or condition? and why
or condition in select.?
may be it is silly question but i am really not getting it at all.
ashu

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]