[tw5] How do I show tags along with tiddler title in the search result?

2019-06-16 Thread bimlas
talha131,

The Locator plugin is made to find related tags easier, it shows the tags in 
search results as well.

https://bimlas.gitlab.io/tw5-locator/

-- 
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/8e5c61eb-59ee-4cf6-815b-a9fb3186664c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] Re: Tree Macro built in core

2019-06-16 Thread Damon Pritchett
Thanks Mark! That did the trick. I really appreciate the help. I think I 
understand what you did and why as well. I just wish I could think of those 
kinds of things on my own. Time and experience will change that I'm sure.

Damon

On Sunday, June 16, 2019 at 12:13:58 PM UTC-5, Mark S. wrote:
>
> Ok a coupe tweaks to leaf-node2 may do it (until you find another bug) :
>
> \define leaf-node2(prefix,chunk)
> 
> <$list filter="[<__prefix__>addsuffix<__chunk__>]" variable="full-title">
> <$list filter="[descriptionis[shadow]] 
> [descriptionis[tiddler]]" variable="tiddler">
> <$list filter="[removeprefix<__prefix__>]" variable="chunk">
> {{$:/core/images/file}} <$macrocall $name="leaf-link2" 
> full-title=<> chunk=<>/>
> 
> 
> 
> 
> \end
>
> On Sunday, June 16, 2019 at 7:59:33 AM UTC-7, Damon Pritchett wrote:
>>
>> Hey Mark,
>>
>> Yeah, I didn't explain very well. Hopefully, the following will help.
>>
>> So I have a tiddler titled "Atchison Daily Champion, Sunday, March 8, 
>> 1868." I put the following in the description field 
>> "Newspapers-Kansas-Atchison-Daily Champion-1868-03-08." The output of the 
>> macro looked just as expected (see screenshot), except that the link on the 
>> 08 node doesn't link to my tiddler. It wants to link to a tiddler named the 
>> same as the description field. This is not what I was hoping for. I want to 
>> use the description field to generate the tree, but retain the shorter, 
>> more readable tiddler title.  
>>
>> [image: tree.png]
>>
>>
>> On Friday, June 14, 2019 at 10:54:37 PM UTC-5, Mark S. wrote:
>>>
>>>
>>>
>>> On Friday, June 14, 2019 at 4:56:44 PM UTC-7, Damon Pritchett wrote:

 After playing around with this new macro further, I've found that it 
 only works as long as the description matches the tiddler title exactly. 
 If 
 not, then there is an entry in the tree list to a tiddler that doesn't 
 exist.  What tweak could I make that would fix this? 



>>> I don't know what you mean. Nothing should depend on the title. Perhaps 
>>> you could attach some sample tiddlers so we could see what is happening.
>>>
>>> Thanks!
>>>
>>

-- 
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/36dbd4a8-eed4-409f-87a8-73eafe31537b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Saving in chrome

2019-06-16 Thread 'Mark S.' via TiddlyWiki
For the moment, TT's thread seems like a good place:

https://groups.google.com/forum/#!msg/tiddlywiki/tMLfNs1K3JU/ApVF6qIaBgAJ

If there's a lot of activity, we'll have to think of somewhere else.

-- Mark


On Sunday, June 16, 2019 at 1:17:01 AM UTC-7, TonyM wrote:
>
> Mark
>
> I have not looked at the details of your PowerShell script but I have some 
> thoughts on making it very efficient and perhaps easy to configure.
>
> Where would be the best place or thread to continue that conversation?
>
> regards
> Tony
>
>

-- 
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/49a2d3f9-4521-4b98-b490-07d71764caf6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Can a <$button> be used to create a data tiddler?

2019-06-16 Thread 'Mark S.' via TiddlyWiki
You should be able to use the index property of the action-setfield widget:

<$action-setfield $tiddler="mydatatiddler" $index="name.middle" 
$value={{$:/temp/person!!name.middle}} />

The fields may seem clunky, but they are probably a better long-term 
choice, since there are so many filter operators that use them. There's 
very limited abilities with the dictionary tiddlers.


