Tagged Questions
0
votes
0answers
44 views
How would you implement a Python-webdav-service as an interface to access content of a relational database?
For simplification, let's assume we have two tables:
Folder (self referential): "id", "parent_folder", "name"
File: "id", "folder_id" (--> Folder.id), "name", "content"
In SQLAlchemy:
# -*- ...
0
votes
0answers
28 views
With python, how can I connect to and download files from, a WebDAV server?
My school has a webdav file server that contains files that I frequently need to download. For this server, I have a username and password that I can use to connect to the server, and If I go to the ...
0
votes
1answer
117 views
getting started with davlib.py
I want to write a script to connect and access a webdav server. I found out that there is a
/usr/local/lib/python2.7/dist-packages/davlib.py
But how to use it? There is no tutorial, no ...
0
votes
0answers
147 views
Webdav not uploading/downloading files to/from dropbox
I have taken it upon myself to create a webdav that links dropbox and the iWork suite for iPad. I am trying to do this because iWork.com is going down and a lot of other students are going to be ...
0
votes
0answers
155 views
zimbra, url for caldav
I use zimbra, which has caldav implementations caldav. I try create new event in calendar for my simple client ( which use caldav python library ). I dont now what type of url for save new event in ...
0
votes
0answers
138 views
Transfer the file directly from client to plone server using webdav
How can I transfer the file directly from client to plone server using webdav?
0
votes
1answer
343 views
Python - How to properly read virtual file systems
I've recently looked in to the Virtual File Systems module for Python (http://packages.python.org/fs/), and have run in to a quick question on how to properly use it.
I've created myself an FTP ...
1
vote
1answer
351 views
How can I use “Expect: 100-continue” header in Twisted Web?
I've been working with AkaDAV, a Twisted based WebDAV server, and I'm trying to support the full litmus test suite. I'm currently stuck on the http sub-suite.
Specifically, I can run:
$ TESTS=http ...
0
votes
1answer
534 views
Allow Outlook 2007 to edit custom shared iCalendars
I have been working on some custom shared Internet calendar software. I currently have a webdav server setup using apache and my software (using python) and right now it works great with Thunderbird ...
0
votes
1answer
144 views
OS/X mimetype handler
I'd like to write a small script that implements RFC4709 for OS/X.
I started off by creating an application bundle that registers the application/xml+davmount mimetype and launches a simple python ...
12
votes
5answers
5k views
Python client library for WebDAV
I'd like to implement a piece of functionality in my application that uploads and manipulates files on a WebDAV server. I'm looking for a mature Python library that would give an interface similar to ...
1
vote
1answer
785 views
webdav for wsgi/python?
I want to add WebDAV to whiff. This would be easy if I could find a simple WSGI component that implements WebDAV. I found http://pyfilesync.berlios.de/pyfileserver.html, but it seems to insist on ...
1
vote
3answers
2k views
Is there a better trivial Python WebDAV server code snippet than this?
Does anyone have a better code snippet for a trivial Python WebDAV server? The code below (which is cobbled together from some Google search results) appears to work under Python 2.6, but I wonder if ...
1
vote
3answers
1k views
Control access to WebDav/Apache using Python
I want to give users access to WebDav using Apache, but I want to autenticate them first and give each user access to a specific folder. All authentication must be done against a Django-based ...