Re: [tw] possible solution for tiddlywiki local saving problem in modern browsers

2013-03-04 Thread Josef
BTW, Java already includes a lightweight HTTP server built in. It is in the quasi-standard com.sun.net.httpserver package. But, it is very very lightweight. I don't think it is practical to use it however. I wrote about it on in a Java/Groovy topic on my blog in a post "Java’s HTTP Server

[tw] Re: Passing a Div through a macro to plugin?

2013-03-04 Thread Adam Sneller
Ah, thanks—that helps! On Monday, March 4, 2013 1:53:15 AM UTC-8, whatever wrote: > > Hey! > > Some pseudo code: > > pass yourTag and myList as macro parameters { > > array = []; > store.getTaggedTiddlers("yourTag") > for each tiddler { > getElementById("myList") > for each list { > push e

[tw] Fwd: Alias variable

2013-03-04 Thread andrew.j.harrison84
I'm trying to include text stored in an options.txtUsername variable into an alias using the aliasplugin. I have tried creating a tiddler with <> but when I try to transclude the tiddler or just the variable into the alias, it doesn't work. I don't know how. Can anyone help me figure out how to do

[tw] Re: possible solution for tiddlywiki local saving problem in modern browsers

2013-03-04 Thread PMario
link to the "TiddlyWeb at Home" intro thread: https://groups.google.com/group/tiddlywiki/browse_thread/thread/2a52728e9b64a75c -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, sen

[tw] Re: possible solution for tiddlywiki local saving problem in modern browsers

2013-03-04 Thread PMario
Adam, Have a look at: TiddlyWeb [1] or and TiddlySpace [2] which is based on TiddlyWeb. My TiddlyWeb at Home [3] how to project may be of interest too. I did create a LiveCD to test the server with a VM see: TWeb at Home ISO + Videos The Win7 VM fully loaded uses about 70MByte of memory and could

Re: [tw] possible solution for tiddlywiki local saving problem in modern browsers

2013-03-04 Thread Jeremy Ruston
Hi Adam Well, TW5 under node.js is designed to be a flexible portable server, but perhaps a bit closer to your suggestion is the UploadPlugin and associated PHP script, by BidiX. It's a simple PHP script that can be dropped onto almost any host, and permits TiddlyWiki to save changes by the simple

[tw] Re: Attention - willyou.typewith.me - seems to be be down most of the time - suggested workarounds:

2013-03-04 Thread PMario
On 3 Mrz., 23:10, Måns wrote: > Hi users of @tobias' typewithme plugin [1] > > If you use tobias' typewithme plugin [1] you might have noticed that > willyou.typewith.me - seems to be be down most of the time. (503 > Service Unavailable - No server is available to handle this request.) single use

[tw] Re: TiddlyFox fix for international characters in backups

2013-03-04 Thread andy . int
Hi Jeremy, Yes, It's all good. the latest version can be perfectly work. Thank you so much. Andy97 Jeremy Ruston於 2013年3月4日星期一UTC+8上午3時44分50秒寫道: > > Thanks Andy. I've uploaded a new 1.0alpha11 that seems to fix things for > me, at least with 2.7.1: > > https://github.com/TiddlyWiki/TiddlyFox/

[tw] Re: Passing a Div through a macro to plugin?

2013-03-04 Thread whatever
Hey! Some pseudo code: pass yourTag and myList as macro parameters { array = []; store.getTaggedTiddlers("yourTag") for each tiddler { getElementById("myList") for each list { push each LI to array+"," } } array.sort() array.split() for each item in array { wikify } } Of course, if you want thi

Re: [tw] possible solution for tiddlywiki local saving problem in modern browsers

2013-03-04 Thread Adam Sneller
I hope this isn't off-topic but... have you guys thought about just incorporating a small portable server? There are a whole bunch of these that have really tiny footprints (like 40KB tiny). Most are written in Java so they are cross-plateform compatible. And some are only a single file! >From

[tw] Passing a Div through a macro to plugin?

2013-03-04 Thread Adam Sneller
Can anyone tell me how to pass a div from a tiddler, through a macro to a plugin? Basically, I have a tiddler that looks like this: * ... * and I want to pass *#myList* through a macro... something like this?? *<>* to my SortListPlugin: *config.macros.sortList = {} config.mac

Re: [tw] possible solution for tiddlywiki local saving problem in modern browsers

2013-03-04 Thread Salonio Matidio
> The gist of the new "save by download" code from TW5 could certainly be > backported to classic TiddlyWiki, either as a plugin or as part of the > core. I've created an issue: > > https://github.com/TiddlyWiki/tiddlywiki/issues/117 > > This is a great idea for end users like me who doesn't w