[tw] Re: [TW5] Calendars?

2017-07-24 Thread TonyM
BJ/FrD

It seemed to be using it in the latest TW5, I set up a new empty, dragged 
the plugin (not just the two listed tiddlers) and this time I am not able 
to reproduce the fault.

Thanks BJ and FrD for the alternative.

On Monday, July 24, 2017 at 7:58:20 PM UTC+10, BJ wrote:
>
> Hi Tony,
> the usage of the calendar as a diary is the at the bottom of the tiddler - 
> http://bjtools.tiddlyspot.com/#ExtendableCalendar 
> 
>
> What problems are you seeing with the plugin? (and what version are you 
> using?)
>
> cheers!
> BJ
>
> On Sunday, July 23, 2017 at 9:13:12 AM UTC+2, TonyM wrote:
>>
>> Folks,
>>
>> Jeffrey Wikinson aka buggyj's Extensible Calendar is so close to what I 
>> need, however it seems buggy in the current version of TW5 and it is not 
>> clear how I can modify it. He also mentions a Diary plugin which I can't 
>> find.
>>
>> Source http://bjtools.tiddlyspot.com/#%24%3A%2FControlPanel Plugin 
>> calendar with date formatter addons or 
>> http://bjtools.tiddlyspot.com/#ExtendableCalendar
>>
>> I want to provide an opportunity to make journal entries both in the past 
>> and future (Will be populated from paper notes), but then use broader 
>> periods as needed.
>>
>> Does anyone else know of plugins that can help?
>>
>> I would like to display calendars for any period, allow clicking a date 
>> to create a new tiddler or open an existing one with the format 
>> /0MM/0DD and idealy set tag(s)
>> I plan to use prefix to identify centuaries, decades, years and months, 
>> creating corosponding tiddlers that display list of entries below that eg 
>> Decade lists years in it, years Quarters and Months.
>> allow captions to modify the title displayed eg "/0MM/0DD Birth of 
>> Tony" in Tiddler "/0MM/0DD"
>>
>> Idealy there will be a click to create tiddlers for each decade, year, 
>> half year, quarter, month and day YYY0s, , /Q1..4, /0MM, and 
>> /0MM/0DD but it would also me helpful if each date period can have its 
>> own tags. Perhaps even week number.
>>
>> Another idea is for any given date that display if the periods that 
>> result exist (month, Qtr etc), and allow click to open or create. To do 
>> this I need to learn how to use the equivalent of Left$(n) to extract the N 
>> left characters of a current tiddlername, and use this in a create tiddler 
>> link/button) eg to create a decade YYY: a year : etc...
>>
>>
>> I understand this may need to wait until I am more expierenced to build 
>> such a solution
>>
>> Thanks in advance
>> TonyM
>>
>

-- 
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/0efb8544-6de4-499d-847e-7356ab24ac84%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to macro > var > macro ??

2017-07-24 Thread Mat
Try with the setwidget, or perhaps wikifywidget instead. The varswidget is 
not as powerful and I don't think it can handle macrocalls as arguments. 
Not sure.

<:-)

-- 
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/a6907bd2-74fd-4298-8c41-6c6a0ede3544%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Transcluding a field value, one more time

2017-07-24 Thread Mat
Hi Steve! 
That doesn't look correct to me;

\define show-field($this-field$)

what's this?

<$list 
filter="[tag[schedule-elements]each[$this-field$]sort[$this-field$]]">


Should probably not be empty rows there and the macro parameter should 
probably not be with dollars. 


<:-)

-- 
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/04a09d26-fe72-4a90-9cbf-ba4f037f240a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Topic Title and CSS

2017-07-24 Thread Mat
Yes. 

If you want the same styling applied to all titles, you can use:

.tc-title {...}


The very tricky one is how to apply it to *specific* tiddler titles. Here 
is a solution from deep in my lab drawer:

It requires that you have set *"titles to show as links"* in the 
Controlpanel. 
Then, you can do:


<$wikify name=xx text={{{ [[New Tiddler 15]] +[encodeuri[]] }}}>
.tc-tiddler-frame a[href="#<>"] { background:red }



