[tw5] Re: workaround for apache webdav

2019-11-13 Thread PMario
On Wednesday, November 13, 2019 at 7:52:30 PM UTC+1, Daimon Eu wrote: > > Yes it's working with gzip! I've also tried this client-side workaround: > > self.etag = etag.replace(/^W\//,""); > -> self.etag = self.etag.replace(/-gzip/,""); > > I've added the second line to

[tw5] Re: workaround for apache webdav

2019-11-13 Thread Daimon Eu
Yes it's working with gzip! I've also tried this client-side workaround: self.etag = etag.replace(/^W\//,""); -> self.etag = self.etag.replace(/-gzip/,""); I've added the second line to $:/core/modules/savers/put.js and the effect is the same as modifying the server conf.

[tw5] Re: workaround for apache webdav

2019-11-12 Thread PMario
On Tuesday, November 12, 2019 at 11:00:20 AM UTC+1, Daimon Eu wrote: > This configuration is working for me on Apache 2.4 (Raspbian): > So the default WebDav setting works for you, _with_ gzip compression enabled? The first line solves the problem of Etags not working when server side >

[tw5] Re: workaround for apache webdav

2019-11-12 Thread Daimon Eu
On Saturday, March 16, 2019 at 12:18:52 AM UTC+1, arg...@gmail.com wrote: > > > Did someone managed to get webdav saves work under apache2 web servers in > a more protocolar way ? > This configuration is working for me on Apache 2.4 (Raspbian): . RequestHeader edit "If-Match"

[tw5] Re: workaround for apache webdav

2019-03-19 Thread Lost Admin
On Tuesday, March 19, 2019 at 10:27:46 AM UTC-4, PMario wrote: > > On Tuesday, March 19, 2019 at 1:42:43 PM UTC+1, Lost Admin wrote: >> >> I wonder if that is going to make it into the core saver if/when it is >> determined to be stable. I would happily add compression to my WebDav sites >> at

[tw5] Re: workaround for apache webdav

2019-03-19 Thread PMario
Hi, Also see the INTRO thread: https://groups.google.com/forum/#!topic/tiddlywiki/kBfqChfLnRk -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] Re: workaround for apache webdav

2019-03-19 Thread PMario
On Tuesday, March 19, 2019 at 1:42:43 PM UTC+1, Lost Admin wrote: > > I wonder if that is going to make it into the core saver if/when it is > determined to be stable. I would happily add compression to my WebDav sites > at that point. > Hi, It would be nice, if you could test it with your

[tw5] Re: workaround for apache webdav

2019-03-19 Thread Lost Admin
I wonder if that is going to make it into the core saver if/when it is determined to be stable. I would happily add compression to my WebDav sites at that point. On Tuesday, March 19, 2019 at 6:41:38 AM UTC-4, PMario wrote: > > Hi folks, > > I did upload BETA 0.1.0 ...

[tw5] Re: workaround for apache webdav

2019-03-19 Thread PMario
Hi folks, I did upload BETA 0.1.0 ... https://wikilabs.github.io/editions/webdav-lm/ It would be nice to get feedback. I did test it with IIS and FF. have fun! mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this

[tw5] Re: workaround for apache webdav

2019-03-18 Thread Lost Admin
I use Apache with WebDav for my TiddlyWiki server. Https and basic auth both enabled. My config, with explanation is here: http://thelostadmin.tiddlyspot.com/#Apache%20HTTPD%20with%20WebDAV If it's not working, let me know what is wrong and I'll double-check my current actual config. -- You

[tw5] Re: workaround for apache webdav

2019-03-18 Thread PMario
Hi, Did you try to disable server side compression, AND did it work out? I want to upload a new plugin later today. .. I can PM you an experimental version, if you want to test and give feedback. have fun! mario -- You received this message because you are subscribed to the Google Groups

[tw5] Re: workaround for apache webdav

2019-03-16 Thread argasm
Hi Mario, Thanks for the answers. I use tiddlywiki exposed to the web. Le samedi 16 mars 2019 14:47:30 UTC+1, PMario a écrit : > > Hi, > > Do you use WebDav in a local setup, or is it exposed to the web? > > -m > -- You received this message because you are subscribed to the Google Groups

[tw5] Re: workaround for apache webdav

2019-03-16 Thread PMario
Hi, Do you use WebDav in a local setup, or is it exposed to the web? -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] Re: workaround for apache webdav

2019-03-16 Thread PMario
Hi, WebDav works fine with the latest PUT saver, if you *disable server side compression*. I did create a proof of concept using the *last-modified *header attribute. It basically works in the same way as etags, but also allows you to compress the wiki over the wire. My implementation