Re: mod_python web-dav management system

2006-04-23 Thread Kyler Laird
[EMAIL PROTECTED] writes: >What about if there existed a mod_dav_python for Apache. Would >that be of interest. To me it would only be of interest if it's combined with Apache's suid capabilities. > The idea is that the module could bridge the >C API hooks and structures of mod_dav module to Pyt

Re: mod_python web-dav management system

2006-04-19 Thread grahamd
Kyler Laird wrote: > Damjan <[EMAIL PROTECTED]> writes: > > >Now I've been thinking that it might be pretty easy to implement a > >authorization layer with mod_python (but living handling of the web-dav > >protocol to apache)... So, has anyone already done something similar? > > Yup. I'm in the p

Re: mod_python web-dav management system

2006-04-19 Thread Kyler Laird
Damjan <[EMAIL PROTECTED]> writes: >I wouldn't use Zope as file storage. The ZODB is inefficient for storing big >files. It sounds like you're describing Zope FileStorage. There are certainly other options for Zope storage. I still use DirectoryStorage sometimes but Zope Local File System

Re: mod_python web-dav management system

2006-04-19 Thread Kyler Laird
Damjan <[EMAIL PROTECTED]> writes: >Now I've been thinking that it might be pretty easy to implement a >authorization layer with mod_python (but living handling of the web-dav >protocol to apache)... So, has anyone already done something similar? Yup. I'm in the process. I'm using mod_python to

Re: mod_python web-dav management system

2005-11-14 Thread Damjan
> Zope has WebDAV support and is written in Python. You could > use Zope or perhaps use "parts" of it (since it is open source). I wouldn't use Zope as file storage. The ZODB is inefficient for storing big files. -- damjan -- http://mail.python.org/mailman/listinfo/python-list

Re: mod_python web-dav management system

2005-11-11 Thread Larry Bates
Zope has WebDAV support and is written in Python. You could use Zope or perhaps use "parts" of it (since it is open source). -Larry Bates Damjan wrote: > Apache2 comes with builtin Web-dav support, but authorization is limited to > Apache's methods, which are not very flexible. > > Now I've bee

mod_python web-dav management system

2005-11-11 Thread Damjan
Apache2 comes with builtin Web-dav support, but authorization is limited to Apache's methods, which are not very flexible. Now I've been thinking that it might be pretty easy to implement a authorization layer with mod_python (but living handling of the web-dav protocol to apache)... So, has anyon