Sometimes it helps to look into the source of a tiddlywiki.

Searching for orphans you could find the function...
TiddlyWiki.prototype.getOrphans

With that you can create a tiddler called TotallyOrphaned
containing...

<<tiddler 'TotallyOrphaned##OUT' with: {{
var out='';
store.forEachTiddler(
  function (t,tid) {
    if(store.getReferringTiddlers(t).length==0&&
       tid.tags.length==0)out+='* [['+t+']]\n';
  });
out;}}>>/%
!OUT
$1
!END%/

Cheers, Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" 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/tiddlywiki?hl=en.

Reply via email to