For those googling this in the future, this issue:

ideally, DefaultTiddlers could contain a list of tag macro
statements (as in #2 above) and each "section" of the resulting
display could have a separate sort order.

even more ideally, the list of defaultTiddlers could be generated
by Eric's fine MatchTagsPlugin, allowing for boolean logic in the tag
selection (default OR (journal AND NOT Archived) 

has been most elegantly resolved here 
<http://groups.google.com/group/tiddlywiki/browse_thread/thread/edc74abdd796672d/>by
 
PMario

Note - you must delete your DefaultTiddlers tiddler first (leaving only the 
shadow version, which will be overwritten by the code from that thread, to 
be put into zzConfig or any tiddler flagged systemConfig:

var tids1 = store.getMatchingTiddlers("default","modified").reverse()
var tids2 = store.getMatchingTiddlers("journal AND NOT 
archived","title").reverse()

var tids = []
tids = tids.concat(tids1,tids2);

tids = tids.map(function(elem){return elem.title})
config.shadowTiddlers["DefaultTiddlers"] = '[[' + tids.join(']] [[') + ']]';


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/TCpo-8nqnZAJ.
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