> I did use excludeLists - which works on the surface, but
> my miniTag still shows item. . .
> I.E. my TagDB tiddler for TaggerPlugin is tagged with all of my common
> tags, and excludeLists.
Although the excludeLists tag can often be used to prevent certain
tiddlers from being returned by some TW core functions, this behavior
is **not strictly enforced** at all times.
For example, this code:
store.getTiddlers('title');
returns *all* tiddlers, sorted by title, regardless of tags, while
this:
store.getTiddlers('title','excludeLists');
returns all tiddlers, sorted by title, except for those tagged with
'excludeLists'
Similarly, this function:
store.getTaggedTiddlers('someTag','title')
returns all tiddlers tagged with 'someTag', sorted by title, and
includes tiddlers tagged with 'excludeLists'. It is left to the
plugin code to then determine if it should eliminate those tiddlers,
based on the particular needs of that plugin.
Thus, it is entirely possible that the TaggerPlugin (or
MiniTagPlugin?) is not filtering for the 'excludeLists' tag, and the
problem is isolated to that plugin, rather than being either a bug in
the core or incorrect use of the tag on your part. I suggest
attempting to directly contact the developer of the specific plugin(s)
involved to see if they can provide further explanation or perhaps a
workaround or even an outright 'fix' for this issue.
HTH,
-e
Eric Shulman
TiddlyTools / ELS Design Studios