You are here

README.txt in Content locking (anti-concurrent editing) 6

Same filename in this branch
  1. 6 README.txt
  2. 6 modules/content_lock_timeout/README.txt
Same filename and directory in other branches
  1. 6.2 README.txt
  2. 7.3 README.txt
  3. 7 README.txt
  4. 7.2 README.txt
/* $Id$ */
-- Fork --

This module is a fork of the module http://drupal.org/project/checkout and has 
been nearly completely reweritten since then

-- SUMMARY --
This module implements a pessimistic locking strategy, which means that content
will be exclusively locked whenever a user starts editing it.  The lock will be
automatically released when the user submits the form or navigates away from
the edit page.

Users may also permanently lock content, to prevent others from editing it.  
Content locks that have been "forgotten" can be automatically released after a
configurable time span.

For a full description visit the project page:
  http://drupal.org/project/content_lock
Bug reports, feature suggestions and latest developments:
  http://drupal.org/project/issues/content_lock


-- INSTALLATION --

1. Install as usual, see http://drupal.org/node/70151 for further information.

2. Configure user permissions at User management >> Permissions:

   check out documents - This enables content locking when a user starts
     editing it.  Note that even without this permission, users are still
     able to edit contents, they're just not protected against concurrent
     edits.

   keep documents checked out - Whether to allow users to keep content locked
     across edits.  This will enable a similar named checkbox on the content
     edit form.

   administer checked out documents - View and release locked contents of all
     users.  This enables the administrative tab on Content management >>
     Content.  Note that even without this permission, users can manage their
     own content locks on their profile page.

3. Configure the module at Content management >> Post settings.

   Show lock / unlock message - Make content_lock more verbose, informing a
     user when he locks a node and about his inconsideration when he visits
     one node while he has kept another node locked.

   Add cancel button - Adds a link in a node's edit form to cancel the edit,
     letting the user intentionally navigate away from the Edit page without
     being asked for confirmation by a javascript dialog.

-- CREDITS --
Current authors:
Eugen Mayer http://drupal.org/user/108406
Nathan Phillip Brink http://drupal.org/user/108406


Original authors:
Stefan M. Kudwien
Joël Guesclin

File

README.txt
View source
  1. /* $Id$ */
  2. -- Fork --
  3. This module is a fork of the module http://drupal.org/project/checkout and has
  4. been nearly completely reweritten since then
  5. -- SUMMARY --
  6. This module implements a pessimistic locking strategy, which means that content
  7. will be exclusively locked whenever a user starts editing it. The lock will be
  8. automatically released when the user submits the form or navigates away from
  9. the edit page.
  10. Users may also permanently lock content, to prevent others from editing it.
  11. Content locks that have been "forgotten" can be automatically released after a
  12. configurable time span.
  13. For a full description visit the project page:
  14. http://drupal.org/project/content_lock
  15. Bug reports, feature suggestions and latest developments:
  16. http://drupal.org/project/issues/content_lock
  17. -- INSTALLATION --
  18. 1. Install as usual, see http://drupal.org/node/70151 for further information.
  19. 2. Configure user permissions at User management >> Permissions:
  20. check out documents - This enables content locking when a user starts
  21. editing it. Note that even without this permission, users are still
  22. able to edit contents, they're just not protected against concurrent
  23. edits.
  24. keep documents checked out - Whether to allow users to keep content locked
  25. across edits. This will enable a similar named checkbox on the content
  26. edit form.
  27. administer checked out documents - View and release locked contents of all
  28. users. This enables the administrative tab on Content management >>
  29. Content. Note that even without this permission, users can manage their
  30. own content locks on their profile page.
  31. 3. Configure the module at Content management >> Post settings.
  32. Show lock / unlock message - Make content_lock more verbose, informing a
  33. user when he locks a node and about his inconsideration when he visits
  34. one node while he has kept another node locked.
  35. Add cancel button - Adds a link in a node's edit form to cancel the edit,
  36. letting the user intentionally navigate away from the Edit page without
  37. being asked for confirmation by a javascript dialog.
  38. -- CREDITS --
  39. Current authors:
  40. Eugen Mayer http://drupal.org/user/108406
  41. Nathan Phillip Brink http://drupal.org/user/108406
  42. Original authors:
  43. Stefan M. Kudwien
  44. Joël Guesclin