collective.js.jqueryui


Namecollective.js.jqueryui JSON
Version 2.2.0 PyPI version JSON
download
home_pagehttps://github.com/collective/collective.js.jqueryui
SummaryJQueryUI ready for Plone
upload_time2023-03-21 19:47:15
maintainer
docs_urlNone
authorJeanMichel FRANCOIS aka toutpt
requires_python>=2.7
licenseGPL version 2
keywords plone jqueryui
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            Introduction
============

Integration of jQueryUI in Plone


WARNINGS
========

Plone < 4
---------

For Plone 3 you need version 1.7.x of this package

JQueryUI > 1.8.6 is supposed to be compatible with jQuery 1.3.2.
At the moment you should prefer to use the 1.7.X version of jQueryUI
(same package exists for 1.7 branch)

Plone < 4.3
-----------

Use version < 1.9

Integration for Zope and Plone
==============================

This package can be used as a Plone add-on - for this it adds GenericSetup
profiles and Plone ControlPanel configlets - or it can be used as a simple Zope
jQuery UI resources registrar. See bellow how your zc.buildout config file
should look like if you use collective.js.jqueryui with or without Plone.

Plone
-----

for Plone > 4.0:

buildout.cfg::

    [instance]
    eggs +=
         collective.js.jqueryui

for Plone == 4.0 you must add plone.app.registry yourself:

buildout.cfg::

    extends=http://good-py.appspot.com/release/plone.app.registry/1.0b2
    [instance]
    eggs +=
        collective.js.jqueryui
        plone.app.registry

Zope
----

buildout.cfg::

    [instance]
    eggs =
        collective.js.jqueryui
    zcml =
        collective.js.jqueryui

Include plugins and optimizations
=================================

By default this addon register all plugins and activate all of them except tabs.
So ui.tabs is registred but not activated.

Because jQueryUI is big on both javascripts and css you may want to optimize
the configuration of your site or your addon which depends on this one.

So you can activate/unactivate plugins using registry profile or the jQueryUI
controlpanel.

Using registry.xml, you can activate only what you want::

    <registry>
        <records interface="collective.js.jqueryui.controlpanel.IJQueryUIPlugins">
          <value key="ui_draggable">True</value>
          <value key="ui_droppable">True</value>
        </records>
    </registry>

In the case of a policy you can do a full configuration::

    <registry>
        <records interface="collective.js.jqueryui.controlpanel.IJQueryUIPlugins">
          <value key="ui_core">True</value>
          <value key="ui_widget">True</value>
          <value key="ui_mouse">True</value>
          <value key="ui_position">True</value>
          <value key="ui_draggable">True</value>
          <value key="ui_droppable">True</value>
          <value key="ui_resizable">True</value>
          <value key="ui_selectable">True</value>
          <value key="ui_sortable">True</value>
          <value key="ui_accordion">False</value>
          <value key="ui_autocomplete">False</value>
          <value key="ui_button">False</value>
          <value key="ui_dialog">False</value>
          <value key="ui_slider">False</value>
          <value key="ui_tabs">False</value>
          <value key="ui_datepicker">False</value>
          <value key="ui_progressbar">False</value>
          <value key="effects_core">False</value>
          <value key="effects_blind">False</value>
          <value key="effects_bounce">False</value>
          <value key="effects_clip">False</value>
          <value key="effects_drop">False</value>
          <value key="effects_explode">False</value>
          <value key="effects_fade">False</value>
          <value key="effects_fold">False</value>
          <value key="effects_highlight">False</value>
          <value key="effects_pulsate">False</value>
          <value key="effects_scale">False</value>
          <value key="effects_shake">False</value>
          <value key="effects_slide">False</value>
          <value key="effects_transfer">False</value>
        </records>
        <records interface="collective.js.jqueryui.controlpanel.IJQueryUICSS">
          <value key="css">False</value>
          <value key="patch">False</value>
        </records>
    </registry>

Using the control panel, you can select plugins you want. If you unselect a
plugin it will be unactivated (but not its dependencies)

Using python, you just have to use plone.registry api::

    from zope.component import getUtility
    from plone.registry.interfaces import IRegistry
    from collective.js.jqueryui.config import DEPS
    from collective.js.jqueryui.interfaces import IJQueryUICSS, IJQueryUIPlugins
    #is plone.app.registry
    registry = getUtility(IRegistry)
    proxy = registry.forInterface(IJQueryUIPlugins)
    setattr(proxy, 'ui_draggable', True)
    setattr(proxy, 'ui_droppable', True)

Credits and contributions
=========================

|makinacom|_

* `Makina Corpus <https://www.makina-corpus.com>`_
* `Ecreall <https://www.ecreall.com>`_

.. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif
.. _makinacom:  https://www.makina-corpus.com


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

- JeanMichel FRANCOIS aka toutpt, toutpt@gmail.com
- Wesley Barroso Lopes, wesleybl@gmail.com
- Vincent Fretin [vincentfretin]
- Hanno Schlichting [hanno]
- Nathan Vangheem [vangheem]
- Marcos F. Romero [marcosfromero]
- Kees Hink [khink]
- Robert Niederreiter [rnix]
- Alin Voinea [avoinea]


Changelog
=========

JQueryUI Changelog: https://jqueryui.com/changelog/

2.2.0 (2023-03-21)
------------------

- Remove dependency on ``plone.app.jquery`` (fixes `#45 <https://github.com/collective/collective.js.jqueryui/issues/45>`_).
  [wesleybl]

- Separate profile ``uninstall`` from Plone 5 and Plone 4.
  [wesleybl]


2.1.8 (2021-01-05)
------------------

- Removed ``setuptools_git`` from ``setup_requires``.
  Not needed anymore, and may give problems.
  See `PR 44 <https://github.com/collective/collective.js.jqueryui/pull/44>`_.
  [marclava, maurits]


2.1.7 (2021-01-05)
------------------

- Do not depend on cssregistry/jsregistry import steps in Plone 5.
  This avoids noisy warnings when applying any profile.
  [ewohnlich]


2.1.6 (2019-04-09)
------------------

- More occurences of portal_css/portal_javascript eleminated.
  [jensens]


2.1.5 (2019-04-09)
------------------

- Typo corrected
  [jensens]


2.1.4 (2019-04-09)
------------------

- Fix: Do not try to cook css resources in Plone 5.2.
  [jensens]


2.1.3 (2019-04-09)
------------------

- Fix: Do not try to cook js resources in Plone 5.2.
  [jensens]


2.1.2 (2019-03-14)
------------------

- Workaround: ResourceRegistry was removed in 5.2.
  [jensens]


2.1.1 (2019-03-14)
------------------

- 2.1.0 was a brown bag release with broken setup.
  [jensens]


2.1.0 (2019-03-14)
------------------

Bug fixes:

- Added uninstall profile
  [agitator]

- Python 2/3 compatibility
  [pbauer]

- Simplify resource registration for Plone 5 the way done in
  https://github.com/collective/example.p4p5#cssjs-declaration-in-plone-5
  [rnix]

- Cleanup GS profiles to install properly in Plone 5
  [rnix]


2.0.1 (2015-09-28)
------------------

- Fix bad release : https://github.com/collective/collective.js.jqueryui/issues/31
  [bsuttor]


2.0.0 (2015-09-25)
------------------

- Update bootstrap.py.
  [bsuttor]

- Upgrade to jqueryui 1.10.4.
  [mathias.leimgruber]

- Add Plone 5 support and move Plone 4 support into a BBB profile
  [rpatterson]


1.10.4 (2014-04-04)
-------------------

- Include ``plone.app.jquery`` ZCML explicitely.
  [gotcha]

- Fix https://dev.plone.org/ticket/13606: safe compression on big javascript
  files. Just remove the compression on all resources, we already use
  minified version
  [toutpt]


1.10.3 (2013-05-16)
-------------------

- Fixed naming of effects dependencies and mapping of effects dependencies
  to effects configuration.
  [do3cc]


1.10.2 (2013-04-29)
-------------------

- Make the JS of the viewlet don't break if $.datepicker is undefined. [toutpt]
- Add requirement plone.app.jquery>1.6
- Register resources in 'jqueryui' bundle and add this bundle as (default)

1.10.1.2 (2013-03-06)
---------------------

- Fix TypeError when jQuery UI CSS files are not selected [toutpt]


1.10.1.1 (2013-03-06)
---------------------

- Packaging issue fixed.


1.10.1 (2013-03-06)
-------------------

- Upgrade to jqueryui 1.10.1

1.10.0.1 (2013-01-30)
---------------------

- Upgrade to jqueryui 1.10.0
- Update the example page

1.9.2.0 (2012-11-29)
--------------------

