Subject: RE: Parameter Manipulation
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Wed, 27 Apr 2005 14:25:04 +0100
|
You can test whether all operations are completed with
not(@* = '0')
Michael Kay
http://www.saxonica.com/
> -----Original Message-----
> From: jeb501@xxxxxxxxxxxxxxx [mailto:jeb501@xxxxxxxxxxxxxxx]
> Sent: 27 April 2005 13:09
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: Parameter Manipulation
>
> Hi All,
>
> I am having an xml file, from that I want to capture whether all
> operations/activited are
>
> completeted or not using xsl.
>
> could anybody help me to solve this.
>
> here the operation completion is indicated by op1,op2,op3
> with value "1"
>
> and if it is "0" , the activity is not completed.
>
> and some nodes have one or two operations only.
>
>
> <op op1="1" op2="1" op3="1"></op>
>
> <op op1="1"></op>
>
> <op op1="1" op2="0"></op>
>
> <op op1="1" op2="1" op3="0"></op>
>
> <op op2="0"></op>
>
>
>
> Regards
> Eugene
|