[tw5] Re: Custom Tiddler $:/Manager?

2018-07-15 Thread Mohammad
Wonderful Mark!
It works now! 

Mohammad

On Sunday, July 15, 2018 at 10:04:14 AM UTC+4:30, Mark S. wrote:
>
> @Mohammad -- Hah! I invoked it wrong! Getting old.
>
> This code will always cause a recursion error if run directly from a 
> tiddler. That's because the wikify template will attempt to wikify it's own 
> self, getting stuck in a loop.
>
> So.. @Jose probably needs to label it as $:/tags/ViewTemplate and then it 
> will work on every tiddler without the recursion error. (well, there will 
> be a recursion error on the source tiddler, but that's a special case).
>
> If the template isn't needed on every tiddler, then additional constraints 
> can be added to the [all[current]tagging[]] filter so that it only works on 
> certain tiddlers (e.g. [all[current]tag[UseMe]tagging[]] ).
>
> The other option is to change the code so that the 
> $:/Manager/ItemMain/WikifiedText tiddler is never called.
> 
>
> -- Mark
>
> On Saturday, July 14, 2018 at 7:54:51 PM UTC-7, Mohammad wrote:
>>
>> Mark,
>>  I tried it on tiddlywiki.com and it gives recursion error, when you 
>> open the wikified text!
>>
>> /Mohammad
>>
>> On Sunday, July 15, 2018 at 1:25:35 AM UTC+4:30, Mark S. wrote:
>>>
>>> Is this the code giving an error? When I try it, either as a tiddler or 
>>> as a view template, I don't get a recursion error.
>>>
>>> -- Mark
>>>
>>> On Friday, July 13, 2018 at 10:26:50 PM UTC-7, Jose Eduardo Mares 
>>> Dominguez wrote:

 I've only been using Tiddlywiki for a couple days and I don't know how 
 to code, but I have been messing around with code for the Tiddler Manager 
 to try and create a customized version.

 I want to get it so that the when you create the custom manager it only 
 shows tiddlers that are tagged with the title of the current tiddler, but 
 every time I do it gives me a recursive error. Any help would be 
 appreciated!

 \define lingo-base() $:/language/Manager/

 \define list-item-content-item()
 
 <$vars state-title="""$:/state/popup/manager/item/$(listItem)$""">
 <$reveal state=<> type="match" text="show" default="show" 
 tag="div">
 <$button set=<> setTo="hide" class="tc-btn-invisible 
 tc-manager-list-item-content-item-heading">
 {{$:/core/images/down-arrow}} <$transclude tiddler=<> 
 field="caption"/>
 
 
 <$reveal state=<> type="nomatch" text="show" 
 default="show" tag="div">
 <$button set=<> setTo="show" class="tc-btn-invisible 
 tc-manager-list-item-content-item-heading">
 {{$:/core/images/right-arrow}} <$transclude tiddler=<> 
 field="caption"/>
 
 
 <$reveal state=<> type="match" text="show" default="show" 
 tag="div" class="tc-manager-list-item-content-item-body">
 <$transclude tiddler=<>/>
 
 
 
 \end

 
 <$list filter="[all[current]tagging[]]"/>
 <$vars transclusion=<>>
 
 <$button popup=<> 
 class="tc-btn-invisible tc-manager-list-item-heading" 
 selectedClass="tc-manager-list-item-heading-selected">
 <$text text=<>/>
 
 <$reveal state=<> type="nomatch" 
 text="" default="" tag="div" class="tc-manager-list-item-content 
 tc-popup-handle">
 
 <$list 
 filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemMain]!has[draft.of]]"
  
 variable="listItem">
 <>
 
 
 
 <$list 
 filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemSidebar]!has[draft.of]]"
  
 variable="listItem">
 <>
 
 
 
 
 
 




-- 
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/3a24687b-9580-469b-82e9-528e42144f55%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Custom Tiddler $:/Manager?

2018-07-14 Thread 'Mark S.' via TiddlyWiki
@Mohammad -- Hah! I invoked it wrong! Getting old.

This code will always cause a recursion error if run directly from a 
tiddler. That's because the wikify template will attempt to wikify it's own 
self, getting stuck in a loop.

