Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add behavior IVersionable to Portal #87

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news/87.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add behavior IVersionable to Portal. @wesleybl
5 changes: 5 additions & 0 deletions plone/app/versioningbehavior/behaviors.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ class IVersionable(model.Schema):
form.no_omit(IAddForm, "changeNote")


class IVersionablePortal(IVersionable):
"""Even IVersionable behavior for the Portal."""


alsoProvides(IVersionable, IFormFieldProvider)
alsoProvides(IVersionablePortal, IFormFieldProvider)


class IVersioningSupport(Interface):
Expand Down
10 changes: 10 additions & 0 deletions plone/app/versioningbehavior/configure.zcml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@
marker=".behaviors.IVersioningSupport"
/>

<plone:behavior
name="plone.versioning.portal"
title="Versioning Portal"
description="Versioning support with CMFEditions to Portal"
factory=".behaviors.Versionable"
provides=".behaviors.IVersionablePortal"
for="Products.CMFPlone.Portal.PloneSite"
marker=".behaviors.IVersioningSupport"
/>

<subscriber
for="plone.app.versioningbehavior.behaviors.IVersioningSupport
zope.lifecycleevent.interfaces.IObjectModifiedEvent"
Expand Down