As seen, the title must be uriencoded (e.g spaces become %20)

It's pretty cool though because you can do things like this 

.tc-tiddler-frame a[href="#<>"]:before { content:"Yo!"; position:
absolute; left:-1em; }


<:-)

-- 
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/c9ac161b-2427-477d-8b23-bb00d29f1aae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] How to macro > var > macro ??

2017-07-24 Thread Rustem
I have these macros defined

\define colorize() color:$(_c)$

\define cn()
  >>
some text
  
\end


It works if I specify the color directly

<$vars _c=red><>

But how do I specify the color using a macro? This doesn't work:

<$vars _c=<>><>

Is it possible?

Thanks.

--R

-- 
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/27582014-5db4-4705-861b-189fe27ecdda%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Transcluding a field value, one more time

2017-07-24 Thread Steven Schneider
Hi,

Can't quite get this right

In http://sunypoly-schedule-explorer.tiddlyspot.com/ the current default 
tiddler is a macro that generates a link to tiddlers based on values of a 
field in a set of tiddlers. So, in this case, a schedule, <$macrocall 
$name="show-field" this-field="room"/> --  all possible values for room are 
collected and put in a button; clicking on the button creates a tiddler 
that is supposed to be room-{{!!room}}.  It's close -- I'm getting exactly 
that: *room-{{!!room}}*. I'd like to transclude the value of room into the 
tiddler title, of course. 

Any help, much appreciated. Thanks!

(I find transcluding field values rather difficult, and I seem to do a lot 
of it these days...)

//steve.



\define getFieldValue() {{!!$(this-field)$}}


\define makeTiddlerName() $(this-field)$-$(this-value)$


\define show-field($this-field$)


<$list 
filter="[tag[schedule-elements]each[$this-field$]sort[$this-field$]]">
currentTiddler: <$link><>
<$vars this-field=$this-field$ >
<$set name=this-value value=<>>
1 this-field: <>
2 this-value: <>
3 makeTiddlerName: <>
<$button>
<>
<$action-setfield $tiddler=<> field-name=<> 
field-value=<> role="field-value" 
orig-tag="schedule-elements"/>
<$action-navigate $to=<>/>

\end

<$macrocall $name="show-field" this-field="room"/>


-- 
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/761ff08f-9eca-4758-a0d3-e9820bb2d64d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 can't pass a tiddler w/ spaces as a macro param

2017-07-24 Thread mystikite
Any Suggestions? Please? :)

On Saturday, July 22, 2017 at 12:38:45 PM UTC-4, myst...@gmail.com wrote:
>
>
> I saw a similar post addressing this for $variable$ types.
> My problem is that i am using <$set> w/ a  filter to get the tiddler title 
> based on a name passed to it, which restricts me to the <> usage.
>
> The below macro works great if the title passed is a single word such as 
> 'Alarmed'. the modal will pop up w/ the tiddler.
> If i pass a mult-word title such as "Alarmed and Dangerous" the modal will 
> fail.
>
> Any suggestions much appreciated.
>   --Kenn
>
>
> \define modal_link(title:none)
> <$set name="tit" value=$title$>
> <$set name="myTid" filter='[!is[system]regexp:]'>
> <$button>
> <$action-sendmessage $message="tm-modal" *$param=<>*/>
> <>
> 
> 
> 
> \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/18bcd60b-8713-4adc-9b67-5977ffad6dc2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Tiddler's subtitle modification

2017-07-24 Thread Marc-Olivier Picard
Hi everyone,

I need your help to modify the subtitle to make it show the modification 
date in parentheses, after the creation date, *only if* the tiddler has 
been modified after its creation. I know I have to modify the ShadowTiddler 
*$:/core/ui/ViewTemplate/subtitle* 
,
 
but I don't know what to change.

-- 
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/7bd9f855-4966-474f-819d-e4a04b10268e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Topic Title and CSS

2017-07-24 Thread TW Smith
Hi all,

So, I was playing with CSS. I identified that I could apply CSS styles to 
h1, in the way you would expect.

However, is there a way to apply styles to the title of the tiddler that 
displays at the top of the tiddler, like a heading.