So.. @Jose probably needs to label it as $:/tags/ViewTemplate and then it 
will work on every tiddler without the recursion error. (well, there will 
be a recursion error on the source tiddler, but that's a special case).

If the template isn't needed on every tiddler, then additional constraints 
can be added to the [all[current]tagging[]] filter so that it only works on 
certain tiddlers (e.g. [all[current]tag[UseMe]tagging[]] ).

The other option is to change the code so that the 
$:/Manager/ItemMain/WikifiedText tiddler is never called.


-- Mark

On Saturday, July 14, 2018 at 7:54:51 PM UTC-7, Mohammad wrote:
>
> Mark,
>  I tried it on tiddlywiki.com and it gives recursion error, when you open 
> the wikified text!
>
> /Mohammad
>
> On Sunday, July 15, 2018 at 1:25:35 AM UTC+4:30, Mark S. wrote:
>>
>> Is this the code giving an error? When I try it, either as a tiddler or 
>> as a view template, I don't get a recursion error.
>>
>> -- Mark
>>
>> On Friday, July 13, 2018 at 10:26:50 PM UTC-7, Jose Eduardo Mares 
>> Dominguez wrote:
>>>
>>> I've only been using Tiddlywiki for a couple days and I don't know how 
>>> to code, but I have been messing around with code for the Tiddler Manager 
>>> to try and create a customized version.
>>>
>>> I want to get it so that the when you create the custom manager it only 
>>> shows tiddlers that are tagged with the title of the current tiddler, but 
>>> every time I do it gives me a recursive error. Any help would be 
>>> appreciated!
>>>
>>> \define lingo-base() $:/language/Manager/
>>>
>>> \define list-item-content-item()
>>> 
>>> <$vars state-title="""$:/state/popup/manager/item/$(listItem)$""">
>>> <$reveal state=<> type="match" text="show" default="show" 
>>> tag="div">
>>> <$button set=<> setTo="hide" class="tc-btn-invisible 
>>> tc-manager-list-item-content-item-heading">
>>> {{$:/core/images/down-arrow}} <$transclude tiddler=<> 
>>> field="caption"/>
>>> 
>>> 
>>> <$reveal state=<> type="nomatch" text="show" default="show" 
>>> tag="div">
>>> <$button set=<> setTo="show" class="tc-btn-invisible 
>>> tc-manager-list-item-content-item-heading">
>>> {{$:/core/images/right-arrow}} <$transclude tiddler=<> 
>>> field="caption"/>
>>> 
>>> 
>>> <$reveal state=<> type="match" text="show" default="show" 
>>> tag="div" class="tc-manager-list-item-content-item-body">
>>> <$transclude tiddler=<>/>
>>> 
>>> 
>>> 
>>> \end
>>>
>>> 
>>> <$list filter="[all[current]tagging[]]"/>
>>> <$vars transclusion=<>>
>>> 
>>> <$button popup=<> 
>>> class="tc-btn-invisible tc-manager-list-item-heading" 
>>> selectedClass="tc-manager-list-item-heading-selected">
>>> <$text text=<>/>
>>> 
>>> <$reveal state=<> type="nomatch" 
>>> text="" default="" tag="div" class="tc-manager-list-item-content 
>>> tc-popup-handle">
>>> 
>>> <$list 
>>> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemMain]!has[draft.of]]" 
>>> variable="listItem">
>>> <>
>>> 
>>> 
>>> 
>>> <$list 
>>> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemSidebar]!has[draft.of]]"
>>>  
>>> variable="listItem">
>>> <>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>>
>>>
>>>

-- 
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/624e64d5-f67d-450c-a162-f58b94c4fd90%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Custom Tiddler $:/Manager?

2018-07-14 Thread TonyM
Previous post edited and new attachment on the Google Forum

Opps
Tony

