Re: webdav

2015-09-02 Thread James Schneider
On Sep 1, 2015 3:55 AM, "Pawanesh Gautam" wrote: > > whats the use of webdav in django project ? > WebDAV and Django are usually handled separately. Normally WebDAV is hooked directly into the web server. Not to say that Django couldn't offer such services; it woul

webdav

2015-09-01 Thread Pawanesh Gautam
whats the use of webdav in django project ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to

Re: Django + WebDAV

2011-02-16 Thread Michael Ryan
I have looked at wsgiDAV as well as a nice looking WebDAV emulator for Google App Engines, and they will be considered when I go to start this project. A big issue with WebDAV from an HTTP framework perspective is that ideally it should be storage agnostic. When you start to throw in stuff like

Re: Django + WebDAV

2011-02-16 Thread MrMuffin
server which authenticates logins using django user > management, but a webdavserver would be even nicer. > > Thomas > > On Tue, Feb 15, 2011 at 5:50 AM, Michael A. Ryan wrote: > > > > > > > > > > > Hello Django Users > > > I'm looking f

Re: Django + WebDAV

2011-02-15 Thread Thomas Weholt
15, 2011 at 5:50 AM, Michael A. Ryan wrote: > Hello Django Users > > I'm looking for people who have experience interfacing Django with WebDAV > protocol, or using Django as a basis for authentication to a WebDAV server. > > I'm interested in at least comparing notes b

Django + WebDAV

2011-02-15 Thread Michael A. Ryan
Hello Django Users I'm looking for people who have experience interfacing Django with WebDAV protocol, or using Django as a basis for authentication to a WebDAV server. I'm interested in at least comparing notes but potentially interested in maybe co-authoring an open source module

Re: Webdav access - OT

2006-08-26 Thread toth anna
Curtis <[EMAIL PROTECTED]> írta: > PyFileServer - http://pyfilesync.berlios.de/pyfileserver.html seems to > be very similar (at least in theory) to what you want. It's a WSGI > WebDav server. Although not refreshed a year ago, i'll check it. Seem to be quite what

Re: Webdav access - OT

2006-08-25 Thread Curtis
PyFileServer - http://pyfilesync.berlios.de/pyfileserver.html seems to be very similar (at least in theory) to what you want. It's a WSGI WebDav server. Cheers, -Curt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

Re: Webdav access - OT

2006-08-24 Thread clee
I would look at zope fror code for a webdav server. I believe Twisted web may also. (Starting with Zope 2.8, zope uses Twisted for it's web server.) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dj

Re: Webdav access - OT

2006-08-23 Thread toth anna
Ian Holsman <[EMAIL PROTECTED]> írta: > http://www.atmarkit.co.jp/flinux/special/webdav03/webdav01a.html > describes something similar to what you want by the looks of the > pictures (but in japanese) :) I hope my doctor does not have to learn surgery from japanese boo

Re: Webdav access - OT

2006-08-23 Thread toth anna
ication (because this reason), files are stored in filesystem, but renamed and original/actual names dictionary are stored in database. > That said, Googling "python webdav server" gives me http:// > sandbox.xerox.com/webdav/, which at first glance might be what you >

Re: Webdav access - OT

2006-08-23 Thread Ian Holsman
//www.atmarkit.co.jp/flinux/special/webdav03/webdav01a.html describes something similar to what you want by the looks of the pictures (but in japanese) > > That said, Googling "python webdav server" gives me http:// > sandbox.xerox.com/webdav/, which at first glance might be what yo

Re: Webdav access - OT

2006-08-23 Thread Jacob Kaplan-Moss
On Aug 23, 2006, at 5:26 AM, toth anna wrote: > I need to provide webdav access (upload) to my customer. > Problem is, uploaded files should hold not in filesystem, > but in database (which other "end" is in django). > Our diversified solutions are converges to python,

Webdav access - OT

2006-08-23 Thread toth anna
I need to provide webdav access (upload) to my customer. Problem is, uploaded files should hold not in filesystem, but in database (which other "end" is in django). Our diversified solutions are converges to python, so i'm searching for pythonic way. Google gives me a lot of hi