Metadata-Version: 2.1
Name: collective.consent
Version: 1.0b2
Summary: Provides a functionality to ask users for consent to different topics.
Home-page: https://pypi.python.org/pypi/collective.consent
Author: Maik Derstappen
Author-email: md@derico.de
License: GPL version 2
Description: ==================
        collective.consent
        ==================
        
        Provides a functionality to ask authenticated users for consent to different topics, before they can continue. One can add multiple consent items and define which user will have to give there consent based on there permission roles. Each of this users have to give the consent before they can continue to work.
        
        .. figure:: collective.consent-demo.gif
        
           Demo
        
        This is realized by viewlet which will check a list of consents for each user/consent_item combination and redirect the user to the consent item case they still have to give there consent.
        `Soup <https://pypi.org/project/souper/>`_
        Internally the consents are stored in a soup on the ConsentsContainer ('/consents') object.
        
        
        Features
        --------
        
        - Allows you to add multiple consent items (documents).
        - A consent item consists of a Title, Description, RichText and a custom button text.
        - Also you can define an update period, when the user has to give the consent again.
        - For every consent item one can choose the target permission roles and consent update period.
        - Users are only ask for consent on published consent items.
        - One can reset (invalidate) all existing consents for a consent item.
        
        
        ToDo
        ----
        
        - Add a global list of consents, sorted per user (maybe)
        - remove Anonymous from roles vocab, as we only support authenticated users
        
        
        Installation
        ------------
        
        Install collective.consent by adding it to your buildout::
        
            [buildout]
        
            ...
        
            eggs =
                collective.consent
        
        
        and then running ``bin/buildout``, start Plone and activate the add-on in the add-on's control panel. Then add a ConsentContainer on the top-level (portal-root).
        
        
        Thanks
        ------
        
        Initial implementation by: Derico - https://derico.de
        Sponsored by https://www.uni-giessen.de
        
        
        Contributors
        ------------
        
        - Maik Derstappen (MrTango) - md@derio.de
        
        
        Contribute
        ----------
        
        - Issue Tracker: https://github.com/collective/collective.consent/issues
        - Source Code: https://github.com/collective/collective.consent
        
        
        Support
        -------
        
        If you are having issues, please let us know.
        
        
        License
        -------
        
        The project is licensed under the GPLv2.
        
        
        Contributors
        ============
        
        - Maik Derstappen, md@derico.de
        
        
        Changelog
        =========
        
        
        1.0b2 (2019-11-19)
        ------------------
        
        - add plone.app.contenttypes as dependency
          [MrTango]
        
        - sync travis config with tox config
          [MrTango]
        
        - remove plone.app.contenttypes dependency and define RichText field our self.
          [MrTango]
        
        - Add some german translations
          [MrTango]
        
        - Fix i18n domain, add styles, refacture views, exclude consents container from nav
          [MrTango]
        
        
        1.0b1 (2019-05-16)
        ------------------
        
        - Initial release.
          [MrTango]
        
Keywords: Python Plone
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.3
Classifier: Framework :: Plone :: 5.0
Classifier: Framework :: Plone :: 5.1
Classifier: Framework :: Plone :: 5.2
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.0
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Provides-Extra: test