- Upgrade to jqueryui 1.9.2 (fix #14)
- fix rename of effects introduced in 1.9

1.9.1.1 (2012-11-12)
--------------------

- remove include condition stuff which break on 1.9.1.0 [toutpt]


1.9.1.0 (2012-11-11)
--------------------

- upgrade jQueryUI to 1.9.1 [toutpt]


1.8.16.9 (2012-09-10)
---------------------

- another fix for applyPrefix [kiorky]
- Keep this package Plone independent. Added zcml files for Plone and Zope and
  include them accordingly by configure.zcml
  [avoinea]

1.8.16.8 (2012-07-27)
---------------------

- Honnor applyPrefix [kiorky]
- CSS: remove include expression of css registry.
- CSS: move the css after public.css
- CSS: move to rendering = link and media = screen to fit with sunburst
- CSS: fix honorPrefix upgrade
  [toutpt]

1.8.16.7 (2012-06-07)
---------------------

- Use now a js and a css view to handle both resources [kiorky]


1.8.16.6 (2012-03-15)
---------------------

- Fix dependencies for Plone 4.0.X: add plone.app.registry
  [toutpt]
- Fix getSite() for Plone 4.0.
- Backport plone.app.jqueryui work: Only one browserview to manage plugins.
  make portal_javascripts have only one resource.

1.8.16.5 (2012-01-24)
---------------------

- Fix viewlet from breaking the whole site while you have not upgraded the addon
  [toutpt]

1.8.16.4 (2011-12-16)
---------------------

- manage i18nviewlet and ++resource++jquery-ui-i18n.js file as dependency of
  datepicker
- add handler to check integrity of jsregistry
- improve navigation in control panels
- fix install where js were not enabled. the reason was plone.app.registry
  step is imported before jsregistry step. fixed by adding a new step.

1.8.16.3 (2011-12-15)
---------------------

- Add permission.zcml include respecting Plone3
  [toutpt]

1.8.16.2 (2011-12-15)
---------------------

- Add a controlpanel using plone.app.registry to select plugins and optimize
  your site. Addons using collective.js.jqueryui should update their install
  to set which plugins they need.

1.8.16.1 (2011-12-02)
---------------------

- Upgrade JQueryUI to 1.8.16
  [toutpt]

1.8.13.1 (2011-05-23)
---------------------

- Update JQueryUI to 1.8.13.
  Rename css from jquery-ui-1.8.12.custom.css to jqueryui.css to make it
  compatible with collective.jqueryuithememanager
  update sunburst theme to include font size = 0.9em
  [toutpt]

1.8.12.3 (unreleased)
---------------------

- add a config file with VERSION.
  [toutpt]

- make example.jqueryui view activable (unactivated by default)
  [toutpt]

- only include datepicker viewlet code if jqueryui is enabled for
  the content item
  [vangheem]

1.8.12.2 (2011-04-25)
---------------------

- Add jquery-ui-1.8.12.custom.js. fixed issue #1
  [toutpt]


1.8.12.1 (2011-04-24)
---------------------

- Update JQueryUI to 1.8.12
  [toutpt]

1.8.9.2 (2011-02-21)
--------------------

- Add include condition to JQueryUI resources. Can be configured throw
  portal_properties.
  [toutpt]

- Add applyPrefix option to main css. Fix production mode issue with caching allowed.
  [toutpt]

1.8.9.1 (2011-01-21)
--------------------

- update to jqueryui 1.8.9. Include plone4-patch.css in default profile.
  Refactor css&theme browser resources to not have to update url in the css
  [toutpt marcosfromero]

- remove browser layer on jquery-ui.min.js and jquery.ui.all.css.
  Let anyone want to use it has browser:resource if wanted
  [toutpt]

1.8.8.1 (2011-01-18)
--------------------

- Update jqueryui to 1.8.8
  [toutpt]

1.8.7.2 (2011-01-08)
--------------------

- Add jquery-ui.min.js as browser resource: ++resource++jquery-ui.min.js
  This one do not need any install
  [toutpt]

- Update profile to use jquery-ui.min.js in portal_javascript and add migrations
  [toutpt]

1.8.7.1 (2010-12-10)
--------------------

- Updated to jqueryui 1.8.7
  [toutpt]

- Disable compression of jquery-ui-i18n.js. Compression was broken, resulting
  in Chinese characters in the calendar popup.
  [khink]

1.8.6.1 (2010-12-07)
--------------------

- Updated to jqueryui 1.8.6
  [toutpt]

1.8.5.2 (2010-11-23)
--------------------

- Register browser components for a package-specific browser layer, so they
  don't leak to sites without this product installed. You will need to run
  the upgrade step from the Add-ons control panel if upgrading this product
  on a site where it is already installed.
  [davisagli]


1.8.5.1 (2010-10-21)
--------------------

- Updated to jqueryui 1.8.5.
  [vincentfretin]

- Fixed L10nDatepicker to work without a ``request.LANGUAGE`` attribute.
  [hannosch]

- Add icons to @@example.jqueryui view
  [toutpt]

- Replaced original "smoothness" theme with a new "plone4" one more related
  to "sunburst" that comes with Plone 4.
  [marcosfromero]

1.8.4.1 (2010-08-11)
--------------------

- Update jqueryui to 1.8.4
  [toutpt]

1.8.2.2 (2010-07-31)
--------------------

- Fixed the css to use images from the directory resources.
  [vincentfretin]

- Added @@example.jqueryui page.
  [toutpt]

1.8.2.1 (2010-07-27)
--------------------

- Since jquery-ui-i18n.js contains symbols other than utf-8 it should
  be compressed with safe-encode type.
  [spliter]

- Update to jqueryui 1.8.2
  [toutpt]

1.8rc3 (2010-04-30)
-------------------

* Added jquery-ui-i18n.js which contains all translations for datepicker
  plugin.
  [vincentfretin]

* Removed completly the ``withjqtoolsplone3`` and ``withjqtools`` profiles.
  We don't depend on collective.js.jquery anymore. So the jQuery of Plone 4 is kept.
  The defaut profile now install jqueryui 1.8 without the tabs plugin which conflicts
  with plone.app.jquerytools.
  This version only works on Plone 4 because Plone 4 ships with JQuery 1.4+ and
  jQuery 1.8 requires jQuery 1.4+.
  [vincentfretin]

1.7.2.7 (2010-03-16)
--------------------

* ``withjqtools`` profile doesn't apply the collective.js.jquery profile
  anymore. So you can use it with Plone 3.3/4, it will not replace the
  jQuery version included in Plone.
  [vincentfretin]

* Add ``withjqtoolsplone3`` profile which is the same as ``withjqtools`` but
  installs the collective.js.jquery profile so the jQuery library is replaced
  by a newer one. Use this profile only on Plone 3.2 with plone.app.jquerytools.
  [vincentfretin]

1.7.2.6 (2010-02-02)
--------------------

* Add profile ``withjqtools``, a profile registering the jquery UI bundle
  without the ``tabs`` plugin. This plugin conflicts with the same plugin
  from jquery tools. Note that ``plone.app.jquerytools`` must be availabe in
  your system, since it's profile is applied as dependency. It's not added
  to the setup dependencies of this package. [rnix]
* Add jquery-ui-1.7.2.jq-tools-compat.js [rnix]

1.7.2.5 (2009-08-26)
--------------------

* Include collective.js.jquery configure.zcml [vincentfretin]

1.7.2.4 (2009-08-25)
--------------------

* Add dependency to collective.js.jquery in the default profile

1.7.2.3 (2009-08-17)
--------------------

* Update documentation: add note for developer about Plone3.3
* Remove all .* files include in the last release (MacOSX feature)

1.7.2.2 (2009-06-25)
--------------------

* Fixed images not being able to be loaded from css problem.

1.7.2.1 (2009-06-10)
--------------------

* Initial release with jquery-ui 1.7.2 (need jquery 1.3.x)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/collective/collective.js.jqueryui",
    "name": "collective.js.jqueryui",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=2.7",
    "maintainer_email": "",
    "keywords": "plone jqueryui",
    "author": "JeanMichel FRANCOIS aka toutpt",
    "author_email": "toutpt@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ca/4d/aec96f46a0a6fd5c1195265fe7e9ec988d90da72b474d8b3a5a155f4f07b/collective.js.jqueryui-2.2.0.tar.gz",
    "platform": null,
    "description": "Introduction\n============\n\nIntegration of jQueryUI in Plone\n\n\nWARNINGS\n========\n\nPlone < 4\n---------\n\nFor Plone 3 you need version 1.7.x of this package\n\nJQueryUI > 1.8.6 is supposed to be compatible with jQuery 1.3.2.\nAt the moment you should prefer to use the 1.7.X version of jQueryUI\n(same package exists for 1.7 branch)\n\nPlone < 4.3\n-----------\n\nUse version < 1.9\n\nIntegration for Zope and Plone\n==============================\n\nThis package can be used as a Plone add-on - for this it adds GenericSetup\nprofiles and Plone ControlPanel configlets - or it can be used as a simple Zope\njQuery UI resources registrar. See bellow how your zc.buildout config file\nshould look like if you use collective.js.jqueryui with or without Plone.\n\nPlone\n-----\n\nfor Plone > 4.0:\n\nbuildout.cfg::\n\n    [instance]\n    eggs +=\n         collective.js.jqueryui\n\nfor Plone == 4.0 you must add plone.app.registry yourself:\n\nbuildout.cfg::\n\n    extends=http://good-py.appspot.com/release/plone.app.registry/1.0b2\n    [instance]\n    eggs +=\n        collective.js.jqueryui\n        plone.app.registry\n\nZope\n----\n\nbuildout.cfg::\n\n    [instance]\n    eggs =\n        collective.js.jqueryui\n    zcml =\n        collective.js.jqueryui\n\nInclude plugins and optimizations\n=================================\n\nBy default this addon register all plugins and activate all of them except tabs.\nSo ui.tabs is registred but not activated.\n\nBecause jQueryUI is big on both javascripts and css you may want to optimize\nthe configuration of your site or your addon which depends on this one.\n\nSo you can activate/unactivate plugins using registry profile or the jQueryUI\ncontrolpanel.\n\nUsing registry.xml, you can activate only what you want::\n\n    <registry>\n        <records interface=\"collective.js.jqueryui.controlpanel.IJQueryUIPlugins\">\n          <value key=\"ui_draggable\">True</value>\n          <value key=\"ui_droppable\">True</value>\n        </records>\n    </registry>\n\nIn the case of a policy you can do a full configuration::\n\n    <registry>\n        <records interface=\"collective.js.jqueryui.controlpanel.IJQueryUIPlugins\">\n          <value key=\"ui_core\">True</value>\n          <value key=\"ui_widget\">True</value>\n          <value key=\"ui_mouse\">True</value>\n          <value key=\"ui_position\">True</value>\n          <value key=\"ui_draggable\">True</value>\n          <value key=\"ui_droppable\">True</value>\n          <value key=\"ui_resizable\">True</value>\n          <value key=\"ui_selectable\">True</value>\n          <value key=\"ui_sortable\">True</value>\n          <value key=\"ui_accordion\">False</value>\n          <value key=\"ui_autocomplete\">False</value>\n          <value key=\"ui_button\">False</value>\n          <value key=\"ui_dialog\">False</value>\n          <value key=\"ui_slider\">False</value>\n          <value key=\"ui_tabs\">False</value>\n          <value key=\"ui_datepicker\">False</value>\n          <value key=\"ui_progressbar\">False</value>\n          <value key=\"effects_core\">False</value>\n          <value key=\"effects_blind\">False</value>\n          <value key=\"effects_bounce\">False</value>\n          <value key=\"effects_clip\">False</value>\n          <value key=\"effects_drop\">False</value>\n          <value key=\"effects_explode\">False</value>\n          <value key=\"effects_fade\">False</value>\n          <value key=\"effects_fold\">False</value>\n          <value key=\"effects_highlight\">False</value>\n          <value key=\"effects_pulsate\">False</value>\n          <value key=\"effects_scale\">False</value>\n          <value key=\"effects_shake\">False</value>\n          <value key=\"effects_slide\">False</value>\n          <value key=\"effects_transfer\">False</value>\n        </records>\n        <records interface=\"collective.js.jqueryui.controlpanel.IJQueryUICSS\">\n          <value key=\"css\">False</value>\n          <value key=\"patch\">False</value>\n        </records>\n    </registry>\n\nUsing the control panel, you can select plugins you want. If you unselect a\nplugin it will be unactivated (but not its dependencies)\n\nUsing python, you just have to use plone.registry api::\n\n    from zope.component import getUtility\n    from plone.registry.interfaces import IRegistry\n    from collective.js.jqueryui.config import DEPS\n    from collective.js.jqueryui.interfaces import IJQueryUICSS, IJQueryUIPlugins\n    #is plone.app.registry\n    registry = getUtility(IRegistry)\n    proxy = registry.forInterface(IJQueryUIPlugins)\n    setattr(proxy, 'ui_draggable', True)\n    setattr(proxy, 'ui_droppable', True)\n\nCredits and contributions\n=========================\n\n|makinacom|_\n\n* `Makina Corpus <https://www.makina-corpus.com>`_\n* `Ecreall <https://www.ecreall.com>`_\n\n.. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif\n.. _makinacom:  https://www.makina-corpus.com\n\n\nContributors\n============\n\n- JeanMichel FRANCOIS aka toutpt, toutpt@gmail.com\n- Wesley Barroso Lopes, wesleybl@gmail.com\n- Vincent Fretin [vincentfretin]\n- Hanno Schlichting [hanno]\n- Nathan Vangheem [vangheem]\n- Marcos F. Romero [marcosfromero]\n- Kees Hink [khink]\n- Robert Niederreiter [rnix]\n- Alin Voinea [avoinea]\n\n\nChangelog\n=========\n\nJQueryUI Changelog: https://jqueryui.com/changelog/\n\n2.2.0 (2023-03-21)\n------------------\n\n- Remove dependency on ``plone.app.jquery`` (fixes `#45 <https://github.com/collective/collective.js.jqueryui/issues/45>`_).\n  [wesleybl]\n\n- Separate profile ``uninstall`` from Plone 5 and Plone 4.\n  [wesleybl]\n\n\n2.1.8 (2021-01-05)\n------------------\n\n- Removed ``setuptools_git`` from ``setup_requires``.\n  Not needed anymore, and may give problems.\n  See `PR 44 <https://github.com/collective/collective.js.jqueryui/pull/44>`_.\n  [marclava, maurits]\n\n\n2.1.7 (2021-01-05)\n------------------\n\n- Do not depend on cssregistry/jsregistry import steps in Plone 5.\n  This avoids noisy warnings when applying any profile.\n  [ewohnlich]\n\n\n2.1.6 (2019-04-09)\n------------------\n\n- More occurences of portal_css/portal_javascript eleminated.\n  [jensens]\n\n\n2.1.5 (2019-04-09)\n------------------\n\n- Typo corrected\n  [jensens]\n\n\n2.1.4 (2019-04-09)\n------------------\n\n- Fix: Do not try to cook css resources in Plone 5.2.\n  [jensens]\n\n\n2.1.3 (2019-04-09)\n------------------\n\n- Fix: Do not try to cook js resources in Plone 5.2.\n  [jensens]\n\n\n2.1.2 (2019-03-14)\n------------------\n\n- Workaround: ResourceRegistry was removed in 5.2.\n  [jensens]\n\n\n2.1.1 (2019-03-14)\n------------------\n\n- 2.1.0 was a brown bag release with broken setup.\n  [jensens]\n\n\n2.1.0 (2019-03-14)\n------------------\n\nBug fixes:\n\n- Added uninstall profile\n  [agitator]\n\n- Python 2/3 compatibility\n  [pbauer]\n\n- Simplify resource registration for Plone 5 the way done in\n  https://github.com/collective/example.p4p5#cssjs-declaration-in-plone-5\n  [rnix]\n\n- Cleanup GS profiles to install properly in Plone 5\n  [rnix]\n\n\n2.0.1 (2015-09-28)\n------------------\n\n- Fix bad release : https://github.com/collective/collective.js.jqueryui/issues/31\n  [bsuttor]\n\n\n2.0.0 (2015-09-25)\n------------------\n\n- Update bootstrap.py.\n  [bsuttor]\n\n- Upgrade to jqueryui 1.10.4.\n  [mathias.leimgruber]\n\n- Add Plone 5 support and move Plone 4 support into a BBB profile\n  [rpatterson]\n\n\n1.10.4 (2014-04-04)\n-------------------\n\n- Include ``plone.app.jquery`` ZCML explicitely.\n  [gotcha]\n\n- Fix https://dev.plone.org/ticket/13606: safe compression on big javascript\n  files. Just remove the compression on all resources, we already use\n  minified version\n  [toutpt]\n\n\n1.10.3 (2013-05-16)\n-------------------\n\n- Fixed naming of effects dependencies and mapping of effects dependencies\n  to effects configuration.\n  [do3cc]\n\n\n1.10.2 (2013-04-29)\n-------------------\n\n- Make the JS of the viewlet don't break if $.datepicker is undefined. [toutpt]\n- Add requirement plone.app.jquery>1.6\n- Register resources in 'jqueryui' bundle and add this bundle as (default)\n\n1.10.1.2 (2013-03-06)\n---------------------\n\n- Fix TypeError when jQuery UI CSS files are not selected [toutpt]\n\n\n1.10.1.1 (2013-03-06)\n---------------------\n\n- Packaging issue fixed.\n\n\n1.10.1 (2013-03-06)\n-------------------\n\n- Upgrade to jqueryui 1.10.1\n\n1.10.0.1 (2013-01-30)\n---------------------\n\n- Upgrade to jqueryui 1.10.0\n- Update the example page\n\n1.9.2.0 (2012-11-29)\n--------------------\n\n- Upgrade to jqueryui 1.9.2 (fix #14)\n- fix rename of effects introduced in 1.9\n\n1.9.1.1 (2012-11-12)\n--------------------\n\n- remove include condition stuff which break on 1.9.1.0 [toutpt]\n\n\n1.9.1.0 (2012-11-11)\n--------------------\n\n- upgrade jQueryUI to 1.9.1 [toutpt]\n\n\n1.8.16.9 (2012-09-10)\n---------------------\n\n- another fix for applyPrefix [kiorky]\n- Keep this package Plone independent. Added zcml files for Plone and Zope and\n  include them accordingly by configure.zcml\n  [avoinea]\n\n1.8.16.8 (2012-07-27)\n---------------------\n\n- Honnor applyPrefix [kiorky]\n- CSS: remove include expression of css registry.\n- CSS: move the css after public.css\n- CSS: move to rendering = link and media = screen to fit with sunburst\n- CSS: fix honorPrefix upgrade\n  [toutpt]\n\n1.8.16.7 (2012-06-07)\n---------------------\n\n- Use now a js and a css view to handle both resources [kiorky]\n\n\n1.8.16.6 (2012-03-15)\n---------------------\n\n- Fix dependencies for Plone 4.0.X: add plone.app.registry\n  [toutpt]\n- Fix getSite() for Plone 4.0.\n- Backport plone.app.jqueryui work: Only one browserview to manage plugins.\n  make portal_javascripts have only one resource.\n\n1.8.16.5 (2012-01-24)\n---------------------\n\n- Fix viewlet from breaking the whole site while you have not upgraded the addon\n  [toutpt]\n\n1.8.16.4 (2011-12-16)\n---------------------\n\n- manage i18nviewlet and ++resource++jquery-ui-i18n.js file as dependency of\n  datepicker\n- add handler to check integrity of jsregistry\n- improve navigation in control panels\n- fix install where js were not enabled. the reason was plone.app.registry\n  step is imported before jsregistry step. fixed by adding a new step.\n\n1.8.16.3 (2011-12-15)\n---------------------\n\n- Add permission.zcml include respecting Plone3\n  [toutpt]\n\n1.8.16.2 (2011-12-15)\n---------------------\n\n- Add a controlpanel using plone.app.registry to select plugins and optimize\n  your site. Addons using collective.js.jqueryui should update their install\n  to set which plugins they need.\n\n1.8.16.1 (2011-12-02)\n---------------------\n\n- Upgrade JQueryUI to 1.8.16\n  [toutpt]\n\n1.8.13.1 (2011-05-23)\n---------------------\n\n- Update JQueryUI to 1.8.13.\n  Rename css from jquery-ui-1.8.12.custom.css to jqueryui.css to make it\n  compatible with collective.jqueryuithememanager\n  update sunburst theme to include font size = 0.9em\n  [toutpt]\n\n1.8.12.3 (unreleased)\n---------------------\n\n- add a config file with VERSION.\n  [toutpt]\n\n- make example.jqueryui view activable (unactivated by default)\n  [toutpt]\n\n- only include datepicker viewlet code if jqueryui is enabled for\n  the content item\n  [vangheem]\n\n1.8.12.2 (2011-04-25)\n---------------------\n\n- Add jquery-ui-1.8.12.custom.js. fixed issue #1\n  [toutpt]\n\n\n1.8.12.1 (2011-04-24)\n---------------------\n\n- Update JQueryUI to 1.8.12\n  [toutpt]\n\n1.8.9.2 (2011-02-21)\n--------------------\n\n- Add include condition to JQueryUI resources. Can be configured throw\n  portal_properties.\n  [toutpt]\n\n- Add applyPrefix option to main css. Fix production mode issue with caching allowed.\n  [toutpt]\n\n1.8.9.1 (2011-01-21)\n--------------------\n\n- update to jqueryui 1.8.9. Include plone4-patch.css in default profile.\n  Refactor css&theme browser resources to not have to update url in the css\n  [toutpt marcosfromero]\n\n- remove browser layer on jquery-ui.min.js and jquery.ui.all.css.\n  Let anyone want to use it has browser:resource if wanted\n  [toutpt]\n\n1.8.8.1 (2011-01-18)\n--------------------\n\n- Update jqueryui to 1.8.8\n  [toutpt]\n\n1.8.7.2 (2011-01-08)\n--------------------\n\n- Add jquery-ui.min.js as browser resource: ++resource++jquery-ui.min.js\n  This one do not need any install\n  [toutpt]\n\n- Update profile to use jquery-ui.min.js in portal_javascript and add migrations\n  [toutpt]\n\n1.8.7.1 (2010-12-10)\n--------------------\n\n- Updated to jqueryui 1.8.7\n  [toutpt]\n\n- Disable compression of jquery-ui-i18n.js. Compression was broken, resulting\n  in Chinese characters in the calendar popup.\n  [khink]\n\n1.8.6.1 (2010-12-07)\n--------------------\n\n- Updated to jqueryui 1.8.6\n  [toutpt]\n\n1.8.5.2 (2010-11-23)\n--------------------\n\n- Register browser components for a package-specific browser layer, so they\n  don't leak to sites without this product installed. You will need to run\n  the upgrade step from the Add-ons control panel if upgrading this product\n  on a site where it is already installed.\n  [davisagli]\n\n\n1.8.5.1 (2010-10-21)\n--------------------\n\n- Updated to jqueryui 1.8.5.\n  [vincentfretin]\n\n- Fixed L10nDatepicker to work without a ``request.LANGUAGE`` attribute.\n  [hannosch]\n\n- Add icons to @@example.jqueryui view\n  [toutpt]\n\n- Replaced original \"smoothness\" theme with a new \"plone4\" one more related\n  to \"sunburst\" that comes with Plone 4.\n  [marcosfromero]\n\n1.8.4.1 (2010-08-11)\n--------------------\n\n- Update jqueryui to 1.8.4\n  [toutpt]\n\n1.8.2.2 (2010-07-31)\n--------------------\n\n- Fixed the css to use images from the directory resources.\n  [vincentfretin]\n\n- Added @@example.jqueryui page.\n  [toutpt]\n\n1.8.2.1 (2010-07-27)\n--------------------\n\n- Since jquery-ui-i18n.js contains symbols other than utf-8 it should\n  be compressed with safe-encode type.\n  [spliter]\n\n- Update to jqueryui 1.8.2\n  [toutpt]\n\n1.8rc3 (2010-04-30)\n-------------------\n\n* Added jquery-ui-i18n.js which contains all translations for datepicker\n  plugin.\n  [vincentfretin]\n\n* Removed completly the ``withjqtoolsplone3`` and ``withjqtools`` profiles.\n  We don't depend on collective.js.jquery anymore. So the jQuery of Plone 4 is kept.\n  The defaut profile now install jqueryui 1.8 without the tabs plugin which conflicts\n  with plone.app.jquerytools.\n  This version only works on Plone 4 because Plone 4 ships with JQuery 1.4+ and\n  jQuery 1.8 requires jQuery 1.4+.\n  [vincentfretin]\n\n1.7.2.7 (2010-03-16)\n--------------------\n\n* ``withjqtools`` profile doesn't apply the collective.js.jquery profile\n  anymore. So you can use it with Plone 3.3/4, it will not replace the\n  jQuery version included in Plone.\n  [vincentfretin]\n\n* Add ``withjqtoolsplone3`` profile which is the same as ``withjqtools`` but\n  installs the collective.js.jquery profile so the jQuery library is replaced\n  by a newer one. Use this profile only on Plone 3.2 with plone.app.jquerytools.\n  [vincentfretin]\n\n1.7.2.6 (2010-02-02)\n--------------------\n\n* Add profile ``withjqtools``, a profile registering the jquery UI bundle\n  without the ``tabs`` plugin. This plugin conflicts with the same plugin\n  from jquery tools. Note that ``plone.app.jquerytools`` must be availabe in\n  your system, since it's profile is applied as dependency. It's not added\n  to the setup dependencies of this package. [rnix]\n* Add jquery-ui-1.7.2.jq-tools-compat.js [rnix]\n\n1.7.2.5 (2009-08-26)\n--------------------\n\n* Include collective.js.jquery configure.zcml [vincentfretin]\n\n1.7.2.4 (2009-08-25)\n--------------------\n\n* Add dependency to collective.js.jquery in the default profile\n\n1.7.2.3 (2009-08-17)\n--------------------\n\n* Update documentation: add note for developer about Plone3.3\n* Remove all .* files include in the last release (MacOSX feature)\n\n1.7.2.2 (2009-06-25)\n--------------------\n\n* Fixed images not being able to be loaded from css problem.\n\n1.7.2.1 (2009-06-10)\n--------------------\n\n* Initial release with jquery-ui 1.7.2 (need jquery 1.3.x)\n",
    "bugtrack_url": null,
    "license": "GPL version 2",
    "summary": "JQueryUI ready for Plone",
    "version": "2.2.0",
    "split_keywords": [
        "plone",
        "jqueryui"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca4daec96f46a0a6fd5c1195265fe7e9ec988d90da72b474d8b3a5a155f4f07b",
                "md5": "2f5ec0e093c99b17b0cf6167b110ea05",
                "sha256": "157a03b79e37eaccfd5529912dcfbd1ead2aa6c244b3f847df922ec5ae656479"
            },
            "downloads": -1,
            "filename": "collective.js.jqueryui-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2f5ec0e093c99b17b0cf6167b110ea05",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=2.7",
            "size": 316768,
            "upload_time": "2023-03-21T19:47:15",
            "upload_time_iso_8601": "2023-03-21T19:47:15.413709Z",
            "url": "https://files.pythonhosted.org/packages/ca/4d/aec96f46a0a6fd5c1195265fe7e9ec988d90da72b474d8b3a5a155f4f07b/collective.js.jqueryui-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-21 19:47:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "collective",
    "github_project": "collective.js.jqueryui",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "collective.js.jqueryui"
}
        
Elapsed time: 0.06461s