Nothing canonical - Saq's blog post (also linked to from the community
wiki*) is probably the best resource so far.
> Has anyone written down some plans or is it going to evolve?
Several potential enhancements have been discussed.
I believe Jon is working on that now:
http://tinyurl.com/24pryx
(http://groups.google.com/group/TiddlyWikiDev/browse_thread/thread/611a7f2b5ff29dfc/)
Extending the filtering capabilities would certainly be very useful.
-- F.
Each filter element acts on the current list of tiddlers. So eg
[tag[systemConfig]] will add all the systemConfig tagged tiddlers to
the list. Appending [-tag[translations]] will remove any tiddlers
tagged with translation from the current list. So boolean operations
etc do not exist.
Martin
the list is the set of tiddlers extant after the last filter operation, eg
[[Getting Started]]
list contains one tiddler, "Getting Started"
[[Getting Started]] [tag[systemConfig]]
list contains "Getting Started" tiddler and all systemConfig tiddlers
List is ordered and items added/removed as "recipe" is parsed right to left
Martin
Sorry my mixup. I meant to say left to right.
Martin
[[Getting Started]] [tag[systemConfig]] [-tag[systemConfig]]
results in solely [[Getting Started]]
Unfortunately this has not all been written down.
Jon Lister's tests are for his client-side implementation of the
filtering mechanism.
Martin