[Zope-CMF] Query on CMF workflow.

John Morton jwm@plain.co.nz
Thu, 24 Oct 2002 20:08:25 +1300


On Thu, 24 Oct 2002 17:46, Paul Naveen Raj Jeyaraj wrote:
> Hi,
>
> I am using Zope 2.5.1 and am using CMF site to manage the pages. With the
> current workflow, pages under a particular user can be viewed by all only
> if it's state is published. This is fine. But if the user wants to make
> some changes he will have to retract the item for doing so. During this
> time no one is able to view the page. Is it possible to make the latest
> version of the page available for viewing by other users? Also the edited
> new page should be made available after it is published. Any workflow
> available to implement the same? Expecting an earlier response. Thank you.

You can set up a workflow to meet these requirements fairly easily with 
DCWorkflows. Specifically, you'd want to change the permissions of the 
published state to allow the owner of the content (and perhaps, reviewers)
the ability to edit the content, so they don't need to switch back and forth 
between publishing states. This tends to make sense for small pieces of 
content, like links or events, but for large documents it may make sense to 
stick with the retract, change and resubmit model.

John