On Sunday, July 15, 2018 at 2:02:46 PM UTC+10, TonyM wrote:
>
> Jose,
>
> Not one to discourage experimentation, you are trying to jump in the deep 
> end.
>
> Lets try something different
> Lets look at the manager first
>
> The regular manager lets you select to filter by tag? But it has no value 
> by default.
>
> Searching through the tag manager we find the line 
> <> <$select 
> tiddler="$:/config/Manager/Tag" default="">
>
> This is a select widget that stores the value of the selected tag in 
> $:/config/Manager/Tag with a default of ""
>
> If you use the tag filter then close the manager you will discover on 
> reopening it remembers the last tag you filtered on. So all we need to do 
> is to set that tiddler to what we want, then open the manager.
>
> This is my custom button tiddler $:/PSaT/Button/OpenManagerHere
> <$button tooltip="open Tiddler Manager for items tagged here">
> <$action-setfield $tiddler="$:/config/Manager/Tag" text=<
> >/>
> <$action-navigate $to="$:/Manager"/>
> {{$:/core/images/list}}
> 
>
>
> Then in any tiddler I can include
> {{||$:/PSaT/Button/OpenManagerHere}}
> Which gives a button you click to open the manager filtered by the tags 
> here
>
> I have then added a class for a simple icon
> class="tc-btn-invisible" 
> and tagged my custom button tiddler $:/tags/ViewToolbar
>
> Now the button appears on every tiddler and clicking it will open the 
> manager with the items tagging the current tiddler
>
> However most tiddlers may not be a tag to other tiddlers, so I wrapped my 
> custom button code in the following
> <$list filter="[tag]+[limit[1]]" variable="null">
> button code here
> 
> Now the icon will only appear in tiddlers that are actually tagging 
> another tiddler
>  
> In $:/core/ui/ControlPanel/Toolbars/ViewToolbar  
> you
>  
> can change its order
> There is a little more effort to make this look the same as other buttons, 
> just have a look at them and set some appropriate fields
>
> I have attached the button tiddler here for your convenience.
>
> The best way to learn is teaching
> Regards
> Tony
>
>
> On Saturday, July 14, 2018 at 3:26:50 PM UTC+10, Jose Eduardo Mares 
> Dominguez wrote:
>>
>> I've only been using Tiddlywiki for a couple days and I don't know how to 
>> code, but I have been messing around with code for the Tiddler Manager to 
>> try and create a customized version.
>>
>> I want to get it so that the when you create the custom manager it only 
>> shows tiddlers that are tagged with the title of the current tiddler, but 
>> every time I do it gives me a recursive error. Any help would be 
>> appreciated!
>>
>> \define lingo-base() $:/language/Manager/
>>
>> \define list-item-content-item()
>> 
>> <$vars state-title="""$:/state/popup/manager/item/$(listItem)$""">
>> <$reveal state=<> type="match" text="show" default="show" 
>> tag="div">
>> <$button set=<> setTo="hide" class="tc-btn-invisible 
>> tc-manager-list-item-content-item-heading">
>> {{$:/core/images/down-arrow}} <$transclude tiddler=<> 
>> field="caption"/>
>> 
>> 
>> <$reveal state=<> type="nomatch" text="show" default="show" 
>> tag="div">
>> <$button set=<> setTo="show" class="tc-btn-invisible 
>> tc-manager-list-item-content-item-heading">
>> {{$:/core/images/right-arrow}} <$transclude tiddler=<> 
>> field="caption"/>
>> 
>> 
>> <$reveal state=<> type="match" text="show" default="show" 
>> tag="div" class="tc-manager-list-item-content-item-body">
>> <$transclude tiddler=<>/>
>> 
>> 
>> 
>> \end
>>
>> 
>> <$list filter="[all[current]tagging[]]"/>
>> <$vars transclusion=<>>
>> 
>> <$button popup=<> 
>> class="tc-btn-invisible tc-manager-list-item-heading" 
>> selectedClass="tc-manager-list-item-heading-selected">
>> <$text text=<>/>
>> 
>> <$reveal state=<> type="nomatch" 
>> text="" default="" tag="div" class="tc-manager-list-item-content 
>> tc-popup-handle">
>> 
>> <$list 
>> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemMain]!has[draft.of]]" 
>> variable="listItem">
>> <>
>> 
>> 
>> 
>> <$list 
>> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemSidebar]!has[draft.of]]"
>>  
>> variable="listItem">
>> <>
>> 
>> 
>> 
>> 
>> 
>> 
>>
>>
>>

-- 
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/7b744a41-03e1-4d1d-be39-8d2dcf5dffce%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Custom Tiddler $:/Manager?

2018-07-14 Thread TonyM
Jose,

Not one to discourage experimentation, you are trying to jump in the deep 
end.

Lets try something different
Lets look at the manager first

The regular manager lets you select to filter by tag? But it has no value 
by default.

Searching through the tag manager we find the line 
<> <$select 
tiddler="$:/config/Manager/Tag" default="">

This is a select widget that stores the value of the selected tag in 
$:/config/Manager/Tag with a default of ""

If you use the tag filter then close the manager you will discover on 
reopening it remembers the last tag you filtered on. So all we need to do 
is to set that tiddler to what we want, then open the manager.

This is my custom button tiddler $:/PSaT/Button/OpenManagerHere
<$button tooltip="open Tiddler Manager for items tagged here">
<$action-setfield $tiddler="$:/config/Manager/Tag" text=<>/>
<$action-navigate $to="$:/Manager"/>
{{$:/core/images/list}}



