> I want to write a list of all the tiddlers tiddlerFive own a part of

So essentially, you want a list of tiddlers where either field A or B 
contain a particular term?
The ForEachTiddler plugin should do the job - pseudo code:
     forEachTiddler
         where tiddler.fields.owneralpha.contains("tiddlerFive") ||
             tiddler.fields.ownerbeta.contains("tiddlerFive")
         print "* [[" + tiddler.title + "]]"

HTH.


-- F.

--~--~---------~--~----~------------~-------~--~----~
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