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: XSL "Joining"


hi
>Constraints:
>We have to use xmlns:xsl="http://www.w3.org/TR/WD-xsl";, so I cannot use any 
>features of the new standard.

is it very application critical that u use the namespace u are using??
I reckon u give it a thought or discuss with your development team , if you 
HAVE to use the namespace u are using...

its an easy job if u use the namespace declaration
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.0">
regards
vasu


>From: "Cooper, John" <JCooper@elite-systems.com>
>Reply-To: xsl-list@lists.mulberrytech.com
>To: <XSL-List@lists.mulberrytech.com>
>Subject: [xsl] XSL "Joining"
>Date: Thu, 2 May 2002 09:04:10 -0400
>
>Hello, I have the following problem I need help with.  I would like to 
>perform something like a join on two different nodes so that I may get a 
>description field from another node.  Following is an example of the XML:
>
>XML:
><response>
>	<detail @id='1' @parent_key='2' @desc='First Row'/>
>	<detail @id='2' @parent_key='3' @desc='Second Row'/>
>	<detail @id='3' @parent_key='' @desc='Third Row'/>
></response>
>
>Problem Statement:
>In the xsl, I do a template match on //detail and output each attribute in 
>a table.  What is the query to get the @desc attribute by joining the 
>@parent_key attribute to the @id attribute?
>
>Desired Outupt:
>
>ID	Name		Parent
>1	First Row	Second Row
>2	Second Row	Third Row
>3	Third Row	-
>
>Constraints:
>We have to use xmlns:xsl="http://www.w3.org/TR/WD-xsl";, so I cannot use any 
>features of the new standard.
>
>Any help would be deeply appreciated.
>
>John Cooper
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>





_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


 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]