Cheers,

Sean

-- 
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/f171b670-ac5a-4e42-a395-152dc0eeefa8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [NoteSelf] Bug fixes and (cool) new features

2017-07-24 Thread Richard Campbell
No worries - great ideas take time.  I think it's evident that there's a 
great deal of interest in a cloud-based tiddlywiki that has some aspects of 
user control. Having the data be in a cloud store "I" own is a great idea, 
just that it's non-trivial to do with the current set of cloud 
storage/database options. Seems like plenty of people here willing to help 
out, test out, and support this work.


On Monday, July 24, 2017 at 1:44:05 PM UTC-4, Danielo Rodríguez wrote:
>
> I'm really sorry about the problems all of you are experiencing. I never 
> suffered from any of those, therefore I never thought about ow to solve 
> such problems. My intention was always to provide a service, not a tool. 
> Users should only be required to login at NoteSelf service and nothing else 
> , we will take care of all the behind the scenes (like any other service ). 
> However I also wanted to provide a DIY option, and since that was the 
> easiest I initially released that. Sandly I never had the time to implement 
> the service, and that's why so many people is confused trying to try the 
> DIY solution. 
> I still want to provide such service, but until that arrives I want to 
> apologise for all those confused users. 
>
> Hope the community (and me from time to time in small spare time ) can 
> help you to iron the path.
>
> Sincerely
>
>

-- 
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/44b52305-c7bf-41a0-a94a-8fd534a716f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Is there a way to build a viewTemplate for none-existing transclusions?

2017-07-24 Thread Jan

Hi!
Is there a way to build a viewTemplate for replacing none-existing 
transclusions with a template?
For my dialogue-editor (storywriting.tiddlyspot.com) I would like to 
replace {{non-existing}} by the title of the non-existing transclusion, 
preferably in small caps.
Could there be a way to get this working? Or would it be necessary to 
modify the transclude.js widget.


Thanks for help
 Jan

--
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/59767767.30202%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread Eneko Gotzon
On Mon, Jul 24, 2017 at 1:33 PM, Jeremy Ruston 
wrote:

> I’ve been studying the “Downloads Overwrite Existing Files” sample…
>>
>
​Thank all you ​for all your work.

​Take care.
-- 
Eneko Gotzon Ares
enekogot...@gmail.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/CAEV4i4U65i9%2BXXvpOgdv%3D%3DrU_CJM%2BfNXRGuqrPXgDR-djcM_kA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] The TiddyWebAdaptor expects to be running on a root URL

2017-07-24 Thread Captain Packers
Can anyone verify whether or not this is still an issue?

This was from an old 
post: https://github.com/Jermolene/TiddlyWiki5/issues/92

I'm trying to set up a proxy pass to a tiddlywiki, but I would prefer that 
it not be running at the site root. Would prefer running at site.net/tw, 
for example, but all my efforts to direct it to a subdomain or subdirectory 
yield page can't be found errors.

-- 
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/2f846498-3db4-4424-a872-12929d97dae0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] First pass at a Powershell launch script file for TW files

2017-07-24 Thread 'Mark S.' via TiddlyWiki
The default mechanism for saving in both Firefox and Chrome is to write out 
files with names like

tw_fun(5).html
tw_fun(6).html
tw_fun(7).html
tw_fun(8).html

This doesn't typically put your files where you want them, or with the name 
that you want them.

Since TiddlyFox is going away, it occurred to me that one way around this 
is to use a script file to pick out the latest tw file and launch it for 
you. It turns out that the powershell (tm) code is pretty simple (so far).

To run this, you need Powershell, of course, which I believe comes standard 
with Windows these days.

I put a file, launch_tw.ps1 in the same directory as the default downloads:

param([string]$stem="foo", [string]$dir="")
$copyme = ls $stem*.html | sort LastWriteTime | select -last 1
$copyme = $copyme.FullName
Copy-Item $copyme -Destination $dir\$stem.html
Invoke-Item $dir\$stem.html

Then, for each TW file I want to launch I put a batch file (e.g. 
"launch_tw_fun.bat") in the same directory:

