Re: Simple DAV server?

2006-05-20 Thread robert
Kyler Laird wrote: Ivan Voras [EMAIL PROTECTED] writes: Most of the problems are probably because I didn't mean it to be a fully-compliant WebDAV server, but to serve my need at the time :) I am *so* close to having a WebDAV solution. Unfortunately when I finally moved to using HTTPS,

Re: Simple DAV server?

2006-05-20 Thread fuzzylollipop
webfolders is broken, I have worked on webdav support at the isp level ( for millions of customers to use ) webfolders is NOT something you should base compliancey on. It is broken so badly that we decided to just not even test against it. We provide our customers with our own application with

Re: Simple DAV server?

2006-05-11 Thread Kyler Laird
Ivan Voras [EMAIL PROTECTED] writes: Most of the problems are probably because I didn't mean it to be a fully-compliant WebDAV server, but to serve my need at the time :) I am *so* close to having a WebDAV solution. Unfortunately when I finally moved to using HTTPS, it all broke in MS Windows.

Re: Simple DAV server?

2006-04-29 Thread robert
Ivan Voras wrote: Kyler Laird wrote: Ivan's been working on a problem I've been experiencing with Windows XP (failure to launch). He sent a new version my way today. I'm going to test it tomorrow when I've got some XP users available. If it works I'm going to work on putting my changes

Re: Simple DAV server?

2006-04-27 Thread Ivan Voras
Kyler Laird wrote: Ivan's been working on a problem I've been experiencing with Windows XP (failure to launch). He sent a new version my way today. I'm going to test it tomorrow when I've got some XP users available. If it works I'm going to work on putting my changes into a subclass. I

Re: Simple DAV server?

2006-04-24 Thread robert
Ivan Voras wrote: robert wrote: maybe thats a good idea to put it on sf.net to boil out all bugs. Yet I like it in that simple default manner, maybe switch on those additional creation functions with commandline switches (or config class instance passed to run..(config=None) ) I'm

Re: Simple DAV server?

2006-04-24 Thread Kyler Laird
robert [EMAIL PROTECTED] writes: KL wrote, he added some more capabs. I'd need MOVE and saw PUT has bugs to also not respect URL-quoted folders/elements (with spaces, utf-8 etc.) I've got MOVE working and I took care of the percent-escaped filenames but UTF-8 stuff is still giving me problems.

Re: Simple DAV server?

2006-04-20 Thread robert
Ivan Voras wrote: robert wrote: thanks, that's exactly to the point: python server.py 8080 mydavrootfolder Thanks for the patch, I assume it's free to incorporate it into the original archive? yes, of course Also, see my reply to Kyler Laird... maybe thats a good idea to put it

Re: Simple DAV server?

2006-04-20 Thread Ivan Voras
robert wrote: maybe thats a good idea to put it on sf.net to boil out all bugs. Yet I like it in that simple default manner, maybe switch on those additional creation functions with commandline switches (or config class instance passed to run..(config=None) ) I'm thinking of making a small

Re: Simple DAV server?

2006-04-19 Thread Kyler Laird
robert [EMAIL PROTECTED] writes: For testing purposes I'm looking for a simple DAV server - best a python thing serving a folder tree. Don't want to install/change/setup the complex apache dav .. I'm avoiding Apache for this too. Today I've been working on PanDAV. http

Re: Simple DAV server?

2006-04-19 Thread Ivan Voras
robert wrote: thanks, that's exactly to the point: python server.py 8080 mydavrootfolder Thanks for the patch, I assume it's free to incorporate it into the original archive? Also, see my reply to Kyler Laird... -- http://mail.python.org/mailman/listinfo/python-list

Re: Simple DAV server?

2006-04-19 Thread Ivan Voras
Kyler Laird wrote: I added the ability to create and delete collections (directories), delete members (files), authenticate users, and run per-user setuid/ setgid. It works well with Cadaver but I'm waiting for some MS users to report how it works under Windows. The only thing on my list

Simple DAV server?

2006-04-18 Thread robert
For testing purposes I'm looking for a simple DAV server - best a python thing serving a folder tree. Don't want to install/change/setup the complex apache dav .. Found PyDav http://www.econetwork.net/~jdavis/Software/PyDAV/readme.html, but the package is old and (crucial) webdav.ini.template

Re: Simple DAV server?

2006-04-18 Thread Larry Bates
Zope presents objects/folders via WebDAV. It isn't simple, but it works and is a Python thing. On Windows you can get a demo of GroupDrive here: http://www.webdrive.com/products/groupdrive/index.html -Larry Bates robert wrote: For testing purposes I'm looking for a simple DAV server - best

Re: Simple DAV server?

2006-04-18 Thread Ivan Voras
robert wrote: For testing purposes I'm looking for a simple DAV server - best a python thing serving a folder tree. Don't want to install/change/setup the complex apache dav .. You can try this one: http://ivoras.sharanet.org/projects/pandav.html It's been a while since I last updated