[tw5] Re: How to launch batch scripts from TiddlyDesktop in linux?

2021-01-28 Thread Dragon Cotterill
Nah, using xgb-mime uninstall simply removes the actual software that 
changes the mime-types. Does nothing to remove the associations.
As you say, delete the entry from the mimeapps.list and it will stop the 
association (after a re-boot that is).

My warning about hackers is that the action can execute a script. Depending 
on how your script is written it may be possible to have very unintended 
consequences with allowing scripts to be run direct from a URL. The changes 
of this happening are extremely low though as the hacker will need to know 
what mime type and protocol you chose.

As to node.js, thats an whole 'nother kettle of fish.

On Thursday, 28 January 2021 at 03:18:48 UTC Mark S. wrote:

> Thanks Dragon for the reply!
>
> It doesn't work inside a node.js instance, but then I'm not sure it was 
> supposed to. It does work from TiddlyDesktop, so that's great!
>
> Re security, how do I back out these changes? It looks like maybe I just 
> have to delete a line from ./.config/mimeapps.list ?? Otherwise, all the 
> instructions talk about using xgb-mime uninstall, but I'm not sure that's 
> the same thing since I didn't use xgb-mime install in the first place.
>
> Also, if it can only be invoked from something like TiddlyDesktop running 
> as user, how would the hacker gain access? Also, if someone can write to my 
> drive and change the script, haven't I already been hacked? Just trying to 
> understand the issues.
>
> Many thanks again -- this was definitely not intuitive !
>
> On Wednesday, January 27, 2021 at 10:47:15 AM UTC-8 dragon.c...@gmail.com 
> wrote:
>
>> Welcome to the wonderful world of Security Vulnerabilities and 
>> Work-arounds. Don't worry, this is my job.
>>
>> OK, you need to register a new URL scheme handler. First create a Desktop 
>> Entry which specifies the mime-type. For example:
>>
>> [Desktop Entry]
>> Type=Application
>> Name=TW Bash Script
>> Exec=twscript.sh %u
>> StartNotify=false
>> MimeType=x-scheme-handler/twscript;
>>
>> Note that the %u passes the URL (eg. twscript://parameters%20here ) as a 
>> single parameter, according to the Desktop Entry Specification. 
>> https://specifications.freedesktop.org/desktop-entry-spec/latest/
>>
>> Once you have created this Desktop Entry and installed it (put it in the 
>> local system applications directory ( ~/.local/share/applications/ or 
>> /usr/share/application/ ) then you must register the application with 
>> the MIME type (assuming you had named your Desktop Entry twscript.desktop
>>
>> xdg-mime default twscript.desktop x-scheme-handler/twscript
>>
>> Any script can then be added to the twscript.sh (make sure it's 
>> executable of course) and you can parse parameters just as any other 
>> script. The script should be placed anywhere in your executable path 
>> ~/.local/bin for example.
>>
>> In the twscript.sh you'll have to add whatever parsing you need. You 
>> can't run separate scripts, but parameters are passed and can be checked 
>> and dealt with as appropriate.
>>
>> Now, when an application finds the URL twscript:// it knows exactly what 
>> to do with it.
>>
>> *WARNING! This will make your system vulnerable to anybody who knows the 
>> MIME type that you have used. They could create a script which would 
>> execute on your computer. I would advise against this, but there you go.*
>>
>> Have fun,
>>
>> Dragon.
>> On Saturday, 23 January 2021 at 19:19:16 UTC Mark S. wrote:
>>
>>> Thanks for replying! It does have the correct shebang, and runs fine 
>>> from the command line. If I could include spaces in the file url, then I 
>>> could run "/usr/bin/sh /path/to/my/script.sh". But I I don't know how to do 
>>> that in a url line without converting to to %20 , which the OS wouldn't 
>>> understand.
>>>
>>> On Saturday, January 23, 2021 at 10:04:23 AM UTC-8 jwd wrote:
>>>
 What you may be looking for is the correct "Shebang 
 " line at the top of the 
 script that determines the interpreter to use (assuming the executable bit 
 has been set.)

 Typically I would use something like
 #!/usr/bin/env bash
 or, if you want to be specific
 #!/path/to/your/systems/bash

 The former will use the bash executable found first in the PATH of the 
 environment of the TiddlyDesktop process; the latter would be preferred 
 unless the script might run on systems where the path to the interpreter 
 my 
 differ, e.g., Macs have an old version of bash by default; while different 
 Linux distributions' bash may be in /bin or /usr/bin.

 HTH
 On Friday, January 22, 2021 at 5:14:22 AM UTC-5 TiddlyTweeter wrote:

> Ciao Mark S.
>
> I really looked into it. TBH I can't truthfully reply to your simple 
> question.
>
> Background: I using (mainly) Timimi to launch from TW (it is fairly 
> complex & now retired in the recent version); TiddlyDesktop (fussy, 
> mainly 
> because 

[tw5] Re: How to launch batch scripts from TiddlyDesktop in linux?

2021-01-27 Thread Dragon Cotterill
Welcome to the wonderful world of Security Vulnerabilities and 
Work-arounds. Don't worry, this is my job.

OK, you need to register a new URL scheme handler. First create a Desktop 
Entry which specifies the mime-type. For example:

[Desktop Entry]
Type=Application
Name=TW Bash Script
Exec=twscript.sh %u
StartNotify=false
MimeType=x-scheme-handler/twscript;

Note that the %u passes the URL (eg. twscript://parameters%20here ) as a 
single parameter, according to the Desktop Entry 
Specification. https://specifications.freedesktop.org/desktop-entry-spec/latest/

Once you have created this Desktop Entry and installed it (put it in the 
local system applications directory ( ~/.local/share/applications/ or 
/usr/share/application/ ) then you must register the application with the 
MIME type (assuming you had named your Desktop Entry twscript.desktop

xdg-mime default twscript.desktop x-scheme-handler/twscript

Any script can then be added to the twscript.sh (make sure it's executable 
of course) and you can parse parameters just as any other script. The 
script should be placed anywhere in your executable path ~/.local/bin for 
example.

In the twscript.sh you'll have to add whatever parsing you need. You can't 
run separate scripts, but parameters are passed and can be checked and 
dealt with as appropriate.

Now, when an application finds the URL twscript:// it knows exactly what to 
do with it.

*WARNING! This will make your system vulnerable to anybody who knows the 
MIME type that you have used. They could create a script which would 
execute on your computer. I would advise against this, but there you go.*

Have fun,

Dragon.
On Saturday, 23 January 2021 at 19:19:16 UTC Mark S. wrote:

> Thanks for replying! It does have the correct shebang, and runs fine from 
> the command line. If I could include spaces in the file url, then I could 
> run "/usr/bin/sh /path/to/my/script.sh". But I I don't know how to do that 
> in a url line without converting to to %20 , which the OS wouldn't 
> understand.
>
> On Saturday, January 23, 2021 at 10:04:23 AM UTC-8 jwd wrote:
>
>> What you may be looking for is the correct "Shebang 
>> " line at the top of the 
>> script that determines the interpreter to use (assuming the executable bit 
>> has been set.)
>>
>> Typically I would use something like
>> #!/usr/bin/env bash
>> or, if you want to be specific
>> #!/path/to/your/systems/bash
>>
>> The former will use the bash executable found first in the PATH of the 
>> environment of the TiddlyDesktop process; the latter would be preferred 
>> unless the script might run on systems where the path to the interpreter my 
>> differ, e.g., Macs have an old version of bash by default; while different 
>> Linux distributions' bash may be in /bin or /usr/bin.
>>
>> HTH
>> On Friday, January 22, 2021 at 5:14:22 AM UTC-5 TiddlyTweeter wrote:
>>
>>> Ciao Mark S.
>>>
>>> I really looked into it. TBH I can't truthfully reply to your simple 
>>> question.
>>>
>>> Background: I using (mainly) Timimi to launch from TW (it is fairly 
>>> complex & now retired in the recent version); TiddlyDesktop (fussy, mainly 
>>> because it is Chrome inside?); BobEXE (very flexible on scripting; best of 
>>> the batch; but overkill for most of my limited needs).
>>>
>>> Outcome: too many variants to address your basic query simply.
>>>
>>> Best wishes
>>> TT
>>> On Monday, 18 January 2021 at 19:30:32 UTC+1 Mark S. wrote:
>>>
 I don't suppose you remember if there was a way to insert spaces? A sh 
 script should always know to run itself, but if I could specify 
 "/usr/bin/bash myshellscript.sh " that should force the system to 
 invoke it correctly.

 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3e0ec1ac-0e8a-406b-8313-f8196ff262a5n%40googlegroups.com.


[tw5] Re: TiddlyWiki Hangout #107 with Matt Lauber and Reece Shaw

2020-06-30 Thread Dragon Cotterill
I have built a TW explaining all the rules, characters, skill and 
attributes for playing my MUD game. The game itself is not finished, it's 
still very much a work-in-progress, but the wiki makes organising it so 
much easier. Which is the point of any TW... it's versatile and can be used 
for pretty much anything.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1d79779c-7f63-4620-a326-c6feaba0o%40googlegroups.com.


[tw5] Re: Personal News

2020-05-18 Thread Dragon Cotterill
As somebody who is on the Extremely Vulnerable list, I can sympathise with 
your situation. I really wish you a full and speedy recovery.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a2ccb8fa-adde-4495-aa41-5d7bf46ffaf4%40googlegroups.com.


[tw5] Re: Reviving TiddlyWiki Hangouts

2020-05-12 Thread Dragon Cotterill
I know that I'm late to the nomination party, but I'd really like to hear 
the point of views of people who remain "faithful" to TWC. My nomination 
would have to be Yakov and his continuing superb work in that area.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a1552d3d-bbe9-4e76-bb96-71e4df032423%40googlegroups.com.


[tw5] Re: Encryption & data accessibility question

2019-09-02 Thread Dragon Cotterill

>
> However, since the html source appears to remain unchanged once encryption 
> password has been provided and tiddlers were decrypted, I can only assume 
> that all now-decrypted tiddler content has been loaded as plaintext into 
> RAM or some kind of browser storage, is this correct?
>
The encrypted contents are "unlocked" when the password is supplied. As I 
understand it, this is done when the contents are displayed in the River, 
when on the screen. The original tiddler is still encrypted. So if you save 
the TW then the contents are saved in an encrypted format. (NB. I've not 
actually checked the various encryption plugins other than a cursory 
glance.)
 

> My second question then is, how vulnerable would this content be to any 
> form of hijacking/extracting as plaintext once TiddlyWiki decryption 
> password has been provided?
>
Once the password has supplied then the whole thing is wide open anyway. 
Sneaky javascript added to any plugin can grab said contents and offload it 
to wherever necessary.

If you are looking for a fully encrypted and locked system, then I'm afraid 
TW is not it. You'd need proper signing of all the included contents to 
really make it secure, and even then you still couldn't guarantee it. At 
best I consider TW encryption as a way of preventing casual viewing of the 
entries. It is possible to create a "brute force" plugin which can sit and 
attack any given tiddler once loaded up in the browser. It might take a 
while, but if you feed it something like "rockyou" then you pretty much hit 
the majority of passwords.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0ae12cac-ddcc-45c9-83ec-908ddde7f041%40googlegroups.com.


[tw5] Re: Can I request wiki for "Henley", "Brexit", "Trump", "Hungarian Cinema" ...

2019-08-28 Thread Dragon Cotterill
Nothing a quick search won't find.

https://groups.google.com/forum/#!topic/tiddlywiki/-Zihuy1HvSc
https://www.youtube.com/watch?v=Ny9bvoFtrMc

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/06297a8d-1d05-45cf-8944-842bc088b241%40googlegroups.com.


[tw5] Re: Can I request wiki for "Henley", "Brexit", "Trump", "Hungarian Cinema" ...

2019-08-28 Thread Dragon Cotterill
I've pointed out before how incredibly easy it is to create Wikis from data 
sources. (Remember British Sheep?) And I've posted before about my Library 
which is a fully fledged system which hundreds of people use. It gets 
promoted in locations relevant to it's content. (Though I've yet to see it 
added to any TW site that lists/links to TWs). So don't get confused 
because you don't see the promotions.

If you want to read about the Hats of Henley then may I suggest that *you* 
create it?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cfb0b3fa-3659-4608-b88f-147cb714f624%40googlegroups.com.


[tw5] Re: Suggested TiddlyWiki ...

2018-06-11 Thread Dragon Cotterill
OK, this drives me crazy. Pointing to a "Book" as a source for a TW is not 
a very good idea. TWs are made up of many, cross linked, individual 
entries. It's part and parcel of how a wiki works. If you want a prose 
entry then go to the book or write a document.

On Monday, 11 June 2018 13:04:22 UTC+1, @TiddlyTweeter wrote:
>
> 5 - The History And Sociology Of The Potato 
> 
>


If you want a TW for this kind of stuff then a proof of concept is 
here http://www.kizar.co.uk/TW/Spuds.html
 

-- 
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/4d1e4864-6652-449e-a799-21a125f7bc75%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: TW in Public -- "British Sheep Breeds" (#twClassic #animals #Britain)

2018-06-11 Thread Dragon Cotterill
That was just a simple web scrape and Macro to break everything up into 
common DIVs to be added to the file. Then a quick categorisation based on 
info from the British Wool Board. Probably took me about 30 mins tops. The 
idea came from the suggests list, probably as a joke entry. Either way, I 
was bored at the time, and thought I'd give it a shot. I just used my 
standard "empty" TWC, which is why it has a shed load of Plugins that 
really aren't used.

It's not a working Wiki. Just use it as a basis for something else.

-- 
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/da414bdb-cfd8-468f-b45b-261a6fbb27d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Suggested TiddlyWiki ...

2018-06-11 Thread Dragon Cotterill


On Wednesday, 6 June 2018 21:04:21 UTC+1, @TiddlyTweeter wrote:
>
> 4 - British Sheep Breeds 
> 
>

Simples.
http://www.kizar.co.uk/TW/BritishSheep.html
 

-- 
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/3ac3c2cd-19ca-463a-983d-9196609afcd3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Your invitation to the TiddlyWiki European Meetup 2018

2018-01-08 Thread Dragon Cotterill


On Monday, 8 January 2018 12:29:31 UTC, @TiddlyTweeter wrote:
>
> when I could enjoy the forests of the Tirol? 
>
>
Which is the reason I go to Seefeld/Scharnitz every year. :D

 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d7be3efa-74e2-45ef-aedd-18d9613b34c8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Your invitation to the TiddlyWiki European Meetup 2018

2018-01-08 Thread Dragon Cotterill
Having been to these two meetups, I approach this with some scepticism.

Firstly the meetups are interesting in terms of putting names to faces, 
finding out how people are using TW, and generally being awed by how people 
are doing some seriously brilliant stuff. Elliot's Dyslexic work was 
nothing short of fantastic.

Secondly I am kind of disappointed in that the meetups didn't really 
achieve any kind of mile stone. No decisions or conclusions were made. 
Perhaps this is not the point of the meeting, but I feel that if we're 
going to get together then there should be some positive result for the 
community.

Many of the points we had put up on the Trello board to be discussed 
produced little result, other than as a talking point.

I am undecided at the moment as to whether it's worthwhile attending.

-- 
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/64bf26c0-b48b-4a98-810f-9c98fc12b57b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Why is blockchain perfect for TW?

2017-12-18 Thread Dragon Cotterill
Blockchain is a solution desperately looking to solve problems.

OK, the idea of the blockchain is sound. It ensure that changes based on 
previous data is valid. There are two major drawbacks, one in the 
blockchain itself, and the second applicable to TW.

Firstly the big problem is the need for continuous calculations. This eats 
huge amounts of electricity just to be able to validate the transactions. 
The more transactions you apply, the more processing you have to do. This 
is inherently not scalable when it comes to enormous amounts of 
transactions. Bitcoin is just starting to feel these effect now, and once 
people realise the huge costs involved, the I reckon it will go into 
free-fall.

Secondly, and more applicable to TW, you cannot change any previous data.
TW is essentially a data storage, and some of that data is likely to 
change. Yes that change can be factored in to the chain, but sometimes data 
entered is wrong or temporary and needs amending.

No, blockchain is not suitable for TW.

-- 
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/fbec727a-9d6e-4eb9-9c97-73d97965a344%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Linking to FTP Pictures on the Node.js Version only works in EDGE Browser

2017-12-13 Thread Dragon Cotterill
I'd advise against mixing protocols like this.

You probably need to supply a username and password for the FTP account... 
even if it's publicly viewable and open.

For example:

ftp://username:password@my_ftp_ip_address/Images/imagename.jpg

-- 
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/68f3c584-dad3-4081-a43d-ccf55e7cb229%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: The Physics of TiddlyWiki -- Interesting

2017-12-13 Thread Dragon Cotterill


On Tuesday, 12 December 2017 22:24:16 UTC, TonyM wrote:
>
> TiddlyWiki, Exists in a universe of its own, with features desired in the 
> real universe are plentiful notably wormholes. From anywhere you can link 
> to anywhere else in one step.
>
 

... 

 

You can write your own "virtual" laws.
>

And even make your own Universes...
http://www.kizar.co.uk/tw/tinyfantasy.html
(Still a work in progress)
 

-- 
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/54fc6454-b20e-4f63-9c76-ac17a7d96854%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Problem with savetiddlers

2017-12-12 Thread Dragon Cotterill


On Tuesday, 12 December 2017 18:17:56 UTC, BJ wrote:
>
> HI Dragon,
> very interesting!
> I will try and reproduce this error. Can you let me know what version of 
> tiddlywiki and firefox you are using?
> cheers
>
> BJ
>


TWC 2.8.1 / FF 57.0.2 on Win 8.

 

-- 
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/871e2333-ebf4-4e8a-85e1-e8cd951730b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Problem with savetiddlers

2017-12-12 Thread Dragon Cotterill
Been using the excellent "savetiddlers" plugin to handle my old TWC files. 
But often when I open the file afresh I get the error message:

savetiddlers has detected that another tiddlysaver called savetiddlers is 
> install. Currently only one saver is supported therefore - savetiddlers 
> will not activate


Bit of a pain, but there is a work-around I use.

Open up the TW and scroll to the very bottom. Delete the  that 
contains:


save it and you're good to go again... until the next time you close 
FireFox and reload your TW. Rinse and repeat.

Not sure if it's just me, or is there a bug inherent in the plugin when 
dealing with TWC?

-- 
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/b8ab1341-015b-4356-80e6-2cd8f8681d04%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Export All Tiddlers

2017-09-13 Thread Dragon Cotterill
That is very odd. That's the exact same plugin I use, also on FireFox, 
using TiddlyFox. Just to be sure, you're not using this from an http 
instance and saving to file? It will throw an error if you try that. Local 
file instance to file export should work though.

On my largest TWC (2185 tiddlers) I can export everything... but it throws 
an error "TypeError: this.source is null" at the very end. But it does 
actually do the export... after I have clicked the OK on the error.

I will admit, it's not the most robust of plugins, but it does seem to work 
sufficiently.

-- 
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/0f588c3c-1f15-4300-90c1-1ba5f0d2c0fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Export All Tiddlers

2017-09-12 Thread Dragon Cotterill
So my first concern would be, why does export not work?

In my experience it does work once the tiddlers are selected. Unless you 
have got some seriously messed up field that include quotes and apostrophes 
etc.

Does it produce any output? An error message?

OK, I've done exports with TWCs containing about 3,500 tiddlers, not the 
huge numbers you're quoting. But I've never had an issue with it.

-- 
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/bf4a5e0c-7377-4350-b250-7b64431e5970%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Query: Markup Parsers

2017-09-01 Thread Dragon Cotterill
This takes us into the realm of Yacc (Bison) and Lex for tokenising and 
parsing. Just a few Javascript versions and alternatives off hand:
https://www.npmjs.com/package/jscc-parser
http://zaach.github.com/jison/docs/
http://canna71.github.io/Jacob/

I'm sure there must be someway to sort out the tokenising of a standard 
Tiddler.

Hmmm, the last time I worked with Yacc/Lex was about 25 years ago. Guess 
I'm a little rusty on the subject these days.

-- 
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/533d9336-982b-4f1c-8252-4ba073554fa0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Suggestions for future features

2017-08-30 Thread Dragon Cotterill

>
> Quickest search results via indexing through Apache Lucene like docFetcher 
>> (
>> http://www.techrepublic.com/blog/linux-and-open-source/portable-desktop-search-make-the-most-of-docfetcher/
>> )
>> Please go through the menus of cherry tree software and incorporate which 
>> is easly doable.
>>
> No. Why?
>
> Well I can certainly give a use case for this option. My Library TW ( 
http://www.kizar.co.uk/TW/library.html ) has pointers to a few gigs of 
external documents (.PDFs), and having an external search capability would 
be a boon here. This is something I have tried looking into, but to try and 
make it seamless for local and online searching is a huge PITA.

To be fair though, you're trying to mix two distinctly different 
technologies here, and the moment you try to do that there is a scope for a 
complete failure. I have made some headroad into this by moving my TW into 
a Domino database and feeding the results back using the Shared Tiddlers 
plugin. But this limits the search system to only being available when 
on-line. Which kind of defeats the purpose when it's supposed to be an 
"off-grid" library. :p

-- 
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/207c0660-7a33-453c-b6a7-75713ed224d2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: can we still create a couchdb instance on cloudant

2017-08-21 Thread Dragon Cotterill

>
> For what it's worth, my set-up does work properly and my CouchDB runs over 
> a TLS connection so it's a pretty secure set-up.
>

Runs over TLS on a connection that doesn't use certificate pinning, so it's 
not as secure as you think it is. 

-- 
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/511c7906-2f50-4519-a872-ffb0d3e8b2ac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki classic themes?

2017-07-09 Thread Dragon Cotterill
Try the venerable TiddlyTools. http://www.tiddlytools.com/#SwitchThemePlugin

-- 
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/7c284744-9b3f-49fe-8571-fc49d9ccaffe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] 2.8.1 TableSortingPlugin not working

2017-07-05 Thread Dragon Cotterill
Well it works for me on every browser I've tried, so it must be something 
specific to you. What are you using?

-- 
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/db31a2d4-34ed-4248-ba8b-cbaf2952c3dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] 2.8.1 TableSortingPlugin not working

2017-07-04 Thread Dragon Cotterill
Sorry, really not seeing it here. Well the example you posted above was 
straight out of the plugin. if you enter autosort thus:
|Name <> |Salary |Extension |Performance |File Size |Start date |h

It displays in the sorted order. Each time you re-load the tiddler (click 
off the recent timeline entry) in switched the sort order.

Is it because you may be adding autosort *before* the named column?

-- 
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/389371e0-980f-43c4-8389-2bcde529a7cc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] 2.8.1 TableSortingPlugin not working

2017-07-03 Thread Dragon Cotterill
This appears to work perfectly for me. (Chrome, Firefox, Opera, Windows 8)

You sure you're not seeing remnants of your selections when you edit the 
Tiddler and save it? When you edit the entry it retains your selected 
sorting option from what you had before. It's only when you load it for the 
first time that the autosort kicks in.

-- 
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/0c97139c-8654-4020-82e3-d20f1d6ebb17%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Attempt to build a Roguelike Dungeongame in TW5

2017-06-20 Thread Dragon Cotterill
As an interesting aside, I'm using TW to write the documentation for the 
resurrection of my old University gaming project 
http://www.kizar.co.uk/TW/TinyFantasy.html

I do however question the viability of making a roguelike for TW. Have you 
ever seen the code to Rogue/Nethack etc. ? It's horrendously complex and 
certainly a massive undertaking.

I wonder if it's worth having an actual automatic level generator, 
something along the lines 
of http://orteil.dashnet.org/cookieclicker/dungeons.js
Having the level work done "in house" would mean that the game would be 
able to progress better as you could concentrate more of the actual 
gameplay rather than worrying about structural stuff.


-- 
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/facb3699-7eb3-488b-beb6-2aaf6219dd83%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: A google group for TiddlyWiki Classic

2017-06-02 Thread Dragon Cotterill
There is nothing wrong with discussing Classic here on this group. Surely 
it muddies the waters as now the information pertaining to TWC is going to 
be spread out rather than contained.

-- 
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/37b13a0b-37d1-49dd-b8b7-6c78eaff08f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-03-21 Thread Dragon Cotterill


On Tuesday, 21 March 2017 16:12:36 UTC, Jed Carty wrote:
>
> I think that the problem last time with the remote attendees was the wifi 
> where we were. There may have been a problem with not having a dedicated 
> computer to run the hangout, if that is the case I may be able to bring up 
> an old laptop that can be used as a dedicated streaming machine.
>

Well I can bring along multiple computers (and Mobile devices - much to 
Jed's probably consternation!) so I can set up some dedicated streams if 
needs be.

-- 
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/4d90e67d-899d-4c53-bc04-36dca6f333f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: New home for TiddlyWiki Five saver for Dropbox

2017-03-18 Thread Dragon Cotterill


On Thursday, 16 March 2017 20:06:45 UTC, Arlen Beiler wrote:
>
>
> If anyone else would like to host their cloud connecting app on this site, 
> let me know and I will setup a repository for you. I'm also going to add 
> Jeremy as an admin to the organization. 
>
>
As somebody who deals with security issues everyday, I'm going to say "No", 
and here's why.

The permissions you've set for you app requests unrestricted access to the 
user's Dropbox account. Which means that your system can access any file, 
in any directory. Whilst many people think that this only allows the user 
to trigger the interactions, selecting the necessary files as they wish, it 
does not restrict your API calls from perform additional requests at the 
same time. You may be honourable in your intentions and it's a good system, 
but there is the potential for abuse.

Now if the system was to only request the App Folder permission then this 
would be a lot better. The DB API system would prevent unwarranted 
intrusion and permit access to be restricted to files just within that 
folder.

-- 
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/ac45370d-780a-4d98-b4ab-e118e0fa495b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-03-13 Thread Dragon Cotterill

>
> The photo needs a caption, like who is who? Okay JR is in there and looks 
> a lot like his photo in his google groups tag/icon/thing.
>

I the one grinning like an idiot with the Dropbox T-Shirt on. (Got it 
whilst attending the DropBox Hackathon in London a couple of years back. My 
entry was disqualified because it didn't use DropBox's API calls. It was a 
file based Chat system which used some of the functionality of TW to handle 
chats between shared folders.)
 

> I really doubt I can make it. Even if I could, I don't know what I could 
> contribute other than stupid questions and a round of drinks.
>

Well last time we ran some Youtube streams and hangouts to let people take 
part. I couldn't make the first day last time because it was a 
Friday/Saturday meetup. 

-- 
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/285a199c-1453-426d-a3cf-6608567c0a31%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] DateFormat DDth MMM YYYY when Date Field for DD is 00?

2017-03-08 Thread Dragon Cotterill
Since when has there ever been a "zero" day of the month? As far as I 
recall the first day of the month is always "1". Perhaps you should do the 
same for your values?


-- 
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/67726536-96c9-4505-961c-78a050a03aaf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Vivaldi Browser - Shameless Publicity

2017-03-07 Thread Dragon Cotterill

On Tuesday, 7 March 2017 17:51:00 UTC, David Szego wrote:
>
> Can you save TW files with the "Save" button?
>

Sadly, no. 

-- 
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/715fce35-9514-48f2-a613-106afb03e1bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [Classic] Export User defined Fields

2017-03-03 Thread Dragon Cotterill


On Friday, 3 March 2017 20:01:05 UTC, RLM wrote:
>
> Anyone still work with Tiddlywiki Classic (2.8.1)?
>

Well yes, all my work is still in TWC.

In the normal export, the values for %0, %1 etc. change depending on which 
export option you selected. If you created your own export option, then it 
would be up to you to select the elements for export yourself.

I would suggest sticking to the methods which work as export and then 
process the resulting file into your XML. Exporting as .csv includes all 
the hidden custom fields on the tiddlers. It may not be elegant, but it'll 
get you a data format which you can then use outside of TW.

-- 
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/c7544efd-503d-425f-8f4f-98606fe18764%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing the 2nd TiddlyWiki European Meetup on 10th & 11th June 2017

2017-02-24 Thread Dragon Cotterill
Awesome. Hope to attend again. Even if I am a TWC advocate rather than a 
TW5 one. :)

-- 
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/30a91627-d74a-425f-8201-614ad8cfb463%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] plugins "FontAwesome" und "ThirdFlow" updated

2017-02-24 Thread Dragon Cotterill


On Friday, 24 February 2017 06:40:56 UTC, Mat wrote:
>
> Nobody else experiencing problems to see the special fonts on 
> http://thediveo.github.io/TW5FontAwesome/output/fontawesome.html ?
>
> Failures on FF, Chrome, IE and Opera (all latest versions) running on Win 
8.1. 

-- 
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/5bdc9a95-f64d-4e43-a542-e26bbcf849e8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] TiddlyWiki plugin: Call WebService.

2017-02-23 Thread Dragon Cotterill
On Thursday, 23 February 2017 12:24:51 UTC, Jed Carty wrote:
>
> I have looked into making things like this work, but browser security 
> makes it difficult. I made a widget somewhere that lets you make xmlhttp 
> requests but for many uses there are CORS problems that prevent it from 
> working.
>

Just as a suggestion, but you might want to have a look at 
https://github.com/55sketch/simple-rss to see how they handle CORS issues 
there. 

-- 
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/1d7f5624-b2f2-44dc-ba80-e9db23c48475%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Presenting.... TiddlySteganography: Hide messages in images using tiddlywiki

2017-02-21 Thread Dragon Cotterill
I do so love Steganography. If only because it can also be used to carry 
dodgy Javascript past nosy anti-virus systems to infect systems and 
insecure mobiles.

Not that I would know about such things of course. :p

Cool implementation Jed.

-- 
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/299402b2-8cc2-4b2b-92b4-6b4bff3bb5c6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 How does TagglyTagging work here?

2017-02-08 Thread Dragon Cotterill
Import it with a simple .bat file to generate the s and then insert it 
into TW. It's taken about 3 years to get to it's current form.

But it's TagglyTagging which is at the heart of the system. I'd be really 
interested in your experiences with using TT inside of a TW5 setup.

Although the current TT plugins seem to do an excellent job of listing the 
sub-entries, they don't appear to do so well in displaying the hierarchy, 
and grouping options which the original TT did. Now it may be my limited 
understanding of the way TW5 works, but if it needs complicated editing to 
make it handle all the options, then it fails as a system which any "Joe 
Public" could use. The original TT didn't need any fancy settings or 
options. Clicking the display options did everything for you.

That's the kind of functionality that is needed to get people using it.

-- 
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/3f4f3cc3-b8ee-4e06-8949-1634cb4019d9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 How does TagglyTagging work here?

2017-02-08 Thread Dragon Cotterill
TagglyTagging is the reason I haven't yet migrated my main TW over from TWC 
to TW5. I make extensive use of TagglyTagging, especially with the grouping 
options as you can see: http://www.kizar.co.uk/TW/library.html

Having a decent TagglyTagging in TW5 would possibly persuade me to migrate. 
(Yes Migrate not Upgrade, TW5 still doesn't have as much functionality as 
TWC yet... but it's getting there fast.)

I've looked at the solutions provided by Tobias, Simon and Jed all come 
close to implementing the old classic TT system, but none match it for ease 
of use yet. But I do keep a hopeful eye on all solutions to this issue. 
Until then, I'll stick with TWC.

-- 
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/ce1ca793-4ac5-4bb4-a6c9-abce8452f211%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Printing to pdf with links

2017-01-24 Thread Dragon Cotterill
Simple. Just use Chrome to open your TW then you can print directly to PDF 
from there.

-- 
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/ea4d1550-46a8-47bf-a8a3-258495665199%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Tiddlywiki for business

2016-12-11 Thread Dragon Cotterill
This is where I see the real downsides of using TW in a business situation.

Within a business the immediate necessity is to allow multiple users to 
access it at the same time. Obviously for reading this is not an issue. But 
for updating then this is where it's not so good.

Using Node to act as server-side to allow multiple users still doesn't 
solve these issues for TW usage. Because there is no communication 
mechanism to notify users that the page they are looking at has been 
modified. With software such as Confluence 
( https://www.atlassian.com/software/confluence ) this has all been 
resolved. TWederation is possibly one way around this limitation, but it's 
not quite there yet.

But for a single user, then there is nothing else which comes close to the 
flexibility of TW in terms of cost.

-- 
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/0f573920-04f4-4eab-991c-e296bee1938d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: > is lying?

2016-11-11 Thread Dragon Cotterill
On Friday, 11 November 2016 09:10:12 UTC, Jeremy Ruston wrote:
>
> It’s entirely possible that there is a bug in the implementation, or that 
> 8601 itself contains unexpected behaviours.
>
>
Yes.. "Unexpected".

Actually the way week numbers are calculated around the world 
changes. https://en.wikipedia.org/wiki/Week#Week_numbering
ISO8601 starts the week on a Monday. America starts it on a Sunday. This 
throws spanners in the works depending on Time Zones, Daylight Savings etc. 
Considering North America went through it's daylight savings shift, this 
may have had an impact.

-- 
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/0512c101-2420-4a6c-8a53-1c8e73f9caf9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] How to use ArchivePlugin Online

2016-10-31 Thread Dragon Cotterill
I would point out, that in the ToDo section of ArchivePlugin it 
specifically states:

   - Synchronize tiddler renames/deletions with file system
   - Lazy loading of archived files via HTTP

This would suggest that it hasn't yet been implemented.

-- 
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/fde277b8-19d8-4e74-bb6c-74b1e60fe4a6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] How to use ArchivePlugin Online

2016-10-30 Thread Dragon Cotterill
I use TWC a lot. Though I do not use that ArchivePlugin. Instead I used 
SharedTiddlersPlugin from http://yakovl.bplaced.net/TW/STP/STP.html

In this way I can export out any unneeded tiddlers and import them as 
needed when opening a tiddler, or, by adding them in the "IncludeList" 
tiddler, at load-time. It is incredably easy to use, and judging by the 
ArchivePlugin documentation, probably better suited to your needs.

-- 
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/ef3ef97a-82fe-4549-84d0-4e22c51c7451%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Searchable fields when using _Canonical_uri ?

2016-09-05 Thread Dragon Cotterill
This is one of my biggest problems, with one of my TWs. My Doc Library 
( https://dl.dropboxusercontent.com/u/1207193/library.html ) has a lot (and 
I do mean a LOT) of PDFs in it. Most of the entries point to a document of 
one sort or another.

For local access I have not found any program which is capable of indexing 
the documents in a directory and making that index accessible. This is your 
issue Mark. Attached or linked documents are not part of the TW structure. 
Including the content of said document inside TW essentially doubles the 
storage space and inflates the size of the TW. Which to my mind makes it an 
unworkable solution.


But this Dropbox removal of opening HTML files (which interestingly enough, 
I have not received notification of) may force my hand into moving the 
whole system into Domino (my web server of preference) where all of the 
content would immediately become searchable.

I have been toying with the idea now of pushing TW into a Domino platform, 
as this would solve a number of issues such as multi-user editing, 
security/authentication, advanced searching etc. Looks like I might have to 
implement this sooner rather than later.

-- 
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/f5e884c8-9a4a-4fa6-aa33-a103a5c86a22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: ⁂ Need pretty face for TWederation

2016-08-18 Thread Dragon Cotterill


On Thursday, 18 August 2016 15:38:36 UTC+1, Jed Carty wrote:
>
> As far as 'why' goes, because it is an interesting project and I can.


Yep. Thats certainly a very valid reason for doing this and I applaud that.

But the opening post was about how to present this to the world. Presenting 
it as it stands (ie just a discussion system) will pretty much generate a 
"meh, so what?" response from people. Forums are 10-a-penny and everybody 
has their own favourites and uses. What we need is a "why would I use this 
system for my application" kind of demonstration.

The core function of TW is to be a Wiki. I think we need a functionality 
that focuses on that ability. But as to what that functionality would be, 
I'm at a loss to figure out.

>

-- 
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/88325f4d-31a6-49c7-8e3a-7ee951418ca3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: ⁂ Need pretty face for TWederation

2016-08-18 Thread Dragon Cotterill


On Wednesday, 17 August 2016 15:49:58 UTC+1, Mat wrote:
>
> *TWederation and TiddlyWiki 
> networks... Oh-that's-not-my-concern-I'm-just-a-regular-TW-user"*
>
> If YOU are thinking along those lines, then I'm *particularly *talking to 
> you here! I will request your help about *how* to best present 
> explanations for exactly those things, for you:
>

I've been following along with TWederation, and even took part in some of 
the demo at the meetup. I fully understand the "How" it works and "What" it 
does.

What I completely fail to see is the "Why". More specifically I fail to see 
where such a system would actually provide a working use outside of 
contrived setups just to prove the techniques.

TWs are not normally static. They grow and are used for many different 
things. Cross loading the entries into another TW, the entry then becomes a 
static value. Forever embedded. If the original is updated, the TWederated 
value still remains at the old value. Good for historical reasons. Bad for 
interaction.

What I would like to see as a main "selling" point, is an actual real use 
case which can be utilised by general users. A "discussion" forum is not 
what I would consider a valid use case. It needs to be something specific 
to the core of what a TiddlyWiki is.

D.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e28cacca-1f5d-4900-b2ed-ababbef4ff34%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: The proper way to keep a TiddlyWiki organized

2016-07-29 Thread Dragon Cotterill
The "proper" way to organise your TWs is... whatever works for you.

There is no right or wrong way. It's whatever works for you. If your 
reading list needs to be separate tiddlers for each book for some, and a 
big long list for others then you can mix and match as you see fit.

I have a whole slew of TWs; some are full blown TWs with 1,000+ entries ( 
https://dl.dropboxusercontent.com/u/1207193/library.html ), others are 
small with just a few thoughts in them. And some have even been reduced to 
PureStore formats and are included in other TWs.
My Food and Recipe TW is stored separately from my Video index. However if 
you're in the Food one and you click the right link, then it imports all 
the video tiddlers related to food TV programmes into the Food TW, with all 
the appropriate embedded VLC objects to play the recipe.

Your reading list may cross into your gaming list at some point. Separate 
or together doesn't make much difference really.

-- 
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/3fd7156a-87db-4912-95f1-427145cfa609%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Editor Toolbar - Adding a browse for files button ( [ext[...]] )

2016-07-25 Thread Dragon Cotterill

Hi Bo,

On Monday, 25 July 2016 09:18:15 UTC+1, The Bo wrote:
>
> Any idea or is there already such a plugin?
>

As Jeremy stated, it's almost impossible to get the details to external 
files from inside TW due to the security restrictions of the Browsers.

One of my TW's makes extensive use of external files (.PDFs and images) and 
the only way I could get them integrated was with external batch files.

This is one of my import routines:
@echo off
cd Unsorted
for /f "Tokens=*" %%f in ('dir /l/b/a-d') do (rename "%%f" "%%f")
cd ..

FOR %%A in (Unsorted/*.pdf) DO (
echo ^ >> entries.div
echo ^^|!Name: ^|%%~nA ^| >> entries.div
echo ^|!Author: ^| ^| >> entries.div
echo ^|!Date: ^| ^| >> entries.div
echo [img[./Images/Book.png][./Documents/%%A]] >> entries.div
echo ^^ >> entries.div
)

It is designed for TWC and has a specific layout, but it may suit your 
needs. But what it does is first switch everything in the "Unsorted" 
sub-directory into lowercase (this prevents loads of error where it tries 
to wikify the names of the .PDFs that are imported) before building a file 
with all the names of the PDFs as tiddler titles. The resulting file 
(entries.div) is then placed inside the TW file. When I go through and edit 
all the "Unsorted" tagged entries, TW handles the tidying up of the actual 
tiddlers.



 

-- 
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/4ad7f5e6-6af9-440f-b3f3-97ace3c63b7d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: What do you recommend for changing image orientation or rotating an image by 90 degrees?

2016-07-18 Thread Dragon Cotterill


On Monday, 18 July 2016 02:23:31 UTC+1, j wrote:
>
> I have an application where I am importing images into a 5.1.12 version of 
> TiddlyWiki.  But all of the images come in in landscape mode and some 
> should in portrait or vertical mode and I haven't been able to figure out 
> how to rotate them.
>

I use ImageMagick for my image manipulations.

The Convert command will do it for you. See 
http://www.imagemagick.org/script/command-line-options.php#rotate
 

-- 
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/fbf8215e-35cd-46cf-988d-9496686ee7fe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Random Thoughts about the new version of TW.

2016-07-17 Thread Dragon Cotterill


On Sunday, 17 July 2016 01:01:50 UTC+1, Josiah wrote:
>
> The title IS the index.
>

I agree. For single, stand alone TW's there is nothing better. It is 
intuitive for the user.
But when it comes to sharing Tiddlers, you WILL get repeated names. What do 
you do then?

On Sunday, 17 July 2016 02:08:11 UTC+1, Mark S. wrote:
>
> I'm not sure if the hashing is necessary for internal use. In most 
> databases, it is sufficient to simply assign an incremented value to an id 
> field. For sharing with other tiddlers, (as in federation), of course, it 
> becomes necessary to include some sort of database ID as well (like a hash 
> of the database address).
>

But if you have two TW's with incrementing numbers... again you will have 
matching numbers.
 

On Sunday, 17 July 2016 06:28:07 UTC+1, codacoder...@outlook.com wrote:
>
> No to users creating them. Ever.
>

Yes. Users should never create them. They should be created by TW and 
internal.
 

>  They should be GUIDs.
>Not concatenated titles+dates or anything related to existing tiddler 
> data. This will likely fail and scale poorly.
>

Not a hash of the title. A hash of the TW's URL (or file path) and a hash 
of the date/time concatenated.
 

>They must be created "behind the scenes",  but easily discovered/usable 
> by experienced users.
>

Yes indeed. I see you come from the same thoughts as me on this.


I'm not saying that people should use the GUID as a matter of course. The 
Title of the Tiddler would always be the main linking point. But for 
TWederated Tiddlers there will be issues where this will fail. Yes we could 
keep using the Title and have some other mechanism in place, so clicking a 
link to two imported tiddlers with the same name either opens both, or 
prompts you for which one you meant. But responses to tiddlers would get 
messy.


There can be no denying that what Mat and Jeb have done with TWederation is 
a great idea and with the work they did over the weekend it proved it has a 
permanent home in the TW realm, but unless steps are taken at this early 
stage to address things like this it could open up a world of problems.
 

-- 
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/fda00458-db3b-4a4b-8fc1-5db8d402e76a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Random Thoughts about the new version of TW.

2016-07-16 Thread Dragon Cotterill
This is just a quick list of some of the thoughts following on from 
conversations with Mat and Mario at the Pub after the TWEU Meetup. As with 
any Pub conversations it is likely that most of these ideas will fall by 
the wayside, but some of the ideas have got me thinking and it's worth 
getting them logged whilst they are fresh in my mind.

There can be no doubt that TW is a really great concept. But now that we're 
joining them together (by TWederation) we are going to run into some 
seriously big road blocks if we're not careful. For example how do we 
handle the importing of Tiddlers with the same Title?
I feel that it is very disingenuous to force users to create shared 
Tiddlers with different names. At the moment we are doing this by adding 
the creators name to the end of the Tiddler's Title. This I feel is a big 
mistake. The naming of the Tiddlers should NOT be enforced like this. The 
creator should be free to name them however they want. But of course this 
throws a spanner in the works when names clash.

What we need is a unique way of identifying the Tiddler that is visible to 
TW, but not necessarily to the users. Pretty much every database system has 
a Key or a Unique ID and I think we need the same.
Now I know that Jeremy would say that your should be able to link to the 
Tiddler via the Title, and I fully agree. In any given TW the Title is 
unique (Shadows not withstanding). So that is the link you would use when 
linking to them in a given instance. But when a TW is federated, with the 
same name, which "New Tiddler" do you mean? Because they should all be 
available.

I propose that each TW should have a UID. It should be comprised of the 
hash of the URL of the TW, and the hash of the date/time when it was 
created. And that ID should stay with it for the life of it's existence. 
Even if it's federated into a new TW, then the ID stays. The only time it 
should gain a new ID is if it was copied, the copy getting a new UID.

Now when it comes to TWederation, the structure is clear. HASH1 is the 
parent. HASH2, HASH3 are children of the parent, HASH4 is the child of 
HASH3. Using this it is very clear how the individual tiddlers should be 
displayed, now matter what the actual content of them. If a Tiddler is a 
reply, then it has a parent. If no parent, it's a top level entry.
Tiddlers change. At present if a federated tiddler is changed, that change 
is not propagated (or have misunderstood the workings of TWederation? 
Mat?). If a parent tiddler is deleted, what becomes of the orphans? Yes, 
there is still much to discuss on this.


Now one of the other thoughts I had was in the concept of data Tiddlers. I 
know Mario wants to see all the data of any given Tiddler, but that's a 
different matter. :) You should be able to have data WITHOUT the concept of 
how it should be displayed, but use another Tiddler as the actual layout. 
We have the ViewTemplate tiddler, but if you break that down to a smaller 
level you can start to build up the Tiddlers to produce stronger concepts.
At present TW is geared around Text components. Title, Text and Tags as 
core values (yes I suppose created, modified and change count are other 
values too). TW Classic has the Data Plugin ( 
http://tiddlywiki.abego-software.de/#DataTiddlerPlugin ) which kind of uses 
this concept. TW5 allows you to add further fields relatively easily. But 
what if you took it further?
By opening up TW to the concept of data you could really build up 
applications. For example a remote weather station server simply outputs a 
raw tiddler stream of weather data. You can TWederate that data straight in 
to get an idea of rainfall. Others could get the exact same data but be 
more concerned with wind speed and direction. Or both. Or temperature.
You would write a macro which would take all of the data and display it 
using the layout of another Tiddler. An iteration over that list would give 
us a simple table. Another version would format it for feeding into a chart 
(HighCharts anyone?) Or a data connector that changes it in some way to 
feed into other components (temperature delta over time? Temp vs Rain?)
This would give us an extremely powerful, dashboard like configuration.



As I said, these are just some random thoughts, typed up on a train journey 
back to London after the TWEU Meetup. They need refining in so many ways, 
but I feel that they may have some merits.

Discuss...



-- 
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/aa7932fb-e981-423a-8a1a-f969f5cb258f%40googlegroups.com.
For more options, visit 

Re: [tw] [TW5] Is it possible to make a Copy2Clipboard widget?

2016-06-28 Thread Dragon Cotterill
Would you need to have something you could actually select? Like a 
temporary textara?

function copyTextToClipboard(text) {
var textArea = document.createElement("textarea");
textArea.value = text;
document.body.appendChild(textArea);
textArea.select();

try {
var successful = document.execCommand('copy');
var msg = successful ? 'successful' : 'unsuccessful';
console.log('Copying text command was ' + msg);
} catch (err) {
console.log('Oops, unable to copy');
}

document.body.removeChild(textArea);
}

-- 
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/40e5c4c6-f62e-43bc-ad64-65e4f4accd86%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] dGSD config question

2016-06-28 Thread Dragon Cotterill
Yeah, you're not alone as a TWC user. :)

-- 
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/f852fccc-d80a-41cc-aae1-dfc2307bac75%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Your TWederation! [The official TWederation brainstorm thread]

2016-06-24 Thread Dragon Cotterill

>
> - this doesn't use a client-server architecture. Given the questions I 
> have been asked this deserves to be said a few hundred more times.
>

This to me sound more like the old Groove Networks database system was 
based. I feel that you really need to take a look at the Groove 
architecture as it does have possible implications which parallels what you 
are trying to achieve here.

I kind of achieved something similar using TWC, when I created "worker" 
wikis. Each worker had their own TWC installation, and I used the 
SyncFileTiddlerPlugin ( 
http://tiddlywiki.abego-software.de/#SyncFileTiddlerPlugin ) to export a 
single tiddler which carried the actual work. This was replicated around 
via DropBox into the central wiki (mine) where I could see the changes and 
re-allocate the work out the the workers. It wasn't a true cross 
installation setup as each worker only saw their own stuff.

In fact you could exact mimic such a setup with the TWC 
SharedTiddlersPlugin ( 
http://yakovl.bplaced.net/TW/STP/STP.html#SharedTiddlersPluginInfo ) simply 
by "including" the shared wikis of the other users in the network.

But what you're trying to achieve goes far beyond this kind of system and I 
wish you well in it's implementation.

-- 
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/b1f5313f-7bba-4483-8d3d-e111e1cc3e71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki European Meetup 2016

2016-06-24 Thread Dragon Cotterill
I am curious as to what the meetup will consist of. Having done various 
Hackathon's in the past (most notably the London Dropbox Hackathon) I am 
wondering if it would be anything like that. Or will it more more of a 
discussion about the possibilities of TW?

Unfortunately I can only attend on the Saturday. But I would like to know 
if there is anything I can prepare before hand.

Regards,

Dragon.

-- 
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/94b9b0b9-0924-468a-8fb3-94b61302f356%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.