powershell -executionpolicy bypass -File .\launch_tw.ps1 -stem "tw_fun" -dir 
c:\temp\twtests

The bt file indicates the stem name of the target file and the directory 
where to put the selected file. AFAIK It's necessary to use a bt file to 
launch the ps file because there is otherwise too many security 
restrictions on ps files. But perhaps power users would have a better way.

You can copy the batch file from explorer and make a shortcut to it on your 
desktop for easy access.

Then, to start a session, you double click on the shortcut and the TW file 
comes up in your default browser. You save the same way you've always done 
using the default mechanism.

Although this was done with powershell, I'm sure the same thing could be 
worked out in script files for other platforms.

I haven't tried or worked out yet what happens if you have file and 
directory names with spaces. One thing at a time.

This version doesn't delete anything, so it's up to the user to 
occasionally clean up their download directory.

Stem names need to be unique. If you have tw_fun.pdf and tw_fun.html there 
is a possibility that your browser will launch a PDF file (if the PDF 
happens to be newer).

If you try this, remember it's all experimental. Be sure to make backups!

Thoughts?
Mark

-- 
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/0e7eba7f-e974-4e5f-bed0-e7abf45d7689%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Merging / Combining Tiddlers

2017-07-24 Thread 'Mark S.' via TiddlyWiki
By inefficient, are you thinking of writing code for each field? I'm pretty 
sure you can use a series of nested list statements to do most of the heavy 
lifting. Although it's a lot of records, it might still be pretty fast.

Good luck,
Mark

On Monday, July 24, 2017 at 12:04:38 PM UTC-7, Steven Schneider wrote:
>
> Hi, I've imported a rather dumb data set, which for various reasons came 
> in three xlsx files. 
>
> I know have three tiddlers (TiddlerA, TiddlerB, TiddlerC) for each record, 
> which share a common ID field, and have distinct other fields.
>
>
> How do I combine the three tiddlers into a single (fourth) tiddler that 
> contains the fields in Tiddler A, Tiddler B and Tiddler C?
>
> I seems inefficient to list for all Tiddler A, find the three matches on 
> ID, and then use action set-field to set individual fields in a newly 
> created Tiddler D. Might take a while too, with 175 fields and 1500 records 
> (4500 tiddlers). 
>
> Thanks!
>
> //steve.
>

-- 
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/433d1619-2895-4364-bbae-2c2fb9b2825d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Merging / Combining Tiddlers

2017-07-24 Thread Steven Schneider
Hi, I've imported a rather dumb data set, which for various reasons came in 
three xlsx files. 

I know have three tiddlers (TiddlerA, TiddlerB, TiddlerC) for each record, 
which share a common ID field, and have distinct other fields.


How do I combine the three tiddlers into a single (fourth) tiddler that 
contains the fields in Tiddler A, Tiddler B and Tiddler C?

I seems inefficient to list for all Tiddler A, find the three matches on 
ID, and then use action set-field to set individual fields in a newly 
created Tiddler D. Might take a while too, with 175 fields and 1500 records 
(4500 tiddlers). 

Thanks!

//steve.

-- 
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/d9c03dc5-9b42-4e87-9f5c-45ddea3fb399%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [NoteSelf] Bug fixes and (cool) new features

2017-07-24 Thread Danielo Rodríguez
I'm really sorry about the problems all of you are experiencing. I never 
suffered from any of those, therefore I never thought about ow to solve such 
problems. My intention was always to provide a service, not a tool. Users 
should only be required to login at NoteSelf service and nothing else , we will 
take care of all the behind the scenes (like any other service ). However I 
also wanted to provide a DIY option, and since that was the easiest I initially 
released that. Sandly I never had the time to implement the service, and that's 
why so many people is confused trying to try the DIY solution. 
I still want to provide such service, but until that arrives I want to 
apologise for all those confused users. 

Hope the community (and me from time to time in small spare time ) can help you 
to iron the path.

Sincerely

-- 
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/42045155-20ab-43ac-80c4-357bf6e2b657%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Saving in Safari

2017-07-24 Thread Ton Gerner
Hi Josiah & Mark,

