Metadata-Version: 2.4
Name: dexterity.localrolesfield
Version: 2.0.0b1
Summary: z3c.form local role field for dexterity
Home-page: https://github.com/collective/dexterity.localrolesfield
Author: IMIO
Author-email: support@imio.be
License: gpl
Project-URL: PyPI, https://pypi.python.org/pypi/dexterity.localrolesfield
Project-URL: Source, https://github.com/collective/dexterity.localrolesfield
Keywords: Plone Python
Classifier: Environment :: Web Environment
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.3
Classifier: Framework :: Plone :: 6.0
Classifier: Framework :: Plone :: 6.1
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: Products.CMFCore
Requires-Dist: collective.z3cform.datagridfield
Requires-Dist: dexterity.localroles>=2.0.0.dev0
Requires-Dist: plone.api
Requires-Dist: plone.app.dexterity
Requires-Dist: setuptools
Requires-Dist: z3c.unconfigure
Provides-Extra: test
Requires-Dist: plone.api; extra == "test"
Requires-Dist: plone.app.testing; extra == "test"
Requires-Dist: plone.app.robotframework; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: summary

.. contents::

Introduction
============

This package permits to give a local role on a content following a content field value and the workflow state.
It uses borg.localrole.

A new configuration page is added as a new tab on each dexterity type configuration.

You can there define for each local role field and each state which local roles will be automatically given to the selected principal in the field.

You will find in each configuration line an additional field names suffix.
If completed, the suffix name will be added at the end of the local role field value to define a principal name.

By example: if the configuration suffix is "director" and the local role field value is "group1", the local role will be given to "group1_director".

This last functionality is used with the package collective.contact.plonegroup.

Technically, this package extends dexterity.localroles:

* provides a principal selector field
* extends the configuration page

This is a refactoring of collective.z3cform.rolefield.

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

* Add dexterity.localrolesfield to your eggs.
* Re-run buildout.
* Done.

Versions
========

* Version 2.x is Plone 4 and Plone6 compliant
* Version 1.x is Plone 4 only

Credits
=======

Have an idea? Found a bug? Let us know by `opening a ticket`_.

.. _`opening a ticket`: https://github.com/collective/dexterity.localrolesfield/issues


Tests
=====

This package is tested using Travis CI. The current status of the add-on is :

.. image:: https://api.travis-ci.org/collective/dexterity.localrolesfield.png
    :target: https://travis-ci.org/collective/dexterity.localrolesfield
.. image:: https://coveralls.io/repos/collective/dexterity.localrolesfield/badge.svg?branch=master&service=github
  :target: https://coveralls.io/github/collective/dexterity.localrolesfield?branch=master

Contributors
============

- Martin Peeters, Original Author [Affinitic]

Changelog
=========

2.0.0b1 (2026-06-19)
--------------------

- Defered security update following request parameter DEFER_SECURITY_UPDATE.
  [sgeulette]
- Used custom ZLogHandler.
  [sgeulette]
- Improved security of ‘related’ field by restricting its value to JSON.
  [sgeulette]
- Corrected tests setup
  [sgeulette]

2.0.0b0 (2026-01-15)
--------------------

- Added Plone 6.1 version in buildout.
  [chris-adam, sgeulette]
- Corrected tests for Plone 6
  [sgeulette]

2.0.0a (2023-11-28)
-------------------

- Made Plone4 and Plone6 compliant
- Updated requirements.
  [sgeulette]

1.3 (2021-08-27)
----------------

- Added "try except" to manage RequiredMissing exception.
  [sgeulette]

1.2 (2017-05-30)
----------------

- Manage object modification for related.
  [sgeulette]

1.1.1 (2016-05-19)
------------------

- Test if event description contains attributes.
  [sgeulette]

1.1 (2016-04-18)
----------------

- Reindex children security when a parent role field is modified.
  [sgeulette]

1.0.1 (2015-11-26)
------------------

- Test if attribute exists (can be hidden)
  [sgeulette]

1.0 (2015-11-24)
----------------

- Configuration is now stored in one fti attribute to avoid a field name erases an existing fti attribute.
  [sgeulette]
- Add a related field to store a text configuration that will be used to set related objects local roles.
  [sgeulette]
- Add memoize on localroles fields list
  [sgeulette]
- Change related local roles on transition, on addition, on removal, on moving, on configuration changes
  [sgeulette]
- Unconfigure dexterity.localroles subscriber for ILocalRoleListUpdatedEvent
  [sgeulette]
- Don't call anymore localroles adapter in localrolesfield adapter. Adapters are now named and differentiated.
  [sgeulette]

0.2.1 (2015-06-02)
------------------

- Update Readme
  [sgeulette]


0.2 (2015-06-02)
----------------

- Avoid exception on site deletion.
  [sgeulette]

- Add single value local role field.
  [cedricmessiant]

- Also lookup behaviors when searching for local role fields.
  [cedricmessiant]


0.1 (2014-10-24)
----------------

- Initial release
  [mpeeters]

