[tw] Re: [TW5] Open all the tiddlers with a particular tag

2017-07-28 Thread Andrew
Check out my button http://t5a.tiddlyspot.com/#%24%3A%2Fplugins%2Fajh%2Fopenall 
plugin that can be installed from my library 
http://t5a.tiddlyspot.com/#Plugin%20Library

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/acc4086a-6d6a-4cf5-a281-a20d08cdb5cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2017-07-27 Thread TonyM
Christopher Arcadia ,

That's cool thanks, added to my standard macros.

Regards
TonyM

On Wednesday, July 26, 2017 at 2:41:37 PM UTC+10, Christopher Arcadia wrote:
>
> Thought I might post the macros I use for opening & closing tiddlers based 
> on a filter:
>
> <>
>
> <>
>
>
>
> \define closeByFilter(filter)
> filter: $filter$ 
> <$button>
> close filtered tiddlers
> <$list filter=$filter$>
> <$action-sendmessage $message="tm-close-tiddler"/>
> 
> 
> \end
>
> \define openByFilter(filter)
> filter: $filter$ 
> <$button>
> open filtered tiddlers
> <$list filter=$filter$>
> <$action-navigate $to={{!!title}}/>
> <$action-sendmessage $message="tm-unfold-all-tiddlers"/>
> 
> 
> \end
>
>
>
>
> On Friday, June 20, 2014 at 3:26:03 AM UTC-4, Jon wrote:
>>
>> Hi
>>
>> I'd find it really useful to be able to simultaneously open all the 
>> tiddlers with a particular tag and then close them all again.
>>
>> Is that already possible?
>>
>> Thanks
>> Jon
>>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/3dc556ee-55b8-4c30-afbd-7fdfbf58732f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2017-07-25 Thread Christopher Arcadia
Though I might add my own macros for opening & closing tiddlers based on 
tags:

<>

<>



\define closeByFilter(filter)
filter: $filter$ 
<$button>
close filtered tiddlers
<$list filter=$filter$>
<$action-sendmessage $message="tm-close-tiddler"/>


\end

\define openByFilter(filter)
filter: $filter$ 
<$button>
open filtered tiddlers
<$list filter=$filter$>
<$action-navigate $to={{!!title}}/>
<$action-sendmessage $message="tm-unfold-all-tiddlers"/>


\end




On Friday, June 20, 2014 at 3:26:03 AM UTC-4, Jon wrote:
>
> Hi
>
> I'd find it really useful to be able to simultaneously open all the 
> tiddlers with a particular tag and then close them all again.
>
> Is that already possible?
>
> Thanks
> Jon
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/c76c99ec-872e-4a65-af60-5dd9be40d06e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2017-07-23 Thread Stanley T
Hi Matabele and all searching for the same question.

Thanks for the posted code!  I would recommend before trying to use it and 
getting frustrated (like me) to check out two links:

http://tiddlywiki.com/static/ListWidget.html

http://tiddlywiki.com/static/Introduction%2520to%2520filter%2520notation.html

For a couple of Tiddlers that I have tagged Journal, I change Mark's 
notation to this: 
<$button class="btn-invisible">$(tag)$
<$action-listops $tiddler="$:/StoryList" $field="list" $filter=
"[tag[Journal]]"/>


>From Matabele: 

> \define getTiddlers()
> <$button class="btn-invisible">$(tag)$
> <$action-listops $tiddler="$:/StoryList" $field="list" $filter=
> "[tag[$(tag)$]]"/>
> 
> \end
>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/6c88ff57-4b32-4c3e-acee-0d35a1d095b0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2016-07-16 Thread Matabele


Hi


The $action-listops widget (now included in the core) may be used for this 
functionality, using the $filter= attribute option:


\define getTiddlers()
<$button class="btn-invisible">$(tag)$
<$action-listops $tiddler="$:/StoryList" $field="list" $filter=
"[tag[$(tag)$]]"/>

\end

Note: This doesn't update the history

regards

On Friday, 20 June 2014 09:26:03 UTC+2, Jon wrote:
>
> Hi
>
> I'd find it really useful to be able to simultaneously open all the 
> tiddlers with a particular tag and then close them all again.
>
> Is that already possible?
>
> Thanks
> Jon
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/6d3a0b52-855f-4084-81b7-20bc0a74ca2c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Open all the tiddlers with a particular tag

2016-07-15 Thread Jan

Hello together,
I tried to modify Mats solution adding an Input-field linking to a field 
called sesame...(Supposing that sesame contains the Tag to open...):


\define openalltagged()
<$set name="label" value={{!!sesame}}>
<$edit-text field="sesame"/>
<$button class="openalltagged">
open all tagged $label$
<$list filter="[tag[$label$]]" variable="tid">
<$action-navigate $to=<>/>



\end

<>

Unfortunately I do not get the Variable to work. This is a repeating 
question for me: where in the code do I have to set the name to make it 
work.


8-?
Jan



Am 06.06.2016 um 11:13 schrieb Mat:

On Monday, June 6, 2016 at 9:48:07 AM UTC+2, rauh...@gmail.com wrote:

Hello together,

I wanted to ask if there has been progress on the 'clickable tags'
request here. I am rather new in using TiddlyWiki, but I miss this
particular tool really much, as I don't want to open all tagged
Tiddlers one by one. I am searching for an option to open all
tagged Tiddlers at once by clicking on the tag. Using filters, I
just got another list of links, but no automated opening of the
Tiddlers.  In a previous post it was mentioned that this option
will be available with version 5.1.8, which is not actual anymore.
Did the feature got lost again, or am I missing something?



Hi rauh.. / D, I just put together this simple macro. Maybe it's enough?

http://openalltagged.tiddlyspot.com/

<:-)

--
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+unsubscr...@googlegroups.com 
.
To post to this group, send email to tiddlywiki@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/8cdfd2a4-de42-45a7-84ba-d5e6a6481798%40googlegroups.com 
.

For more options, visit https://groups.google.com/d/optout.


--
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/5789659B.4030100%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2016-07-14 Thread Maaaaaaaaaaaaaaartin
This is incredibly useful, thanks! One question though: how are the 
tiddlers sorted? Ideally, I would like to have them in reverse 
chronological order (of creation date)…is it possible? Thanks! Martin

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/24768236-2890-4090-bbe4-47a82a1d1ba9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2016-06-07 Thread Thomas Elmiger
This is one of these things: you realise, how much you missed it, when you 
use it. It went directly in my tag pill menu – at the bottom though (insert 
just before the last div).
Thank you all!

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/a79e05a4-396f-4832-a1bf-5eba65d8e15a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2016-06-06 Thread cmari
I wanted the possibility to "open all" [tagged tiddlers] when I click on a 
tagpill, so I did the following:
In the shadow tiddler $:/core/ui/TagTemplate
after the line that consists only of  
insert:
<$button class="tc-btn-invisible"><$list 
filter="[all[current]tagging[]]"><$action-navigate $to=<> 
/>Open All

cmari