Most of my TWs are scattered over a separate HD and/or Dropbox.
In Dropbox I use a TW5 folder (and a few subfolders)
Mainly I use Firefox with TiddlyFox. For uploading my guides to TiddlySpot 
I use Chrome.
Sometimes I use TiddlyDesktop (handy to have a different TW open next to 
the one in Firefox) and node.js (I still don't see the benefits for my 
normal use).

In short: the Firefox/Tiddlyfox combination works the best for me.

I just tried Chrome with "Downloads Overwrite Existing Files" to see if I 
could use another directory than the download directory (where Mark had his 
doubts about).
I changed the download location to my TW5 Dropbox folder which than works 
for (auto)saving TW.
For sure it is only handy when you stick to one folder otherwise you cannot 
use autosave in Chrome.

Cheers,

Ton

-- 
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/cfd5fde5-17d3-4a45-b23f-edcbb869b2bf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Saving in Safari

2017-07-24 Thread 'Mark S.' via TiddlyWiki
That's a good idea too. Unfortunately, the only solutions I could find for 
windows so far are commercial. 

Mark

On Monday, July 24, 2017 at 8:46:15 AM UTC-7, Sergei Gerasenko wrote:
>
> Thanks for the responses. I’m now testing a solution with Hammerspoon 
> (which works only on Mac), but basically it allows me to watch the 
> Downloads directory and run a custom action. The action can be renaming 
>  those -1,-2 files or copying the latest one somewhere.
>
> Before, I was using Chrome and an extension to overwrite previously 
> downloaded files.
>
> On Jul 24, 2017, at 4:16 AM, @TiddlyTweeter  > wrote:
>
> Ciao Sergei
>
> As far as I am aware, Safari has never had "overwrite saving". To do it 
> you'd need an add-on for TiddlyWiki and Safari hasn't got one.
>
> In addition you should note that ALL standard browsers will cease simple 
> overwrite saving by early 2018.
>
> To understand what is happening read: 
> https://groups.google.com/forum/#!msg/tiddlywiki/4yyMPH-0hXg/SjIOy7aeAgAJ
>
> There are a number of solutions. But if you are an ordinary user then 
> switching to Firefox is likely you best bet at the moment.
>
> Regards
> Josiah
>
> Sergei Gerasenko wrote:
>>
>> The problem is that Safari appends -1, -2, etc on each save, which is bad 
>> when working with TiddlyWiki. I would like the original wiki file to be 
>> overwritten.
>>
>
> -- 
> You received this message because you are subscribed to a topic in the 
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/tiddlywiki/yDPm_J7EpZ4/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> tiddlywiki+...@googlegroups.com .
> To post to this group, send email to tiddl...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/42d904a2-97f6-4be3-b6c6-4ad1985670c3%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/78a9e6ae-8585-4cad-8916-0da8473e4902%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Saving in Safari

2017-07-24 Thread Sergei Gerasenko
Thanks for the responses. I’m now testing a solution with Hammerspoon (which 
works only on Mac), but basically it allows me to watch the Downloads directory 
and run a custom action. The action can be renaming  those -1,-2 files or 
copying the latest one somewhere.

Before, I was using Chrome and an extension to overwrite previously downloaded 
files.

> On Jul 24, 2017, at 4:16 AM, @TiddlyTweeter  wrote:
> 
> Ciao Sergei
> 
> As far as I am aware, Safari has never had "overwrite saving". To do it you'd 
> need an add-on for TiddlyWiki and Safari hasn't got one.
> 
> In addition you should note that ALL standard browsers will cease simple 
> overwrite saving by early 2018.
> 
> To understand what is happening read: 
> https://groups.google.com/forum/#!msg/tiddlywiki/4yyMPH-0hXg/SjIOy7aeAgAJ
> 
> There are a number of solutions. But if you are an ordinary user then 
> switching to Firefox is likely you best bet at the moment.
> 
> Regards
> Josiah
> 
> Sergei Gerasenko wrote:
> The problem is that Safari appends -1, -2, etc on each save, which is bad 
> when working with TiddlyWiki. I would like the original wiki file to be 
> overwritten.
> 
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/tiddlywiki/yDPm_J7EpZ4/unsubscribe 
> .
> To unsubscribe from this group and all its topics, 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/42d904a2-97f6-4be3-b6c6-4ad1985670c3%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/D0BA4910-D35B-413D-A8F7-2B95E9976724%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread 'Mark S.' via TiddlyWiki
Hi Ton,

