> This line fetches all tiddlers taged "someTag" :
> tids=store.getTaggedTiddlers('someTag');
> Where do I insert the "!" to make it fetch all the tiddlers that are NOT
> tagged "someTag" ?

The TWCore store.getTaggedTiddlers() function only accepts a single
tag value to match.  However, if you install
   http://www.TiddlyTools.com/#MatchTagsPlugin
you can use the plugin-defined store.getMatchingTiddlers() function,
which accepts full boolean expression syntax (and/or/not, plus
parentheses).  You can then write:

tids=store.getMatchingTiddlers('!someTag');

or even complex 'tag expressions' like:

tids=store.getMatchingTiddlers('thisTag OR (thatTag AND NOT
theOtherTag)');

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

----
TiddlyTools needs YOUR financial support...
Help ME to continue to help YOU...
make a generous donation today:
   http://www.TiddlyTools.com/#Donations

Professional TiddlyWiki Consulting Services...
Analysis, Design, and Custom Solutions:
   http://www.TiddlyTools.com/#Contact

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

Reply via email to