| 1 |
$Id: README.txt,v 1.1 2008/02/22 04:20:17 peligrorice Exp $
|
| 2 |
|
| 3 |
DESCRIPTION
|
| 4 |
===========
|
| 5 |
A user may wish, once nodes are published, to have additional edits go into
|
| 6 |
moderation rather than immediately showing up.
|
| 7 |
|
| 8 |
The Save As Draft module allows you to leave existing revisions of a node
|
| 9 |
published while new revisions go into draft 'mode' until they are released.
|
| 10 |
|
| 11 |
The term 'draft' is merely a unique revision. It isn't a previous revision,
|
| 12 |
but a future revision of a node.
|
| 13 |
|
| 14 |
This module is designed to work with Drupal 5.x.
|
| 15 |
|
| 16 |
USAGE
|
| 17 |
=====
|
| 18 |
Administrator (installation):
|
| 19 |
1. Copy this directory to a suitable modules directory, such as
|
| 20 |
sites/all/modules
|
| 21 |
2. Enable the module at: Administer > Site building > Modules
|
| 22 |
3. Enable the 'Save As Draft' setting on the appropriate content type
|
| 23 |
4. Set the appropriate permissions at: Administer > User Management > Access Control
|
| 24 |
4. The 'Save As Draft Settings' fieldset should appear on the appropriate nodes.
|
| 25 |
|
| 26 |
Users:
|
| 27 |
1. When modifying a node the user may decide not to publish their current changes
|
| 28 |
they can then check the Save As Draft checkbox, and then submit the node.
|
| 29 |
2. The changes will be stored in a future revision, draft, that can be published at a
|
| 30 |
later date.
|
| 31 |
3. Every time the node is saved with the Save As Draft checkbox checked, a new 'future'
|
| 32 |
revision will be created.
|
| 33 |
4. Each time the user edits the node the most current revision will be used (even if
|
| 34 |
this is not the 'active' revision)
|
| 35 |
5. To release a draft the user can simply edit the node, uncheck the Save As Draft
|
| 36 |
checkbox and submit the node. They may also use the Secondary Method below.
|
| 37 |
|
| 38 |
Secondary Method:
|
| 39 |
1. Through either the Pending drafts block, or the "Drafts" tab at
|
| 40 |
Administer >> Content >> Content, click on the title of a node with pending
|
| 41 |
drafts. This will take you to a page showing all the revisions, including drafts, for that
|
| 42 |
node.
|
| 43 |
2. Click on the title of any revision, or draft, to view its contents and check it over.
|
| 44 |
3. If the changes are found acceptable, click "Publish revision" at the top of
|
| 45 |
the post. This will be made the new active revision.
|
| 46 |
|
| 47 |
AUTHOR
|
| 48 |
======
|
| 49 |
Matt Rice
|
| 50 |
|
| 51 |
With much of the code borrowed from the Revision Moderation module by Angela Byron (angie [at] lullabot.com)
|