Not sure what you're saying. Yes, you can change the download directory. 
But I keep my TW files in directories far away from the download directory. 
So I would either have to change the downloads directory whenever using TW 
or constantly be moving downloaded files out of the TW directory. Or use 
the save-as option, in which case I'll probably turn off auto-save ... and 
occasionally lose stuff.

"I guess every form of refuge has it's price" - Eagles - Lyin' Eyes

Thanks,
Mark


On Monday, July 24, 2017 at 8:22:16 AM UTC-7, Ton Gerner wrote:
>
> Hi Mark & All,
>
> > If it only saves to a sub-directory of the downloads directory, that 
> would be inconvenient.
>
> Linux Mint 17.3, Chrome 59, Extension "Downloads Overwrite Existing Files".
>
> Chrome saves to my own directory set in Advanced settings.
>
> Cheers,
>
> Ton
>
>
>
>

-- 
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/fc698497-54db-4fc8-bc09-4d9baa7f2a42%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread @TiddlyTweeter
Ciao Ton

If you have only one TW, or are happy to have them all in one dir, this 
will work great.

I sometimes feel spoiled with Tiddlyfox in FF with 7 TW all in very 
different places. But *SHOULD* I?

Or should I feel pissed-off that in the future keeping MY structure is 
gonna become a PITA?

Josiah :-)

Ton Gerner wrote:
>
> Chrome saves to my own directory set in Advanced settings.
>

-- 
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/890d16a5-5bb5-48a6-b918-c0eb86affed4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread @TiddlyTweeter
Ciao Mark S. 

Be glad you can get it to save to a (sort-of) user designated directory ... 
the last implementation *only* allowed saving to the default download 
directory. I'm referencing here the actual add-on at Chrome Webstore 

 
... I'm not sure what the tech underneath permits in potentio.

The big issue with Chromelonger term is whether its going to dump Apps ... 
which its says it *IS* going to do ... provisionally early 2018. The 
problem is that APIs on WebExtensions--i.e. what lives on--are essentially 
directly, at the moment, seriously antipathetic to direct overwrite saving 
of ANY kind. That's my understanding. I may be wrong, I HOPE I am, but I 
never seen anyone assert otherwise.

Josiah

Mark S. wrote:
>
> The current download saver promises to remember the last download 
> directory. But the chrome extensions may limit you to the download 
> directory and subdirectories. 
>

-- 
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/bbac41c0-09a2-4a14-bb03-0829c19d4757%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread Ton Gerner
Hi Mark & All,

> If it only saves to a sub-directory of the downloads directory, that 
would be inconvenient.

Linux Mint 17.3, Chrome 59, Extension "Downloads Overwrite Existing Files".

Chrome saves to my own directory set in Advanced settings.

Cheers,

Ton



-- 
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/3b374496-2043-4175-8805-8432cdbbba00%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread 'Mark S.' via TiddlyWiki
The current download saver promises to remember the last download 
directory. But the chrome extensions may limit you to the download 
directory and subdirectories. At least one of those in the link says ..

Absolute paths, empty paths, and paths containing back-references ".." will 
be ignored.
  

If it only saves to a sub-directory of the downloads directory, that would 
be inconvenient.

I'm still wondering if a more natural solution might be a shell script 
(different script for each platform) that would find the most recent TW 
file (based on stem name), save it to the the target working directory, and 
launch it. For the rest of the session, the user would work and save as 
usual.

Mark


-- 
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/f396e5f6-c3e2-4971-b4a3-2323ff632a09%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Isn't this a Developer Group (DIY, at least) in partial denial it is?

2017-07-24 Thread @TiddlyTweeter
I know that TiddlyWikiDev exists. I'm cognisant of GitHub.

