xsl-list
[Top] [All Lists]

Question about variable-field lookup tables

2004-01-12 09:41:59

Hi,

I need some help with a particular problem I'm trying to solve. I need to
transform an xml document that is based partially on information that is
extracted from another xml file whose purpose is to act like a lookup
table. However, the wrinkle is that the values extracted from the lookup
table are xml fragments that might be one or more fields.

An sample of the xml lookup file looks like this

<AB>
   <TC name="a">
     <TTM type="b">
        <UCM preference="1">
           <UC>S</UC>
           <UPS>
              <pa prefnum="1">
                 <XXXX>
                   <YYYY/>
                   <ZZZZ/>
                 </XXXX>
              </pa>
              <pa prefnum="2">
                 <WWWW/>
              </pa>
           </UPS>
        </UCM>
     </TTM>
   </TC>
    ...
</AB>

The xml file that needs to be tranformed looks something like this

<TM>
    <T id="something" TC="a">
        <Type>b</Type>
        <Prefs>
            <UC>S</UC>
            <UPS>1</UPS>
        </Prefs>
    </T>
    ...
</TM>

Based on the lookup from the first file, since the UPS value is 1, the
corresonding XML fragment from above
        <XXXX>
          <YYYY/>
          <ZZZZ/>
        </XXXX>
needs to be *modified* and copied into the output tree. The above code
will have to look something like this

      <p c="XXXX">
         <p c="YYYY"/>
         <p c="ZZZZ"/>
      </p>

If on the other hand, the UPS value was 2, then the lookup matches the
second XML fragment and the code will be

     <p c="WWWW"/>

The problem I'm having is to figure out how to do the *copy and
tranformation* of the xml fragment since I don't know deeply nested it
might be. I'm stumped in thinking of an elegant solution to this problem.

Any help is appreciated.

Regards,

-Farooq.
-- 
Mir Farooq Ali

Computer Science, Virginia Tech,
Email: miali(_at_)cs(_dot_)vt(_dot_)edu
Web: http://purl.org/net/farooq
--------------------------------------------
(c) 2004 Mir Farooq Ali  All rights reserved
--------------------------------------------


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



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