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]

Re: How do I reference the name of a tag?


James,

Not too hard:

<xsl:template match="*">
  <attribute name="{name()}">
    <value>
      <xsl:apply-templates/>
    </value>
  </attribute>
</xsl:template>

(Not tested, but not hard. The magic dust is in the 'name()' function.)

Cheers,
Wendell

At 10:45 AM 5/31/00 -0700, you wrote:
>
>If I have a source like this:
>
><sometag>blah</sometag>
><someothertag>blah blah</someothertag>
>
>that I want to transform to:
>
><attribute name="sometag">
>	<value>blah</value>
></attribute>
><attribute name="someothertag">
>	<value>blah blah</value>
></attribute>
>
>how can I get at the expanded-name of sometag and someothertag?


======================================================================
Wendell Piez                            mailto:wapiez@mulberrytech.com
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


 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]