xsl-list
[Top] [All Lists]

AW: multilevel matching using attributes in a single expres sion ? how ?

2003-09-11 00:14:01
Hi,

it works like a charm. 
I get the output "Works". 
See below for files.

What is your problem?

Juergen

--- xml ---
<?xml version="1.0" encoding="windows-1252" ?>
<Document>
        <Chapter Name="Chapter1">
                <Section>
                </Section>
                <Section SectionHeading="Section5">
                </Section>
        </Chapter>

</Document>
--- xsl ---
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
      <xsl:output method="html" version="1.0" encoding="UTF-8"
indent="yes"/>

  <xsl:template
match="/Document/Chapter[(_at_)Name='Chapter1']/Section[(_at_)SectionHeading='Section5
']">
     Works
  </xsl:template>

</xsl:stylesheet>


-----Ursprüngliche Nachricht-----
Von: SANWAL, ABHISHEK (HP-Houston) 
[mailto:abhishek(_dot_)sanwal(_at_)hp(_dot_)com]
Gesendet am: Donnerstag, 11. September 2003 08:57
An: XSL-List(_at_)lists(_dot_)mulberrytech(_dot_)com
Betreff: [xsl] multilevel matching using attributes in a single
expression ? how ?

<xsl:template match =
"/Document/Chapter[(_at_)Name='Chapter1']/Section[(_at_)SectionHeading='Section5']
">

I am trying to match a particular Chapter using an attribute and a
particular section in that chapter using another attribute.

Eventually I want to "match" that particular SECTION based on its
chapter name and its heading.

<Document>
        <Chapter Name="Chapter1" .... >
                <Section etc... >
..............................
                <Section SectionHeading = "Section5" ..>

It doesn't seem to work. Any pointers? Or solution to that ? How can I
create such a match expression ? to point to a particular section based
on its complete path ( with attributes )

The following work individually to match that nodes in the tree.

<xsl:template match="/Document/Chapter[(_at_)Name='Chapter1]">

<xsl:template match="Section[(_at_)SectionHeading='Section5']">

I kind of wanted a single like combination of the two. Possible ? If not
whats a good way of "combining" the above two templates to eventually
match the second one (section with particular heading attribute) ?


Abhishek Sanwal
HP - Houston Campus
abhishek(_dot_)sanwal(_at_)hp(_dot_)com



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


*****************************************************************************
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte 
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese 
eMail irrtuemlich erhalten haben, informieren Sie bitte sofort den 
Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren 
sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.

This e-mail may contain confidential and/or privileged information. 
If you are not the intended recipient (or have received this e-mail 
in error) please notify the sender immediately and destroy this e-mail. 
Any unauthorized copying, disclosure or distribution of the material 
in this e-mail is strictly forbidden.
*****************************************************************************


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



<Prev in Thread] Current Thread [Next in Thread>
  • AW: multilevel matching using attributes in a single expres sion ? how ?, Zink, Juergen <=