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: Multiple search


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]