Hey all,
I have customized my journal style to include background.... but now. how do I add all my old journal tiddlers to the new tag? I must have around 50 of them. I don't want to go through each individual one and add a tag manually, there must be a better way I'm not aware of?
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/5e53015f-ebf4-44c5-982f-da4fe2a8c9ae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<$button>Tag with xxx
<$list filter='[list[$:/StoryList]]'>
<$action-listops $tags="xxx"/>
</$list>
</$button>
<$button>Remove xxx and add new tags
<$list filter='[list[$:/StoryList]]'>
<$action-listops $tags="-xxx newtag1 newtag2 newtag3"/>
</$list>
</$button>
<$button>Tag with term in search box
<$list filter='[list[$:/StoryList]]'>
<$action-listops $tags="[{$:/temp/search}]"/>
</$list>
</$button>
<$button>Remove tag in search box
<$list filter='[list[$:/StoryList]]'>
<$action-listops $tags="-[{$:/temp/search}]"/>
</$list>
</$button>
$set name="tag" value="TagNameHere">
<$button>
Tag <$count filter={{tiddlers-filter}}/> tiddlers with <<tag>>
<$list filter={{tiddlers-filter}}>
<$action-listops $tags=<<tag>>/>
</$list>
</$button>
</$set>
Hi, all,
here is my humble tool for the tagging of a group of tiddlers with the name of the current tiddler, using a search function.
I call it the "collection-footer", it is part of my view template.
In order to keep my GUI clean, I have a checkbox in a tiddler which is a conditional view template. This box toggles the tag "$:/tags/ViewTemplate"
The code is "stolen" from so many people on this mailing list, that I do not remember them, so I thank U all.
Pit
<$set name="collectTagName"
value=<<currentTiddler>>>
@@color:red;font-size:8pt;''Enter the searchword:''
<$edit-text tiddler="$:/temp/CollectTags/searchWord"
tag="input" type="text" size=80/>
[[(e)|$:/+PGA2015/admin/footerCollect]]@@
<$scrollable class='tc-scrollable-demo'>
__Apply the tag @@color:grey;[<$text
text=<<collectTagName>>/>]@@ to the following
tiddlers (sorted by creation date):__
<$list
filter="[!has[draft.of]!is[system]search{$:/temp/CollectTags/searchWord}!title{!!title}!tag<collectTagName>sort[created]]">
"""
<$checkbox tag=<<collectTagName>>>
<$link to={{!!title}}><$view
field="title"/></$link></$checkbox>
@@color:brown;//<$view field="summary"/>//@@
"""
</$list>
</$scrollable>
----
<$scrollable class='tc-scrollable-small'>
__These tiddlers have been included in the workfile:
@@color:grey;[<$text
text=<<collectTagName>>/>]@@__
<$list
filter="[!has[draft.of]!is[system]search{$:/temp/CollectTags/searchWord}tag<collectTagName>sort[title]]">
"""
<$checkbox tag=<<collectTagName>>>
<$link to={{!!title}}><$view
field="title"/></$link></$checkbox>
"""
</$list>
</$scrollable>
</$set>