WebDAV Functions in Amaya

About WebDAV

The WebDAV (WWW Distributed Authoring and Versioning) is a set of extensions to the HTTP protocol, which allows users to collaboratively edit and manage web resources on remote servers. It aims to extend the HTTP protocol to give place to an open architecture at protocol level, to develop new distributed authoring tools in the web, specially emphasizing the collaborative authoring of web pages (see RFC 2518). WebDAV defines operations over properties, collections, namespaces and overwriting protection (lock mechanism), and for these operations, it defines new methods, headers, request and response entity bodies. Nevertheless, versioning features, present in the original proposition, have been moved to Delta-V IETF work group, which aims to extend WebDAV and HTTP/1.1 for those features (see E. J. Whitehead's paper "The future of Distributed Software Development on the Internet").

The lock mechanism defined in WebDAV has been design to prevent the resources overwriting (that is, to prevent the lost update problem) using the operations lock and unlock. A lock controls the write access to a resource by limiting HTTP writing operations, like PUT, POST and DELETE. This means that only somebody who knows the lock will be able to execute those operations. The WebDAV protocol also defines two lock scopes: anexclusive and a shared lock. An exclusive lock guarantees that one person possess the lock, and no one else will be able to lock the resource (it does not affect the resource reading). A shared lock give allows to a group of users to create their locks over a resource, but they must trust each other to prevent access problems. Besides, each lock has a timeout, but the user cannot forget that locks may disappear in the server due to exceptions in the server.

We can find more informations about WebDAV in RFC 2518 and also at WebDAV.org website.

WebDAV Support in Amaya

Amaya has an optional and limited support for WebDAV. This support include the following operations: lock/unlock a WebDAV compilant resource, view the WebDAV properties of a resource and lock discovery capabilities. Besides, this support includes some awareness functions, that can automatically inform user about locked resources.

How Use It?

The WebDAV support present in Amaya intents to help small groups of users to edir collaboratively their Web pages. To show you how it works, here is an example: supose that you have a WebDAV server (indeed, you must have a Web server that supports WebDAV to work with it) named davserver.mycompany.com, and you and your colleagues want to edit collaboratively some documents that are in the WebDAV folder /shared/ (WebDAV folders are called collections).

So, imagine that you need change the document http://davserver.mycompany.com/shared/Doc1.html. To do so, you will load the document in your Amaya editor, and then you can lock this document (Lock resource entry in Cooperation menu _ see Figure 1) . Once you locked the document, if one of your colleagues try to save some change in this document, s/he will be warned about your lock, and updates will not be lost automatically. Thus, while the document is locked, you can savely modify it, and when you've finished your work, you can unlock the document, allowing you colleague to lock the document and do his/her modifications.

Cooperation Menu

Therefore, if you want to be aware whether a colleague locked a Web page, you can use the View resource properties entry in Cooperation menu to see all the properties of the page, or you can configure Amaya to automatically inform you if the page is locked. To do so, you will need to open the Cooperation->Preferences dialog, mark the General Awareness option and put the your shared folder's reference in the User's WedDAV Resource list field (http://davserver.mycompany.com/shared/, as shows Figure 2). Once you did this, when loading a page locked by a colleague under http://davserver.mycompany.com/shared/ folder, you will be notified by Amaya about this.

Cooperation - Preferences

WebDAV options in Amaya registry

This options are the Cooperation -> Preferences options. Default value are marked:

DAV_DEPTH= [ infinity | 0 ]
Lock depth. If depth is infinity, a lock over a collection (folder) will afect all components. Otherwise, the lock will afect just the collection, prevent an user that doesn't know the lock to create or remove collection's components.
DAV_TIMEOUT= [ Infinite | Second-XXXX ]
The desired timeout for the lock. "Infinite" value means that there is no timeout value, and "Second-XXXX" will try to get a timeout value of XXXX seconds.
DAV_LOCK_SCOPE= [ exclusive | shared ]
The lock scope.
DAV_USER_URL= [ URL ]
An URL that identifies the user. Example: mailto:myself@myhost.com or http://myhost.com/myhomepage.html
DAV_AWARENESS= [ yes | no ]
Indicates if the user wants basic awareness information about locked resources
DAV_AWARENESS_ONEXIT=[ yes | no ]
Indicates if the user wants to receive information about his/her own locks, when he/she leaves a resource.
DAV_URLS= [ URL URL URL ... ]
A list of resource URLs used by the user as WebDAV resources.


How to compile Amaya with WebDAV functions?

WebDAV supoprt is an optional feature of Amaya. To compile and use it, you will need the following:

Once you made the cvs check-out of Libwww with WebDAV support and get Amaya sources , you should follow this bootstrap instructions (under Linux/Unix environments - for windows environments, see Amaya and Libwww homepage):

At libwww folder:

At Amaya folder:


Created by Manuele Kirsch Pinheiro, June, 13, 2002.