[tw5] start command from tiddlywiki

2022-10-31 Thread Geert Geurts
Hello!
I'm using node.js version of tiddlywiki in a docker container 
from  nicolaw/tiddlywiki.
I have the variable TW_DOCKERVOLUME defined to where on the local 
filesystem my tiddlers reside. I would like to put my tiddlers on an 
encrypted volume which gets decrypted and mounted  on TW_DOCKERVOLUME once 
a correct password is given. 
I was thinking on writing some python code using http.server to decrypt and 
mount the encrypted volume and then redirecting to the wiki but I was 
wondering if maybe someone already made something similar/simpler. Maybe 
you don't need the python and you could do it straight in node.js... I have 
no clue... 
Does anyone know if there exists something in this direction?
Or could someone point me to documentation on node.js code that could do it?

Thanks!

Regards,
Geert

-- 
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/c1eae064-e7cf-4807-a0bd-f46972020d19n%40googlegroups.com.


[tw5] Re: trying to set tags to {{!!title}}

2021-04-08 Thread Geert Geurts
Sweet! 
Tones you've made my day!
Thanks allot!

Geert

On Thursday, 8 April 2021 at 10:09:23 UTC+2 TW Tones wrote:

> Geert,
>
> The are a number of ways to achieve this here is one, inside a macro we 
> can use substitution variables.
> \define newhere()
> <$button> <$action-sendmessage $message="tm-new-tiddler" title=< "-0MM-0DD hh:0mm">> text="" tags="[[$(currentTiddler)$]]" /> New 
> Tiddler 
> \end
> <>
>
> But this button already exists in the view toolbar. See new here button.
>
> If we want to we can transclude it where we want and use "||" to apply it 
> to the current tiddler
>
> {{||$:/core/ui/Buttons/new-here}}
>
> Tones
>
> On Thursday, 8 April 2021 at 17:26:09 UTC+10 Geert Geurts wrote:
>
>> Hi All
>>
>> I'm trying to create a button which pressing it creates a tiddler tagged 
>> with the title of the tiddler where the button resides. So I have a tiddler 
>> named "New Tiddler" with a button. Once I click this button I want to get a 
>> new tiddler tagged "New Tiddler".
>>
>> I cam this far:
>> <$button> <$action-sendmessage $message="tm-new-tiddler" title=<> "-0MM-0DD hh:0mm">> text="" tags={{!!title}} /> New Tiddler  
>>
>> But that gives two tags "New" and "Tiddler", and using the following:
>> <$button> <$action-sendmessage $message="tm-new-tiddler" title=<> "-0MM-0DD hh:0mm">> text="" tags=[[{{!!title}}]] /> New Tiddler 
>>  
>>
>> Tags it with "{{!!title}}"...
>>
>>
>> Regards,
>>
>> Geert
>>
>

-- 
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/a259b784-768e-495a-9ff4-861cd2e0ce44n%40googlegroups.com.


[tw5] trying to set tags to {{!!title}}

2021-04-08 Thread Geert Geurts


Hi All

I'm trying to create a button which pressing it creates a tiddler tagged 
with the title of the tiddler where the button resides. So I have a tiddler 
named "New Tiddler" with a button. Once I click this button I want to get a 
new tiddler tagged "New Tiddler".

I cam this far:
<$button> <$action-sendmessage $message="tm-new-tiddler" title=<> text="" tags={{!!title}} /> New Tiddler  

But that gives two tags "New" and "Tiddler", and using the following:
<$button> <$action-sendmessage $message="tm-new-tiddler" title=<> text="" tags=[[{{!!title}}]] /> New Tiddler 
 

Tags it with "{{!!title}}"...


Regards,

Geert

-- 
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/4c2f0e29-4927-4760-afb4-ecded9901d44n%40googlegroups.com.


Re: [tw] Re: Save/"write to disc" on android-phones - Why use non-standard (non-webkit?) routines to save?

2010-03-23 Thread geert Geurts
I ran in the same problem a long time ago
Gave up on trying to get to work

Now I'm using cctiddly via a pptp tunnel to my own server, although this is
maybe an even more useful way of using tiddlywiki, you're always editing the
same file and you don't have to worry of it getting too big,  this solution
doesn't work for everyone
I worked on a program to load a tw file and was only to be used for tw, and
I think it could work... gave up though because I found cctiddly.
If i still had the code I would have been more than willing to share it with
you, but unfortunately I didn't save it in a good place apparently...
There wasn't much to it anyways...
A webview of whatever this thing is called in android's java lib. I think if
you'll look in the documentation you should be able to get something working
in not too much time.