On Monday, June 6, 2016 at 2:13:09 AM UTC-7, Mat wrote:
>
> On Monday, June 6, 2016 at 9:48:07 AM UTC+2, rauh...@gmail.com wrote:
>>
>> Hello together,
>>
>> I wanted to ask if there has been progress on the 'clickable tags' 
>> request here. I am rather new in using TiddlyWiki, but I miss this 
>> particular tool really much, as I don't want to open all tagged Tiddlers 
>> one by one. I am searching for an option to open all tagged Tiddlers at 
>> once by clicking on the tag. Using filters, I just got another list of 
>> links, but no automated opening of the Tiddlers.  In a previous post it was 
>> mentioned that this option will be available with version 5.1.8, which is 
>> not actual anymore. Did the feature got lost again, or am I missing 
>> something?
>>
>
>
> Hi rauh.. / D, I just put together this simple macro. Maybe it's enough?
>
> http://openalltagged.tiddlyspot.com/
>
> <:-)
>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/94ac47ff-0f99-4cad-86b1-277c91f977e6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2016-06-06 Thread Mat
On Monday, June 6, 2016 at 9:48:07 AM UTC+2, rauh...@gmail.com wrote:
>
> Hello together,
>
> I wanted to ask if there has been progress on the 'clickable tags' request 
> here. I am rather new in using TiddlyWiki, but I miss this particular tool 
> really much, as I don't want to open all tagged Tiddlers one by one. I am 
> searching for an option to open all tagged Tiddlers at once by clicking on 
> the tag. Using filters, I just got another list of links, but no automated 
> opening of the Tiddlers.  In a previous post it was mentioned that this 
> option will be available with version 5.1.8, which is not actual anymore. 
> Did the feature got lost again, or am I missing something?
>


Hi rauh.. / D, I just put together this simple macro. Maybe it's enough?

http://openalltagged.tiddlyspot.com/

<:-)

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/8cdfd2a4-de42-45a7-84ba-d5e6a6481798%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2016-06-06 Thread rauhreif9
Hello together,

I wanted to ask if there has been progress on the 'clickable tags' request 
here. I am rather new in using TiddlyWiki, but I miss this particular tool 
really much, as I don't want to open all tagged Tiddlers one by one. I am 
searching for an option to open all tagged Tiddlers at once by clicking on 
the tag. Using filters, I just got another list of links, but no automated 
opening of the Tiddlers.  In a previous post it was mentioned that this 
option will be available with version 5.1.8, which is not actual anymore. 
Did the feature got lost again, or am I missing something?

With kind regards,
D.

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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/16543447-9b58-41d1-9d6b-fadb08492f5d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2015-03-04 Thread David Moore
Right, I deleted the plugin tiddler, and then dragged again, and this time 
it works, so problem solved.

Thanks for all your help everyone!

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2015-03-04 Thread David Moore

>
> Thanks for that, really appreciate it.
>

It seems that I have been doing it right, so I don't know what's wrong.

the plugin is installed, as it won't let me drag the link there again
however I still get makelist not defined

See picture of more -> system, import, plugin and code here.

http://imgur.com/YftPIfs

Perhaps the plugin is installed incorrectly, although not sure how that can 
happen.  Does it have any dependencies?

any further help greatly appreciated.  

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2015-03-03 Thread Felix Küppers
Hi Jon,

