Don't use CheckboxPlugin. But some time ago I encountered the
difficulty that ForEachTiddlerPlugin couldn't retrieve data in
archived tiddler, though YourSearchPlugin still could access it. Then
Eric wrote a custom patch to allow also ForEachTiddler to recognize
archived content (to be tagged 'systemConfig'):
//{{{
TiddlyWiki.prototype.archivePlugin_getTiddlerText=TiddlyWiki.prototype.getTiddlerText;
TiddlyWiki.prototype.getTiddlerText=function(title,defaultText) {
var tiddler=store.getTiddler(title);
if (tiddler) tiddler.text=store.getValue(tiddler,'text');
return this.archivePlugin_getTiddlerText.apply
(this,arguments);
}
//}}}
maybe this helps a bid further..
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---