I actually very much like the "ForEachTiddler" method since it lets me make 
each item into it's own table cell.
Which seems to be good news for me as it would appear that a plugin I love 
using a lot "ExcludeTimelinePlugin" breaks that function of the timeline 
macro.

The plugin doesn't seem to have any author information for me to link you 
to so... 

----------ExcludeTimelinePlugin--------------

// // Excludes any tiddlers from timeline that have been tagged with 
''excludeTimeline''// // Excludes any tiddlers from timeline that have been 
tagged with ''excludeTimeline''
/*{{{*/
config.macros.timeline.handler = function(place,macroName,params)
{
var field = params[0] ? params[0] : "modified";
var tiddlers = store.reverseLookup("tags","excludeTimeline",false,field);
var lastDay = "";
var last = params[1] ? 
tiddlers.length-Math.min(tiddlers.length,parseInt(params[1])) : 0;
for(var t=tiddlers.length-1; t>=last; t--)
{
var tiddler = tiddlers[t];
var theDay = tiddler[field].convertToLocalYYYYMMDDHHMM().substr(0,8);
if(theDay != lastDay)
{
var theDateList = document.createElement("ul");
place.appendChild(theDateList);
createTiddlyElement(theDateList,"li",null,"listTitle",tiddler[field].formatString(this.dateFormat));
lastDay = theDay;
}
var theDateListItem = createTiddlyElement(theDateList,"li",null,"listLink");
theDateListItem.appendChild(createTiddlyLink(place,tiddler.title,true));
}
}
/*}}}*/

 --------End-------

On Monday, March 25, 2013 1:22:38 AM UTC-7, Tobias Beer wrote:
>
> Hi Arc,
>
> No need for plugins! The easiest way would actually be to use the timeline 
> macro...
> http://tiddlywiki.org/#timeline
>
> |!Foo|h
> |<<timeline maxlength:5 filter:[tag[Foo]]>>|
>
> Cheers, Tobias.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to