Then in any tiddler I can include
{{||$:/PSaT/Button/OpenManagerHere}}
Which gives a button you click to open the manager filtered by the tags here

I have then added a class for a simple icon
class="tc-btn-invisible" 
and tagged my custom button tiddler $:/tags/ViewToolbar

Now the button appears on every tiddler and clicking it will open the 
manager with the items tagging the current tiddler

However most tiddlers may not be a tag to other tiddlers, so I wrapped my 
custom button code in the following
<$list filter="[tag]" variable="null">
button code here

Now the icon will only appear in tiddlers that are actually tagging another 
tiddler
 
In $:/core/ui/ControlPanel/Toolbars/ViewToolbar  
you
 
can change its order
There is a little more effort to make this look the same as other buttons, 
just have a look at them and set some appropriate fields

I have attached the button tiddler here for your convenience.

The best way to learn is teaching
Regards
Tony


On Saturday, July 14, 2018 at 3:26:50 PM UTC+10, Jose Eduardo Mares 
Dominguez wrote:
>
> I've only been using Tiddlywiki for a couple days and I don't know how to 
> code, but I have been messing around with code for the Tiddler Manager to 
> try and create a customized version.
>
> I want to get it so that the when you create the custom manager it only 
> shows tiddlers that are tagged with the title of the current tiddler, but 
> every time I do it gives me a recursive error. Any help would be 
> appreciated!
>
> \define lingo-base() $:/language/Manager/
>
> \define list-item-content-item()
> 
> <$vars state-title="""$:/state/popup/manager/item/$(listItem)$""">
> <$reveal state=<> type="match" text="show" default="show" 
> tag="div">
> <$button set=<> setTo="hide" class="tc-btn-invisible 
> tc-manager-list-item-content-item-heading">
> {{$:/core/images/down-arrow}} <$transclude tiddler=<> 
> field="caption"/>
> 
> 
> <$reveal state=<> type="nomatch" text="show" default="show" 
> tag="div">
> <$button set=<> setTo="show" class="tc-btn-invisible 
> tc-manager-list-item-content-item-heading">
> {{$:/core/images/right-arrow}} <$transclude tiddler=<> 
> field="caption"/>
> 
> 
> <$reveal state=<> type="match" text="show" default="show" 
> tag="div" class="tc-manager-list-item-content-item-body">
> <$transclude tiddler=<>/>
> 
> 
> 
> \end
>
> 
> <$list filter="[all[current]tagging[]]"/>
> <$vars transclusion=<>>
> 
> <$button popup=<> 
> class="tc-btn-invisible tc-manager-list-item-heading" 
> selectedClass="tc-manager-list-item-heading-selected">
> <$text text=<>/>
> 
> <$reveal state=<> type="nomatch" text="" 
> default="" tag="div" class="tc-manager-list-item-content tc-popup-handle">
> 
> <$list 
> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemMain]!has[draft.of]]" 
> variable="listItem">
> <>
> 
> 
> 
> <$list 
> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemSidebar]!has[draft.of]]"
>  
> variable="listItem">
> <>
> 
> 
> 
> 
> 
> 
>
>
>

-- 
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/576b7214-bbf9-4da8-b211-d24468f79aa2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


$__PSaT_Button_OpenManagerHere.tid
Description: Binary data


[tw5] Re: Custom Tiddler $:/Manager?

2018-07-14 Thread Mohammad
Mark,
 I tried it on tiddlywiki.com and it gives recursion error, when you open 
the wikified text!

/Mohammad

