Do you know TiddlerTweakerPlugin [1]?
It can be used as a browser bookmarklet [2]. So you don't need to
include it into your production TW. Just load on demand.

Adding or removing tags is quite easy
eg:
tagfield is empty .. remove all tags from marked tiddlers
tagfield = +newTag .. will add the tag "newTag" to tiddlers
tagfield = -newTag .. will remove the tag "newTag" from existing
tiddlers

IMPORTANT:
I highly recomend to create a backup prior to messing around with this
tool :)

-m

[1] http://www.tiddlytools.com/#TiddlerTweakerPlugin
[2] http://www.tiddlytools.com/#InstantBookmarklets


On Jul 26, 8:06 pm, axelm <[email protected]> wrote:
> Could this script be modified to do what I want?
>
> <script label="Add Text Now!">
> var t,i,
> tids=store.getTaggedTiddlers('UPDATE'),
> txt=store.getTiddlerText('NEWTEXT')||'';
> if(!confirm("Really add to the contents of:\n"+
> tids.map(function(t){return t.title;})))return;
> for(i=0;i<tids.length;i++){
> t=tids[i];
> store.saveTiddler(
> t.title,
> t.title,
> store.getTiddlerText(t.title)+'\n'+txt,
> config.options.txtUserName,
> new Date(),
> t.tags,
> t.fields,
> t.created
> );};
>
> </script>
>
> Any help is greatly appreciated,
>
> axelm

-- 
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