Version 12 of WebDAV

Updated 2002-07-26 13:47:07

What is WebDAV? Where can we learn about it? And is there code available to actually use it? http://www.webdav.org/ has the goodies. Basically it is an 'http 1.1' based interface to access remote filesystems, for distributed authoring and versioning.

For example Apple's 'iDisk' is implemented through webdav. You can access your iDisk in Tcl like this:

    package require vfs
    file mkdir local
    vfs::webdav::Mount http://myname:[email protected]/myname/ local
    cd local
    glob * ; # list your idisk directories
    cd Public
    ...

[...]

[ VFS: Vince Darley ]

Dossy Shiobara has been experimenting with WebDAV for AOLserver. In his description, http://panoptic.com/webdav-20010103.tcl "was whipped together in the span of 3 hours, using tcpdump to sniff existing WebDAV tools (because I was too lazy to read the spec. and implement from there)."

The file here looks like a WebDAV server implementation.

What would be nice would be to add to VFS a client implementation, so Tcl can manipulate remote WebDAV directories directly. The tclvfs extension now includes a very rudimentary first attempt at this. It needs lots of work!

Anyone know what happened to 'TclDAV' which was supposed to be here http://comanche.com.dtu.dk/tcldav/

Cineast appears to be an extensible web browser with webdav support.


Category Internet | Category Acronym