Return-Path: Mailing-List: contact cocoon-users-help@xml.apache.org; run by ezmlm Delivered-To: mailing list cocoon-users@xml.apache.org Received: (qmail 9062 invoked from network); 25 Feb 2001 22:43:51 -0000 Received: from rdu25-4-159.nc.rr.com (HELO akira.webslingerZ.com) (postfix@24.25.4.159) by h31.sny.collab.net with SMTP; 25 Feb 2001 22:43:51 -0000 Received: by akira.webslingerZ.com (Postfix, from userid 501) id 03A051303F; Sun, 25 Feb 2001 17:44:38 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by akira.webslingerZ.com (Postfix) with ESMTP id 8BB3D60D8 for ; Sun, 25 Feb 2001 17:44:38 -0500 (EST) Date: Sun, 25 Feb 2001 17:44:38 -0500 (EST) From: Donald Ball X-Sender: To: Subject: Re: xsl question In-Reply-To: <5.0.2.1.2.20010225231942.01eeb0a0@192.168.0.1> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N On Sun, 25 Feb 2001, Klaus Drechsler wrote: > I have an xsp page looking something like that: > > > =09myObject.isTrue() > =09yourObject.isTrue() > =09... > =09myObject.someMethod() > =09yourObject.someMethod() > > > Now I want a Logicsheet, that takes all =B4s and checks if they are= all > "true", eg: > > if(myObject.isTrue()&yourObject.isTrue() ... ){ > =09myObject.someMethod(); > }else{ > =09yourObject.someMethod(); > } if (true && ) { } else { } - donald