plone.app.iterate


Nameplone.app.iterate JSON
Version 5.0.5 PyPI version JSON
download
home_pagehttps://pypi.org/project/plone.app.iterate
Summarycheck-out/check-in staging for Plone
upload_time2024-02-27 14:52:27
maintainer
docs_urlNone
authorPlone Foundation
requires_python>=3.8
licenseGPL version 2
keywords check-out check-in staging
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Summary
=======

iterate is a Plone add-on that allows one to utilize a checkin / checkout
procedure for content editing. It integrates in versioning, locking, and
utilizes Zope technology like adapters and events to allow for easy
customization.

Features
========

- versioning utilizing cmf editions
- locking using zope dav locks
- pluggable behavior for policies via adapters
- observable behavior via events
- specialized handling for archetypes references
- simple, clean integration with the plone user interface

Use Cases
=========

iterate was designed to solve/enable the following use cases.

Collaborative Document Editing Scenario
---------------------------------------

Workgroup or person working on a document, the ability to checkout and lock a document
allows for a editing cycle, without concern of overwrites, and with an audit trail of
versions.

Publish/Modify/Review Cycles on a CMS
-------------------------------------

A common theme in content management, is publishing a web document, and then needing
to revise it but not to change the published web content, till the modified document
has undergone a review cycle.

Iterate Lifecycle via the User Interface
========================================

iterate integrates with the plone user interface mainly through the actions menu.
it adds three conditional actions to the menu.. checkout, checkin, and cancel checkout.

checkout form
-------------

on this form a user is asked to which location they wish to checkout
the current content, the vocabulary of checkouts is overridable via template
customization and is currently the current folder, and the user's home
folder. if the content is not yet versioned, versioning is applied and
a new version is created before the checkout is performed. an adapter
is utilized to perform the checkout mechanics and an object lifecycle
event is generated with the baseline ( origin ) and checkout as
attributes. the adapter is responsible for effecting a copy of the
content to the checkout location and taking a lock on the origin content.
whether this form and action are active on a given piece of content
depends on the iterate policy adapter found for this content.

checkouts have some system additional properties, versioning and workflow.
they can be versioned independently of the baseline, with only changes
from the latest version being merged into the baseline on
checkin. they can undergoe separate workflows different from the
baseline content. (this last feature requires some customization see
docs/workflow.rst ).

checkout status form
--------------------

visually checkouts are distinguished by an extra document icon (next
to sendto, and rss links). clicking on this icon will lead to a
checkout status page. which allows for looking at information
regarding the checkout itself, such as when the checkout was
performed and by whom.

checkin form
------------

a user is asked for a checkin message. on checkin the working copy is
merged into the baseline, and a new version of the baseline is
created, and the baseline is unlocked.

cancel checkout
---------------

a confirmation dialog is displayed, if the checkout is canceled the
working copy is destroyed, and the baseline is unlocked.