On Sunday, July 15, 2018 at 1:25:35 AM UTC+4:30, Mark S. wrote:
>
> Is this the code giving an error? When I try it, either as a tiddler or as 
> a view template, I don't get a recursion error.
>
> -- Mark
>
> On Friday, July 13, 2018 at 10:26:50 PM UTC-7, Jose Eduardo Mares 
> Dominguez wrote:
>>
>> I've only been using Tiddlywiki for a couple days and I don't know how to 
>> code, but I have been messing around with code for the Tiddler Manager to 
>> try and create a customized version.
>>
>> I want to get it so that the when you create the custom manager it only 
>> shows tiddlers that are tagged with the title of the current tiddler, but 
>> every time I do it gives me a recursive error. Any help would be 
>> appreciated!
>>
>> \define lingo-base() $:/language/Manager/
>>
>> \define list-item-content-item()
>> 
>> <$vars state-title="""$:/state/popup/manager/item/$(listItem)$""">
>> <$reveal state=<> type="match" text="show" default="show" 
>> tag="div">
>> <$button set=<> setTo="hide" class="tc-btn-invisible 
>> tc-manager-list-item-content-item-heading">
>> {{$:/core/images/down-arrow}} <$transclude tiddler=<> 
>> field="caption"/>
>> 
>> 
>> <$reveal state=<> type="nomatch" text="show" default="show" 
>> tag="div">
>> <$button set=<> setTo="show" class="tc-btn-invisible 
>> tc-manager-list-item-content-item-heading">
>> {{$:/core/images/right-arrow}} <$transclude tiddler=<> 
>> field="caption"/>
>> 
>> 
>> <$reveal state=<> type="match" text="show" default="show" 
>> tag="div" class="tc-manager-list-item-content-item-body">
>> <$transclude tiddler=<>/>
>> 
>> 
>> 
>> \end
>>
>> 
>> <$list filter="[all[current]tagging[]]"/>
>> <$vars transclusion=<>>
>> 
>> <$button popup=<> 
>> class="tc-btn-invisible tc-manager-list-item-heading" 
>> selectedClass="tc-manager-list-item-heading-selected">
>> <$text text=<>/>
>> 
>> <$reveal state=<> type="nomatch" 
>> text="" default="" tag="div" class="tc-manager-list-item-content 
>> tc-popup-handle">
>> 
>> <$list 
>> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemMain]!has[draft.of]]" 
>> variable="listItem">
>> <>
>> 
>> 
>> 
>> <$list 
>> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemSidebar]!has[draft.of]]"
>>  
>> variable="listItem">
>> <>
>> 
>> 
>> 
>> 
>> 
>> 
>>
>>
>>

-- 
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/584c168d-a8d0-433d-969e-bcececeac01e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Custom Tiddler $:/Manager?

2018-07-14 Thread 'Mark S.' via TiddlyWiki
Is this the code giving an error? When I try it, either as a tiddler or as 
a view template, I don't get a recursion error.

-- Mark

On Friday, July 13, 2018 at 10:26:50 PM UTC-7, Jose Eduardo Mares Dominguez 
wrote:
>
> I've only been using Tiddlywiki for a couple days and I don't know how to 
> code, but I have been messing around with code for the Tiddler Manager to 
> try and create a customized version.
>
> I want to get it so that the when you create the custom manager it only 
> shows tiddlers that are tagged with the title of the current tiddler, but 
> every time I do it gives me a recursive error. Any help would be 
> appreciated!
>
> \define lingo-base() $:/language/Manager/
>
> \define list-item-content-item()
> 
> <$vars state-title="""$:/state/popup/manager/item/$(listItem)$""">
> <$reveal state=<> type="match" text="show" default="show" 
> tag="div">
> <$button set=<> setTo="hide" class="tc-btn-invisible 
> tc-manager-list-item-content-item-heading">
> {{$:/core/images/down-arrow}} <$transclude tiddler=<> 
> field="caption"/>
> 
> 
> <$reveal state=<> type="nomatch" text="show" default="show" 
> tag="div">
> <$button set=<> setTo="show" class="tc-btn-invisible 
> tc-manager-list-item-content-item-heading">
> {{$:/core/images/right-arrow}} <$transclude tiddler=<> 
> field="caption"/>
> 
> 
> <$reveal state=<> type="match" text="show" default="show" 
> tag="div" class="tc-manager-list-item-content-item-body">
> <$transclude tiddler=<>/>
> 
> 
> 
> \end
>
> 
> <$list filter="[all[current]tagging[]]"/>
> <$vars transclusion=<>>
> 
> <$button popup=<> 
> class="tc-btn-invisible tc-manager-list-item-heading" 
> selectedClass="tc-manager-list-item-heading-selected">
> <$text text=<>/>
> 
> <$reveal state=<> type="nomatch" text="" 
> default="" tag="div" class="tc-manager-list-item-content tc-popup-handle">
> 
> <$list 
> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemMain]!has[draft.of]]" 
> variable="listItem">
> <>
> 
> 
> 
> <$list 
> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemSidebar]!has[draft.of]]"
>  
> variable="listItem">
> <>
> 
> 
> 
> 
> 
> 
>
>
>

-- 
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/16c5dfa3-dfd6-42d6-98d9-30cba2c3b37b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.