> <<forEachTiddler where 'tiddler.tags.contains("A") && tiddler.data
> ("x") *OR* tiddler.data("y") '

The various clauses of fET are just bits of javascript, so you can use
the standard boolean operators:

AND = &&
OR = ||
NOT = !
with parentheses to control the order of evaluation.

Thus:
   <<... where 'testA && (testB || testC)'... >>
   means "A and B ... or ... A and C"
while:
   <<... where 'testA && testB || testC'... >>
   means "A and B ... or ... C"

enjoy,
-e

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to