Skip to content

Commit

Permalink
Merge branch 'master' into argument-conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Apr 18, 2019
2 parents bf2844b + f677ed7 commit 4752fa5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Other changes

- Always keep action buttons visible on the content list for large folders
(`#537 <https://github.com/zopefoundation/Zope/issues/537>`_)

- Make showing the ZMI modal add dialog configurable per product
(`#535 <https://github.com/zopefoundation/Zope/issues/535>`_)

Expand All @@ -68,6 +68,9 @@ Other changes
- provided method to get breadcrumb length to prevent ZMI errors
(`#533 <https://github.com/zopefoundation/Zope/issues/533>`_)

- add zodbupdate_rename_dict to move webdav.LockItem to OFS.LockItem
(`Products.CMFPlone#2800 <https://github.com/plone/Products.CMFPlone/issues/2800>`_)


4.0b10 (2019-03-08)
-------------------
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,8 @@ def _read_file(filename):
'zodbupdate.decode': [
'decodes = OFS:zodbupdate_decode_dict',
],
'zodbupdate': [
'renames = OFS:zodbupdate_rename_dict',
],
},
)
4 changes: 4 additions & 0 deletions src/OFS/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@
'OFS.OrderedFolder OrderedFolder title': 'utf-8',
'OFS.userfolder UserFolder title': 'utf-8',
}

zodbupdate_rename_dict = {
'webdav.LockItem LockItem': 'OFS.LockItem LockItem',
}

0 comments on commit 4752fa5

Please sign in to comment.