RE: [xsl] Multiple search

Subject: RE: [xsl] Multiple search
From: "Andrew Welch" <awelch@xxxxxxxxxxxxxxx>
Date: Wed, 19 Jun 2002 14:28:29 +0100
Wow! Thats quite a stylesheet you've got there.  

I would point out that most of the predicates can be rewritten, for
example:

<xsl:variable name="LoanIDNodes"
select="Pipelines/Pipeline[$LoanID!='*'][LoanID=$LoanID]|Pipelines/Pipel
ine[
$LoanID='*']"/>

Can become:

<xsl:variable name="LoanIDNodes"
  select="Pipelines/Pipeline[LoanID=$LoanID or $LoanID = '*']"/>

I would do that, then repost with a more readable stylesheet (and maybe
include some sample xml and what you want to achieve).

cheers
andrew


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.350 / Virus Database: 196 - Release Date: 17/04/2002
 

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


Current Thread