[ZDP] BackTalk to Document Zope Developer's Guide (2.4 edition)/Object Publishing

webmaster@zope.org webmaster@zope.org
Fri, 15 Nov 2002 14:21:41 -0500


A comment to the paragraph below was recently added via http://www.zope.org/Documentation/Books/ZDG/current/ObjectPublishing.stx#4-99

---------------

        Write locking is a feature of WebDAV that allows users to put
        a lock on objects they are working on. Support write locking
        is easy. To implement write locking you must assert that your
        class implements the 'WriteLockInterface'. For example::

          from webdav.WriteLockInterface import WriteLockInterface

          class MyContentClass(OFS.SimpleItem.Item, Persistent):
              __implements__ = (WriteLockInterface,)

          % Anonymous User - Nov. 15, 2002 2:21 pm:
           typo: 'Support write locking' should read e.g. 'Supporting write locking'