If you're going to try Succes!

Greeting,
Geert

2010/3/13 FND 

> TW uses "non-standard" routines to save because "standard" javascript
>> doesn't let you save a file LOCALLY. This is considered an important
>> security feature. Using java is a way to get around this limitation.
>>
>
> Just to be precise, TiddlyWiki uses browser-specific routines for saving
> local files where available (Firefox, IE), falling back to a Java applet
> (TiddlySaver) for browsers where no such APIs is provided.
> Developers might find this of interest:
>http://jquery.tiddlywiki.org/twFile.html
>
>
>  You might ask the people on the android forums if they know of any way
>> for a javascript code to save a file to the *local* machine.
>>
>
> TiddlyWiki's file-saving capabilities could be extended to use whatever
> JavaScript API is available on the respective platform. One option would be
> using HTML5 storage, though that would make the data somewhat less
> portable[1].
>
>
>  there are all sorts of applications that save *REMOTELY*. Indeed,
>> if you can run javascript, then its probably possibly to access and
>> save changes to a tiddlyspot.com location, for instance
>>
>
> That should indeed be possible. There's also the option of running a local
> server (directly on the phone) to provides persistence. For example, some
> people are running TiddlyWeb on the iPhone[2].
>
>
> -- F.
>
>
> [1] cf. http://groups.google.com/group/tiddlywikidev/t/9a930357efba9fb6
> [2]
> http://tiddlyweb.peermore.com/wiki/#%5B%5BInstalling%20on%20iPhone%5D%5D
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To post to this group, send email to tiddlyw...@googlegroups.com.
> To unsubscribe from this group, send email to
> tiddlywiki+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/tiddlywiki?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] forEachTiddler where date between today and one week ago

2010-03-22 Thread geert Geurts
Hello list,
I would like to create a 

[tw] standalone to mysql

2010-01-15 Thread geert Geurts
Hello,
I'm using tiddlywiki at my work to document all the things I learn about
linux. I'm very happy with my personal wiki except tiddlywiki is getting
quite slow... probably because it's growing too big... So I was thinking to
start using a mysql database to host my wiki in, but I don't want to copy
past ALL of my tiddlers to the new mysql enabled wiki.
Does anyone know of a script or plugin or something like that to convert my
current standalone tiddlywiki to mysql?

Thanks!!!

Greetings,
Geert
-- 

You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

To post to this group, send email to tiddlyw...@googlegroups.com.

To unsubscribe from this group, send email to tiddlywiki+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.



[tw] loading only tiddlers by tag

2009-07-16 Thread geert Geurts
Hello,
I'm using tiddlywiki to document various things, I've been using it now for
1 or 2 years and the size of my tiddlywiki is getting to big I'm afraid...
when I klick done it takes  20 - 30 seconds to close the tiddler.
I updated all my plugin tiddlers, even tried disabling them but no
improvement.
So I think it's the number of tiddlers that is making the tiddlywiki so
slow...
I was wondering, is there a way, besides sticking them in a seperate
tiddlywiki file,  to not load all of the tiddlers on startup?
Or to speedup tiddlywiki in general for that matter?

Thanks!

Greetings,
Geert

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: tiddler templates

2009-04-27 Thread geert Geurts
a bit late again sorry.
but non the less...

pay attention people
he takes the ball
he shoots.
AND HE SCORES
Again a live saving solution by Eric Shulman!
whoh!!!

Nice one Eric!
Thanks!

2009/4/9 Eric Shulman 

>
> > I'm using tiddlywiki to document information of our network. The thing I
> was
> > thinking to do is create a template tidder called machineTemplate and put
> in
> > there something like the following lines
> > |eth0|eth1|ilo|
> > | | | |
> > The second line is more or less empty and needs to be filled with new
> > info...
>
> The term "template" in TiddlyWiki applies to a specific set of special-
> purpose tiddlers that contain TiddlyWiki-enhanced HTML syntax.
> Templates are used to define the layout of the overall page
> ([[PageTemplate]]), as well as the layout of each tiddler when
> displayed ([[ViewTemplate]]) or edited ([[EditTemplate]]).
>
> However, if I understand your objective correctly, I think that all
> you really need is a way to specify the default contents for newly
> created 'machine' tiddlers.  Here's one common method that is very
> easy to use:
>
> First, start by creating a tiddler named [[DefaultMachine]],
> containing just the desired default content, e.g.:
>
> |eth0|eth1|ilo|
> | | | |
>
> Then, using a 'computed parameter' in the <> macro, you
> can embed a command link (anywhere you like, e.g., [[MainMenu]] or
> [[SideBarOptions]]) to retrieve the text from [[DefaultMachine]], like
> this:
>
> <   label:'new machine'
>   prompt:'add a new machine tiddler'
>   title:NewMachine
>   text:{{store.getTiddlerText('DefaultMachine','')}}
>   tag:machine>>
>
> When you click on the resulting 'new machine' command link, a fresh
> tiddler editor will be opened for a tiddler named [[NewMachine]], with
> content automatically inserted from [[DefaultMachine]], ready for you
> to enter more info.
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] tiddler templates

