> I'm already using a script to update (saving tiddlerwise) every
> tiddler tagged with a specific tag:
> <script label="UpdateTiddlersTagged">
> var tag="TagName";
> var tids=store.getTaggedTiddlers(tag);
> store.suspendNotifications();
> for (var i=0; i<tids.length; i++) { var t=tids[i];
> store.saveTiddler
> (t.title,t.title,t.text,t.modifier,t.modified,t.tags,t.fields);}
>
> store.resumeNotifications();
> </script>
add something like this, just before the call to store.saveTiddler
(...):
store.setTiddlerTag(t.title,false,tag);
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---