Hey there awesome devs! I've been using Tiddlywiki now for a few
months and wanted a way to temporarily hide a tiddler in the
timeline. The idea is that I've created a skeleton file for use in
projects, and I want the timeline to reflect what has gone on in the
project, not what went into making the skeleton.
I added a check in the timeline handler to skip displaying a tiddler
if the last modifier is set to "nobody" (not very international, but
it works for me)
config.macros.timeline.handler = function(place,macroName,params)
{
...
for(var t=tiddlers.length-1; t>=last; t--) {
var tiddler = tiddlers[t];
+ if(tiddler["modifier"] == "nobody") {
+ continue;
+ }
var theDay =
tiddler[field].convertToLocalYYYYMMDDHHMM().substr(0,8);
if(theDay != lastDay) {
...
}
With that done, I set my user name to nobody and edit each tiddler
shown in the timeline. Now, as the users go about their work on the
project and re-edit those tiddlers, they show up properly in the
timeline.
--
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" 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/tiddlywikidev?hl=en.