Maybe another simple idea that should work (haven't tested it though)

   1. Backup "$:/DefaultTiddlers" value to another tiddler called 
   "$:/DefaultTiddlers.bak"
   2. change tags field of "$:/DefaultTiddlers" to "[tag[mytag]]"
   3. (optionally close all tiddlers in river via "tm-close-all-tiddlers")
   4. initiate the "tm-home" message
   5. all tiddlers with that tag will open
   6. Restore "$:/DefaultTiddlers" value from "$:/DefaultTiddlers.bak"

-Felix

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2015-03-03 Thread RichardWilliamSmith
Hi David,

I made an example of how I have used 'makelist' to do this

https://dl.dropboxusercontent.com/u/83055414/tiddlywiki.html

Regards,
Richard

PS: because I will remove the file in future, I'll copy this here, for the 
sake of the thread

Once you have Matabele's makelist widget installed (drag this link if you 
> don't)...
> $:/plugins/matabele/makelist
>
> ...you
>  
> can write code like this to make a button that opens all the tiddlers with 
> a particular tag (and closes the others)
> <$makelist tiddler="$:/StoryList" set="!!list" filter="[tag[About]]">
> <$button class="tc-btn-text" message="tw-make-list">
> Open About
> 
> 

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2015-03-02 Thread David Moore

>
> Hi, it would be nice to get this working sooner rather than later, so I 
> tried again with Matabele's answers.
>

I dragged the makelist widget again, (after  complete restart) and it said 
it would not import because version older than existing version (they were 
actually the same).  So I do have it installed, and I see under More -> 
System that I have plugins/matabele/makelist and makelist.js listed as two 
items.

However I still get the "undefined widget makelist".  Is there something 
else you need to do when installing a widget?


-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2015-03-02 Thread Jed Carty
David,

Currently there isn't any simple way to open up all tiddlers with a given 
tag, but there is one in the prerelese of the next version 
 and will be in it when version 5.1.8 
comes out (version here in the sense of an update or revision, not version 
in the sense of tiddlywiki classic vs tiddlywiki 5). 

You can easily list all tiddlers with a given tag using the list widget 
 and filters 
. I know this doesn't actually give you 
what you want, but it may help until version 5.1.8 is released, which will 
hopefully be very soon.

If you click on a tag that a tiddler is tagged with, or in the tag manager 
on the more tab of the sidebar menu, than you will also get a list of 
tiddlers that have that tag.

I have added a tiddler that lets you open all tiddlers with a chosen tag to my 
experimental tools site 
,
 
but at the moment it requires the prerelease.

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2015-03-02 Thread David Moore
Hi again, I tried to use the "Demo for Jon".

I dragged the makelist widget to my wiki, and it showed me an import 
dialogue, which I followed.

I then copied the code into a new widget, and I get "Undefined widget 
'makelist'" appearing...

I don't know what else I am supposed to do to "install" a widget?

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2015-03-02 Thread David Moore
Hi, I am having the same issue.  In classic you could simply click a tag 
and either open a specific matching tiddler, or "open all" which gave you 
everything that matched.

I used this more than anything given I categorised everything with tags.

However in the new version the feature has gone, and it seems from the 
above quite a lot of hacking and code to resolve!

http://tiddlywiki.org/tag

In the above link it says that you can still open all tiddlers tagged to a 
given tag, however I can't see how.

Any news since this last post, or any simple step by step instructions for 
implementing the above?

Thanks

Dave

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Jon
Perfect! Thank you.
Jon

On Saturday, 28 June 2014 13:21:20 UTC+1, Matabele wrote:
>
> Hi Jon
>
> No problem -- select the 'Recent' tab in the side menu at: 
> http://gwiz.tiddlyspot.com/ -- then drag the link 'List all Tagged' onto 
> your TiddlyWiki.
>
> This will give you a new 'Tagged' tab in the side menu of your wiki which 
> should meet your requirements (you also need the <$makelist> plugin.)
>
> regards 
>
> On Saturday, June 28, 2014 1:20:11 PM UTC+2, Jon wrote:
>>
>> Hi Matabele,
>>
>> Your reply is a little bit beyond me and it might be in response to me 
>> being unclear earlier but apologies if the only confusion is on my part!!
>>
>> The MakeList Demo is working fine in my wiki, but when I copied the newly 
>> suggested code into a tiddler in my wiki, it wouldn't work. I tried copying 
>> it into your wiki and that didn't work either.
>> I've taken up enough of your time already, so don't rush to reply.
>>
>> Thanks
>> Jon
>>
>> On Saturday, 28 June 2014 12:08:01 UTC+1, Matabele wrote:
>>>
>>> Hi Jon
>>>
>>> The Demo code works in two stages:
>>>
>>> 1. The value of the tag selected with the <$select> widget is stored to 
>>> a field somewhere
>>> 2. This value is then retrieved and used by the <$makelist> widget to 
>>> set the list in '$:/StoryList'
>>>
>>> These two text-references must match in order for the code to work -- if 
>>> you have a look at the code in the 'List all Tagged' tiddler at: 
>>> http://gwiz.tiddlyspot.com/ -- you will see that I have specified both 
>>> the tiddler title and field name for both the <$select> widget and the 
>>> <$makelist> widget -- this ensures these two text-references match.
>>>
>>> regards
>>>
>>> On Saturday, June 28, 2014 12:55:04 PM UTC+2, Jon wrote:

 Hi Matabele,

 I've got your MakeList Demo working in my wiki but when I copied this 
 code into a new tiddler and tried it, (after saving and refreshing) the 
 only action was to close the tiddler - am I missing another bit of code 
 somewhere?

 Thanks
 Jon

 On Saturday, 28 June 2014 11:42:39 UTC+1, Matabele wrote:
>
> Hi Jon
>
> OK -- try this code:
>
> <$select field="target" default='(none)'>
> (none)
> <$list filter="[all[tiddlers]tags[]sort[title]]">
> >><$view field="title"/>
> 
> 
> <$makelist tiddler="$:/StoryList" filter="[tag{!!target}]">
> <$button message="tw-make-list">Show Tagged
> 
>
> regards
> On Saturday, June 28, 2014 12:05:08 PM UTC+2, Jon wrote:
>>
>> Hi Matabele,
>>
>> That looks very interesting too - I'll play around with it and add it 
>> to all your other improvements! But what I was really after is probably 
>> a 
>> lot simpler. Your MakeListDemo transcludes the tiddlers with a 
>> particular 
>> tag but you mention this could also be adapted for the main story river 
>> - 
>> How do you do that?  And would this mean that when you clicked "Show 
>> Tagged" the tiddlers with that tag would appear under the "Open" tab on 
>> the 
>> right-hand side?
>>
>> Thanks, Jon.
>>
>> On Saturday, 28 June 2014 09:40:55 UTC+1, Matabele wrote:
>>>
>>> Hi Jon
>>>
>>> OK -- appear to have it working now with a single click using a 
>>> <$setfield> widget. Don't know if the timing between the two widgets 
>>> will 
>>> be synchronised in all cases though.
>>>
>>> Anyway, give it a try -- perhaps it will work out for you.
>>>
>>> regards
>>>
>>> On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:

 Hi Matabele,

 Thats super - I've managed to transfer it to my own wiki and it's 
 working fine - really useful.

 I hesitate to ask for anything else but is it an easy thing to just 
 show the (clickable) titles of the tiddlers which have the particular 
 tag - 
 would this be the case if it was in the Main Story river?

 Thanks, Jon.

 On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:
>
> Hi Jon
>
> I have uploaded my new <$makelist> widget to: 
> http://gwiz.tiddlyspot.com/
>
> The Demo for the widget shows how this widget may be used to open 
> all tiddlers with a given tag (for the purposes of the demo these are 
> opened in a substory of the Menu tiddler, but the code may easily be 
> changed to open the tiddlers in the main story river.) 
>
> The Menu links on the site also serve as usage examples -- in this 
> case the filter is a simple list of tiddlers.
>
> Hope this fits your needs.
>
> regards
>
> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>>
>> Hi
>>
>> I'd find it really useful to be able to simultaneously open all 
>>

[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread paolo b
Hi Matabele

just installed, it's very useful!

Thank you

Paolo

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread paolo b
Hi Matabele

just installed. it's very useful

thank you!

Paolo



On Saturday, June 28, 2014 2:21:20 PM UTC+2, Matabele wrote:
>
> Hi Jon
>
> No problem -- select the 'Recent' tab in the side menu at: 
> http://gwiz.tiddlyspot.com/ -- then drag the link 'List all Tagged' onto 
> your TiddlyWiki.
>
> This will give you a new 'Tagged' tab in the side menu of your wiki which 
> should meet your requirements (you also need the <$makelist> plugin.)
>
> regards 
>
> On Saturday, June 28, 2014 1:20:11 PM UTC+2, Jon wrote:
>>
>> Hi Matabele,
>>
>> Your reply is a little bit beyond me and it might be in response to me 
>> being unclear earlier but apologies if the only confusion is on my part!!
>>
>> The MakeList Demo is working fine in my wiki, but when I copied the newly 
>> suggested code into a tiddler in my wiki, it wouldn't work. I tried copying 
>> it into your wiki and that didn't work either.
>> I've taken up enough of your time already, so don't rush to reply.
>>
>> Thanks
>> Jon
>>
>> On Saturday, 28 June 2014 12:08:01 UTC+1, Matabele wrote:
>>>
>>> Hi Jon
>>>
>>> The Demo code works in two stages:
>>>
>>> 1. The value of the tag selected with the <$select> widget is stored to 
>>> a field somewhere
>>> 2. This value is then retrieved and used by the <$makelist> widget to 
>>> set the list in '$:/StoryList'
>>>
>>> These two text-references must match in order for the code to work -- if 
>>> you have a look at the code in the 'List all Tagged' tiddler at: 
>>> http://gwiz.tiddlyspot.com/ -- you will see that I have specified both 
>>> the tiddler title and field name for both the <$select> widget and the 
>>> <$makelist> widget -- this ensures these two text-references match.
>>>
>>> regards
>>>
>>> On Saturday, June 28, 2014 12:55:04 PM UTC+2, Jon wrote:

 Hi Matabele,

 I've got your MakeList Demo working in my wiki but when I copied this 
 code into a new tiddler and tried it, (after saving and refreshing) the 
 only action was to close the tiddler - am I missing another bit of code 
 somewhere?

 Thanks
 Jon

 On Saturday, 28 June 2014 11:42:39 UTC+1, Matabele wrote:
>
> Hi Jon
>
> OK -- try this code:
>
> <$select field="target" default='(none)'>
> (none)
> <$list filter="[all[tiddlers]tags[]sort[title]]">
> >><$view field="title"/>
> 
> 
> <$makelist tiddler="$:/StoryList" filter="[tag{!!target}]">
> <$button message="tw-make-list">Show Tagged
> 
>
> regards
> On Saturday, June 28, 2014 12:05:08 PM UTC+2, Jon wrote:
>>
>> Hi Matabele,
>>
>> That looks very interesting too - I'll play around with it and add it 
>> to all your other improvements! But what I was really after is probably 
>> a 
>> lot simpler. Your MakeListDemo transcludes the tiddlers with a 
>> particular 
>> tag but you mention this could also be adapted for the main story river 
>> - 
>> How do you do that?  And would this mean that when you clicked "Show 
>> Tagged" the tiddlers with that tag would appear under the "Open" tab on 
>> the 
>> right-hand side?
>>
>> Thanks, Jon.
>>
>> On Saturday, 28 June 2014 09:40:55 UTC+1, Matabele wrote:
>>>
>>> Hi Jon
>>>
>>> OK -- appear to have it working now with a single click using a 
>>> <$setfield> widget. Don't know if the timing between the two widgets 
>>> will 
>>> be synchronised in all cases though.
>>>
>>> Anyway, give it a try -- perhaps it will work out for you.
>>>
>>> regards
>>>
>>> On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:

 Hi Matabele,

 Thats super - I've managed to transfer it to my own wiki and it's 
 working fine - really useful.

 I hesitate to ask for anything else but is it an easy thing to just 
 show the (clickable) titles of the tiddlers which have the particular 
 tag - 
 would this be the case if it was in the Main Story river?

 Thanks, Jon.

 On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:
>
> Hi Jon
>
> I have uploaded my new <$makelist> widget to: 
> http://gwiz.tiddlyspot.com/
>
> The Demo for the widget shows how this widget may be used to open 
> all tiddlers with a given tag (for the purposes of the demo these are 
> opened in a substory of the Menu tiddler, but the code may easily be 
> changed to open the tiddlers in the main story river.) 
>
> The Menu links on the site also serve as usage examples -- in this 
> case the filter is a simple list of tiddlers.
>
> Hope this fits your needs.
>
> regards
>
> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>>
>> Hi
>>
>> I'd find it really useful to 

[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Matabele
Hi Jon

No problem -- select the 'Recent' tab in the side menu 
at: http://gwiz.tiddlyspot.com/ -- then drag the link 'List all Tagged' 
onto your TiddlyWiki.

This will give you a new 'Tagged' tab in the side menu of your wiki which 
should meet your requirements (you also need the <$makelist> plugin.)

regards 

On Saturday, June 28, 2014 1:20:11 PM UTC+2, Jon wrote:
>
> Hi Matabele,
>
> Your reply is a little bit beyond me and it might be in response to me 
> being unclear earlier but apologies if the only confusion is on my part!!
>
> The MakeList Demo is working fine in my wiki, but when I copied the newly 
> suggested code into a tiddler in my wiki, it wouldn't work. I tried copying 
> it into your wiki and that didn't work either.
> I've taken up enough of your time already, so don't rush to reply.
>
> Thanks
> Jon
>
> On Saturday, 28 June 2014 12:08:01 UTC+1, Matabele wrote:
>>
>> Hi Jon
>>
>> The Demo code works in two stages:
>>
>> 1. The value of the tag selected with the <$select> widget is stored to a 
>> field somewhere
>> 2. This value is then retrieved and used by the <$makelist> widget to set 
>> the list in '$:/StoryList'
>>
>> These two text-references must match in order for the code to work -- if 
>> you have a look at the code in the 'List all Tagged' tiddler at: 
>> http://gwiz.tiddlyspot.com/ -- you will see that I have specified both 
>> the tiddler title and field name for both the <$select> widget and the 
>> <$makelist> widget -- this ensures these two text-references match.
>>
>> regards
>>
>> On Saturday, June 28, 2014 12:55:04 PM UTC+2, Jon wrote:
>>>
>>> Hi Matabele,
>>>
>>> I've got your MakeList Demo working in my wiki but when I copied this 
>>> code into a new tiddler and tried it, (after saving and refreshing) the 
>>> only action was to close the tiddler - am I missing another bit of code 
>>> somewhere?
>>>
>>> Thanks
>>> Jon
>>>
>>> On Saturday, 28 June 2014 11:42:39 UTC+1, Matabele wrote:

 Hi Jon

 OK -- try this code:

 <$select field="target" default='(none)'>
 (none)
 <$list filter="[all[tiddlers]tags[]sort[title]]">
 >><$view field="title"/>
 
 
 <$makelist tiddler="$:/StoryList" filter="[tag{!!target}]">
 <$button message="tw-make-list">Show Tagged
 

 regards
 On Saturday, June 28, 2014 12:05:08 PM UTC+2, Jon wrote:
>
> Hi Matabele,
>
> That looks very interesting too - I'll play around with it and add it 
> to all your other improvements! But what I was really after is probably a 
> lot simpler. Your MakeListDemo transcludes the tiddlers with a particular 
> tag but you mention this could also be adapted for the main story river - 
> How do you do that?  And would this mean that when you clicked "Show 
> Tagged" the tiddlers with that tag would appear under the "Open" tab on 
> the 
> right-hand side?
>
> Thanks, Jon.
>
> On Saturday, 28 June 2014 09:40:55 UTC+1, Matabele wrote:
>>
>> Hi Jon
>>
>> OK -- appear to have it working now with a single click using a 
>> <$setfield> widget. Don't know if the timing between the two widgets 
>> will 
>> be synchronised in all cases though.
>>
>> Anyway, give it a try -- perhaps it will work out for you.
>>
>> regards
>>
>> On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:
>>>
>>> Hi Matabele,
>>>
>>> Thats super - I've managed to transfer it to my own wiki and it's 
>>> working fine - really useful.
>>>
>>> I hesitate to ask for anything else but is it an easy thing to just 
>>> show the (clickable) titles of the tiddlers which have the particular 
>>> tag - 
>>> would this be the case if it was in the Main Story river?
>>>
>>> Thanks, Jon.
>>>
>>> On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:

 Hi Jon

 I have uploaded my new <$makelist> widget to: 
 http://gwiz.tiddlyspot.com/

 The Demo for the widget shows how this widget may be used to open 
 all tiddlers with a given tag (for the purposes of the demo these are 
 opened in a substory of the Menu tiddler, but the code may easily be 
 changed to open the tiddlers in the main story river.) 

 The Menu links on the site also serve as usage examples -- in this 
 case the filter is a simple list of tiddlers.

 Hope this fits your needs.

 regards

 On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>
> Hi
>
> I'd find it really useful to be able to simultaneously open all 
> the tiddlers with a particular tag and then close them all again.
>
> Is that already possible?
>
> Thanks
> Jon
>


-- 
You received this message because you are subscribed to the Google Groups 
"Tidd

[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Jon
Hi Matabele,

Your reply is a little bit beyond me and it might be in response to me 
being unclear earlier but apologies if the only confusion is on my part!!

The MakeList Demo is working fine in my wiki, but when I copied the newly 
suggested code into a tiddler in my wiki, it wouldn't work. I tried copying 
it into your wiki and that didn't work either.
I've taken up enough of your time already, so don't rush to reply.

Thanks
Jon

On Saturday, 28 June 2014 12:08:01 UTC+1, Matabele wrote:
>
> Hi Jon
>
> The Demo code works in two stages:
>
> 1. The value of the tag selected with the <$select> widget is stored to a 
> field somewhere
> 2. This value is then retrieved and used by the <$makelist> widget to set 
> the list in '$:/StoryList'
>
> These two text-references must match in order for the code to work -- if 
> you have a look at the code in the 'List all Tagged' tiddler at: 
> http://gwiz.tiddlyspot.com/ -- you will see that I have specified both 
> the tiddler title and field name for both the <$select> widget and the 
> <$makelist> widget -- this ensures these two text-references match.
>
> regards
>
> On Saturday, June 28, 2014 12:55:04 PM UTC+2, Jon wrote:
>>
>> Hi Matabele,
>>
>> I've got your MakeList Demo working in my wiki but when I copied this 
>> code into a new tiddler and tried it, (after saving and refreshing) the 
>> only action was to close the tiddler - am I missing another bit of code 
>> somewhere?
>>
>> Thanks
>> Jon
>>
>> On Saturday, 28 June 2014 11:42:39 UTC+1, Matabele wrote:
>>>
>>> Hi Jon
>>>
>>> OK -- try this code:
>>>
>>> <$select field="target" default='(none)'>
>>> (none)
>>> <$list filter="[all[tiddlers]tags[]sort[title]]">
>>> >><$view field="title"/>
>>> 
>>> 
>>> <$makelist tiddler="$:/StoryList" filter="[tag{!!target}]">
>>> <$button message="tw-make-list">Show Tagged
>>> 
>>>
>>> regards
>>> On Saturday, June 28, 2014 12:05:08 PM UTC+2, Jon wrote:

 Hi Matabele,

 That looks very interesting too - I'll play around with it and add it 
 to all your other improvements! But what I was really after is probably a 
 lot simpler. Your MakeListDemo transcludes the tiddlers with a particular 
 tag but you mention this could also be adapted for the main story river - 
 How do you do that?  And would this mean that when you clicked "Show 
 Tagged" the tiddlers with that tag would appear under the "Open" tab on 
 the 
 right-hand side?

 Thanks, Jon.

 On Saturday, 28 June 2014 09:40:55 UTC+1, Matabele wrote:
>
> Hi Jon
>
> OK -- appear to have it working now with a single click using a 
> <$setfield> widget. Don't know if the timing between the two widgets will 
> be synchronised in all cases though.
>
> Anyway, give it a try -- perhaps it will work out for you.
>
> regards
>
> On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:
>>
>> Hi Matabele,
>>
>> Thats super - I've managed to transfer it to my own wiki and it's 
>> working fine - really useful.
>>
>> I hesitate to ask for anything else but is it an easy thing to just 
>> show the (clickable) titles of the tiddlers which have the particular 
>> tag - 
>> would this be the case if it was in the Main Story river?
>>
>> Thanks, Jon.
>>
>> On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:
>>>
>>> Hi Jon
>>>
>>> I have uploaded my new <$makelist> widget to: 
>>> http://gwiz.tiddlyspot.com/
>>>
>>> The Demo for the widget shows how this widget may be used to open 
>>> all tiddlers with a given tag (for the purposes of the demo these are 
>>> opened in a substory of the Menu tiddler, but the code may easily be 
>>> changed to open the tiddlers in the main story river.) 
>>>
>>> The Menu links on the site also serve as usage examples -- in this 
>>> case the filter is a simple list of tiddlers.
>>>
>>> Hope this fits your needs.
>>>
>>> regards
>>>
>>> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:

 Hi

 I'd find it really useful to be able to simultaneously open all the 
 tiddlers with a particular tag and then close them all again.

 Is that already possible?

 Thanks
 Jon

>>>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Matabele
Hi Jon

The Demo code works in two stages:

1. The value of the tag selected with the <$select> widget is stored to a 
field somewhere
2. This value is then retrieved and used by the <$makelist> widget to set 
the list in '$:/StoryList'

These two text-references must match in order for the code to work -- if 
you have a look at the code in the 'List all Tagged' tiddler 
at: http://gwiz.tiddlyspot.com/ -- you will see that I have specified both 
the tiddler title and field name for both the <$select> widget and the 
<$makelist> widget -- this ensures these two text-references match.

regards

On Saturday, June 28, 2014 12:55:04 PM UTC+2, Jon wrote:
>
> Hi Matabele,
>
> I've got your MakeList Demo working in my wiki but when I copied this code 
> into a new tiddler and tried it, (after saving and refreshing) the only 
> action was to close the tiddler - am I missing another bit of code 
> somewhere?
>
> Thanks
> Jon
>
> On Saturday, 28 June 2014 11:42:39 UTC+1, Matabele wrote:
>>
>> Hi Jon
>>
>> OK -- try this code:
>>
>> <$select field="target" default='(none)'>
>> (none)
>> <$list filter="[all[tiddlers]tags[]sort[title]]">
>> >><$view field="title"/>
>> 
>> 
>> <$makelist tiddler="$:/StoryList" filter="[tag{!!target}]">
>> <$button message="tw-make-list">Show Tagged
>> 
>>
>> regards
>> On Saturday, June 28, 2014 12:05:08 PM UTC+2, Jon wrote:
>>>
>>> Hi Matabele,
>>>
>>> That looks very interesting too - I'll play around with it and add it to 
>>> all your other improvements! But what I was really after is probably a lot 
>>> simpler. Your MakeListDemo transcludes the tiddlers with a particular tag 
>>> but you mention this could also be adapted for the main story river - How 
>>> do you do that?  And would this mean that when you clicked "Show Tagged" 
>>> the tiddlers with that tag would appear under the "Open" tab on the 
>>> right-hand side?
>>>
>>> Thanks, Jon.
>>>
>>> On Saturday, 28 June 2014 09:40:55 UTC+1, Matabele wrote:

 Hi Jon

 OK -- appear to have it working now with a single click using a 
 <$setfield> widget. Don't know if the timing between the two widgets will 
 be synchronised in all cases though.

 Anyway, give it a try -- perhaps it will work out for you.

 regards

 On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:
>
> Hi Matabele,
>
> Thats super - I've managed to transfer it to my own wiki and it's 
> working fine - really useful.
>
> I hesitate to ask for anything else but is it an easy thing to just 
> show the (clickable) titles of the tiddlers which have the particular tag 
> - 
> would this be the case if it was in the Main Story river?
>
> Thanks, Jon.
>
> On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:
>>
>> Hi Jon
>>
>> I have uploaded my new <$makelist> widget to: 
>> http://gwiz.tiddlyspot.com/
>>
>> The Demo for the widget shows how this widget may be used to open all 
>> tiddlers with a given tag (for the purposes of the demo these are opened 
>> in 
>> a substory of the Menu tiddler, but the code may easily be changed to 
>> open 
>> the tiddlers in the main story river.) 
>>
>> The Menu links on the site also serve as usage examples -- in this 
>> case the filter is a simple list of tiddlers.
>>
>> Hope this fits your needs.
>>
>> regards
>>
>> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>>>
>>> Hi
>>>
>>> I'd find it really useful to be able to simultaneously open all the 
>>> tiddlers with a particular tag and then close them all again.
>>>
>>> Is that already possible?
>>>
>>> Thanks
>>> Jon
>>>
>>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Jon
Hi Matabele,

I've got your MakeList Demo working in my wiki but when I copied this code 
into a new tiddler and tried it, (after saving and refreshing) the only 
action was to close the tiddler - am I missing another bit of code 
somewhere?

Thanks
Jon

On Saturday, 28 June 2014 11:42:39 UTC+1, Matabele wrote:
>
> Hi Jon
>
> OK -- try this code:
>
> <$select field="target" default='(none)'>
> (none)
> <$list filter="[all[tiddlers]tags[]sort[title]]">
> >><$view field="title"/>
> 
> 
> <$makelist tiddler="$:/StoryList" filter="[tag{!!target}]">
> <$button message="tw-make-list">Show Tagged
> 
>
> regards
> On Saturday, June 28, 2014 12:05:08 PM UTC+2, Jon wrote:
>>
>> Hi Matabele,
>>
>> That looks very interesting too - I'll play around with it and add it to 
>> all your other improvements! But what I was really after is probably a lot 
>> simpler. Your MakeListDemo transcludes the tiddlers with a particular tag 
>> but you mention this could also be adapted for the main story river - How 
>> do you do that?  And would this mean that when you clicked "Show Tagged" 
>> the tiddlers with that tag would appear under the "Open" tab on the 
>> right-hand side?
>>
>> Thanks, Jon.
>>
>> On Saturday, 28 June 2014 09:40:55 UTC+1, Matabele wrote:
>>>
>>> Hi Jon
>>>
>>> OK -- appear to have it working now with a single click using a 
>>> <$setfield> widget. Don't know if the timing between the two widgets will 
>>> be synchronised in all cases though.
>>>
>>> Anyway, give it a try -- perhaps it will work out for you.
>>>
>>> regards
>>>
>>> On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:

 Hi Matabele,

 Thats super - I've managed to transfer it to my own wiki and it's 
 working fine - really useful.

 I hesitate to ask for anything else but is it an easy thing to just 
 show the (clickable) titles of the tiddlers which have the particular tag 
 - 
 would this be the case if it was in the Main Story river?

 Thanks, Jon.

 On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:
>
> Hi Jon
>
> I have uploaded my new <$makelist> widget to: 
> http://gwiz.tiddlyspot.com/
>
> The Demo for the widget shows how this widget may be used to open all 
> tiddlers with a given tag (for the purposes of the demo these are opened 
> in 
> a substory of the Menu tiddler, but the code may easily be changed to 
> open 
> the tiddlers in the main story river.) 
>
> The Menu links on the site also serve as usage examples -- in this 
> case the filter is a simple list of tiddlers.
>
> Hope this fits your needs.
>
> regards
>
> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>>
>> Hi
>>
>> I'd find it really useful to be able to simultaneously open all the 
>> tiddlers with a particular tag and then close them all again.
>>
>> Is that already possible?
>>
>> Thanks
>> Jon
>>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Matabele
Hi Jon

If this code is used in the main story river, the tiddler with the select 
widget will be lost from view. I have, therefore, added a 'Tagged' tab in 
the sidebar at: http://gwiz.tiddlyspot.com/ -- this should suit your needs.

regards

On Saturday, June 28, 2014 12:42:39 PM UTC+2, Matabele wrote:
>
> Hi Jon
>
> OK -- try this code:
>
> <$select field="target" default='(none)'>
> (none)
> <$list filter="[all[tiddlers]tags[]sort[title]]">
> >><$view field="title"/>
> 
> 
> <$makelist tiddler="$:/StoryList" filter="[tag{!!target}]">
> <$button message="tw-make-list">Show Tagged
> 
>
> regards
>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Matabele
Hi Jon

OK -- try this code:

<$select field="target" default='(none)'>
(none)
<$list filter="[all[tiddlers]tags[]sort[title]]">
>><$view field="title"/>


<$makelist tiddler="$:/StoryList" filter="[tag{!!target}]">
<$button message="tw-make-list">Show Tagged


regards
On Saturday, June 28, 2014 12:05:08 PM UTC+2, Jon wrote:
>
> Hi Matabele,
>
> That looks very interesting too - I'll play around with it and add it to 
> all your other improvements! But what I was really after is probably a lot 
> simpler. Your MakeListDemo transcludes the tiddlers with a particular tag 
> but you mention this could also be adapted for the main story river - How 
> do you do that?  And would this mean that when you clicked "Show Tagged" 
> the tiddlers with that tag would appear under the "Open" tab on the 
> right-hand side?
>
> Thanks, Jon.
>
> On Saturday, 28 June 2014 09:40:55 UTC+1, Matabele wrote:
>>
>> Hi Jon
>>
>> OK -- appear to have it working now with a single click using a 
>> <$setfield> widget. Don't know if the timing between the two widgets will 
>> be synchronised in all cases though.
>>
>> Anyway, give it a try -- perhaps it will work out for you.
>>
>> regards
>>
>> On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:
>>>
>>> Hi Matabele,
>>>
>>> Thats super - I've managed to transfer it to my own wiki and it's 
>>> working fine - really useful.
>>>
>>> I hesitate to ask for anything else but is it an easy thing to just show 
>>> the (clickable) titles of the tiddlers which have the particular tag - 
>>> would this be the case if it was in the Main Story river?
>>>
>>> Thanks, Jon.
>>>
>>> On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:

 Hi Jon

 I have uploaded my new <$makelist> widget to: 
 http://gwiz.tiddlyspot.com/

 The Demo for the widget shows how this widget may be used to open all 
 tiddlers with a given tag (for the purposes of the demo these are opened 
 in 
 a substory of the Menu tiddler, but the code may easily be changed to open 
 the tiddlers in the main story river.) 

 The Menu links on the site also serve as usage examples -- in this case 
 the filter is a simple list of tiddlers.

 Hope this fits your needs.

 regards

 On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>
> Hi
>
> I'd find it really useful to be able to simultaneously open all the 
> tiddlers with a particular tag and then close them all again.
>
> Is that already possible?
>
> Thanks
> Jon
>


-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Jon
Hi Matabele,

That looks very interesting too - I'll play around with it and add it to 
all your other improvements! But what I was really after is probably a lot 
simpler. Your MakeListDemo transcludes the tiddlers with a particular tag 
but you mention this could also be adapted for the main story river - How 
do you do that?  And would this mean that when you clicked "Show Tagged" 
the tiddlers with that tag would appear under the "Open" tab on the 
right-hand side?

Thanks, Jon.

On Saturday, 28 June 2014 09:40:55 UTC+1, Matabele wrote:
>
> Hi Jon
>
> OK -- appear to have it working now with a single click using a 
> <$setfield> widget. Don't know if the timing between the two widgets will 
> be synchronised in all cases though.
>
> Anyway, give it a try -- perhaps it will work out for you.
>
> regards
>
> On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:
>>
>> Hi Matabele,
>>
>> Thats super - I've managed to transfer it to my own wiki and it's working 
>> fine - really useful.
>>
>> I hesitate to ask for anything else but is it an easy thing to just show 
>> the (clickable) titles of the tiddlers which have the particular tag - 
>> would this be the case if it was in the Main Story river?
>>
>> Thanks, Jon.
>>
>> On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:
>>>
>>> Hi Jon
>>>
>>> I have uploaded my new <$makelist> widget to: 
>>> http://gwiz.tiddlyspot.com/
>>>
>>> The Demo for the widget shows how this widget may be used to open all 
>>> tiddlers with a given tag (for the purposes of the demo these are opened in 
>>> a substory of the Menu tiddler, but the code may easily be changed to open 
>>> the tiddlers in the main story river.) 
>>>
>>> The Menu links on the site also serve as usage examples -- in this case 
>>> the filter is a simple list of tiddlers.
>>>
>>> Hope this fits your needs.
>>>
>>> regards
>>>
>>> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:

 Hi

 I'd find it really useful to be able to simultaneously open all the 
 tiddlers with a particular tag and then close them all again.

 Is that already possible?

 Thanks
 Jon

>>>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Matabele
Hi Jon

OK -- appear to have it working now with a single click using a <$setfield> 
widget. Don't know if the timing between the two widgets will be 
synchronised in all cases though.

Anyway, give it a try -- perhaps it will work out for you.

regards

On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:
>
> Hi Matabele,
>
> Thats super - I've managed to transfer it to my own wiki and it's working 
> fine - really useful.
>
> I hesitate to ask for anything else but is it an easy thing to just show 
> the (clickable) titles of the tiddlers which have the particular tag - 
> would this be the case if it was in the Main Story river?
>
> Thanks, Jon.
>
> On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:
>>
>> Hi Jon
>>
>> I have uploaded my new <$makelist> widget to: http://gwiz.tiddlyspot.com/
>>
>> The Demo for the widget shows how this widget may be used to open all 
>> tiddlers with a given tag (for the purposes of the demo these are opened in 
>> a substory of the Menu tiddler, but the code may easily be changed to open 
>> the tiddlers in the main story river.) 
>>
>> The Menu links on the site also serve as usage examples -- in this case 
>> the filter is a simple list of tiddlers.
>>
>> Hope this fits your needs.
>>
>> regards
>>
>> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>>>
>>> Hi
>>>
>>> I'd find it really useful to be able to simultaneously open all the 
>>> tiddlers with a particular tag and then close them all again.
>>>
>>> Is that already possible?
>>>
>>> Thanks
>>> Jon
>>>
>>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Matabele
Hi Jon

Not sure if this is what you had in mind -- have a look at the 'Demo for 
Jon' at: http://gwiz.tiddlyspot.com/

Couldn't get the pills to work with one click -- I suppose a macrocall is 
needed to insert the current title.

regards

On Saturday, June 28, 2014 9:06:58 AM UTC+2, Jon wrote:
>
> Hi Matabele,
>
> Thats super - I've managed to transfer it to my own wiki and it's working 
> fine - really useful.
>
> I hesitate to ask for anything else but is it an easy thing to just show 
> the (clickable) titles of the tiddlers which have the particular tag - 
> would this be the case if it was in the Main Story river?
>
> Thanks, Jon.
>
> On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:
>>
>> Hi Jon
>>
>> I have uploaded my new <$makelist> widget to: http://gwiz.tiddlyspot.com/
>>
>> The Demo for the widget shows how this widget may be used to open all 
>> tiddlers with a given tag (for the purposes of the demo these are opened in 
>> a substory of the Menu tiddler, but the code may easily be changed to open 
>> the tiddlers in the main story river.) 
>>
>> The Menu links on the site also serve as usage examples -- in this case 
>> the filter is a simple list of tiddlers.
>>
>> Hope this fits your needs.
>>
>> regards
>>
>> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>>>
>>> Hi
>>>
>>> I'd find it really useful to be able to simultaneously open all the 
>>> tiddlers with a particular tag and then close them all again.
>>>
>>> Is that already possible?
>>>
>>> Thanks
>>> Jon
>>>
>>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-28 Thread Jon
Hi Matabele,

Thats super - I've managed to transfer it to my own wiki and it's working 
fine - really useful.

I hesitate to ask for anything else but is it an easy thing to just show 
the (clickable) titles of the tiddlers which have the particular tag - 
would this be the case if it was in the Main Story river?

Thanks, Jon.

On Saturday, 28 June 2014 06:53:23 UTC+1, Matabele wrote:
>
> Hi Jon
>
> I have uploaded my new <$makelist> widget to: http://gwiz.tiddlyspot.com/
>
> The Demo for the widget shows how this widget may be used to open all 
> tiddlers with a given tag (for the purposes of the demo these are opened in 
> a substory of the Menu tiddler, but the code may easily be changed to open 
> the tiddlers in the main story river.) 
>
> The Menu links on the site also serve as usage examples -- in this case 
> the filter is a simple list of tiddlers.
>
> Hope this fits your needs.
>
> regards
>
> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>>
>> Hi
>>
>> I'd find it really useful to be able to simultaneously open all the 
>> tiddlers with a particular tag and then close them all again.
>>
>> Is that already possible?
>>
>> Thanks
>> Jon
>>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-27 Thread Matabele
Hi Jon

I have uploaded my new <$makelist> widget to: http://gwiz.tiddlyspot.com/

The Demo for the widget shows how this widget may be used to open all 
tiddlers with a given tag (for the purposes of the demo these are opened in 
a substory of the Menu tiddler, but the code may easily be changed to open 
the tiddlers in the main story river.) 

The Menu links on the site also serve as usage examples -- in this case the 
filter is a simple list of tiddlers.

Hope this fits your needs.

regards

On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>
> Hi
>
> I'd find it really useful to be able to simultaneously open all the 
> tiddlers with a particular tag and then close them all again.
>
> Is that already possible?
>
> Thanks
> Jon
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-21 Thread Ton Gerner
Hi all,

The solutions I see here are workarounds where you have to manually change 
the tag.
What I did ask for in the past was a little bit different and more general 
[1]:




*Request 1)Open all tags.One of the features in TW classic is: Open all 
tags when clicking on a tag in a tiddler (or in the sidebar: Tags).In one 
click you can open all relevant tagged tiddlers.*

Jeremy made it even more general [2]:

*Extend the link widget so that it can link to multiple tiddlers at once by 
specifying a filter identifying the target tiddlers. This would allow us to 
implement "open all tiddlers with this tag" option to the tag dropdown, and 
would allow us to drag all tiddlers with a particular tag by dragging the 
tag pill.*

I hope *that* will be in soon ;-)

Cheers,

Ton


[1] https://groups.google.com/d/msg/tiddlywiki/nsJT0bx1eZ0/qPI1yJfENg0J
[2] https://github.com/Jermolene/TiddlyWiki5/issues/192

On Saturday, June 21, 2014 10:30:02 AM UTC+2, wimm wrote:
>
> I used the default tiddler to accomplish this
>
>1. import the sidebar *home *button tiddlers by ton 
>tw5custom.tiddlyspot.com $:/_home-button 
> and 
>$:/_images/home-button 
>
>2. add the filter *[all[tiddlers]tag[MYBOOK]sort[title]] *in the 
> (sidebar >>control panel>>basics>>*default tiddlers*) where you 
>should replace *MYBOOK *by the name of the tag you want 
>3. then *press *the *home *button, ONLY the new default tiddlers 
>including the ones WITH your TAG are shown now.
>
>
>
>1. if you add more lines each with different tags, all the tiddlers 
>tagged with those tags will be shown (grouped per tag).
>2. you can leave out the title sort or  change it in *!sort[modified] *to 
>show the latest one on top.
>3. you could also replace MYBOOK by {{tagName}} then you can edit the 
>tiddler tagName instead of changing the contents of default-tiddlers, 
>before you press Home-button.
>
> You can see an example at tw5ideas.tiddlyspot.com which shows you a dummy 
> linear Mybook at startup. In my TW the default tiddlers can be changed in 
> the sidebar>>View-tab. 
> In this TW I also added a search string, to only show the ones that 
> contain a given string. And had to add an exclude for a template tiddler: 
> [all[tiddlers]tag[mybook]sort[title]!prefix[$:/template]search{$:/temp/advancedsearch}].
> You can easily modify the book in Sidebar>>-My-tab >> MyBook. 
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-21 Thread wimm
I used the default tiddler to accomplish this

   1. import the sidebar *home *button tiddlers by ton 
   tw5custom.tiddlyspot.com $:/_home-button 
    and 
   $:/_images/home-button 
   
   2. add the filter *[all[tiddlers]tag[MYBOOK]sort[title]] *in the 
(sidebar >>control panel>>basics>>*default tiddlers*) where you should 
   replace *MYBOOK *by the name of the tag you want 
   3. then *press *the *home *button, ONLY the new default tiddlers 
   including the ones WITH your TAG are shown now.



   1. if you add more lines each with different tags, all the tiddlers 
   tagged with those tags will be shown (grouped per tag).
   2. you can leave out the title sort or  change it in *!sort[modified] *to 
   show the latest one on top.
   3. you could also replace MYBOOK by {{tagName}} then you can edit the 
   tiddler tagName instead of changing the contents of default-tiddlers, 
   before you press Home-button.

You can see an example at tw5ideas.tiddlyspot.com which shows you a dummy 
linear Mybook at startup. In my TW the default tiddlers can be changed in 
the sidebar>>View-tab. 
In this TW I also added a search string, to only show the ones that contain 
a given string. And had to add an exclude for a template tiddler: 
[all[tiddlers]tag[mybook]sort[title]!prefix[$:/template]search{$:/temp/advancedsearch}].
You can easily modify the book in Sidebar>>-My-tab >> MyBook. 

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-20 Thread Jon
Ah, that's good Ton. Thanks

On Friday, 20 June 2014 11:01:47 UTC+1, Ton Gerner wrote:
>
> Hi Jon,
>
> I asked for it a long time ago (November 2013) [1] and Jeremy opened an 
> issue [2].
> So, it is "on the list".
>
> I hope it will be in soon ;-)
>
> Cheers,
>
> Ton
>
>
> [1] https://groups.google.com/d/msg/tiddlywiki/nsJT0bx1eZ0/qPI1yJfENg0J
> [2] https://github.com/Jermolene/TiddlyWiki5/issues/192
>
>
> On Friday, June 20, 2014 10:22:37 AM UTC+2, Matabele wrote:
>>
>> Hi
>>
>> There is a hack that does something similar:
>>
>> 1. store a space separated list of tiddlers with the given tag to a 
>> text-reference somewhere (typically a field or data tiddler entry.)
>> 2. set the value of the 'list' field of '$:/StoryList' to this value.
>>
>> This overwrites the storylist, rather than adding to it. To add a list of 
>> tiddlers to the storylist is a little more difficult.
>>
>> I am working on a widget that will set the value of a text-reference to 
>> the value of the output of a filter expression. This could be used to 
>> directly set the list field of '$:/StoryList' to the output of any filter 
>> expression (there's a small issue with regards space separated and comma 
>> separated lists that I am currently trying to resolve.)
>>
>> Would this suit your needs?
>>
>> regards
>>
>> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>>>
>>> Hi
>>>
>>> I'd find it really useful to be able to simultaneously open all the 
>>> tiddlers with a particular tag and then close them all again.
>>>
>>> Is that already possible?
>>>
>>> Thanks
>>> Jon
>>>
>>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-20 Thread Jon
Hi Danielo, I use my wiki mainly for study where a tag would represent a 
particular topic. In order to review a topic, I need to open the tiddlers 
one by one, so being able to open them all at once would be useful.
Hi Matabele, a bit technical for me! I'll wait for your widget and have a 
go.

Thanks, Jon.
On Friday, 20 June 2014 08:26:03 UTC+1, Jon wrote:
>
> Hi
>
> I'd find it really useful to be able to simultaneously open all the 
> tiddlers with a particular tag and then close them all again.
>
> Is that already possible?
>
> Thanks
> Jon
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-20 Thread Ton Gerner
Hi Jon,

I asked for it a long time ago (November 2013) [1] and Jeremy opened an 
issue [2].
So, it is "on the list".

I hope it will be in soon ;-)

