| 1 |
/* $Id: README.txt,v 1.4.2.2 2008/08/06 15:10:33 smk Exp $ */
|
| 2 |
|
| 3 |
-- SUMMARY --
|
| 4 |
|
| 5 |
This module implements a pessimistic locking strategy, which means that content
|
| 6 |
will be exclusively locked whenever a user starts editing it. The lock will be
|
| 7 |
automatically released when the user submits the form or navigates away from
|
| 8 |
the edit page.
|
| 9 |
|
| 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 |
|
| 14 |
For a full description visit the project page:
|
| 15 |
http://drupal.org/project/checkout
|
| 16 |
Bug reports, feature suggestions and latest developments:
|
| 17 |
http://drupal.org/project/issues/checkout
|
| 18 |
|
| 19 |
|
| 20 |
-- REQUIREMENTS --
|
| 21 |
|
| 22 |
Working cron, if you wish to make use of automated check-ins. If your hoster
|
| 23 |
doesn't allow you to access cron take a look at Poormanscron
|
| 24 |
(http://drupal.org/project/poormanscron).
|
| 25 |
|
| 26 |
|
| 27 |
-- INSTALLATION --
|
| 28 |
|
| 29 |
1. Install as usual, see http://drupal.org/node/70151 for further information.
|
| 30 |
|
| 31 |
2. Configure user permissions at User management >> Permissions:
|
| 32 |
|
| 33 |
check out documents - This enables content locking when a user starts
|
| 34 |
editing it. Note that even without this permission, users are still
|
| 35 |
able to edit contents, they're just not protected against concurrent
|
| 36 |
edits.
|
| 37 |
|
| 38 |
keep documents checked out - Whether to allow users to keep content locked
|
| 39 |
across edits. This will enable a similar named checkbox on the content
|
| 40 |
edit form.
|
| 41 |
|
| 42 |
administer checked out documents - View and release locked contents of all
|
| 43 |
users. This enables the administrative tab on Content management >>
|
| 44 |
Content. Note that even without this permission, users can manage their
|
| 45 |
own content locks on their profile page.
|
| 46 |
|
| 47 |
3. Configure the module at Content management >> Post settings.
|
| 48 |
Currently, the only configurable setting is the automatic check-in time span.
|
| 49 |
|
| 50 |
|
| 51 |
-- CREDITS --
|
| 52 |
|
| 53 |
Original author:
|
| 54 |
Joël Guesclin
|
| 55 |
|
| 56 |
Current maintainer:
|
| 57 |
Stefan M. Kudwien (smk-ka) - http://drupal.org/user/48898
|
| 58 |
|
| 59 |
This project has been sponsored by UNLEASHED MIND.
|
| 60 |
Specialized in consulting and planning of Drupal powered sites, UNLEASHED
|
| 61 |
MIND offers installation, development, theming, customization, and hosting
|
| 62 |
to get you started. Visit http://www.unleashedmind.com for more information.
|