Credits
=======

 Kapil Thangavelu <hazmat@objectrealms.net>

 Benjamin Saller <bcsaller@objectrealms.net>

 icons from tortoisesvn project ( http://tigris.org )

License
=======

 GPL, see license.txt for details

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

5.0.5 (2024-02-27)
------------------

Bug fixes:


- Hide the `to1000` from the advanced view to create a new plone Site
  [gforcada] (#121)


5.0.4 (2024-02-21)
------------------

Bug fixes:


- Adapt viewlet styles to Plone 6 [pbauer] (#95)
- Fix handling of relation-fields for working copies of folderish content. [pbauer] (#118)
- Use the package-permissions to protect views and toolbar-actions.
  [pbauer] (#120)


5.0.3 (2024-01-19)
------------------

Internal:


- Update configuration files.
  [plone devs] (cfffba8c)


5.0.2 (2023-04-14)
------------------

Internal:


- Update configuration files.
  [plone devs] (5623f8b3)


5.0.1 (2023-03-22)
------------------

Bug fixes:


- Use proper action icons in Plone 6.
  [maurits] (#60)


5.0.0 (2023-03-14)
------------------

Breaking changes:


- Drop support for Plone 5.2, Python 2, Archetypes.
  Removed check and warning for plone.app.stagingbehavior.
  Version 5 is for Plone 6 only.
  [maurits] (#1)


4.0.3 (2022-05-14)
------------------

Bug fixes:


- Fix a typo in a a call to reindexObject (#101)


4.0.2 (2021-09-08)
------------------

Bug fixes:


- Fixed issue with Publication behavior fields having different values in the baseline and working copy [ericof] (#97)


4.0.1 (2021-06-29)
------------------

Bug fixes:


- Fix checkin/checkout process for containers, since there was an annotation left to "reset" (pos) on checkout and it broke the sections viewlet
  [sneridagh] (#93)


4.0.0 (2021-06-25)
------------------

New features:


- Add proper support for DX folderish content
  [sneridagh] (#92)


3.3.16 (2021-06-14)
-------------------

Bug fixes:


- Do not break if some custom code provides an alias for Products.Archetypes (#85)
- Black and pep8 compliance
  [sneridagh] (#88)
- Update relations on Check-In WorkingCopy, by trigger an ObjectModifiedEvent event
  black and flake8 formatting
  [2silver] (#89)


3.3.15 (2020-09-07)
-------------------

Bug fixes:


- Remove relationship between baseline and working copy, when wc is removed.
  [frapell] (#77)
- Fixed deprecation warning for ObjectEvent and IObjectEvent.
  Moved all code from ``profiles.py`` to ``setuphandlers.py`` to avoid confusion with ``profiles`` directory.
  [maurits] (#3130)


3.3.14 (2020-04-20)
-------------------

Bug fixes:


- Minor packaging updates. (#1)


3.3.13 (2019-10-12)
-------------------

Bug fixes:


- Explicitly load zcml of dependencies, instead of using ``includeDependencies``.
  [maurits] (#2952)


3.3.12 (2019-06-27)
-------------------

Bug fixes:


- Add missing i18n:translate calls
  [erral] (#73)


3.3.11 (2019-05-04)
-------------------

Bug fixes:


- Made removing of versioning behaviors less strict (named vs dotted). [iham] (#71)


3.3.10 (2018-10-31)
-------------------

Bug fixes:

- Avoid test setup error for layer that uses AT when it's not installed
  [davisagli]


3.3.9 (2018-09-23)
------------------

Bug fixes:

- Some Python 3 fixes.
  [pbauer]


3.3.8 (2018-06-18)
------------------

Bug fixes:

- Python 3 compatibility.
  [pbauer]

- Only test Archetypes support when Archetypes is installed.
  [davisagli]


3.3.7 (2018-02-05)
------------------

Bug fixes:

- Use ``get_installer`` in general upgrade step.  [maurits]


3.3.6 (2017-11-24)
------------------

Bug fixes:

- Fix #54: Cancelling a check out from the original deletes the original.
  [jensens]


3.3.5 (2017-09-08)
------------------

Bug fixes:

- Do not depend on Products.Archetypes anymore. (part 3)
  [tomgross]


3.3.4 (2017-08-27)
------------------

Bug fixes:

- Do not depend on Products.Archetypes anymore. (part 2)
  [tomgross]

- Remove explicit dependency on ZODB3
  [tomgross]


3.3.3 (2017-05-31)
------------------

Bug fixes:

- removed "change portal events" permission
  [kakshay21]

- Prevent using queryUtility with name=None
  [pbauer]

3.3.2 (2017-03-23)
------------------

New features:

- Add each field label for the diff view, fix visual diff link and add break
  [frapell]

Bug fixes:

- Change ``IIterateSettings.checkout_workflow_policy`` to ASCIILine,
  as required by ``Products.CMFWorkflowPolicy``.


3.3.1 (2017-02-12)
------------------

Bug fixes:

- Fix test in Zope 4. [davisagli]


3.3.0 (2017-01-02)
------------------

New features:

- Do not depend on Products.Archetypes anymore.
  If Archetypes is present it still registers the adapters.
  [jensens]

Bug fixes:

- Do not use unittest2 anymore.
  [jensens]

- Cleanup: isort, zca decorators, etc.
  [jensens]

- Some more cleanup.
  [gforcada]

3.2.3 (2016-11-10)
------------------

Bug fixes:

- Add coding header on python files.
  [gforcada]

- Hide uninstall profile from being shown on the Plone install (advanced) form.
  [gforcada]

3.2.2 (2016-09-14)
------------------

Bug fixes:

- Remove broken references when making checkout.
  Fixes issue `30 <https://github.com/plone/plone.app.iterate/issues/30>`_.
  [maurits]


3.2.1 (2016-08-17)
------------------

Bug fixes:

- Use zope.interface decorator.
  [gforcada]


3.2.0 (2016-05-26)
------------------

New features:

- Added uninstall profile.  [maurits]

Bug fixes:

- Removed deprecated ``actionicons.xml``.  [maurits]


3.1.7 (2016-05-15)
------------------

Bug fixes:

- no special case that enables checkout via GET
  [gotcha]


3.1.6 (2016-04-26)
------------------

Fixes:

- Minimal code cleanup.  [gforcada]


3.1.5 (2016-03-03)
------------------

New:

- plone.app.iterate depends on GenericSetup >= 1.8.2
  for using a post_handler on registerProfile
  [iham]

- Added naming of default GenericSetup profile as "default".
  "plone.app.iterate" also exists to keep compatibility.
  [iham]

- Added deprecation warning to GS profile "plone.app.iterate"
  [iham]

Fixes:

- No need to register as Zope2 Product anymore.
  [iham]

- Some minor pep8 cleanup.
  [iham]

3.1.4 (2015-11-16)
------------------

Fixes:

- Keep the default page setting when checking in a document.
  [maurits]


3.1.3 (2015-09-27)
------------------

- Fix metadata storage for dexterity checkouts
  [vangheem]


3.1.2 (2015-09-20)
------------------

- Fixed test to pass with recent plone.app.content change
  that requires the cmf.ModifyPortalContent permission for the
  content_status_history page.
  [maurits]


3.1.1 (2015-08-20)
------------------

- Check if object does not have iterate policy. This fixes
  iterate causing toolbar errors on portal root.
  [vangheem]


3.1.0 (2015-07-18)
------------------

- Merge plone.app.stagingbehavior into plone.app.iterate without the
  behavior implementation. This is for Plone 5 iterate support.
  [vangheem]

- Don't remove acquisition on object for getToolByName call.
  [tomgross]


3.0.1 (2015-03-12)
------------------

- Add permission names zcml/z3 style and load permission settings explicit
  when module is loaded, otherwise default roles where not set correctly.
  [jensens]

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


3.0.0 (2014-10-23)
------------------

- Remove DL's from portal message in templates.
  https://github.com/plone/Products.CMFPlone/issues/153
  [khink]


2.1.13 (2014-04-16)
-------------------

- Fix tests to work with auto csrf.
  [vangheem]

- Fix tests for latest plone.protect.
  [vangheem]


2.1.12 (2014-02-19)
-------------------

- Information messages can be hidden from user who checked out content when
  using a placeful workflow, see: https://dev.plone.org/ticket/13852
  [anthonygerrard]

- Replaced the "Locked" label with "Warning"
  [rristow]


2.1.11 (2014-01-27)
-------------------

- set lock timeout to MAX_TIMEOUT to avoid baseline unwanted unlock after 10 minutes
  [parruc]


2.1.10 (2013-03-05)
-------------------

- Fixed error on checking in the working copy of an object linked in it's
  parent rich text field, see: https://dev.plone.org/ticket/13462
  [radekj]


2.1.9 (2013-01-13)
------------------

- Nothing changed yet.


2.1.8 (2012-10-03)
------------------

- Unmark both the baseline and the working copy on checkin so that dexterity
  content is properly unmarked.
  [cewing]


2.1.7 (2012-08-04)
------------------

- Allow browser view templates to be defined and thus overridden in ZCML.
  [rpatterson]


2.1.6 (2012-06-29)
------------------

- Import events from zope.lifecycleevent.
  [hannosch]

- Fix permissions check in parent folder working copy locator.
  [mitchellrj]


2.1.5 (2012-03-16)
------------------

- Don't declare IIterateAware as an extension of Archetypes' IReferenceable,
  because there are other implementations (such as the one for Dexterity)
  that don't use Archetypes references.
  [davisagli]

- Make sure permissions of working copy workflow get applied when checking
  out content, fixes http://dev.plone.org/ticket/12780
  [anthonygerrard]


2.1.4 (2011-11-24)
------------------

- Preserve content contents UIDs when checking a folder back in.  This
  prevents breaking linking by UID in the editor.
  [rossp]

- Fix a problem with items added to a checked out folder not being
  visible after checkin.  Fixes #12257.
  [rossp]

- Preserve the folder order position from the item originally checked
  out when checking it back in.
  [rossp]

- Allow user of check'd out content to also see the checkout info so
  a contributor can see that he already has a page checked out
  easily.
  [vangheem]


2.1.3 (2011-08-31)
------------------

- Remove rogue div tag from diff.pt. This fixes
  http://dev.plone.org/plone/ticket/11249
  [danjacka]

2.1.2 - 2011-06-02
------------------

- Include Products.CMFCore for Plone 4.1 compatibility.
  [thomasdesvenain, WouterVH]

2.1.1 - 2011-05-13
------------------

- Fixed an issue where our subscriber always expected a coci_created attribute
  to be available at the policy.
  [erico_andrei]

- Add MANIFEST.in.
  [WouterVH]

- Viewing a working copy or an original of a checkout does not raise
  AttributeError anymore. Anyway, we log a warning because a Manager should do
  something about this. Fixes http://dev.plone.org/plone/ticket/8723
  [glenfant]


2.1 - 2011-02-25
----------------

- No changes.


2.1a2 - 2011-02-14
------------------

- Fixed stale catalog entries appearing for references of merged
  content.
  [maurits]

- Fixed minor test failure for ``_doAddUser``.
  [maurits]


2.1a1 - 2011-01-18
------------------

- Test Products.CMFPlone version to set default permission, keeping 4.0
  compatibility - the next release can be 2.0.1 again.
  [elro]

- Add autoinclude entry point.
  [elro]

- Update permission defaults for Plone 4.1's Site Administrator role.
  [elro]


2.0 - 2010-07-18
----------------

- Fixed the info viewlet to show only the date, and not the time.
  The issue was introduced because ulocalized_time changed its parameters order.
  This closes http://dev.plone.org/plone/ticket/10759.
  [vincentfretin]

- Update license to GPL version 2 only.
  [hannosch]

- Add id="content" for the content divs. Else theming with deliverance gets
  harder.
  [do3cc]


2.0b2 - 2010-06-03
------------------

- Add naive upgrade step that reinstalls the product.
  [davisagli]

- Set action icons via icon_expr on the actions, to avoid deprecation warnings
  in Plone 4.
  [davisagli]


2.0b1 - 2010-02-17
------------------

- Declare all package dependencies.
  [hannosch]

- Updated diff.pt to follow recent markup conventions.
  References #9981
  [spliter]


1.2.5 - 2010-01-03
------------------

- Fixed an undefined ``current_page_url`` variable in diff.pt. This closes
  http://dev.plone.org/plone/ticket/9819.
  [hannosch]


1.2.4 - 2008-12-21
------------------

- Added profiles/default/metadata.xml (version 120: lets leave plenty room in
  case any profile changes are needed on the 1.1 branch).
  [maurits]

- Avoid a test dependency on quick installer.
  [hannosch]

- Use our own PloneMessageFactory. We don't depend on CMFPlone anymore.
  [hannosch]

- Specified package dependencies.
  [hannosch]

- Made the tests independent of default content.
  [hannosch]


1.2.3 - 2008-11-14
------------------

- Fix assumption in control view: not every context object is
  IReferenceable. This fixes http://dev.plone.org/plone/ticket/8737
  [nouri]


1.2.2 - 2008-11-13
------------------

- Fix action conditions for the nth time; this time it's an
  over-ambitious "Cancel check-out" permission.  This fixes
  http://dev.plone.org/plone/ticket/8735
  [nouri]


1.2.1 - 2008-11-11
------------------

- Refine permissions fix from 1.2.0 and make tests pass again:

  Don't require Modify Portal Content (MPC) permission on the
  original to check out, which was omitted in the fix for 1.2.0.

  Don't require MPC on the original for canceling of checkout, only
  require it on the working copy.
  [nouri]

- Fix missing internationalization (#8608 thanks to Vincent Fretin)
  [encolpe]


1.2.0 - 2008-10-24
------------------

- Allow users without modify content permissions (but with the iterate
  check out permission) to check out items, and only allow them to
  check in back again only when they have modify content permissions.
  [nouri]


1.1.5 - 2008-08-18
------------------

- Fixed typo in subscribers/workflow.py. This fixes
  https://dev.plone.org/plone/ticket/8035.
  [dunlapm]

- Added i18n of status messages. This fixes part of
  http://dev.plone.org/plone/ticket/8022.
  [naro]


1.1.0 - 2008-04-20
------------------

- Fixed dodgy test in test_iterate.py that was dependent on semantics of
  default workflow.
  [optilude]

- Fixed i18n markup and updated some messages. This closes
  http://dev.plone.org/plone/ticket/7958.
  [hannosch]

- Updated i18n:domain in templates to the plone domain. There's no need for a
  iterate domain.
  [hannosch]

- Use README.txt and HISTORY.txt for the package's long description.
  [wichert]

- Remove unneeded initialize method from __init__
  [wichert]


1.0 - 2007-08-17
----------------

- First release

.. _`#1451`: https://github.com/plone/Products.CMFPlone/issues/1451

            

Raw data

            {
    "_id": null,
    "home_page": "https://pypi.org/project/plone.app.iterate",
    "name": "plone.app.iterate",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "check-out check-in staging",
    "author": "Plone Foundation",
    "author_email": "plone-developers@lists.sourceforge.net",
    "download_url": "https://files.pythonhosted.org/packages/94/75/1aae56f3b8d3de1eb5f9d39ac263f619d001479e546e1377518ad21916ef/plone.app.iterate-5.0.5.tar.gz",
    "platform": null,
    "description": "Summary\n=======\n\niterate is a Plone add-on that allows one to utilize a checkin / checkout\nprocedure for content editing. It integrates in versioning, locking, and\nutilizes Zope technology like adapters and events to allow for easy\ncustomization.\n\nFeatures\n========\n\n- versioning utilizing cmf editions\n- locking using zope dav locks\n- pluggable behavior for policies via adapters\n- observable behavior via events\n- specialized handling for archetypes references\n- simple, clean integration with the plone user interface\n\nUse Cases\n=========\n\niterate was designed to solve/enable the following use cases.\n\nCollaborative Document Editing Scenario\n---------------------------------------\n\nWorkgroup or person working on a document, the ability to checkout and lock a document\nallows for a editing cycle, without concern of overwrites, and with an audit trail of\nversions.\n\nPublish/Modify/Review Cycles on a CMS\n-------------------------------------\n\nA common theme in content management, is publishing a web document, and then needing\nto revise it but not to change the published web content, till the modified document\nhas undergone a review cycle.\n\nIterate Lifecycle via the User Interface\n========================================\n\niterate integrates with the plone user interface mainly through the actions menu.\nit adds three conditional actions to the menu.. checkout, checkin, and cancel checkout.\n\ncheckout form\n-------------\n\non this form a user is asked to which location they wish to checkout\nthe current content, the vocabulary of checkouts is overridable via template\ncustomization and is currently the current folder, and the user's home\nfolder. if the content is not yet versioned, versioning is applied and\na new version is created before the checkout is performed. an adapter\nis utilized to perform the checkout mechanics and an object lifecycle\nevent is generated with the baseline ( origin ) and checkout as\nattributes. the adapter is responsible for effecting a copy of the\ncontent to the checkout location and taking a lock on the origin content.\nwhether this form and action are active on a given piece of content\ndepends on the iterate policy adapter found for this content.\n\ncheckouts have some system additional properties, versioning and workflow.\nthey can be versioned independently of the baseline, with only changes\nfrom the latest version being merged into the baseline on\ncheckin. they can undergoe separate workflows different from the\nbaseline content. (this last feature requires some customization see\ndocs/workflow.rst ).\n\ncheckout status form\n--------------------\n\nvisually checkouts are distinguished by an extra document icon (next\nto sendto, and rss links). clicking on this icon will lead to a\ncheckout status page. which allows for looking at information\nregarding the checkout itself, such as when the checkout was\nperformed and by whom.\n\ncheckin form\n------------\n\na user is asked for a checkin message. on checkin the working copy is\nmerged into the baseline, and a new version of the baseline is\ncreated, and the baseline is unlocked.\n\ncancel checkout\n---------------\n\na confirmation dialog is displayed, if the checkout is canceled the\nworking copy is destroyed, and the baseline is unlocked.\n\n\nCredits\n=======\n\n Kapil Thangavelu <hazmat@objectrealms.net>\n\n Benjamin Saller <bcsaller@objectrealms.net>\n\n icons from tortoisesvn project ( http://tigris.org )\n\nLicense\n=======\n\n GPL, see license.txt for details\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\n5.0.5 (2024-02-27)\n------------------\n\nBug fixes:\n\n\n- Hide the `to1000` from the advanced view to create a new plone Site\n  [gforcada] (#121)\n\n\n5.0.4 (2024-02-21)\n------------------\n\nBug fixes:\n\n\n- Adapt viewlet styles to Plone 6 [pbauer] (#95)\n- Fix handling of relation-fields for working copies of folderish content. [pbauer] (#118)\n- Use the package-permissions to protect views and toolbar-actions.\n  [pbauer] (#120)\n\n\n5.0.3 (2024-01-19)\n------------------\n\nInternal:\n\n\n- Update configuration files.\n  [plone devs] (cfffba8c)\n\n\n5.0.2 (2023-04-14)\n------------------\n\nInternal:\n\n\n- Update configuration files.\n  [plone devs] (5623f8b3)\n\n\n5.0.1 (2023-03-22)\n------------------\n\nBug fixes:\n\n\n- Use proper action icons in Plone 6.\n  [maurits] (#60)\n\n\n5.0.0 (2023-03-14)\n------------------\n\nBreaking changes:\n\n\n- Drop support for Plone 5.2, Python 2, Archetypes.\n  Removed check and warning for plone.app.stagingbehavior.\n  Version 5 is for Plone 6 only.\n  [maurits] (#1)\n\n\n4.0.3 (2022-05-14)\n------------------\n\nBug fixes:\n\n\n- Fix a typo in a a call to reindexObject (#101)\n\n\n4.0.2 (2021-09-08)\n------------------\n\nBug fixes:\n\n\n- Fixed issue with Publication behavior fields having different values in the baseline and working copy [ericof] (#97)\n\n\n4.0.1 (2021-06-29)\n------------------\n\nBug fixes:\n\n\n- Fix checkin/checkout process for containers, since there was an annotation left to \"reset\" (pos) on checkout and it broke the sections viewlet\n  [sneridagh] (#93)\n\n\n4.0.0 (2021-06-25)\n------------------\n\nNew features:\n\n\n- Add proper support for DX folderish content\n  [sneridagh] (#92)\n\n\n3.3.16 (2021-06-14)\n-------------------\n\nBug fixes:\n\n\n- Do not break if some custom code provides an alias for Products.Archetypes (#85)\n- Black and pep8 compliance\n  [sneridagh] (#88)\n- Update relations on Check-In WorkingCopy, by trigger an ObjectModifiedEvent event\n  black and flake8 formatting\n  [2silver] (#89)\n\n\n3.3.15 (2020-09-07)\n-------------------\n\nBug fixes:\n\n\n- Remove relationship between baseline and working copy, when wc is removed.\n  [frapell] (#77)\n- Fixed deprecation warning for ObjectEvent and IObjectEvent.\n  Moved all code from ``profiles.py`` to ``setuphandlers.py`` to avoid confusion with ``profiles`` directory.\n  [maurits] (#3130)\n\n\n3.3.14 (2020-04-20)\n-------------------\n\nBug fixes:\n\n\n- Minor packaging updates. (#1)\n\n\n3.3.13 (2019-10-12)\n-------------------\n\nBug fixes:\n\n\n- Explicitly load zcml of dependencies, instead of using ``includeDependencies``.\n  [maurits] (#2952)\n\n\n3.3.12 (2019-06-27)\n-------------------\n\nBug fixes:\n\n\n- Add missing i18n:translate calls\n  [erral] (#73)\n\n\n3.3.11 (2019-05-04)\n-------------------\n\nBug fixes:\n\n\n- Made removing of versioning behaviors less strict (named vs dotted). [iham] (#71)\n\n\n3.3.10 (2018-10-31)\n-------------------\n\nBug fixes:\n\n- Avoid test setup error for layer that uses AT when it's not installed\n  [davisagli]\n\n\n3.3.9 (2018-09-23)\n------------------\n\nBug fixes:\n\n- Some Python 3 fixes.\n  [pbauer]\n\n\n3.3.8 (2018-06-18)\n------------------\n\nBug fixes:\n\n- Python 3 compatibility.\n  [pbauer]\n\n- Only test Archetypes support when Archetypes is installed.\n  [davisagli]\n\n\n3.3.7 (2018-02-05)\n------------------\n\nBug fixes:\n\n- Use ``get_installer`` in general upgrade step.  [maurits]\n\n\n3.3.6 (2017-11-24)\n------------------\n\nBug fixes:\n\n- Fix #54: Cancelling a check out from the original deletes the original.\n  [jensens]\n\n\n3.3.5 (2017-09-08)\n------------------\n\nBug fixes:\n\n- Do not depend on Products.Archetypes anymore. (part 3)\n  [tomgross]\n\n\n3.3.4 (2017-08-27)\n------------------\n\nBug fixes:\n\n- Do not depend on Products.Archetypes anymore. (part 2)\n  [tomgross]\n\n- Remove explicit dependency on ZODB3\n  [tomgross]\n\n\n3.3.3 (2017-05-31)\n------------------\n\nBug fixes:\n\n- removed \"change portal events\" permission\n  [kakshay21]\n\n- Prevent using queryUtility with name=None\n  [pbauer]\n\n3.3.2 (2017-03-23)\n------------------\n\nNew features:\n\n- Add each field label for the diff view, fix visual diff link and add break\n  [frapell]\n\nBug fixes:\n\n- Change ``IIterateSettings.checkout_workflow_policy`` to ASCIILine,\n  as required by ``Products.CMFWorkflowPolicy``.\n\n\n3.3.1 (2017-02-12)\n------------------\n\nBug fixes:\n\n- Fix test in Zope 4. [davisagli]\n\n\n3.3.0 (2017-01-02)\n------------------\n\nNew features:\n\n- Do not depend on Products.Archetypes anymore.\n  If Archetypes is present it still registers the adapters.\n  [jensens]\n\nBug fixes:\n\n- Do not use unittest2 anymore.\n  [jensens]\n\n- Cleanup: isort, zca decorators, etc.\n  [jensens]\n\n- Some more cleanup.\n  [gforcada]\n\n3.2.3 (2016-11-10)\n------------------\n\nBug fixes:\n\n- Add coding header on python files.\n  [gforcada]\n\n- Hide uninstall profile from being shown on the Plone install (advanced) form.\n  [gforcada]\n\n3.2.2 (2016-09-14)\n------------------\n\nBug fixes:\n\n- Remove broken references when making checkout.\n  Fixes issue `30 <https://github.com/plone/plone.app.iterate/issues/30>`_.\n  [maurits]\n\n\n3.2.1 (2016-08-17)\n------------------\n\nBug fixes:\n\n- Use zope.interface decorator.\n  [gforcada]\n\n\n3.2.0 (2016-05-26)\n------------------\n\nNew features:\n\n- Added uninstall profile.  [maurits]\n\nBug fixes:\n\n- Removed deprecated ``actionicons.xml``.  [maurits]\n\n\n3.1.7 (2016-05-15)\n------------------\n\nBug fixes:\n\n- no special case that enables checkout via GET\n  [gotcha]\n\n\n3.1.6 (2016-04-26)\n------------------\n\nFixes:\n\n- Minimal code cleanup.  [gforcada]\n\n\n3.1.5 (2016-03-03)\n------------------\n\nNew:\n\n- plone.app.iterate depends on GenericSetup >= 1.8.2\n  for using a post_handler on registerProfile\n  [iham]\n\n- Added naming of default GenericSetup profile as \"default\".\n  \"plone.app.iterate\" also exists to keep compatibility.\n  [iham]\n\n- Added deprecation warning to GS profile \"plone.app.iterate\"\n  [iham]\n\nFixes:\n\n- No need to register as Zope2 Product anymore.\n  [iham]\n\n- Some minor pep8 cleanup.\n  [iham]\n\n3.1.4 (2015-11-16)\n------------------\n\nFixes:\n\n- Keep the default page setting when checking in a document.\n  [maurits]\n\n\n3.1.3 (2015-09-27)\n------------------\n\n- Fix metadata storage for dexterity checkouts\n  [vangheem]\n\n\n3.1.2 (2015-09-20)\n------------------\n\n- Fixed test to pass with recent plone.app.content change\n  that requires the cmf.ModifyPortalContent permission for the\n  content_status_history page.\n  [maurits]\n\n\n3.1.1 (2015-08-20)\n------------------\n\n- Check if object does not have iterate policy. This fixes\n  iterate causing toolbar errors on portal root.\n  [vangheem]\n\n\n3.1.0 (2015-07-18)\n------------------\n\n- Merge plone.app.stagingbehavior into plone.app.iterate without the\n  behavior implementation. This is for Plone 5 iterate support.\n  [vangheem]\n\n- Don't remove acquisition on object for getToolByName call.\n  [tomgross]\n\n\n3.0.1 (2015-03-12)\n------------------\n\n- Add permission names zcml/z3 style and load permission settings explicit\n  when module is loaded, otherwise default roles where not set correctly.\n  [jensens]\n\n- Ported tests to plone.app.testing\n  [bogdan, tomgross]\n\n\n3.0.0 (2014-10-23)\n------------------\n\n- Remove DL's from portal message in templates.\n  https://github.com/plone/Products.CMFPlone/issues/153\n  [khink]\n\n\n2.1.13 (2014-04-16)\n-------------------\n\n- Fix tests to work with auto csrf.\n  [vangheem]\n\n- Fix tests for latest plone.protect.\n  [vangheem]\n\n\n2.1.12 (2014-02-19)\n-------------------\n\n- Information messages can be hidden from user who checked out content when\n  using a placeful workflow, see: https://dev.plone.org/ticket/13852\n  [anthonygerrard]\n\n- Replaced the \"Locked\" label with \"Warning\"\n  [rristow]\n\n\n2.1.11 (2014-01-27)\n-------------------\n\n- set lock timeout to MAX_TIMEOUT to avoid baseline unwanted unlock after 10 minutes\n  [parruc]\n\n\n2.1.10 (2013-03-05)\n-------------------\n\n- Fixed error on checking in the working copy of an object linked in it's\n  parent rich text field, see: https://dev.plone.org/ticket/13462\n  [radekj]\n\n\n2.1.9 (2013-01-13)\n------------------\n\n- Nothing changed yet.\n\n\n2.1.8 (2012-10-03)\n------------------\n\n- Unmark both the baseline and the working copy on checkin so that dexterity\n  content is properly unmarked.\n  [cewing]\n\n\n2.1.7 (2012-08-04)\n------------------\n\n- Allow browser view templates to be defined and thus overridden in ZCML.\n  [rpatterson]\n\n\n2.1.6 (2012-06-29)\n------------------\n\n- Import events from zope.lifecycleevent.\n  [hannosch]\n\n- Fix permissions check in parent folder working copy locator.\n  [mitchellrj]\n\n\n2.1.5 (2012-03-16)\n------------------\n\n- Don't declare IIterateAware as an extension of Archetypes' IReferenceable,\n  because there are other implementations (such as the one for Dexterity)\n  that don't use Archetypes references.\n  [davisagli]\n\n- Make sure permissions of working copy workflow get applied when checking\n  out content, fixes http://dev.plone.org/ticket/12780\n  [anthonygerrard]\n\n\n2.1.4 (2011-11-24)\n------------------\n\n- Preserve content contents UIDs when checking a folder back in.  This\n  prevents breaking linking by UID in the editor.\n  [rossp]\n\n- Fix a problem with items added to a checked out folder not being\n  visible after checkin.  Fixes #12257.\n  [rossp]\n\n- Preserve the folder order position from the item originally checked\n  out when checking it back in.\n  [rossp]\n\n- Allow user of check'd out content to also see the checkout info so\n  a contributor can see that he already has a page checked out\n  easily.\n  [vangheem]\n\n\n2.1.3 (2011-08-31)\n------------------\n\n- Remove rogue div tag from diff.pt. This fixes\n  http://dev.plone.org/plone/ticket/11249\n  [danjacka]\n\n2.1.2 - 2011-06-02\n------------------\n\n- Include Products.CMFCore for Plone 4.1 compatibility.\n  [thomasdesvenain, WouterVH]\n\n2.1.1 - 2011-05-13\n------------------\n\n- Fixed an issue where our subscriber always expected a coci_created attribute\n  to be available at the policy.\n  [erico_andrei]\n\n- Add MANIFEST.in.\n  [WouterVH]\n\n- Viewing a working copy or an original of a checkout does not raise\n  AttributeError anymore. Anyway, we log a warning because a Manager should do\n  something about this. Fixes http://dev.plone.org/plone/ticket/8723\n  [glenfant]\n\n\n2.1 - 2011-02-25\n----------------\n\n- No changes.\n\n\n2.1a2 - 2011-02-14\n------------------\n\n- Fixed stale catalog entries appearing for references of merged\n  content.\n  [maurits]\n\n- Fixed minor test failure for ``_doAddUser``.\n  [maurits]\n\n\n2.1a1 - 2011-01-18\n------------------\n\n- Test Products.CMFPlone version to set default permission, keeping 4.0\n  compatibility - the next release can be 2.0.1 again.\n  [elro]\n\n- Add autoinclude entry point.\n  [elro]\n\n- Update permission defaults for Plone 4.1's Site Administrator role.\n  [elro]\n\n\n2.0 - 2010-07-18\n----------------\n\n- Fixed the info viewlet to show only the date, and not the time.\n  The issue was introduced because ulocalized_time changed its parameters order.\n  This closes http://dev.plone.org/plone/ticket/10759.\n  [vincentfretin]\n\n- Update license to GPL version 2 only.\n  [hannosch]\n\n- Add id=\"content\" for the content divs. Else theming with deliverance gets\n  harder.\n  [do3cc]\n\n\n2.0b2 - 2010-06-03\n------------------\n\n- Add naive upgrade step that reinstalls the product.\n  [davisagli]\n\n- Set action icons via icon_expr on the actions, to avoid deprecation warnings\n  in Plone 4.\n  [davisagli]\n\n\n2.0b1 - 2010-02-17\n------------------\n\n- Declare all package dependencies.\n  [hannosch]\n\n- Updated diff.pt to follow recent markup conventions.\n  References #9981\n  [spliter]\n\n\n1.2.5 - 2010-01-03\n------------------\n\n- Fixed an undefined ``current_page_url`` variable in diff.pt. This closes\n  http://dev.plone.org/plone/ticket/9819.\n  [hannosch]\n\n\n1.2.4 - 2008-12-21\n------------------\n\n- Added profiles/default/metadata.xml (version 120: lets leave plenty room in\n  case any profile changes are needed on the 1.1 branch).\n  [maurits]\n\n- Avoid a test dependency on quick installer.\n  [hannosch]\n\n- Use our own PloneMessageFactory. We don't depend on CMFPlone anymore.\n  [hannosch]\n\n- Specified package dependencies.\n  [hannosch]\n\n- Made the tests independent of default content.\n  [hannosch]\n\n\n1.2.3 - 2008-11-14\n------------------\n\n- Fix assumption in control view: not every context object is\n  IReferenceable. This fixes http://dev.plone.org/plone/ticket/8737\n  [nouri]\n\n\n1.2.2 - 2008-11-13\n------------------\n\n- Fix action conditions for the nth time; this time it's an\n  over-ambitious \"Cancel check-out\" permission.  This fixes\n  http://dev.plone.org/plone/ticket/8735\n  [nouri]\n\n\n1.2.1 - 2008-11-11\n------------------\n\n- Refine permissions fix from 1.2.0 and make tests pass again:\n\n  Don't require Modify Portal Content (MPC) permission on the\n  original to check out, which was omitted in the fix for 1.2.0.\n\n  Don't require MPC on the original for canceling of checkout, only\n  require it on the working copy.\n  [nouri]\n\n- Fix missing internationalization (#8608 thanks to Vincent Fretin)\n  [encolpe]\n\n\n1.2.0 - 2008-10-24\n------------------\n\n- Allow users without modify content permissions (but with the iterate\n  check out permission) to check out items, and only allow them to\n  check in back again only when they have modify content permissions.\n  [nouri]\n\n\n1.1.5 - 2008-08-18\n------------------\n\n- Fixed typo in subscribers/workflow.py. This fixes\n  https://dev.plone.org/plone/ticket/8035.\n  [dunlapm]\n\n- Added i18n of status messages. This fixes part of\n  http://dev.plone.org/plone/ticket/8022.\n  [naro]\n\n\n1.1.0 - 2008-04-20\n------------------\n\n- Fixed dodgy test in test_iterate.py that was dependent on semantics of\n  default workflow.\n  [optilude]\n\n- Fixed i18n markup and updated some messages. This closes\n  http://dev.plone.org/plone/ticket/7958.\n  [hannosch]\n\n- Updated i18n:domain in templates to the plone domain. There's no need for a\n  iterate domain.\n  [hannosch]\n\n- Use README.txt and HISTORY.txt for the package's long description.\n  [wichert]\n\n- Remove unneeded initialize method from __init__\n  [wichert]\n\n\n1.0 - 2007-08-17\n----------------\n\n- First release\n\n.. _`#1451`: https://github.com/plone/Products.CMFPlone/issues/1451\n",
    "bugtrack_url": null,
    "license": "GPL version 2",
    "summary": "check-out/check-in staging for Plone",
    "version": "5.0.5",
    "project_urls": {
        "Homepage": "https://pypi.org/project/plone.app.iterate"
    },
    "split_keywords": [
        "check-out",
        "check-in",
        "staging"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44947690c2fede0416f831f651619c19a0f87dec2e992f248d617b92f7e38b1e",
                "md5": "b1d5280a30bf38f0128dfc8e5b063f82",
                "sha256": "7adc8dbb9e44bfce1b3f0ed1c34d5b4c098808cd7f77552363e652a7f589e314"
            },
            "downloads": -1,
            "filename": "plone.app.iterate-5.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b1d5280a30bf38f0128dfc8e5b063f82",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 67489,
            "upload_time": "2024-02-27T14:52:06",
            "upload_time_iso_8601": "2024-02-27T14:52:06.759696Z",
            "url": "https://files.pythonhosted.org/packages/44/94/7690c2fede0416f831f651619c19a0f87dec2e992f248d617b92f7e38b1e/plone.app.iterate-5.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94751aae56f3b8d3de1eb5f9d39ac263f619d001479e546e1377518ad21916ef",
                "md5": "674c242ebfb4e447af05299ebedcd8d9",
                "sha256": "2cc8420c01b5748400c6450da20cf5423ded7428ea06c3fea4d77809f27997ba"
            },
            "downloads": -1,
            "filename": "plone.app.iterate-5.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "674c242ebfb4e447af05299ebedcd8d9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 59101,
            "upload_time": "2024-02-27T14:52:27",
            "upload_time_iso_8601": "2024-02-27T14:52:27.344225Z",
            "url": "https://files.pythonhosted.org/packages/94/75/1aae56f3b8d3de1eb5f9d39ac263f619d001479e546e1377518ad21916ef/plone.app.iterate-5.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-27 14:52:27",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "plone.app.iterate"
}
        
Elapsed time: 0.19455s