On Sunday, June 16, 2019 at 5:42:19 PM UTC-7, Chris wrote:
>
> Tried searching the forum to no avail.
>
> Right now I have a button that populates fields. The fields needs are many 
> and makes it clunky. Though I knew of data tiddlers it is only recently I 
> realized there could be some potential usefulness. Here is section of my 
> current button action.
>
> name.middle={{$:/temp/person!!name.middle}} 
> name.family={{$:/temp/person!!name.family}}
> name.handle={{$:/temp/person!!name.handle}} 
>
> date.birth={{$:/temp/person!!date.birth}} 
> place.birth={{$:/temp/person!!place.birth}} 
> date.baptism={{$:/temp/person!!date.baptism}} 
> place.baptism={{$:/temp/person!!place.baptism}} 
>
> date.death={{$:/temp/person!!date.death}} 
> place.death={{$:/temp/person!!place.death}} 
> date.burial={{$:/temp/person!!date.burial}} 
> place.burial={{$:/temp/person!!place.burial}} 
> cause.death={{$:/temp/person!!cause.death}} 
>
> Setting the type to dictionary is not an issue. But is there a way to 
> generate the output to populate data information in the text field? For 
> instance "name.middle={{$:/temp/person!!name.middle}}" would populate in 
> the text field as name.middle: ( value of ){{$:/temp/person!!name.middle}}?
>
> Index numbers would not work here not only do I need "date.birth" to know 
> what I am looking at but also ( if export it ) for someone to know what 
> they are looking at. 
>
>

-- 
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/b3bf0888-98cd-477a-b72e-6719d08109ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Can a <$button> be used to create a data tiddler?