2009-04-09 Thread geert Geurts
Hello,
I'm using tiddlywiki to document information of our network. The thing I was
thinking to do is create a template tidder called machineTemplate and put in
there something like the following lines
|eth0|eth1|ilo|
| | | |

The second line is more or less empty and needs to be filled with new
info...
I thought this was quite default in tiddlywiki but looking how to do it gave
me allot of ways to template tiddlers in all kinky kinds of fasions but not
a simple tiddler that whould be copied...

Probably I'm looking over it...
could somebody enlighten me?

thanks!!

Greetings,
Geert

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: <

2009-04-01 Thread geert Geurts
Thanks alex, but I already found that out, I want to find the tiddlers taged
with project-important1 and project-important2

Geert

2009/4/1 Alex Hough 

>
> something like this
>
> 'tiddler.tags.contains("project")'
>
> would get you all the tiddlers with tag containing the tag project.
>
> Alex
>
>
> 2009/4/1 geert Geurts :
> > Hello,
> > I'm using tiddly wiki allot for my work, and I use the forEachTiddler
> plugin
> > to organize my work.
> > Does anyone know of a way to make the forEachTiddler plugin able to make
> a
> > list of all tiddlers which have a tag that starts with "project", for
> > instance?
> >
> > Thanks!
> > Greetings,
> > Geert
> >
> > >
> >
>
>
>
> --
> t: 0161 442 2202
> m: 0781 372 50 17
> skype: alexhough
> delicious: alexhough
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] <

2009-04-01 Thread geert Geurts
Hello,
I'm using tiddly wiki allot for my work, and I use the forEachTiddler plugin
to organize my work.
Does anyone know of a way to make the forEachTiddler plugin able to make a
list of all tiddlers which have a tag that starts with "project", for
instance?

Thanks!
Greetings,
Geert

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: popup existing tags

2008-12-10 Thread geert Geurts
Hi Nicolas,
Sorry for my late reply... i forgot about even sending the mail...
Well better late then never... the plugin you sugested was not the plugin I
was searching... I found wich was it though by your responce for some
strange reason... it was the intellitagger plugin!
anyways,
Thanks!

Greetings,
Geert


2008/12/4 <[EMAIL PROTECTED]>

> Hi Geert,
>
> Are you talking about adding a tag to a tiddler while in edit mode
> (clicking on "tag" at the end of the line : "Type tags separated with
> spaces, [[use double square brackets]] if necessary, or add existing tags"),
> or adding a tag in view mode (something like Lewcid's TaggerPlugin :
> http://tw.lewcid.org/#TaggerPlugin) ?
>
> Nicolas.
>
>
> On Dec 4, 2008 1:55pm, Geert Geurts <[EMAIL PROTECTED]> wrote:
> >
> >
> > Hello,
> >
> > I'm using MonkeypirateTiddlyWiki and when I want to add a tag to a
> >
> > tiddler I get a horizontal list with all existing tags. I created at my
> >
> > work a new mptw but this functionality is absent... i tried to find out
> >
> > why I have this on one and not the other but I'm not able to find out
> >
> > what it is I'm missing...
> >
> > Can somebody tell me what plugin I need to import or what i need to do
> >
> > to get this working?
> >
> >
> >
> > Greetings,
> >
> > Geert
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] popup existing tags

2008-12-04 Thread Geert Geurts

Hello,
I'm using MonkeypirateTiddlyWiki and when I want to add a tag to a
tiddler I get a horizontal list with all existing tags. I created at my
work a new mptw but this functionality is absent... i tried to find out
why I have this on one and not the other but I'm not able to find out
what it is I'm missing...
Can somebody tell me what plugin I need to import or what i need to do
to get this working?

Greetings,
Geert 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] open tiddler from inside a frame

2008-11-04 Thread Geert Geurts

Hello,
does anyone know what is the URL for opening a tiddler from inside a
frame in a tiddler?

thanks!
Greetings,
Geert


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---