Cheers,

Ton


[1] https://groups.google.com/d/msg/tiddlywiki/nsJT0bx1eZ0/qPI1yJfENg0J
[2] https://github.com/Jermolene/TiddlyWiki5/issues/192


On Friday, June 20, 2014 10:22:37 AM UTC+2, Matabele wrote:
>
> Hi
>
> There is a hack that does something similar:
>
> 1. store a space separated list of tiddlers with the given tag to a 
> text-reference somewhere (typically a field or data tiddler entry.)
> 2. set the value of the 'list' field of '$:/StoryList' to this value.
>
> This overwrites the storylist, rather than adding to it. To add a list of 
> tiddlers to the storylist is a little more difficult.
>
> I am working on a widget that will set the value of a text-reference to 
> the value of the output of a filter expression. This could be used to 
> directly set the list field of '$:/StoryList' to the output of any filter 
> expression (there's a small issue with regards space separated and comma 
> separated lists that I am currently trying to resolve.)
>
> Would this suit your needs?
>
> regards
>
> On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>>
>> Hi
>>
>> I'd find it really useful to be able to simultaneously open all the 
>> tiddlers with a particular tag and then close them all again.
>>
>> Is that already possible?
>>
>> Thanks
>> Jon
>>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-20 Thread Matabele
Hi