2019-06-16 Thread Chris
The tiddler is genealogical one, each generated file would include the 
subject name ( ex. $:/?data/** SURNAME **/** GIVEN **/** MIDDLE ** ). "$:/" 
is self explanatory, "?" is for sorting purposes, it sorts on top; does not 
get lost in the regular plugin file names and provides look up at a glance 
( which is also provided by the "data" ). I will another tiddler to provide 
the visuals.

On Sunday, June 16, 2019 at 9:32:02 PM UTC-4, TonyM wrote:
>
> You would need one data tiddler per form unless the keys are qualified 
> with a unique name such as the current tiddler.
>
> Tony
>

-- 
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/4f6577a8-7a0f-41d0-a70d-9d0add31c6b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Can a <$button> be used to create a data tiddler?

2019-06-16 Thread Chris
Worked, not worked. It does not work if I add this line to the button.
type="application/x-tiddler-dictionary"
It renders like a text.



-- 
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/b352fe38-078d-4adf-9f6f-3f90daeb4654%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Can a <$button> be used to create a data tiddler?

2019-06-16 Thread TonyM
You would need one data tiddler per form unless the keys are qualified with a 
unique name such as the current tiddler.

Tony

-- 
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/901f2718-0ffa-4ff1-b920-9e3b221b4a03%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Can a <$button> be used to create a data tiddler?

2019-06-16 Thread TonyM
Chris,

I was experimenting on this area I have neglected. Try this

[[mydata]]

<$edit-text tiddler="mydata" index="v1"/>

{{mydata##v1}}

<$edit-text tiddler="mydata" index="v2" tag=input/>

-- 
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/201e1128-944c-49ea-b40e-f9b370a7faa3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Can a <$button> be used to create a data tiddler?

2019-06-16 Thread Chris
the temp file is just standard tiddler at the moment used to store the 
results of a form in fields. This raises an additional question . . . can 
you store form results in a data type tiddler?

On Sunday, June 16, 2019 at 9:05:42 PM UTC-4, TonyM wrote:
>
> This is not a full answer but have you tried datatiddler##entryname
>
> Rather than temptiddler!!entryname
>
> Regards
> Tony
>
>

-- 
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/c34758d5-3dcb-41a0-a862-265861527165%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Can a <$button> be used to create a data tiddler?

2019-06-16 Thread TonyM
This is not a full answer but have you tried datatiddler##entryname

Rather than temptiddler!!entryname

Regards
Tony

-- 
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/c8898970-3437-44b7-8fc9-f18c5216dc7c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Can a <$button> be used to create a data tiddler?

2019-06-16 Thread Chris
Tried searching the forum to no avail.

Right now I have a button that populates fields. The fields needs are many 
and makes it clunky. Though I knew of data tiddlers it is only recently I 
realized there could be some potential usefulness. Here is section of my 
current button action.

name.middle={{$:/temp/person!!name.middle}} 
name.family={{$:/temp/person!!name.family}}
name.handle={{$:/temp/person!!name.handle}} 

date.birth={{$:/temp/person!!date.birth}} 
place.birth={{$:/temp/person!!place.birth}} 
date.baptism={{$:/temp/person!!date.baptism}} 
place.baptism={{$:/temp/person!!place.baptism}} 

date.death={{$:/temp/person!!date.death}} 
place.death={{$:/temp/person!!place.death}} 
date.burial={{$:/temp/person!!date.burial}} 
place.burial={{$:/temp/person!!place.burial}} 
cause.death={{$:/temp/person!!cause.death}} 

Setting the type to dictionary is not an issue. But is there a way to 
generate the output to populate data information in the text field? For 
instance "name.middle={{$:/temp/person!!name.middle}}" would populate in 
the text field as name.middle: ( value of ){{$:/temp/person!!name.middle}}?

Index numbers would not work here not only do I need "date.birth" to know 
what I am looking at but also ( if export it ) for someone to know what 
they are looking at. 

-- 
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/631577a4-5c10-4fbe-beb4-e6aaf80cb696%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Way to avoid losing (extensive) edits from error on save?

2019-06-16 Thread TonyM
Linda

Depending on what failed sometimes you can still save the wiki successfully.

Even more safety may come with local storage in the next version. How ever if 
the wiki can't load because of something in local storage we will need a new 
technique.

There is no substitute for automatic backups found in most of the savers.

Regards
Tony

-- 
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/0a92faae-edbd-4dfb-b939-f79ce8708e1b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Remove tabs off sidebar?

2019-06-16 Thread TonyM
While on this topic in my large wikis I created a checkbox to toggle the 
sidebar segment tag on the sidebar tabs tiddler. In rally large wikis this has 
a performance advantage by stopping the need to rerender the side bar every 
change tw5 and twc benefit.

Tony

-- 
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/b3848d3b-7fd0-4fd9-bd7e-9c3258760df8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Remove tabs off sidebar?

2019-06-16 Thread inti w
Hey Mat! Thanks so much for answering so quick, it worked great :)

On Sunday, June 16, 2019 at 4:46:03 PM UTC-4, Mat wrote:
>
> Hi init w and welcome!
>
> Yes, the sidebar tabs are regular tiddlers that are tagged $:/tags/SideBar
>
> One way to access all tiddlers tagged something specific is to use the 
> tag-pill macro by, in a tiddler, typing in <>. In it 
> you can click on the concerned tiddlers and once you have the tiddlers you 
> can remove the above mentioned tag from them so they don't appear there. 
> And vice versa, if you want a new tiddler there, just create one and tag it 
> such.
>
> Because these are tiddlers that build up the system they are super easy to 
> restore; just delete(!) the tiddler you've manipulated and the original 
> will be reinstated.
>
> <:-)
>

-- 
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/b1dd2796-7693-4374-94b2-c56fc5dbce20%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: pack and unpack few tiddlers internally: A Theme switcher

2019-06-16 Thread BJ
maybe you can use the plugin switcher in the core:

https://github.com/Jermolene/TiddlyWiki5/blob/master/core/modules/pluginswitcher.js

On Sunday, June 16, 2019 at 7:38:51 PM UTC+2, Mohammad wrote:
>
> I am working on Tiddlyshow to finalize it as a plugin!
> I have several themes for slideshow. I want to apply themes by a theme 
> switcher!
> What I do now is to apply the $:/tags/Stylesheet to bundle of tiddlers in 
> selected theme and remove $:/tags/Stylesheet  tag
> from previous theme tiddlers (each theme has 5 to 10 tiddlers)
>
> I thought I can use the mechanism by TW itself! so I need a macro/tool to 
> let me unload a theme (by packing internally into a JSON tiddler)
> and unpack (load) the new selected one!
>
> How can I do this? I am insisted to not add extra third party plugins to 
> restrict any dependencies!
>
>
> Mohammad
>

-- 
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/6753f94c-bce7-41c1-ac0e-e61c0eeba666%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Remove tabs off sidebar?

2019-06-16 Thread Mat
Hi init w and welcome!

Yes, the sidebar tabs are regular tiddlers that are tagged $:/tags/SideBar

One way to access all tiddlers tagged something specific is to use the 
tag-pill macro by, in a tiddler, typing in <>. In it 
you can click on the concerned tiddlers and once you have the tiddlers you 
can remove the above mentioned tag from them so they don't appear there. 
And vice versa, if you want a new tiddler there, just create one and tag it 
such.

Because these are tiddlers that build up the system they are super easy to 
restore; just delete(!) the tiddler you've manipulated and the original 
will be reinstated.

<:-)

-- 
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/0c923524-c701-4145-84e4-6a2291318500%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] pack and unpack few tiddlers internally: A Theme switcher

2019-06-16 Thread Mohammad
I am working on Tiddlyshow to finalize it as a plugin!
I have several themes for slideshow. I want to apply themes by a theme 
switcher!
What I do now is to apply the $:/tags/Stylesheet to bundle of tiddlers in 
selected theme and remove $:/tags/Stylesheet  tag
from previous theme tiddlers (each theme has 5 to 10 tiddlers)

I thought I can use the mechanism by TW itself! so I need a macro/tool to 
let me unload a theme (by packing internally into a JSON tiddler)
and unpack (load) the new selected one!

How can I do this? I am insisted to not add extra third party plugins to 
restrict any dependencies!


Mohammad

-- 
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/2b82855f-c81b-47bd-888d-907fb9e0f17f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] Re: Tree Macro built in core

2019-06-16 Thread 'Mark S.' via TiddlyWiki
Ok a coupe tweaks to leaf-node2 may do it (until you find another bug) :

\define leaf-node2(prefix,chunk)

<$list filter="[<__prefix__>addsuffix<__chunk__>]" variable="full-title">
<$list filter="[descriptionis[shadow]] 
[descriptionis[tiddler]]" variable="tiddler">
<$list filter="[removeprefix<__prefix__>]" variable="chunk">
{{$:/core/images/file}} <$macrocall $name="leaf-link2" 
full-title=<> chunk=<>/>




\end

On Sunday, June 16, 2019 at 7:59:33 AM UTC-7, Damon Pritchett wrote:
>
> Hey Mark,
>
> Yeah, I didn't explain very well. Hopefully, the following will help.
>
> So I have a tiddler titled "Atchison Daily Champion, Sunday, March 8, 
> 1868." I put the following in the description field 
> "Newspapers-Kansas-Atchison-Daily Champion-1868-03-08." The output of the 
> macro looked just as expected (see screenshot), except that the link on the 
> 08 node doesn't link to my tiddler. It wants to link to a tiddler named the 
> same as the description field. This is not what I was hoping for. I want to 
> use the description field to generate the tree, but retain the shorter, 
> more readable tiddler title.  
>
> [image: tree.png]
>
>
> On Friday, June 14, 2019 at 10:54:37 PM UTC-5, Mark S. wrote:
>>
>>
>>
>> On Friday, June 14, 2019 at 4:56:44 PM UTC-7, Damon Pritchett wrote:
>>>
>>> After playing around with this new macro further, I've found that it 
>>> only works as long as the description matches the tiddler title exactly. If 
>>> not, then there is an entry in the tree list to a tiddler that doesn't 
>>> exist.  What tweak could I make that would fix this? 
>>>
>>>
>>>
>> I don't know what you mean. Nothing should depend on the title. Perhaps 
>> you could attach some sample tiddlers so we could see what is happening.
>>
>> Thanks!
>>
>

-- 
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/42166dfc-99b5-4c1c-a11f-615484c7a7d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Way to avoid losing (extensive) edits from error on save?

2019-06-16 Thread 'Mark S.' via TiddlyWiki
Possibly. You can try using the Emergency Export Save outlined here:

https://tiddlywiki.com/#Emergency%20Tiddler%20Export

Basically, you're exporting all recently modified tiddlers.

Good luck!

On Sunday, June 16, 2019 at 8:40:39 AM UTC-7, Linda Moss wrote:
>
> Hi!
>
> I'm using *5.1.19 *on 67.0.2 (on Lubuntu Linux, i3wm).
>
> I should have saved much more often, today. But alas, after several hours 
> of work, I went to hit "save" and got the dreaded 
>
>
>> Internal JavaScript Error
>
> Well, this is embarrassing. It is recommended that you restart TiddlyWiki 
> by refreshing your browser
>
> TypeError: can't access dead object
>
>
> This has happened only occasionally in the past, and what I've done then 
> is open a new instance of the wiki and drag-and-dropped the new/modified 
> tiddlers by hand.
>
> However, this time the edits are so extensive (including some settings 
> changes and other things that don't show up in the "recent" list) that this 
> would be incredibly painful. Is there another way I can rescue my work? (I 
> fear the answer is "no", but figured I'd check).
>
> Thanks!
>
>
>

-- 
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/6bc02d04-82d6-4a56-8932-c6bf5b7287d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Way to avoid losing (extensive) edits from error on save?

2019-06-16 Thread Linda Moss
Actually, looking at "[haschanged[]]", to get all the changed tiddlers 
(including system), I think it will only take me about 10 minutes to fix 
this by manually moving tiddlers. So, not as difficult as I was thinking it 
would be.

On Sunday, June 16, 2019 at 11:40:39 AM UTC-4, Linda Moss wrote:
>
> Hi!
>
> I'm using *5.1.19 *on 67.0.2 (on Lubuntu Linux, i3wm).
>
> I should have saved much more often, today. But alas, after several hours 
> of work, I went to hit "save" and got the dreaded 
>
>
>> Internal JavaScript Error
>
> Well, this is embarrassing. It is recommended that you restart TiddlyWiki 
> by refreshing your browser
>
> TypeError: can't access dead object
>
>
> This has happened only occasionally in the past, and what I've done then 
> is open a new instance of the wiki and drag-and-dropped the new/modified 
> tiddlers by hand.
>
> However, this time the edits are so extensive (including some settings 
> changes and other things that don't show up in the "recent" list) that this 
> would be incredibly painful. Is there another way I can rescue my work? (I 
> fear the answer is "no", but figured I'd check).
>
> Thanks!
>
>
>

-- 
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/7ccc2876-80d9-4831-a6fe-f774fc124240%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Way to avoid losing (extensive) edits from error on save?

2019-06-16 Thread Linda Moss
Hi!

I'm using *5.1.19 *on 67.0.2 (on Lubuntu Linux, i3wm).

I should have saved much more often, today. But alas, after several hours 
of work, I went to hit "save" and got the dreaded 


> Internal JavaScript Error

Well, this is embarrassing. It is recommended that you restart TiddlyWiki 
by refreshing your browser

TypeError: can't access dead object


This has happened only occasionally in the past, and what I've done then is 
open a new instance of the wiki and drag-and-dropped the new/modified 
tiddlers by hand.

However, this time the edits are so extensive (including some settings 
changes and other things that don't show up in the "recent" list) that this 
would be incredibly painful. Is there another way I can rescue my work? (I 
fear the answer is "no", but figured I'd check).

Thanks!


-- 
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/fc568a62-d6f6-467b-b6ae-682d20bf1e5e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Navigation Issue: Small tiddlers all on the screen

2019-06-16 Thread Mohammad
Mat!

 If you create three empty tiddlers in tiddlywiki.com and close all others! 
Then if you clicked on a tittle its tiddler is in the middle you will not 
get any change on the screen!
So, while I KNOW some code is running at the behind, there is no visual 
reaction from TW! This may cause confusion!

What you said is true for* those tids cross the top and bottom screen 
borders*! They will come into focus!
--Mohammad



On Sunday, June 16, 2019 at 7:13:34 PM UTC+4:30, Mat wrote:
>
> if you click on a link points to one of these tiddler, TW
>> will not do anything as that tiddler is on screen!
>>
>
> This is not correct. It will scroll the tiddler to the top edge of the 
> screen BUT not if the clicked at titles are at the bottom of the river so 
> that they cant scroll up without leaving an empty gap beneath them. If you 
> need that also the bottom most tids actually align with the top edge then 
> you can use Felix Hayashis TopStoryView found in, among other places, his 
> TiddlyMap site. That plugin had some additional benefits before whihc have 
> since been integrated in native TW so it is now more or less outdated 
> except for this matter you bring up.
>
> <:-)
>

-- 
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/ed556a43-7645-4f3b-8953-332515eea40d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] Re: Tree Macro built in core

2019-06-16 Thread Damon Pritchett
Hey Mark,

Yeah, I didn't explain very well. Hopefully, the following will help.

So I have a tiddler titled "Atchison Daily Champion, Sunday, March 8, 
1868." I put the following in the description field 
"Newspapers-Kansas-Atchison-Daily Champion-1868-03-08." The output of the 
macro looked just as expected (see screenshot), except that the link on the 
08 node doesn't link to my tiddler. It wants to link to a tiddler named the 
same as the description field. This is not what I was hoping for. I want to 
use the description field to generate the tree, but retain the shorter, 
more readable tiddler title.  

[image: tree.png]


On Friday, June 14, 2019 at 10:54:37 PM UTC-5, Mark S. wrote:
>
>
>
> On Friday, June 14, 2019 at 4:56:44 PM UTC-7, Damon Pritchett wrote:
>>
>> After playing around with this new macro further, I've found that it only 
>> works as long as the description matches the tiddler title exactly. If not, 
>> then there is an entry in the tree list to a tiddler that doesn't exist.  
>> What tweak could I make that would fix this? 
>>
>>
>>
> I don't know what you mean. Nothing should depend on the title. Perhaps 
> you could attach some sample tiddlers so we could see what is happening.
>
> Thanks!
>

-- 
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/daa9f664-a68e-49e3-9ea4-9186159c21f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Navigation Issue: Small tiddlers all on the screen

2019-06-16 Thread Mat

>
> if you click on a link points to one of these tiddler, TW
> will not do anything as that tiddler is on screen!
>

This is not correct. It will scroll the tiddler to the top edge of the 
screen BUT not if the clicked at titles are at the bottom of the river so 
that they cant scroll up without leaving an empty gap beneath them. If you 
need that also the bottom most tids actually align with the top edge then 
you can use Felix Hayashis TopStoryView found in, among other places, his 
TiddlyMap site. That plugin had some additional benefits before whihc have 
since been integrated in native TW so it is now more or less outdated 
except for this matter you bring up.

<:-)

-- 
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/a42a112a-1e7b-4223-baaa-3ea8e7b22b9d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: [Help] Save opens up a Save dialogue box

2019-06-16 Thread Mohammad
Added to TW-Scripts

On Saturday, June 15, 2019 at 7:44:10 AM UTC+4:30, Eric Shulman wrote:
>
> On Friday, June 14, 2019 at 6:20:55 PM UTC-7, Ulf Ayirtahsk Berg wrote:
>>
>> I joined just now to ask about this nonsensical reaction to clicking the 
>> Save icon. If anyone has a pointer, thanks in advance.
>> *Operating system:* Windows 10 Home
>> *Browser:* Brave
>> *TiddlyWiki:* Downloaded empty.html one minute ago from tiddlywiki.com
>>
>
> For security reasons, modern web browsers do not let you *directly* write 
> to the local filesystem.
>
> TiddlyWiki is built on top of browser tech.  As such, it has the same 
> restrictions on local filesystem access.
>
> Fortunately, nearly all web browsers DO have one reliable method of 
> writing to the local filesystem: *downloading a file*.
>
> Downloading offers some measure of implicit information privacy/security 
> because it requires user-interaction (no silent saving of files), and uses 
> system-level dialogs to access the filesystem (no direct program access to 
> read your directory info).
>
> By default, when you try to save a locally-stored TiddlyWiki without any 
> add-ons or helper apps, it triggers what appears to be a *download* 
> activity, even though the file is clearly already on your own system.
>
> Many browsers automatically save downloaded files to a specific location 
> (e.g., "/Downloads" or similar).
>
> Some browsers allow you to change this default location to a different 
> directory and/or "ask for location" each time you download so you can 
> specify the desired filename and directory.
>
> If you tell your browser to point to the directory in which your 
> TiddlyWiki file is stored, then when you press "save", you get a 
> system-level dialog that allows you to enter a new filename or select an 
> existing file.
>
> Most systems will automatically suggest a filename by appending a number 
> to the current filename, e.g., "index.html (1)".  You can, of course, 
> select the *existing* TiddlyWiki filename, e.g., index.html (without any 
> "(n)" suffix), which should then prompt you for permission to overwrite the 
> previously saved file.  After saving, if you reload your TiddlyWiki file, 
> it will contain your saved changes as you would expect.
>
> Although the "default download saver" ultimately *does* let you save 
> changes locally, some people find the experience to be less-than-optimal.  
> To address this, there are *many* different add-ons and system-specific 
> helper apps that can potentially provide a smoother experience, depending 
> upon your usage patterns and platform(s) of choice.
>
> https://tiddlywiki.com/#GettingStarted
>
>
> Hope this helps,
>
> -e
> Eric Shulman
> TiddlyTools: "Small Tools for Big Ideas" (tm) - 
> http://tiddlytools.github.io/
> InsideTiddlyWiki: The Missing Manuals
>
>
>

-- 
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/c9d62f0a-dddf-427b-b8d6-29b184b24023%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Navigation Issue: Small tiddlers all on the screen

2019-06-16 Thread Mohammad
This may be a redundant question

Assume you have several tiddlers open in story view! When you click on a 
link in one of tiddler which point to another tiddler
TW will bring it in focus and navigation is performed as you expected!

Assume now the tiddlers are small so at a time several of them are in view! 
if you click on a link points to one of these tiddler, TW
will not do anything as that tiddler is on screen! THIS IS CONFUSING!

My question is, how can change the settings if any to bring the target 
tiddler to top of view port (screen) when you click on such links!


--Mohammad

-- 
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/7261c847-8c8b-4bf3-8e17-d2fc517380ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Saving in chrome

2019-06-16 Thread BJ
Just to confirm that you can only save twc files in firefox with 
savetiddlers extension (this is due to how twc saves itself - it reads the 
last version from disk which it modifies - ff lets you read from the disk 
but not chrome ) 

all the best
BJ

On Friday, May 10, 2019 at 9:28:45 AM UTC+2, A Sklpns wrote:
>
> Hello TW friends.
> I am looking for a simple way to save both TW5 and TWC files under Google 
> Chrome.
> Something like the File Backups addon I use with Firefox (works great!).
> Tried the savetiddlers Chrome extension 
> (https://github.com/buggyj/savetiddlers) 
> 
> but most of the time it doesn't save TW5's in a Google Drive folder 
> (insufficients permissions error)
> and it never saves TWC.
> Any ideas? Is there possibly as simple a solution for Chrome as Firefox's 
> File Backups addon?
>
> Thanks in advance
> sklpns
>

-- 
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/0694e012-985d-4459-b4c7-56d8339f2bde%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Question about changing filename for static exports

2019-06-16 Thread David Gifford
YES Thanks Mark!

On Saturday, June 15, 2019 at 8:08:01 AM UTC-5, Mark S. wrote:
>
> Maybe baseFilename={{!!caption}}  ??
>
> On Saturday, June 15, 2019 at 5:40:33 AM UTC-7, David Gifford wrote:
>>
>> This is all helpful, thank you Tony and Mark.
>>
>> Mark's snippet means changing the file name every time. What I am looking 
>> for is a way to set the filenames of each tiddler by entering it into its 
>> caption field upon creation of the tiddler. That way every time I update 
>> and export the tiddler I don't have to remember what filename I gave it. It 
>> just exports to that filename automatically. So I am looking at tweaking 
>> $:/core/ui/Buttons/export-tiddler from 
>>
>> baseFilename=<> 
>>
>> to something like 
>>
>> baseFilename=<> 
>>
>> but I don't know how to write it.
>>
>> Dave
>>
>>
>>
>> On Friday, June 14, 2019 at 6:34:46 PM UTC-5, Mark S. wrote:
>>>
>>> Using Tony's helpful research, you can create a tiddler with the 
>>> following contents:
>>>
>>> <$edit-text tiddler="baseFilename" tag="input" size="20"/>
>>> <$macrocall $name="exportButton" exportFilter={{$:/temp/advancedsearch}} 
>>> lingoBase="$:/language/Buttons/ExportTiddlers/" 
>>> baseFilename={{baseFilename}}/>
>>>
>>> This gives you an input where you can specify the name of your export 
>>> file.
>>>
>>> Whatever filter you have in the advanced search will be used for the 
>>> download/export.
>>>
>>>
>>>
>>> On Friday, June 14, 2019 at 4:02:11 PM UTC-7, TonyM wrote:

 Hi David,

 I do not have time for a full answer, but so you can keep moving


- The system tag $:/tags/Exporter marks the exporters so {{
$:/tags/Exporter||$:/core/ui/TagTemplate}} is a tag pill which you 
can use to see them all
- Then read these exporters, you will note each works differently 
but typically uses a macro or template to generate what is exported
- Follow the path to see how each works, you may need to create a 
new template or macro
- The json exporter refers to jsontiddlers macro but its not well 
documented but simply generates the json file.
- The Export Button is $:/core/ui/Buttons/export-tiddler which 
call's the macro "exportButton" and exportButtonFilename defined 
in $:/core/macros/export
- Ultimately this macro is called with $param containing current 
tiddler and see "filename=" this is where you could modify it

 <$action-sendmessage $message="tm-download-file" $param=<
 > exportFilter="""$exportFilter$""" filename=<
 >/>

 Perhaps you make your own version of the above inside a button that is 
 tagged $:/tags/ViewToolbar

 I am off to "the bush" have a nice weekend.

 Regards
 Tony


 On Friday, June 14, 2019 at 10:09:46 PM UTC+10, David Gifford wrote:
>
> Bump. Two days and not a peep.
>
> On Wednesday, June 12, 2019 at 9:06:52 AM UTC-5, David Gifford wrote:
>>
>> Hi all
>>
>> Is there a way to tweak TiddlyWiki so that when exporting a tiddler 
>> it grabs a different field, say, a 'filename' field, instead of the 
>> title 
>> field, for the name of the file that is created in the export process?
>>
>

-- 
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/c47e233f-a4e5-4503-8ce6-15b0e4b0c306%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: [meta] WikiText - what type of language is it?

2019-06-16 Thread Mat
@Tony

While what you write is, of course, true, I think it is more fair to not go 
beyond the native tools provided by TW when describing what WikiText is. 
Any computer language can be anti-abstracted down to machine code but the 
point (or at least my point) is to stay in the layer we're at.

That said, maybe TW makes it unusually easy to integrate and break out of 
the immediate layer one is in compared to other "languages". I'm not 
qualified to tell.

...but on the other hand, if one insists on bringing up JS+HTML+CSS then 
what TW allows is clearly more limited since TW implements restrictions on 
what to do, especially with JS.

<:-)
 

>

-- 
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/1719ade9-3e13-4c78-a875-8b49f9f265b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] Re: Tree Macro built in core

2019-06-16 Thread Pit.W.


Am 13.06.2019 um 09:52 schrieb Jeremy Ruston:

I suspect it’s not wildly useful beyond the system tiddlers



Some useful use-cases, maybe not wildly so...

If I call <> I get a tree of my 
journal tiddlers; nice.


It might be wildly useful in *Biology*: I  want to inventorise my 
aquarium using latin nomenclature, where I have a fish named "Pisces 
Botiidae Cypriniformes Osteichthyes Botiidae Botiini Leptobotia curta"


I call the macro with : <>

One might argue that a relational Access databse can achieve the same, 
but it could not, in the same file, deal with entries like "unknown red 
fish" "decorative white stone" Task: clean the glass"


On top: If I enter one fish, all higher levels of the systemic 
nomenclature are displayed in the tree


In *History*, one could display dynasties, or the "Order of Battle" of a 
historic army, using the comma as a separator



_

Ihre E-Mail-Postfächer sicher & zentral an einem Ort. Jetzt wechseln und alte 
E-Mail-Adresse mitnehmen! https://www.eclipso.de

--
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/d0c94798-2813-c6ee-562a-30bcca0fc574%40eclipso.ch.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Saving in chrome

2019-06-16 Thread TonyM
Mark

I have not looked at the details of your PowerShell script but I have some 
thoughts on making it very efficient and perhaps easy to configure.

Where would be the best place or thread to continue that conversation?

regards
Tony

-- 
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/81aeb1da-fcde-425d-a55b-278a3be4dc3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: [meta] WikiText - what type of language is it?

2019-06-16 Thread TonyM
Some thoughts on this subject

In many ways we confuse wiki text with the macros and widgets we use to 
manipulate wiki text, tiddlers and fields further. Beyond markdown, and 
camelcase links we move away from wiki text and use macros and widgets. Then in 
many cases the macros and widgets generate wiki text that is rendered to be 
displayed. 

In many ways macros are not much more than wiki text snipits although they feel 
like more.

The thing is we can use highly customisable widgets with lots of parameters, 
write our own macros and use text references to fields, with text the default, 
to build what we want. Plugings allow us to import tiddlywiki widgets and 
macros to further enhance what we can do. 

With wikitext macros and widgets we can program what we want. There is only 
wiki text macros and widgets on top of the tiddlywiki platform that we program 
with not a programming language persay. However given we can use css and html 
as well, then if these are programming languages then we can program in them, 
or program widgets with JavaScript.

Tiddlywiki is a platform on which we can use multiple internet technologies to 
build websites and applications, serve these over http/s and includes 
server-side features.  

Tiddlywiki is programmable using these various technologies but is not a fully 
defined programming language although it approaches one. Its key is as a 
platform, it provides its own environment to handle and manipulate the objects 
it defines as save itself. Its user interface is defined within its own 
platform and data structures. All of which are ultimately presented to the 
browser as a html css JavaScript application.

Being as extensible as it is you can incorporate any technology that can be 
used in a browser as long as it conforms to the platforms requirements.

The saving mechanisiums allow tiddlywiki to save back to file or multiple 
server configurations to ensure persistence.

I think we program on top of the tiddlywiki platform, our programming is stored 
in tiddlywiki but is realised in the browser, we program on tiddlywiki in a 
range of ways but not in a tiddlywiki language. We program on not in tiddlywiki.

Regards
Tony

-- 
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/9cb8f8f4-4407-4e0d-bc60-9c419a14b052%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.