I've been looking back over posts here, though. A lot look pretty advanced 
stuff. Well at least I don't know what half of them are talking about :-).

We are friendly. But I suspect we are somewhat intimidating for April 
MacKenzie and her followers.

There also seems to be virtually NO MARKETING of TW. No FAQ. No 
ADVERTISEMENTS. Nothing GENERAL to entice browsing visitors to try 
TiddlyWiki. *No regular PINNED advice for BEGINNERS*.

A little too much of an in-group. But THIS place IS the biggest public 
forum about TiddlyWiki. I am sure many people come visit but don't take the 
plunge. The waters look can look deep.

Just thoughts
Josiah






-- 
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/f8fe6bd6-008c-4339-9e2b-3e2e5a09ab00%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread Jeremy Ruston
> It’s not quite that bad: TiddlyFox will stop working in the latest versions 
> of Firefox, but those download overwriting plugins will still work.
> 
> 
> Do you have links for those plugins?, that are tested with latest FF or 
> nightly FF?

I’ve been focusing on Chrome extensions, on the basis that Firefox is striving 
for compatibility; developing against Chrome would appear to give us the 
broadest reach. I’ve been studying the “Downloads Overwrite Existing Files” 
sample, which appears at the bottom of this listing:

https://developer.chrome.com/extensions/samples#search:downloads 


Best wishes

Jeremy


> 
> -m
> 
> -- 
> 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/ec96ab95-05dd-4d60-b345-4e85b65674c6%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/B65F0F32-1E60-4323-9F47-63F1D9437B5C%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread @TiddlyTweeter
Ciao PMario & Jeremy

I believe Jeremy was referring to the Chrome Overwrite Saver 


IF its a Web Extension that would be good news. *If its an "app", it too 
will be retired if Google go ahead with their 2018 plans*.

My overall feel is that we don't need to panic. In fact TiddlyWiki 
stalwarts will do fine with work like TiddlyServer & Noteself shaping up, 
as well as other approaches emerging.

HOWEVER, for average, normal users, the increasing difficultly of simple 
overwrite saving is, I think, a big issue, that will grow. I think it 
limits uptake of TW. Which is a great shame IMO. 

Josiah 

PMario wrote:
>
> Jeremy Ruston wrote:
>>
>> TiddlyTweeter wrote: In addition you should note that ALL standard 
>> browsers will cease simple overwrite saving by early 2018.
>>
>> It’s not quite that bad: TiddlyFox will stop working in the latest 
>> versions of Firefox, but those download overwriting plugins will still work.
>>
>
> Do you have links for those plugins?, that are tested with latest FF or 
> nightly FF?
>

-- 
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/a5c9f109-1b16-4b5a-b8a0-4ef777fc9e8a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread PMario
On Monday, July 24, 2017 at 11:22:25 AM UTC+2, Jeremy Ruston wrote:
>
> In addition you should note that ALL standard browsers will cease simple 
> overwrite saving by early 2018.
>
>
> It’s not quite that bad: TiddlyFox will stop working in the latest 
> versions of Firefox, but those download overwriting plugins will still work.
>


Do you have links for those plugins?, that are tested with latest FF or 
nightly FF?

-m

-- 
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/ec96ab95-05dd-4d60-b345-4e85b65674c6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Calendars?

2017-07-24 Thread BJ
Hi Tony,
the usage of the calendar as a diary is the at the bottom of the tiddler - 
http://bjtools.tiddlyspot.com/#ExtendableCalendar

What problems are you seeing with the plugin? (and what version are you 
using?)

cheers!
BJ

