I adapted some code written by Eric Shulman written for a completely
different purpose. You will need to install the InlineJavascriptPlugin
from http://www.tiddlytools.com.
Then create a tiddler with content specified below. No guarantees, but
it appeared to list the non-tagged tiddlers on my system. Apparently,
I have some cleaning up to do ...
-- Mark
/%
|Name|FindTiddlersWithoutTags|
|Source||
|Version|1.0.0|
|Author|MAS after Eric Shulman|
|License|Unknown|
|~CoreVersion|2.1|
|Type|script|
|Requires|InlineJavascriptPlugin|
|Overrides||
|Description|generate list of tiddlers having no tags|
%/<script>
var out = [] ;
var tids=store.getTiddlers();
for (var i=0; i<tids.length; i++) {
if( ! tids[i].getTags() ) {
var t="[[" + tids[i].title + "]]" ;
out.push(t) ;
}
}
//return out.join("\n----\n");
return out.join("\n");
</script>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---