Metadata-Version: 1.1
Name: collective.z3cform.colorpicker
Version: 2.1.0
Summary: Colorpicker widget for Plone
Home-page: http://www.giorgioborelli.it
Author: Giorgio Borelli
Author-email: giorgio@giorgioborelli.it
License: GPL
Description: .. contents::
        
        Introduction
        ============
        
        collective.z3cform.colorpicker provides a color picker widget for
        z3c.form based `bootstrap-colopicker`_.
        
        .. image:: https://raw.githubusercontent.com/collective/collective.z3cform.colorpicker/master/screenshot.png
        
        
        Requirements
        ============
        
        * Plone >= 5.0
        * plone.app.z3cform
        
        
        For previous Plone versions use a version collective.z3cform.colorpicker
        less than 2.x
        
        
        Installation
        ============
        
        This addon can be installed has any other addons, please follow official
        documentation_.
        
        
        Usage
        =====
        
        You can use this widget setting the "widgetFactory" property of a form field:
        ::
        
                from z3c.form import form, field
                from collective.z3cform.colorpicker import Color
                from collective.z3cform.colorpicker import ColorAlpha
        
                class IColorForm(interface.Interface):
                    color = Color(
                        title=u"Color",
                        description=u"",
                        required=False,
                        default="#ff0000"
                    )
                    alphacolor = ColorAlpha(
                        title=u"Color with alpha layer support",
                        description=u"",
                        required=False,
                        default=u"rgba(104,191,144,0.55)"
                    )
        
        
                class ColorForm(form.Form):
                    fields = field.Fields(IColorForm)
                    ...
        
        for more information see demo directory in the package sources.
        
        
        
        .. _documentation: http://plone.org/documentation/kb/installing-add-ons-quick-how-to
        .. _bootstrap-colopicker: http://mjolnic.com/bootstrap-colorpicker/
        
        Contributors
        ============
        
        * Giorgio Borelli - gborelli, Original Author
        * Silvio Tomatis - silviot
        * Ramon Navarro Bosch - bloodbare
        * Maurits van Rees - maurits
        * Leonardo J. Caballero G. - macagua
        
        Changelog
        =========
        
        2.1.0 (2021-09-17)
        ------------------
        
        - Python 3 support.  [espen]
        
        
        2.0 (2017-12-21)
        ----------------
        
        - Added Color and ColorAlpha fields for colorpicker widgets
          [giorgio]
        
        - Removed JPicker and farbastic javascripts
          [gborelli]
        
        - Added colorpicker patterns based on bootstrap-colorpicker
          [gborelli]
        
        - Added plone5.0 resource registry support
          [gborelli]
        
        - Added Docker configuration for development
          [gborelli]
        
        - Improved demo page - http://<yourplonesite>/@@colorpicker-demo
          [gborelli]
        
        
        1.4 (2015-11-11)
        ----------------
        
        - Added Dutch translations.
          [maurits]
        
        - Made the close button translatable.
          Found with ``i18ndude find-untranslated .``.
          [maurits]
        
        
        1.3 (2015-10-05)
        ----------------
        
        - Remove from jpicker js file the bad chars from the begining
          [bloodbare]
        
        - Renamed txt files to rst, without symlinks.  Symlinks can give
          installation problems, due to either the symlink or the original
          file missing from the distribution or being empty, because the link
          can end up the wrong way around.  Fixes issue #1.
          [maurits]
        
        
        1.2 (2015-05-02)
        ----------------
        
        - Updated classifiers list for package [macagua]
        - Added Spanish translation [macagua]
        
        
        1.1 (2013-06-02)
        ----------------
        
        - fix MANIFEST.in
          [gborelli]
        
        
        1.0 (2013-06-02)
        ----------------
        
        - add z3cform_colorpicker.js to initialize JPicker widget
          [gborelli]
        
        - add internationalization support
          [gborelli]
        
        - add css and javascript to Plone registry in order to make html valid
          [gborelli]
        
        - add profile to install colorpicker package
          [gborelli]
        
        - change some jpicker styles
          [gborelli]
        
        - update jpicker to v1.1.6
          [gborelli]
        
        - egg layout refactoring
          [gborelli]
        
        - change Browser import from Testing.testbrowser
          [gborelli]
        
        
        0.2 (2010-10-31)
        ----------------
        
        - include jPicker widget for alpha transparency support
          [gborelli]
        
        0.1 (2009-06-19)
        ----------------
        
        * Initial release
        
        
Keywords: plone z3cform colorpicker widget
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
