Products.CMFPlacefulWorkflow


NameProducts.CMFPlacefulWorkflow JSON
Version 3.0.3 PyPI version JSON
download
home_pagehttps://github.com/plone/Products.CMFPlacefulWorkflow
SummaryWorkflow policies for Plone
upload_time2023-03-14 22:40:26
maintainer
docs_urlNone
authorEncolpe DEGOUTE
requires_python>=3.8
licenseGPL
keywords cmf plone zope2 workflow
VCS
bugtrack_url
requirements setuptools zc.buildout tox
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Origin
======

This product is the implementation of a PLIP initiated by Maik Röder:
http://plone.org/products/plone/roadmap/52

Overview
========

Placeful Workflow is a Plone product that allows you to define workflow
policies that define content type to workflow mappings that can be applied in
any sub-folder of your Plone site:

1. When you access the root of your site, you will see a new action in the
   workflow state drop-down menu called "policy". Click on the "policy" link.

2. The next page will let you add a policy to your folder by clicking on the
   "Add Workflow policy" link. Click on "Add Workflow policy".

3. Now you have a workflow policy in your site, and you can set the workflow
   policies for this folder and below.

We didn't add any workflow policies, so you don't have a choice of different
workflow policies yet, so the default workflow policy will be taken both for
the folder and below.

Installation
============

* Use Site Setup -> Add-on Products panel to install

* Now you can define and apply local workflow policies through the Plone
  Interface.

Usage
=====

Now, let's define a new workflow policy:

1. Access "Site Setup" and click on "Placeful Workflow" in the "Add-on
   Product Configuration" section.

2. Enter the name "my_policy" in the "New policy" field, and click on "add".

3. Now you have a new policy. Enter the title "Example policy" and the
   description "This is an example policy".

4. Change the workflow for the content type "Folder" from "folder_workflow" to
   plone_workflow", and click on "Save". Now all your content types should use
   the "plone_workflow".

Let's test the new workflow policy for "Folders" at the root of our site:

1. At the root of the site, select the "Policy" link in the workflow state
   drop-down menu.

2. Select "Example policy" for "In this Folder" and "Below this Folder" and
   click "Save".

3. Then, let's add a Folder to see whether the new workflow policy is active.
   Go to the root of your site and select "Folder" from the "Add new item"
   drop-down list. Enter the id "myfolder", the title "My folder" and the
   description "This is my folder", and click on "Save".

4. Now, when you access the "State" drop-down list, you will see that you have
   the possibility to "submit" the folder. The submit transition only exists
   in the "plone_workflow", and is absent from the "folder_workflow", which
   demonstrates that the workflow policy we have chosen is used for the
   "Folder" content type.

Let's go one step further and add a new folder inside of "My folder". After
having added the new folder, you should also find the "Submit" transition
available.

Now it would be interesting to change the workflow policy setting in the Plone
site. Let's first change the workflow policy for "Below this Folder" to
"Default Policy". You will find that the second folder does not more have the
"submit" transition.

You can add an additional workflow policy in the first folder, which assigns
the "My policy" for "In this Folder", so the second folder will once again have
the "submit" transition.

Additional tools
================

The Placeful Workflow tool (portal_placeful_workflow) is installed by the
installer. It provides a few configuration options so that you use to create
you workflow policies through the ZMI.

1.6.x series
============

Plone 5 support only


Changelog
=========

.. You should *NOT* be adding new change log entries to this file.
   You should create a file in the news directory instead.
   For helpful instructions, please see:
   https://github.com/plone/plone.releaser/blob/master/ADD-A-NEWS-ITEM.rst

.. towncrier release notes start

3.0.3 (2023-03-14)
------------------

Internal:


- Update configuration files.
  [plone devs] (7d54a267)


3.0.2 (2023-02-07)
------------------

Bug fixes:


- Update package configuration.
  [gforcada] (#1)


3.0.1 (2023-01-26)
------------------

Bug fixes:


- Cleanup: remove six, use plone.base, zpretty.  [maurits] (#44)


Internal:


- Update configuration files.
  [plone meta] (#1)


3.0.0 (2022-12-02)
------------------

Bug fixes:


- Final release for Plone 6.0.0 (#600)


3.0.0b2 (2022-09-30)
--------------------

Bug fixes:


- Increase the length of the password used in tests. [davisagli] (#43)


3.0.0b1 (2022-06-23)
--------------------

Bug fixes:


- Update Markup in Page Templates, made it ready for Plone 6 with Bootstrap 5
  Rename Browserviews, make the names it more consistent
  [1letter] (#41)


3.0.0a2 (2022-05-14)
--------------------

Bug fixes:


- Really remove the old icon from the skin layer, emptying it.
  [maurits] (#33)


3.0.0a1 (2022-01-25)
--------------------

Breaking changes:


- Use ``toolbar-action/workflow`` as icon.  Only works in Plone 6.
  Removed the ``CMFPlacefulWorkflow`` skin layer.
  Removed ancient upgrade step, added new one for the above.
  [maurits] (#33)


Bug fixes:


- Fix a test that picks up the footer-portlets link instead of a document. (#36)
- Fixed undefined name ``portal_url``.
  Fixed traceback on the policy mapping form when the workflow policy id is missing or wrong.
  [maurits] (#39)


2.0.4 (2021-02-16)
------------------

Bug fixes:


- Removed unused mock request.SESSION from tests.
  [maurits] (#1)


2.0.3 (2020-09-28)
------------------

Bug fixes:


- Fix deprecation warning at startup for setDefaultRoles.
  [maurits] (#34)


2.0.2 (2020-04-23)
------------------

Bug fixes:


- Minor packaging updates. (#1)


2.0.1 (2020-03-09)
------------------

Bug fixes:


- Fixed ModuleNotFoundError: No module named 'App.class_init' in Zope 5.
  [maurits] (#31)


2.0.0 (2018-11-05)
------------------

Breaking changes:


- Adapt tests to Products.GenericSetup >= 2.0, thus requiring at least that
  version. [icemac] (#22)
- Replace all skin-templates with browser-views. [bauer] (#23)


New features:


- Replaced usages of my_worklist.py skin script. (#28)


Bug fixes:


- Fix all tests for python 3 and no longer use PloneTestCase. [pbauer] (#23)
- More Python 2 / 3 compatibility. [ale-rt, davilima6] (#24)
- Do the permission checks in zcml. This means we can stop using the
  ``raiseUnauthorized`` skin script. Also check for the 'CMFPlacefulWorkflow:
  Manage workflow policies' permission instead of the 'Manage portal'
  permission. [maurits] (#25)


2.0.0 (unreleased)
------------------

Bug fixes:

- Remove traces of ZopeTestCase.
  [gforcada]


1.7.4 (2018-02-05)
------------------

New features:

- Prepare for Python 2 / 3 compatibility
  [davilima6]


1.7.3 (2017-03-09)
------------------

Bug fixes:

- Removed Plone 5.0 installer code from tests.
  Test that multiple installs and uninstalls work.
  See `issue 1959 <https://github.com/plone/Products.CMFPlone/issues/1959>`_.
  [maurits]


1.7.2 (2017-01-17)
------------------

Bug fixes:

- Fixed workflow tests for new ``comment_one_state_workflow``.  [maurits]


1.7.1 (2016-08-18)
------------------

Bug fixes:

- Use zope.interface decorator.
  [gforcada]


1.7.0 (2016-05-26)
------------------

New:

- Added ``uninstall`` profile instead of old external method.  [maurits]

- Removed ``actionicons.xml`` because this is handled in ``controlpanel.xml``.  [maurits]

- Replaced ``placeful_marker`` import step with a ``post_handler``.  [maurits]


1.6.5 (2015-11-28)
------------------

Fixes:

- Updated Site Setup link in all control panels.
  Fixes https://github.com/plone/Products.CMFPlone/issues/1255
  [davilima6]


1.6.4 (2015-09-27)
------------------

- Fix test after new default dependecy-strategy for GenericSetup.
  [pbauer]


1.6.3 (2015-09-20)
------------------

- Allow unicode as workflow-policy-name
  [pbauer]


1.6.2 (2015-09-07)
------------------

- Added upgrade step to apply our full profile.  This is meant mostly
  for upgrades from ancient versions that had no profile yet or had a
  profile without a metadata.xml.  In that case the quick installer
  would complain that the old profile version was unknown and there
  was no upgrade.
  [maurits]


1.6.1 (2015-03-13)
------------------

- Ported tests to plone.app.testing
  [tomgross]

- PEP8 and frosted cleanup
  [tomgross]

- Major cleanup of old stuff
  [tomgross]


1.6.0 (2014-04-16)
------------------

- Plone 5 fixes
  [vangheem]


1.5.10 (2013-12-07)
-------------------

- Move dependency on Products.PloneTestCase to test extra and thus removing
  implicit hard dependency on Products.ATContentTypes.
  [thet]

- Fix policy_form test failures for Plone 5.
  [timo]


1.5.9 (2012-12-15)
------------------

- Fixed handling of "update security" option.
  [ericof]


1.5.8 (2012-10-16)
------------------

- Fixed updating Role Mappings only in current folder.
  [kroman0]

- Added 'CMFPlacefulWorkflow: Manage workflow policies' permission.
  ManageWorkflowPolicies is no longer 'Manage portal', it's now assigned to
  'CMFPlacefulWorkflow: Manage workflow policies'.
  [alecghica]

- Fixed add workflow policy template (via ZMI).
  [alecghica]

- Fixed descriptions under placeful_workflow_configuration.pt for sections
  "For this folder" and "Below this folder".
  [alecghica]

- Added "update security" as an option field on local configuration management
  form, as in most cases updating catalog role mappings can be a very long
  operation and is better to be made as a separate upgrade step.
  [alecghica]

1.5.7 (2012-05-25)
------------------

- Fixed a few test failures in combination with five.pt.
  [maurits]

1.5.6 (2011-11-24)
------------------

- Fix profiles description to be translated.
  [vincentfretin]

- Fix failing test.
  [davisagli]

1.5.5 - 2011-06-15
------------------

- Fix required value untested #9833
  [encolpe]

1.5.4 - 2011-03-31
------------------

- Fix test to work with both 4.0 and 4.1.
  [elro]

- Create base profile with no dependencies on the default Plone types to allow use in an
  archetype free dexterity environment
  [anthonyg]

1.5.3 - 2011-02-04
------------------

- Fix failing test. The 'comment_review_workflow' from plone.app.discussion is
  now part of the core.
  [timo]


1.5.2 - 2011-01-03
------------------

- Depend on ``Products.CMFPlone`` instead of ``Plone``.
  [elro]

- Updated the placeful_workflow import step to depends on typeinfo,
  as we need to make sure all types are available when importing the
  local policies.
  [deo]


1.5.1 - 2010-10-27
------------------

- Fixed chameleon incompatibility in `manage_workflow_policy_config.zpt`.
  Renamed `select_workflows.zpt` to `select_workflows.dtml` and
  `select_workflows.zpt` to `select_workflows.dtml`.
  [swampmonkey]

1.5 - 2010-07-18
----------------

- No changes.

1.5b5 - 2010-06-13
------------------

- Avoid deprecation warnings under Zope 2.13.
  [hannosch]

- Avoid using the deprecated five:implements directive.
  [hannosch]

1.5b4 - 2010-06-03
------------------

- Remove references to Large Plone Folder from the included workflow policies.
  [davisagli]

1.5b3 - 2010-05-01
------------------

- Use i18n_domain=cmfplacefulworkflow in profiles.zcml to be able to
  translate the title and description of the profile. This refs
  http://dev.plone.org/plone/ticket/9864
  [vincentfretin]

1.5b1 - 2009-12-27
------------------

- Avoid showing the content type icons in the workflow mapping screens.
  [hannosch]

- Small code cleanup and removal of unused imports.
  [hannosch]

1.5a2 - 2009-11-18
------------------

- Make CMFPlacefulWorkflow tool an ImmutableId object, but not a UniqueObject.
  The UniqueObject base class specifies that it is impossible to have any
  other object with the same id (portal_placeful_workflow). This was breaking
  in-ZODB GenericSetup snapshots, because the GenericSetup sub-folder for
  placeful workflow policies happens to also be called
  portal_placeful_workflow. Plone has a checkId script which disallows
  shadowing tools anyway, so the UniqueObject base class is a nicety rather
  than a necessity.
  [optilude]

1.5a1 - 2009-11-18
------------------

- Removed createSnapshot() call from exportimport.txt test. It wasn't doing
  anything useful, and caused a distracting test failure not related to
  CMFPlacefulWorkflow.

- Fix #9359: CMFPlacefulWorkflow defines __implements__ with zope3 interface.
  [encolpe]

- Remove use of the deprecated document_byline macro in the placeful
  workflow configuration template.
  [davisagli]

- Register configlet icon using icon_expr for forwards-compatibility
  with Plone 4.
  [davisagli]

- Copied safeEditProperty function from CMFPlone's migrations package,
  as that is being removed.
  [davisagli]

- Change imports from Globals to use canonical locations, for compatibility
  with Zope 2.12.
  [davisagli]

- Define wtool inside the prefs_workflow_policy_mapping template.
  [hannosch]

- Removed settings of the portal_skins tool itself from skins.xml.
  Specifically, allow_any was set to False, which bit me.
  [maurits]

- Made workflow policies translatable in prefs_workflow_localpolicies_form.
  [vincentfretin]

1.4.2 - 2009-03-05
------------------

- The `Cancel` button on the local workflow configuration screen was saving
  data as much as the `Save` button. Now it actually cancels the operation.
  [hannosch]

- Made sure you cannot set a workflow configuration on a non-folderish item
  in the site root. The actual configuration would end up on the site root.
  [hannosch]

- Change the local workflow configuration screen to not be shown for the
  site root, even if you accidentally type in the wrong URL.
  [hannosch]

1.4.1 (2009-01-17)
------------------

- Declare package dependencies and fixed deprecation warnings for use
  of Globals.
  [hannosch]

- Copied safeEditProperty from CMFPlone.migration_util to avoid a dependency.
  [hannosch]


1.4.0 (2008-11-05)
------------------

- Port evolutions from the 1.3 maintenance branch (old style product).
  [encolpe]

- Fixed bad version in metadata.xml (again)
  [encolpe]

- Removed Favorite content type.
  [hannosch]

- Fixed "ValueError: 'acquisition' is not a workflow ID" in
  prefs_workflow_policy_mapping.  Fix prepared by jhackel.  Fixes
  http://dev.plone.org/plone/ticket/8101
  [maurits]


1.3.2 (2008-06-30)
------------------

- Fixed bad metadata.xml.
  [encolpe]

- Fixed incorrect variable name in exception message.
  [davisagli]

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/plone/Products.CMFPlacefulWorkflow",
    "name": "Products.CMFPlacefulWorkflow",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "CMF Plone Zope2 workflow",
    "author": "Encolpe DEGOUTE",
    "author_email": "plone-developers@lists.sourceforge.net",
    "download_url": "https://files.pythonhosted.org/packages/14/79/c0f7be6e1afcfc6b0e4ada7f31a64827c16b8a51476f34aa3b68b7a916a7/Products.CMFPlacefulWorkflow-3.0.3.tar.gz",
    "platform": null,
    "description": "Origin\n======\n\nThis product is the implementation of a PLIP initiated by Maik R\u00f6der:\nhttp://plone.org/products/plone/roadmap/52\n\nOverview\n========\n\nPlaceful Workflow is a Plone product that allows you to define workflow\npolicies that define content type to workflow mappings that can be applied in\nany sub-folder of your Plone site:\n\n1. When you access the root of your site, you will see a new action in the\n   workflow state drop-down menu called \"policy\". Click on the \"policy\" link.\n\n2. The next page will let you add a policy to your folder by clicking on the\n   \"Add Workflow policy\" link. Click on \"Add Workflow policy\".\n\n3. Now you have a workflow policy in your site, and you can set the workflow\n   policies for this folder and below.\n\nWe didn't add any workflow policies, so you don't have a choice of different\nworkflow policies yet, so the default workflow policy will be taken both for\nthe folder and below.\n\nInstallation\n============\n\n* Use Site Setup -> Add-on Products panel to install\n\n* Now you can define and apply local workflow policies through the Plone\n  Interface.\n\nUsage\n=====\n\nNow, let's define a new workflow policy:\n\n1. Access \"Site Setup\" and click on \"Placeful Workflow\" in the \"Add-on\n   Product Configuration\" section.\n\n2. Enter the name \"my_policy\" in the \"New policy\" field, and click on \"add\".\n\n3. Now you have a new policy. Enter the title \"Example policy\" and the\n   description \"This is an example policy\".\n\n4. Change the workflow for the content type \"Folder\" from \"folder_workflow\" to\n   plone_workflow\", and click on \"Save\". Now all your content types should use\n   the \"plone_workflow\".\n\nLet's test the new workflow policy for \"Folders\" at the root of our site:\n\n1. At the root of the site, select the \"Policy\" link in the workflow state\n   drop-down menu.\n\n2. Select \"Example policy\" for \"In this Folder\" and \"Below this Folder\" and\n   click \"Save\".\n\n3. Then, let's add a Folder to see whether the new workflow policy is active.\n   Go to the root of your site and select \"Folder\" from the \"Add new item\"\n   drop-down list. Enter the id \"myfolder\", the title \"My folder\" and the\n   description \"This is my folder\", and click on \"Save\".\n\n4. Now, when you access the \"State\" drop-down list, you will see that you have\n   the possibility to \"submit\" the folder. The submit transition only exists\n   in the \"plone_workflow\", and is absent from the \"folder_workflow\", which\n   demonstrates that the workflow policy we have chosen is used for the\n   \"Folder\" content type.\n\nLet's go one step further and add a new folder inside of \"My folder\". After\nhaving added the new folder, you should also find the \"Submit\" transition\navailable.\n\nNow it would be interesting to change the workflow policy setting in the Plone\nsite. Let's first change the workflow policy for \"Below this Folder\" to\n\"Default Policy\". You will find that the second folder does not more have the\n\"submit\" transition.\n\nYou can add an additional workflow policy in the first folder, which assigns\nthe \"My policy\" for \"In this Folder\", so the second folder will once again have\nthe \"submit\" transition.\n\nAdditional tools\n================\n\nThe Placeful Workflow tool (portal_placeful_workflow) is installed by the\ninstaller. It provides a few configuration options so that you use to create\nyou workflow policies through the ZMI.\n\n1.6.x series\n============\n\nPlone 5 support only\n\n\nChangelog\n=========\n\n.. You should *NOT* be adding new change log entries to this file.\n   You should create a file in the news directory instead.\n   For helpful instructions, please see:\n   https://github.com/plone/plone.releaser/blob/master/ADD-A-NEWS-ITEM.rst\n\n.. towncrier release notes start\n\n3.0.3 (2023-03-14)\n------------------\n\nInternal:\n\n\n- Update configuration files.\n  [plone devs] (7d54a267)\n\n\n3.0.2 (2023-02-07)\n------------------\n\nBug fixes:\n\n\n- Update package configuration.\n  [gforcada] (#1)\n\n\n3.0.1 (2023-01-26)\n------------------\n\nBug fixes:\n\n\n- Cleanup: remove six, use plone.base, zpretty.  [maurits] (#44)\n\n\nInternal:\n\n\n- Update configuration files.\n  [plone meta] (#1)\n\n\n3.0.0 (2022-12-02)\n------------------\n\nBug fixes:\n\n\n- Final release for Plone 6.0.0 (#600)\n\n\n3.0.0b2 (2022-09-30)\n--------------------\n\nBug fixes:\n\n\n- Increase the length of the password used in tests. [davisagli] (#43)\n\n\n3.0.0b1 (2022-06-23)\n--------------------\n\nBug fixes:\n\n\n- Update Markup in Page Templates, made it ready for Plone 6 with Bootstrap 5\n  Rename Browserviews, make the names it more consistent\n  [1letter] (#41)\n\n\n3.0.0a2 (2022-05-14)\n--------------------\n\nBug fixes:\n\n\n- Really remove the old icon from the skin layer, emptying it.\n  [maurits] (#33)\n\n\n3.0.0a1 (2022-01-25)\n--------------------\n\nBreaking changes:\n\n\n- Use ``toolbar-action/workflow`` as icon.  Only works in Plone 6.\n  Removed the ``CMFPlacefulWorkflow`` skin layer.\n  Removed ancient upgrade step, added new one for the above.\n  [maurits] (#33)\n\n\nBug fixes:\n\n\n- Fix a test that picks up the footer-portlets link instead of a document. (#36)\n- Fixed undefined name ``portal_url``.\n  Fixed traceback on the policy mapping form when the workflow policy id is missing or wrong.\n  [maurits] (#39)\n\n\n2.0.4 (2021-02-16)\n------------------\n\nBug fixes:\n\n\n- Removed unused mock request.SESSION from tests.\n  [maurits] (#1)\n\n\n2.0.3 (2020-09-28)\n------------------\n\nBug fixes:\n\n\n- Fix deprecation warning at startup for setDefaultRoles.\n  [maurits] (#34)\n\n\n2.0.2 (2020-04-23)\n------------------\n\nBug fixes:\n\n\n- Minor packaging updates. (#1)\n\n\n2.0.1 (2020-03-09)\n------------------\n\nBug fixes:\n\n\n- Fixed ModuleNotFoundError: No module named 'App.class_init' in Zope 5.\n  [maurits] (#31)\n\n\n2.0.0 (2018-11-05)\n------------------\n\nBreaking changes:\n\n\n- Adapt tests to Products.GenericSetup >= 2.0, thus requiring at least that\n  version. [icemac] (#22)\n- Replace all skin-templates with browser-views. [bauer] (#23)\n\n\nNew features:\n\n\n- Replaced usages of my_worklist.py skin script. (#28)\n\n\nBug fixes:\n\n\n- Fix all tests for python 3 and no longer use PloneTestCase. [pbauer] (#23)\n- More Python 2 / 3 compatibility. [ale-rt, davilima6] (#24)\n- Do the permission checks in zcml. This means we can stop using the\n  ``raiseUnauthorized`` skin script. Also check for the 'CMFPlacefulWorkflow:\n  Manage workflow policies' permission instead of the 'Manage portal'\n  permission. [maurits] (#25)\n\n\n2.0.0 (unreleased)\n------------------\n\nBug fixes:\n\n- Remove traces of ZopeTestCase.\n  [gforcada]\n\n\n1.7.4 (2018-02-05)\n------------------\n\nNew features:\n\n- Prepare for Python 2 / 3 compatibility\n  [davilima6]\n\n\n1.7.3 (2017-03-09)\n------------------\n\nBug fixes:\n\n- Removed Plone 5.0 installer code from tests.\n  Test that multiple installs and uninstalls work.\n  See `issue 1959 <https://github.com/plone/Products.CMFPlone/issues/1959>`_.\n  [maurits]\n\n\n1.7.2 (2017-01-17)\n------------------\n\nBug fixes:\n\n- Fixed workflow tests for new ``comment_one_state_workflow``.  [maurits]\n\n\n1.7.1 (2016-08-18)\n------------------\n\nBug fixes:\n\n- Use zope.interface decorator.\n  [gforcada]\n\n\n1.7.0 (2016-05-26)\n------------------\n\nNew:\n\n- Added ``uninstall`` profile instead of old external method.  [maurits]\n\n- Removed ``actionicons.xml`` because this is handled in ``controlpanel.xml``.  [maurits]\n\n- Replaced ``placeful_marker`` import step with a ``post_handler``.  [maurits]\n\n\n1.6.5 (2015-11-28)\n------------------\n\nFixes:\n\n- Updated Site Setup link in all control panels.\n  Fixes https://github.com/plone/Products.CMFPlone/issues/1255\n  [davilima6]\n\n\n1.6.4 (2015-09-27)\n------------------\n\n- Fix test after new default dependecy-strategy for GenericSetup.\n  [pbauer]\n\n\n1.6.3 (2015-09-20)\n------------------\n\n- Allow unicode as workflow-policy-name\n  [pbauer]\n\n\n1.6.2 (2015-09-07)\n------------------\n\n- Added upgrade step to apply our full profile.  This is meant mostly\n  for upgrades from ancient versions that had no profile yet or had a\n  profile without a metadata.xml.  In that case the quick installer\n  would complain that the old profile version was unknown and there\n  was no upgrade.\n  [maurits]\n\n\n1.6.1 (2015-03-13)\n------------------\n\n- Ported tests to plone.app.testing\n  [tomgross]\n\n- PEP8 and frosted cleanup\n  [tomgross]\n\n- Major cleanup of old stuff\n  [tomgross]\n\n\n1.6.0 (2014-04-16)\n------------------\n\n- Plone 5 fixes\n  [vangheem]\n\n\n1.5.10 (2013-12-07)\n-------------------\n\n- Move dependency on Products.PloneTestCase to test extra and thus removing\n  implicit hard dependency on Products.ATContentTypes.\n  [thet]\n\n- Fix policy_form test failures for Plone 5.\n  [timo]\n\n\n1.5.9 (2012-12-15)\n------------------\n\n- Fixed handling of \"update security\" option.\n  [ericof]\n\n\n1.5.8 (2012-10-16)\n------------------\n\n- Fixed updating Role Mappings only in current folder.\n  [kroman0]\n\n- Added 'CMFPlacefulWorkflow: Manage workflow policies' permission.\n  ManageWorkflowPolicies is no longer 'Manage portal', it's now assigned to\n  'CMFPlacefulWorkflow: Manage workflow policies'.\n  [alecghica]\n\n- Fixed add workflow policy template (via ZMI).\n  [alecghica]\n\n- Fixed descriptions under placeful_workflow_configuration.pt for sections\n  \"For this folder\" and \"Below this folder\".\n  [alecghica]\n\n- Added \"update security\" as an option field on local configuration management\n  form, as in most cases updating catalog role mappings can be a very long\n  operation and is better to be made as a separate upgrade step.\n  [alecghica]\n\n1.5.7 (2012-05-25)\n------------------\n\n- Fixed a few test failures in combination with five.pt.\n  [maurits]\n\n1.5.6 (2011-11-24)\n------------------\n\n- Fix profiles description to be translated.\n  [vincentfretin]\n\n- Fix failing test.\n  [davisagli]\n\n1.5.5 - 2011-06-15\n------------------\n\n- Fix required value untested #9833\n  [encolpe]\n\n1.5.4 - 2011-03-31\n------------------\n\n- Fix test to work with both 4.0 and 4.1.\n  [elro]\n\n- Create base profile with no dependencies on the default Plone types to allow use in an\n  archetype free dexterity environment\n  [anthonyg]\n\n1.5.3 - 2011-02-04\n------------------\n\n- Fix failing test. The 'comment_review_workflow' from plone.app.discussion is\n  now part of the core.\n  [timo]\n\n\n1.5.2 - 2011-01-03\n------------------\n\n- Depend on ``Products.CMFPlone`` instead of ``Plone``.\n  [elro]\n\n- Updated the placeful_workflow import step to depends on typeinfo,\n  as we need to make sure all types are available when importing the\n  local policies.\n  [deo]\n\n\n1.5.1 - 2010-10-27\n------------------\n\n- Fixed chameleon incompatibility in `manage_workflow_policy_config.zpt`.\n  Renamed `select_workflows.zpt` to `select_workflows.dtml` and\n  `select_workflows.zpt` to `select_workflows.dtml`.\n  [swampmonkey]\n\n1.5 - 2010-07-18\n----------------\n\n- No changes.\n\n1.5b5 - 2010-06-13\n------------------\n\n- Avoid deprecation warnings under Zope 2.13.\n  [hannosch]\n\n- Avoid using the deprecated five:implements directive.\n  [hannosch]\n\n1.5b4 - 2010-06-03\n------------------\n\n- Remove references to Large Plone Folder from the included workflow policies.\n  [davisagli]\n\n1.5b3 - 2010-05-01\n------------------\n\n- Use i18n_domain=cmfplacefulworkflow in profiles.zcml to be able to\n  translate the title and description of the profile. This refs\n  http://dev.plone.org/plone/ticket/9864\n  [vincentfretin]\n\n1.5b1 - 2009-12-27\n------------------\n\n- Avoid showing the content type icons in the workflow mapping screens.\n  [hannosch]\n\n- Small code cleanup and removal of unused imports.\n  [hannosch]\n\n1.5a2 - 2009-11-18\n------------------\n\n- Make CMFPlacefulWorkflow tool an ImmutableId object, but not a UniqueObject.\n  The UniqueObject base class specifies that it is impossible to have any\n  other object with the same id (portal_placeful_workflow). This was breaking\n  in-ZODB GenericSetup snapshots, because the GenericSetup sub-folder for\n  placeful workflow policies happens to also be called\n  portal_placeful_workflow. Plone has a checkId script which disallows\n  shadowing tools anyway, so the UniqueObject base class is a nicety rather\n  than a necessity.\n  [optilude]\n\n1.5a1 - 2009-11-18\n------------------\n\n- Removed createSnapshot() call from exportimport.txt test. It wasn't doing\n  anything useful, and caused a distracting test failure not related to\n  CMFPlacefulWorkflow.\n\n- Fix #9359: CMFPlacefulWorkflow defines __implements__ with zope3 interface.\n  [encolpe]\n\n- Remove use of the deprecated document_byline macro in the placeful\n  workflow configuration template.\n  [davisagli]\n\n- Register configlet icon using icon_expr for forwards-compatibility\n  with Plone 4.\n  [davisagli]\n\n- Copied safeEditProperty function from CMFPlone's migrations package,\n  as that is being removed.\n  [davisagli]\n\n- Change imports from Globals to use canonical locations, for compatibility\n  with Zope 2.12.\n  [davisagli]\n\n- Define wtool inside the prefs_workflow_policy_mapping template.\n  [hannosch]\n\n- Removed settings of the portal_skins tool itself from skins.xml.\n  Specifically, allow_any was set to False, which bit me.\n  [maurits]\n\n- Made workflow policies translatable in prefs_workflow_localpolicies_form.\n  [vincentfretin]\n\n1.4.2 - 2009-03-05\n------------------\n\n- The `Cancel` button on the local workflow configuration screen was saving\n  data as much as the `Save` button. Now it actually cancels the operation.\n  [hannosch]\n\n- Made sure you cannot set a workflow configuration on a non-folderish item\n  in the site root. The actual configuration would end up on the site root.\n  [hannosch]\n\n- Change the local workflow configuration screen to not be shown for the\n  site root, even if you accidentally type in the wrong URL.\n  [hannosch]\n\n1.4.1 (2009-01-17)\n------------------\n\n- Declare package dependencies and fixed deprecation warnings for use\n  of Globals.\n  [hannosch]\n\n- Copied safeEditProperty from CMFPlone.migration_util to avoid a dependency.\n  [hannosch]\n\n\n1.4.0 (2008-11-05)\n------------------\n\n- Port evolutions from the 1.3 maintenance branch (old style product).\n  [encolpe]\n\n- Fixed bad version in metadata.xml (again)\n  [encolpe]\n\n- Removed Favorite content type.\n  [hannosch]\n\n- Fixed \"ValueError: 'acquisition' is not a workflow ID\" in\n  prefs_workflow_policy_mapping.  Fix prepared by jhackel.  Fixes\n  http://dev.plone.org/plone/ticket/8101\n  [maurits]\n\n\n1.3.2 (2008-06-30)\n------------------\n\n- Fixed bad metadata.xml.\n  [encolpe]\n\n- Fixed incorrect variable name in exception message.\n  [davisagli]\n",
    "bugtrack_url": null,
    "license": "GPL",
    "summary": "Workflow policies for Plone",
    "version": "3.0.3",
    "split_keywords": [
        "cmf",
        "plone",
        "zope2",
        "workflow"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fde8bdacac0a8f68673caf1cd01e5bfaf27fbc0fa9fce33eecc9eb2144c0897a",
                "md5": "78ea9eabf95c6da3771e12ed3243e1a9",
                "sha256": "2e59deb781e8fb71bdd231e9496d0e924795c4b6aaad33c458628d5ca0813242"
            },
            "downloads": -1,
            "filename": "Products.CMFPlacefulWorkflow-3.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "78ea9eabf95c6da3771e12ed3243e1a9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 64132,
            "upload_time": "2023-03-14T22:40:24",
            "upload_time_iso_8601": "2023-03-14T22:40:24.201065Z",
            "url": "https://files.pythonhosted.org/packages/fd/e8/bdacac0a8f68673caf1cd01e5bfaf27fbc0fa9fce33eecc9eb2144c0897a/Products.CMFPlacefulWorkflow-3.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1479c0f7be6e1afcfc6b0e4ada7f31a64827c16b8a51476f34aa3b68b7a916a7",
                "md5": "62fa41b5155677feb45467b053579cac",
                "sha256": "b4661a15fec2034a733788adf56a60039ba7bfbdda5d34b8a1b4d44e2de85e1c"
            },
            "downloads": -1,
            "filename": "Products.CMFPlacefulWorkflow-3.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "62fa41b5155677feb45467b053579cac",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 50555,
            "upload_time": "2023-03-14T22:40:26",
            "upload_time_iso_8601": "2023-03-14T22:40:26.997160Z",
            "url": "https://files.pythonhosted.org/packages/14/79/c0f7be6e1afcfc6b0e4ada7f31a64827c16b8a51476f34aa3b68b7a916a7/Products.CMFPlacefulWorkflow-3.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-14 22:40:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "plone",
    "github_project": "Products.CMFPlacefulWorkflow",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "setuptools",
            "specs": []
        },
        {
            "name": "zc.buildout",
            "specs": []
        },
        {
            "name": "tox",
            "specs": []
        }
    ],
    "tox": true,
    "lcname": "products.cmfplacefulworkflow"
}
        
Elapsed time: 0.08980s