There is a hack that does something similar:

1. store a space separated list of tiddlers with the given tag to a 
text-reference somewhere (typically a field or data tiddler entry.)
2. set the value of the 'list' field of '$:/StoryList' to this value.

This overwrites the storylist, rather than adding to it. To add a list of 
tiddlers to the storylist is a little more difficult.

I am working on a widget that will set the value of a text-reference to the 
value of the output of a filter expression. This could be used to directly 
set the list field of '$:/StoryList' to the output of any filter expression 
(there's a small issue with regards space separated and comma separated 
lists that I am currently trying to resolve.)

Would this suit your needs?

regards

On Friday, June 20, 2014 9:26:03 AM UTC+2, Jon wrote:
>
> Hi
>
> I'd find it really useful to be able to simultaneously open all the 
> tiddlers with a particular tag and then close them all again.
>
> Is that already possible?
>
> Thanks
> Jon
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Open all the tiddlers with a particular tag

2014-06-20 Thread Danielo Rodríguez
Fast response: no.

Not so fast: No but

It will not be very hard to build a plugin or customize any of the existing 
a bit to achieve this. The close all button closes all tiddlers. Is just a 
matter of add a filter to it.

What is  your use case?


Regards.

El viernes, 20 de junio de 2014 09:26:03 UTC+2, Jon escribió:
>
> Hi
>
> I'd find it really useful to be able to simultaneously open all the 
> tiddlers with a particular tag and then close them all again.
>
> Is that already possible?
>
> Thanks
> Jon
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.