On Sunday, July 23, 2017 at 9:13:12 AM UTC+2, TonyM wrote:
>
> Folks,
>
> Jeffrey Wikinson aka buggyj's Extensible Calendar is so close to what I 
> need, however it seems buggy in the current version of TW5 and it is not 
> clear how I can modify it. He also mentions a Diary plugin which I can't 
> find.
>
> Source http://bjtools.tiddlyspot.com/#%24%3A%2FControlPanel Plugin 
> calendar with date formatter addons or 
> http://bjtools.tiddlyspot.com/#ExtendableCalendar
>
> I want to provide an opportunity to make journal entries both in the past 
> and future (Will be populated from paper notes), but then use broader 
> periods as needed.
>
> Does anyone else know of plugins that can help?
>
> I would like to display calendars for any period, allow clicking a date to 
> create a new tiddler or open an existing one with the format /0MM/0DD 
> and idealy set tag(s)
> I plan to use prefix to identify centuaries, decades, years and months, 
> creating corosponding tiddlers that display list of entries below that eg 
> Decade lists years in it, years Quarters and Months.
> allow captions to modify the title displayed eg "/0MM/0DD Birth of 
> Tony" in Tiddler "/0MM/0DD"
>
> Idealy there will be a click to create tiddlers for each decade, year, 
> half year, quarter, month and day YYY0s, , /Q1..4, /0MM, and 
> /0MM/0DD but it would also me helpful if each date period can have its 
> own tags. Perhaps even week number.
>
> Another idea is for any given date that display if the periods that result 
> exist (month, Qtr etc), and allow click to open or create. To do this I 
> need to learn how to use the equivalent of Left$(n) to extract the N left 
> characters of a current tiddlername, and use this in a create tiddler 
> link/button) eg to create a decade YYY: a year : etc...
>
>
> I understand this may need to wait until I am more expierenced to build 
> such a solution
>
> Thanks in advance
> TonyM
>

-- 
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/1fbe17c2-a5f8-40c7-b233-0eb35902338a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Saving in Safari

2017-07-24 Thread Jeremy Ruston
Until sometime in the last few months, Safari didn’t support directly 
downloading changes; instead one had to right click and save a base64 generated 
URL. Safari does now handle the downloads properly, so the standard HTML5 
fallback saver now works OK on Safari.

> As far as I am aware, Safari has never had "overwrite saving". To do it you'd 
> need an add-on for TiddlyWiki and Safari hasn't got one.

It wouldn’t need to be a TiddlyWiki-specific addon. There are addons for Chrome 
that force downloads to overwrite the previous file, and these work well with 
TiddlyWiki.

> In addition you should note that ALL standard browsers will cease simple 
> overwrite saving by early 2018.

It’s not quite that bad: TiddlyFox will stop working in the latest versions of 
Firefox, but those download overwriting plugins will still work.

Best wishes

Jeremy.



> 
> To understand what is happening read: 
> https://groups.google.com/forum/#!msg/tiddlywiki/4yyMPH-0hXg/SjIOy7aeAgAJ
> 
> There are a number of solutions. But if you are an ordinary user then 
> switching to Firefox is likely you best bet at the moment.
> 
> Regards
> Josiah
> 
> Sergei Gerasenko wrote:
> The problem is that Safari appends -1, -2, etc on each save, which is bad 
> when working with TiddlyWiki. I would like the original wiki file to be 
> overwritten.
> 
> -- 
> 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/42d904a2-97f6-4be3-b6c6-4ad1985670c3%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/A7A21CF1-3218-4C89-9B96-3DAEFE355A45%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Saving in Safari

2017-07-24 Thread TonyM
Sergie,

I have not attempted to get tiddlywiki to save on safarie but I have just 
installed firefox and the plugin tiddlyfox on my mac mini and that works. 
Also I installed node.js on the MAC and that should work from within safari,

Regards
Tony

On Monday, July 24, 2017 at 1:04:40 AM UTC+10, Sergei Gerasenko wrote:
>
> The problem is that Safari appends -1, -2, etc on each save, which is bad 
> when working with TiddlyWiki. I would like the original wiki file to be 
> overwritten.
>
> On Sunday, July 23, 2017 at 10:02:43 AM UTC-5, Sergei Gerasenko wrote:
>>
>> Hi,
>>
>> I'm running Safari 10.1.1. According to this Saving on Safari 
>> , I should 
>> get a dialog when trying to save on Safari, I don't :( Sorry if this is an 
>> FAQ.
>>
>> Thanks,
>>   Sergei
>>
>

-- 
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/a13f501e-ca0c-44c4-8e6a-f9141ddeadb3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.