{
"info": {
"author": "JeanMichel FRANCOIS aka toutpt",
"author_email": "toutpt@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.0",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
"Framework :: Plone :: Addon",
"Framework :: Zope2",
"Framework :: Zope :: 2",
"Framework :: Zope :: 4",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
"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 \n \n True\n True\n \n \n\nIn the case of a policy you can do a full configuration::\n\n \n \n True\n True\n True\n True\n True\n True\n True\n True\n True\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n False\n \n \n False\n False\n \n \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 `_\n* `Ecreall `_\n\nContributors\n============\n\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* JeanMichel FRANCOIS [toutpt]\n* Alin Voinea [avoinea]\n\n.. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif\n.. _makinacom: http://www.makina-corpus.com\n\nHow to upgrade this package\n===========================\n\n- Go to http://jqueryui.com/download\n- Go to the URL specified in the collective/js/jqueryui/css/sunburst/jqueryui.css file to pre-load current theme settings.\n- Click on \"Download theme\" in the left-side \"Theme rollover\".\n- At the bottom \"Theme\" update by \"sunburst\" in \"Theme Folder Name\" field.\n- Download jquery-ui-X.custom.zip\n\nCommands to execute::\n\n PKG=\"/home/toutpt/workspace/collective.js.jqueryui/collective/js/jqueryui\"\n VERSION=\"1.8.13\"\n PREV=\"1.8.12\"\n unzip ~/jquery-ui-$VERSION.custom.zip\n cd ~/jquery-ui-$VERSION.custom\n rm $PKG/jquery-ui-$PREV.custom.min.js\n rm $PKG/jquery-ui-$PREV.custom.js\n rm $PKG/js/*\n cp ui/jquery-ui.js $PKG/jquery-ui-$VERSION.custom.js\n cp ui/minified/jquery-ui.min.js $PKG/jquery-ui-$VERSION.custom.min.js\n cp ui/minified/i18n/jquery-ui-i18n.min.js $PKG/jquery-ui-i18n.js\n cp ui/minified/*.min.js $PKG/js/\n\n rm $PKG/css/sunburst/images/*\n rm $PKG/css/sunburst/jqueryui.css\n cp css/sunburst/jquery-ui-$VERSION.custom.css $PKG/css/sunburst/jqueryui.css\n cp css/sunburst/images/* $PKG/css/sunburst/images/\n\n- update version in README.txt and common.zcml and config.py\n\n- increment the profile version in metadata.xml\n\n- update the ugprade step::\n\n \n\nChangelog\n=========\n\nJQueryUI Changelog: http://jqueryui.com/changelog/\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)",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/collective/collective.js.jqueryui",
"keywords": "plone jqueryui",
"license": "GPL",
"maintainer": "",
"maintainer_email": "",
"name": "collective.js.jqueryui",
"package_url": "https://pypi.org/project/collective.js.jqueryui/",
"platform": "",
"project_url": "https://pypi.org/project/collective.js.jqueryui/",
"project_urls": {
"Homepage": "https://github.com/collective/collective.js.jqueryui"
},
"release_url": "https://pypi.org/project/collective.js.jqueryui/2.1.6/",
"requires_dist": null,
"requires_python": "",
"summary": "JQueryUI ready for Plone",
"version": "2.1.6"
},
"last_serial": 5119055,
"releases": {
"1.10.0.1": [
{
"comment_text": "",
"digests": {
"md5": "9aea7abccd2609f1d39a275bc8c187fb",
"sha256": "6f0c92b96f35725fa59b8599afabb43b376ab2a5e832d38a106eeb76a4a4202b"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.10.0.1.zip",
"has_sig": false,
"md5_digest": "9aea7abccd2609f1d39a275bc8c187fb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 300105,
"upload_time": "2013-01-30T14:59:58",
"url": "https://files.pythonhosted.org/packages/2c/31/e0f52b30ba718ee9daa081526bd4375c36435f6493031719dd68cb4075ab/collective.js.jqueryui-1.10.0.1.zip"
}
],
"1.10.1": [
{
"comment_text": "",
"digests": {
"md5": "6212797d59ca498582152ecf766603ac",
"sha256": "49ab2615d8aac6e854d244f5b9192d3179539a48c6b46fca54f561af763bc4bc"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.10.1.zip",
"has_sig": false,
"md5_digest": "6212797d59ca498582152ecf766603ac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 364272,
"upload_time": "2013-03-06T08:55:25",
"url": "https://files.pythonhosted.org/packages/8c/6b/c5e21c0ed17f03239ab39e3a530370c39d9b2e3ccd07db719febe1bac0ef/collective.js.jqueryui-1.10.1.zip"
}
],
"1.10.1.1": [
{
"comment_text": "",
"digests": {
"md5": "f464997792343fa7fab2be07cf5e5fdd",
"sha256": "b1ed5ca21ca1bb752663e518c30c1d84bb2edb28b1afca892fe8dc459e87e219"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.10.1.1.zip",
"has_sig": false,
"md5_digest": "f464997792343fa7fab2be07cf5e5fdd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 366608,
"upload_time": "2013-03-06T09:29:49",
"url": "https://files.pythonhosted.org/packages/82/1d/c6a02f2d5092b00777818cfc17dec4d5bc8a07fa1fc9bb25fd521a07ad49/collective.js.jqueryui-1.10.1.1.zip"
}
],
"1.10.1.2": [
{
"comment_text": "",
"digests": {
"md5": "8055bdc38e9e6967d22d93e5c72c89ef",
"sha256": "03590de9c2553932c6854dfb4929f4f1f490e5729e1df97f92dc8543006ea27b"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.10.1.2.zip",
"has_sig": false,
"md5_digest": "8055bdc38e9e6967d22d93e5c72c89ef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 366723,
"upload_time": "2013-03-06T13:07:10",
"url": "https://files.pythonhosted.org/packages/5d/09/39c6c593f11e9a1f96b8222531a04c7fb6548ce54ed3d2c9ed4d29569f1b/collective.js.jqueryui-1.10.1.2.zip"
}
],
"1.10.2": [
{
"comment_text": "",
"digests": {
"md5": "d97b9961f8a0ddedc3883692b90f8e78",
"sha256": "ef80357bfe4bbcac3029c790f85d1bc27c485ea6d04881d526d0f414f56e2319"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.10.2.zip",
"has_sig": false,
"md5_digest": "d97b9961f8a0ddedc3883692b90f8e78",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 302551,
"upload_time": "2013-04-29T12:42:43",
"url": "https://files.pythonhosted.org/packages/ec/93/524bfb15094c0d9c811d1bb225cb6d8fc4d3f15ba5c5ec7760449ad549d9/collective.js.jqueryui-1.10.2.zip"
}
],
"1.10.3": [
{
"comment_text": "",
"digests": {
"md5": "75ca7dbe07c73ec88b052ef6984a0c86",
"sha256": "ed8880324c3abb362b2bf3568eb785ac6d3f8a03b6006a80e7cc1ffedce5d385"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.10.3.zip",
"has_sig": false,
"md5_digest": "75ca7dbe07c73ec88b052ef6984a0c86",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 303358,
"upload_time": "2013-05-16T19:56:53",
"url": "https://files.pythonhosted.org/packages/48/bf/3e3c5bd552e4d71c293016e72693c0bfb031a2810ab5ce7bddcefc9e983f/collective.js.jqueryui-1.10.3.zip"
}
],
"1.10.4": [
{
"comment_text": "",
"digests": {
"md5": "16863aa68be14ecf5cf3f0b5ce4beb9f",
"sha256": "96d4d94ea293141af2ee67d770b1dc581e00dfb78e9d21f64475cdb87782a7a2"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.10.4.zip",
"has_sig": false,
"md5_digest": "16863aa68be14ecf5cf3f0b5ce4beb9f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 316546,
"upload_time": "2014-04-04T09:10:59",
"url": "https://files.pythonhosted.org/packages/ac/03/73379ba795faf1dd2cdfce274fa8b6c3fd4efbce0323ae4dd2b9d181a1aa/collective.js.jqueryui-1.10.4.zip"
}
],
"1.7.2.1": [
{
"comment_text": "",
"digests": {
"md5": "7a9904ca987de99971c593e5709bb88a",
"sha256": "6c671fa9180debd7d66fb4020620a2aeca4533c23386bfcf245f021245055e99"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.7.2.1.tar.gz",
"has_sig": false,
"md5_digest": "7a9904ca987de99971c593e5709bb88a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 65533,
"upload_time": "2009-06-21T10:26:21",
"url": "https://files.pythonhosted.org/packages/d0/e6/21a37647385c9de3be28d52b7eefccfaca15c6cac20c0fe4902158c57035/collective.js.jqueryui-1.7.2.1.tar.gz"
}
],
"1.7.2.2": [
{
"comment_text": "",
"digests": {
"md5": "65c8c14299e2296c949ef2dcef712af1",
"sha256": "9b50e202ba8b365670be9c0546e9400357dd220dfd25b285680644dd9f298b96"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.7.2.2.tar.gz",
"has_sig": false,
"md5_digest": "65c8c14299e2296c949ef2dcef712af1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 66011,
"upload_time": "2009-06-25T18:46:49",
"url": "https://files.pythonhosted.org/packages/5d/67/0cb7ab535c274aae4e218b512c4cc4ce171b4caab4152eddf5e2513da8ab/collective.js.jqueryui-1.7.2.2.tar.gz"
}
],
"1.7.2.3": [
{
"comment_text": "",
"digests": {
"md5": "6cc78e5c0163530a9bb3722c2638f0df",
"sha256": "37829dcdd8858299998fd1b4dc4145fc1641c71cf4f52d7479961ff2cd4be7c5"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.7.2.3.zip",
"has_sig": false,
"md5_digest": "6cc78e5c0163530a9bb3722c2638f0df",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 86701,
"upload_time": "2009-08-17T10:57:45",
"url": "https://files.pythonhosted.org/packages/b4/14/74613a0ddadd0b4e50c94bc273c527bcca13a018c6a91995f74cd9dd5f49/collective.js.jqueryui-1.7.2.3.zip"
}
],
"1.7.2.4": [
{
"comment_text": "",
"digests": {
"md5": "caef4aa918276f1f10350e8ce0eaf8df",
"sha256": "2a41c6b052cf815d077c99ef1ab1ecc74e0b1e80809e7de26b298d9f7b56fbee"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.7.2.4.zip",
"has_sig": false,
"md5_digest": "caef4aa918276f1f10350e8ce0eaf8df",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 86829,
"upload_time": "2009-08-25T12:19:22",
"url": "https://files.pythonhosted.org/packages/32/a6/8a76e1322e1a950c77eaaee45835863f072396b769a3c3c789a5e16984b1/collective.js.jqueryui-1.7.2.4.zip"
}
],
"1.7.2.5": [
{
"comment_text": "",
"digests": {
"md5": "b9bb71c1df23e74f1aee7313b544fab1",
"sha256": "03245452779afc3605cdb79b0c63326e8f4e8f93590c80d8e0e61922656f8567"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.7.2.5.zip",
"has_sig": false,
"md5_digest": "b9bb71c1df23e74f1aee7313b544fab1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 86920,
"upload_time": "2009-08-26T09:32:50",
"url": "https://files.pythonhosted.org/packages/65/7f/42c8197c4eb0eea644e4161e23b96834cb1899d81ea077ad6c3724d13433/collective.js.jqueryui-1.7.2.5.zip"
}
],
"1.7.2.6": [
{
"comment_text": "",
"digests": {
"md5": "c62018850e82538e85d5d80df3530d52",
"sha256": "5d8249155ed3dc2f3fc45c86a57626a4254166fde81916c31019ef561488194c"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.7.2.6.tar.gz",
"has_sig": false,
"md5_digest": "c62018850e82538e85d5d80df3530d52",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 110144,
"upload_time": "2010-02-02T21:49:12",
"url": "https://files.pythonhosted.org/packages/fa/e1/a30e4e1c7757a1ad2f4ba85b03399ea6cdf5e19f3ee73de88111dcb07313/collective.js.jqueryui-1.7.2.6.tar.gz"
}
],
"1.7.2.7": [
{
"comment_text": "",
"digests": {
"md5": "92cf39ac6208d6a6d1268de47a6817af",
"sha256": "556766c2303679b474df300f016a6ceb51c77c8d4a1f5540027ffad0004ae418"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.7.2.7.zip",
"has_sig": false,
"md5_digest": "92cf39ac6208d6a6d1268de47a6817af",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 135057,
"upload_time": "2010-03-16T10:10:22",
"url": "https://files.pythonhosted.org/packages/f3/bf/674b44e05b812bf556594e47b053c619279292d67ca7f2ab17ad12c005c3/collective.js.jqueryui-1.7.2.7.zip"
}
],
"1.7.2.8": [
{
"comment_text": "",
"digests": {
"md5": "72094390220090455aab4d1c0b49b0e6",
"sha256": "8220cc13135a5226b442a2ddf16b80785eeef26c375deafc887a5cc44eddbcf1"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.7.2.8.zip",
"has_sig": false,
"md5_digest": "72094390220090455aab4d1c0b49b0e6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 135507,
"upload_time": "2010-04-21T20:37:18",
"url": "https://files.pythonhosted.org/packages/ba/84/f072b398be6ed6c2ecbb69d1acab9a1bb06f9468dd8e84f893e0f2b8c8d8/collective.js.jqueryui-1.7.2.8.zip"
}
],
"1.7.3.1": [
{
"comment_text": "",
"digests": {
"md5": "37105b44dba487111a486d48928dbe72",
"sha256": "c9bcfbb4365c7da2eaca1342894a4ba0405a8c9c66d9b2b11ce93e5d585c9893"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.7.3.1.tar.gz",
"has_sig": false,
"md5_digest": "37105b44dba487111a486d48928dbe72",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114501,
"upload_time": "2011-01-12T12:32:42",
"url": "https://files.pythonhosted.org/packages/cd/cc/6b5d3dd7653eb6e193aa0626de83ceb7013775eef73a5f43586056e1baf2/collective.js.jqueryui-1.7.3.1.tar.gz"
}
],
"1.8.12.1": [
{
"comment_text": "",
"digests": {
"md5": "f7943bcad68a7441fbf0146aae8728e9",
"sha256": "24b20b2dd49f081af2536b3d250ef0aeea9426b02b79bad6a294b3e46408c222"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.12.1.tar.gz",
"has_sig": false,
"md5_digest": "f7943bcad68a7441fbf0146aae8728e9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 97653,
"upload_time": "2011-04-24T23:09:25",
"url": "https://files.pythonhosted.org/packages/9a/42/f4bacc2e4d1e0c8f56e8317709e0eb9f5feef432aa85e9ddb057998382ef/collective.js.jqueryui-1.8.12.1.tar.gz"
}
],
"1.8.12.2": [
{
"comment_text": "",
"digests": {
"md5": "43f376d22e28834d5c8d579031d6fd28",
"sha256": "8c17d20c1c48c4f8c83255c50581cff5e02320ea96cf936db3cd9991b9af385f"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.12.2.tar.gz",
"has_sig": false,
"md5_digest": "43f376d22e28834d5c8d579031d6fd28",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 147561,
"upload_time": "2011-04-25T12:56:35",
"url": "https://files.pythonhosted.org/packages/d3/97/531e86a476b5eb77da15a4ba7cb565f79f6f7f35f34a4486d4b0147fba8a/collective.js.jqueryui-1.8.12.2.tar.gz"
}
],
"1.8.13.1": [
{
"comment_text": "",
"digests": {
"md5": "1b2b303895e805eab60bebdd8e4d57d4",
"sha256": "262eeaf4481e565cf615c6cd693307766aacdb05a14236d5f446060e0abe4805"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.13.1.tar.gz",
"has_sig": false,
"md5_digest": "1b2b303895e805eab60bebdd8e4d57d4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 148806,
"upload_time": "2011-05-23T14:16:37",
"url": "https://files.pythonhosted.org/packages/5c/77/e46f711da050b250fd08f4d24686ef1c7b9cb4896fb3b7e2cdc6ca00d9b5/collective.js.jqueryui-1.8.13.1.tar.gz"
}
],
"1.8.16.1": [
{
"comment_text": "",
"digests": {
"md5": "aade4d27fefa093594c2df7dad91db21",
"sha256": "2265485abb1f0233d1d2ca45cd79d90c24a992a85346ac9c42712e9e476f89c6"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.16.1.tar.gz",
"has_sig": false,
"md5_digest": "aade4d27fefa093594c2df7dad91db21",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 147853,
"upload_time": "2011-12-02T12:32:19",
"url": "https://files.pythonhosted.org/packages/49/ba/6115b5e5be90ad7ab55569a5dad85ccaf1f4485bf1e56fd8a9c185a696b7/collective.js.jqueryui-1.8.16.1.tar.gz"
}
],
"1.8.16.2": [
{
"comment_text": "",
"digests": {
"md5": "332d25f51e04d771bd440598e37536b0",
"sha256": "ebded20a0e69f6a660a2166a1688a8bb2fe823e946623428fcc1518d8c26585c"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.16.2.tar.gz",
"has_sig": false,
"md5_digest": "332d25f51e04d771bd440598e37536b0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 207213,
"upload_time": "2011-12-15T15:23:42",
"url": "https://files.pythonhosted.org/packages/c5/10/0d92ddef5807031c56fbc90fe089b81f99294f5833528a8f4a7b3b119579/collective.js.jqueryui-1.8.16.2.tar.gz"
}
],
"1.8.16.3": [
{
"comment_text": "",
"digests": {
"md5": "7d88d5eb76e100ad30bc749f6b9d30fe",
"sha256": "7d61123c21ff5b534c709c86a1dfa100ef8be7df85b90508004ba5f9d026b45f"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.16.3.tar.gz",
"has_sig": false,
"md5_digest": "7d88d5eb76e100ad30bc749f6b9d30fe",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 207256,
"upload_time": "2011-12-15T23:01:24",
"url": "https://files.pythonhosted.org/packages/5e/64/09727dbefe230fde292e7cf8d42b6d42bd40b6eb26cc8ac8aa57100d2a57/collective.js.jqueryui-1.8.16.3.tar.gz"
}
],
"1.8.16.4": [
{
"comment_text": "",
"digests": {
"md5": "22ebe559e8415a4e252c9ee04e27f01f",
"sha256": "6912dea2cd0902d722cc21b7828bbc8181fbe40302079254fded97605e26507a"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.16.4.tar.gz",
"has_sig": false,
"md5_digest": "22ebe559e8415a4e252c9ee04e27f01f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 207869,
"upload_time": "2011-12-16T12:39:48",
"url": "https://files.pythonhosted.org/packages/8f/40/922e8e5b35c99fe91fcb552c74cece1e8cb6acf7e670be42c0fc405ea3df/collective.js.jqueryui-1.8.16.4.tar.gz"
}
],
"1.8.16.5": [
{
"comment_text": "",
"digests": {
"md5": "d68b3225009435e91dc5dd3d2faf2b61",
"sha256": "6f6c09438b0b07a4bcf295a2b2090b2a7b2e9da68ff85d43a7066f9dd0ff92ce"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.16.5.tar.gz",
"has_sig": false,
"md5_digest": "d68b3225009435e91dc5dd3d2faf2b61",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 208059,
"upload_time": "2012-01-24T10:35:37",
"url": "https://files.pythonhosted.org/packages/b5/36/9c78b9da19ec1051fda142085e888ef8baaf3bac632d94a9a20afc820118/collective.js.jqueryui-1.8.16.5.tar.gz"
}
],
"1.8.16.6": [
{
"comment_text": "",
"digests": {
"md5": "2b7e3257b022989fcba36e975f43174c",
"sha256": "1f478a3062be6fe2aed72be062ecdc92314fd529fa368a08def76904eeca278b"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.16.6.tar.gz",
"has_sig": false,
"md5_digest": "2b7e3257b022989fcba36e975f43174c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 209265,
"upload_time": "2012-03-15T17:57:13",
"url": "https://files.pythonhosted.org/packages/e1/e6/8639b6c5bb56fd53f59017277cc5f94b7258a626a99537617457aedf25bb/collective.js.jqueryui-1.8.16.6.tar.gz"
}
],
"1.8.16.7": [
{
"comment_text": "",
"digests": {
"md5": "4f782005e727eb42601ad94c3f8f5d48",
"sha256": "de5f8f8936aee47fcd8472a98205b4749e7235db4c88814fb5d1509dd42484a6"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.16.7.zip",
"has_sig": false,
"md5_digest": "4f782005e727eb42601ad94c3f8f5d48",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 266569,
"upload_time": "2012-06-07T11:34:58",
"url": "https://files.pythonhosted.org/packages/6e/e1/46eae421e75c391dc317f5d631d3319bdf1a82ee962ad5e03b45406f95ce/collective.js.jqueryui-1.8.16.7.zip"
}
],
"1.8.16.8": [
{
"comment_text": "",
"digests": {
"md5": "102c36a58bf15ee5fb5a1d73ee287dee",
"sha256": "3f0dd3e0111628aaa6294193f68a524e45084c349bc9c8a895187453c0536006"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.16.8.zip",
"has_sig": false,
"md5_digest": "102c36a58bf15ee5fb5a1d73ee287dee",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 267353,
"upload_time": "2012-07-27T11:26:57",
"url": "https://files.pythonhosted.org/packages/dc/3b/2660505b6c68ff9171280ead560c8ba2fabb0aa5ff3e5269e85a92503768/collective.js.jqueryui-1.8.16.8.zip"
}
],
"1.8.16.9": [
{
"comment_text": "",
"digests": {
"md5": "a0783f55a6b16a0c5789309075be90de",
"sha256": "2e91400b7afc2059f133f72e96d0c3343f50049f2ee2fbf657628f021ef82d2a"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.16.9.zip",
"has_sig": false,
"md5_digest": "a0783f55a6b16a0c5789309075be90de",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 269538,
"upload_time": "2012-09-10T18:29:18",
"url": "https://files.pythonhosted.org/packages/5b/cf/f053cf91a81b8e16ad6676cc406b63d8e0d4172cf28d9b506407fb23b02c/collective.js.jqueryui-1.8.16.9.zip"
}
],
"1.8.2.1": [
{
"comment_text": "",
"digests": {
"md5": "264e91da58fa76db0d5a4f3679c15237",
"sha256": "b75f599fbb38003230be9216ee4efe8149722a3a70495ef02c108164a18a8579"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.2.1.zip",
"has_sig": false,
"md5_digest": "264e91da58fa76db0d5a4f3679c15237",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 109329,
"upload_time": "2010-07-27T14:02:38",
"url": "https://files.pythonhosted.org/packages/dc/08/ea7fbdd0dffd4490c86e4026f1189ccae173dfab9eae7e774bce02e286bf/collective.js.jqueryui-1.8.2.1.zip"
}
],
"1.8.2.2": [
{
"comment_text": "",
"digests": {
"md5": "c1666032568bff3733995e0a23031e46",
"sha256": "8fc83db7c80c7225f4334648799974d8fa2581edd3e9b77027aa2c71e61eb0ff"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.2.2.zip",
"has_sig": false,
"md5_digest": "c1666032568bff3733995e0a23031e46",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 114611,
"upload_time": "2010-07-31T11:46:23",
"url": "https://files.pythonhosted.org/packages/a4/4f/c4e1f102224fbb533ede83c7699259abed2a71f0c367ca939e5e9558bb50/collective.js.jqueryui-1.8.2.2.zip"
}
],
"1.8.4.1": [
{
"comment_text": "",
"digests": {
"md5": "13e3bad2dd66d6079603df39a205a07f",
"sha256": "0240c72d3feb339657ca8d49f50a1d54d0e3712b9bacd455b5120a7d1a20dd2c"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.4.1.tar.gz",
"has_sig": false,
"md5_digest": "13e3bad2dd66d6079603df39a205a07f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 82923,
"upload_time": "2010-08-11T22:28:02",
"url": "https://files.pythonhosted.org/packages/08/db/b0d5905fafad82917c1f2fd931e2255dab2ae736adb5c0a8fa51099617e4/collective.js.jqueryui-1.8.4.1.tar.gz"
}
],
"1.8.5.1": [
{
"comment_text": "",
"digests": {
"md5": "e2a5e13a2139d60507d9d6587d990b6c",
"sha256": "2b0c7a29707d7dd6e8f931acd7bdf30c575d9e437a082b96f38488eb38497692"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.5.1.zip",
"has_sig": false,
"md5_digest": "e2a5e13a2139d60507d9d6587d990b6c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 115863,
"upload_time": "2010-10-21T19:28:31",
"url": "https://files.pythonhosted.org/packages/8a/35/2f6b18a13faf7408daf0d636d841113ebdc1995f90353ecd57646d38b252/collective.js.jqueryui-1.8.5.1.zip"
}
],
"1.8.5.2": [
{
"comment_text": "",
"digests": {
"md5": "c3d1b66242f1d529110903c55637f745",
"sha256": "dde1d449e70dfc9dddc459e3d2ee316eeb6659fba4c53bae5cb3fd620ad1ecf0"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.5.2.zip",
"has_sig": true,
"md5_digest": "c3d1b66242f1d529110903c55637f745",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 117471,
"upload_time": "2010-11-24T02:28:06",
"url": "https://files.pythonhosted.org/packages/59/6f/8f56aa4fb3522d97b81c54b4fd1bb63dd22b87e950fba6048b05d1891d6a/collective.js.jqueryui-1.8.5.2.zip"
}
],
"1.8.6.1": [
{
"comment_text": "",
"digests": {
"md5": "a2b410d7773c9ac6ccb55c6dc24e3af5",
"sha256": "0aaa849ccc9dcc694b914464fafb0ae3be89d4a75d8da04d896942e93f70daf1"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.6.1.tar.gz",
"has_sig": false,
"md5_digest": "a2b410d7773c9ac6ccb55c6dc24e3af5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 87939,
"upload_time": "2010-12-07T13:30:27",
"url": "https://files.pythonhosted.org/packages/47/a0/428fcb38069eb2ff0dbc9e0684b8b6bc2bbe9264141dbd921bf078a9bdc5/collective.js.jqueryui-1.8.6.1.tar.gz"
}
],
"1.8.7.1": [
{
"comment_text": "",
"digests": {
"md5": "3f4491a9194ed10ff13d2ea9d252a38e",
"sha256": "87698fc9ddae804c59d11b0d4e71741c261f9a410d51ac63347f4203dea42ad4"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.7.1.tar.gz",
"has_sig": false,
"md5_digest": "3f4491a9194ed10ff13d2ea9d252a38e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 89136,
"upload_time": "2010-12-10T17:49:56",
"url": "https://files.pythonhosted.org/packages/bb/28/e8d9ae9c4cf4e8dce8c63624f5491f43e169644067c80192dd2bdae75f0f/collective.js.jqueryui-1.8.7.1.tar.gz"
}
],
"1.8.7.2": [
{
"comment_text": "",
"digests": {
"md5": "7e7ff1a26e7858a975a1be57a7d8c386",
"sha256": "007ce27aac7a82c9a1b3f6e560e945132c67f7a5c2dd9c98ee09e55fc873e31d"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.7.2.tar.gz",
"has_sig": false,
"md5_digest": "7e7ff1a26e7858a975a1be57a7d8c386",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 88823,
"upload_time": "2011-01-08T00:22:29",
"url": "https://files.pythonhosted.org/packages/54/47/2dfb08ce36b7507fe302cdb7e7291bce6a40c9ee524dcdeaa7e3d530c24e/collective.js.jqueryui-1.8.7.2.tar.gz"
}
],
"1.8.8.1": [
{
"comment_text": "",
"digests": {
"md5": "a9b67e0b83c4ae904b9b9d3d69c023ec",
"sha256": "8c9136bf3548a5b463113d42efce7ecbcd2a06ae732249dfdde08c0dc0080117"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.8.1.tar.gz",
"has_sig": false,
"md5_digest": "a9b67e0b83c4ae904b9b9d3d69c023ec",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 95645,
"upload_time": "2011-01-18T15:05:15",
"url": "https://files.pythonhosted.org/packages/ec/6c/653d7382b2a867c3c0d4f72e2d4d075fc6757ddc16d6bb6794c6889b85a6/collective.js.jqueryui-1.8.8.1.tar.gz"
}
],
"1.8.9.1": [
{
"comment_text": "",
"digests": {
"md5": "0c403d2e3ff3f6a2018225240eeda329",
"sha256": "70c60a07b96def74dfd5064181bc4e70c59939bd6e035ceabbdc00923ccd75dd"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.9.1.tar.gz",
"has_sig": false,
"md5_digest": "0c403d2e3ff3f6a2018225240eeda329",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 171796,
"upload_time": "2011-01-21T20:37:18",
"url": "https://files.pythonhosted.org/packages/54/25/e7f7cdae7db5d19f3d3c989284c385829aacd2a7f450cc26695024a2fece/collective.js.jqueryui-1.8.9.1.tar.gz"
}
],
"1.8.9.2": [
{
"comment_text": "",
"digests": {
"md5": "b76e81c607fe542c8f36b8b34b0f2329",
"sha256": "27d4a1cd2f800fb70ca4c2d4cd3da36348e4e422f2d43c4c32b2f5d23123de89"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.8.9.2.tar.gz",
"has_sig": false,
"md5_digest": "b76e81c607fe542c8f36b8b34b0f2329",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 173035,
"upload_time": "2011-02-21T17:18:33",
"url": "https://files.pythonhosted.org/packages/1d/63/f83e32c226177de65b21cd2f94c4e1a015db8dcf719a53dbe8d7cc67439f/collective.js.jqueryui-1.8.9.2.tar.gz"
}
],
"1.9.1.0": [
{
"comment_text": "",
"digests": {
"md5": "d79f4afa986962fb9fe0cd5d2c9d1772",
"sha256": "371e6b87093a75afde1067d827a14207918e2de1bc6c1cbf42fc7c73fe2d412b"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.9.1.0.zip",
"has_sig": false,
"md5_digest": "d79f4afa986962fb9fe0cd5d2c9d1772",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 294171,
"upload_time": "2012-11-11T20:56:59",
"url": "https://files.pythonhosted.org/packages/15/ad/d021309d1921c08ca686ff7e4bbd3c04dd0568af9c45c97a6db2f1c07357/collective.js.jqueryui-1.9.1.0.zip"
}
],
"1.9.1.1": [
{
"comment_text": "",
"digests": {
"md5": "349b869f1e11c6c0fe50cc244931d90a",
"sha256": "dee0c8c1a70466a20a7f1177144491b8cae68b66b578d4149db643c2f46fcc05"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.9.1.1.zip",
"has_sig": false,
"md5_digest": "349b869f1e11c6c0fe50cc244931d90a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 293559,
"upload_time": "2012-11-12T20:40:03",
"url": "https://files.pythonhosted.org/packages/5f/e8/2683b635efc7f8ceae681980e20bd0729745f86c00d70eea7ee4ed341166/collective.js.jqueryui-1.9.1.1.zip"
}
],
"1.9.2.0": [
{
"comment_text": "",
"digests": {
"md5": "cb81d9c341269b8f1fab0fe36e2db0d3",
"sha256": "14d294b6444b60c8a0a80da9db93c12c6d51c05d7ba1110ed0860c586b45e885"
},
"downloads": -1,
"filename": "collective.js.jqueryui-1.9.2.0.zip",
"has_sig": false,
"md5_digest": "cb81d9c341269b8f1fab0fe36e2db0d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 305311,
"upload_time": "2012-11-29T20:47:35",
"url": "https://files.pythonhosted.org/packages/24/4f/b9e7470108f0b28a4cfd5a693ee53717ccbc643ffcc2f78a667459e522fb/collective.js.jqueryui-1.9.2.0.zip"
}
],
"2.0.1": [
{
"comment_text": "",
"digests": {
"md5": "efa3a0a06e6a273f543e18639a096874",
"sha256": "d29fa1089a918680eb6f7d1236ddecd47e67ac007e65395a851fd170f639246c"
},
"downloads": -1,
"filename": "collective.js.jqueryui-2.0.1.tar.gz",
"has_sig": false,
"md5_digest": "efa3a0a06e6a273f543e18639a096874",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 303032,
"upload_time": "2015-09-28T08:47:21",
"url": "https://files.pythonhosted.org/packages/dd/03/2f1993b136b54ea44b737dbc2d6de6d289d90a03d35bf9f6b2e6a0d66d1a/collective.js.jqueryui-2.0.1.tar.gz"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "d9b781212a96df24d6abf7158a5fc407",
"sha256": "98ec013c2c882d89a9fc801c94040b46ea1afb0e32d6b2da9a4f8e4ba8b93eef"
},
"downloads": -1,
"filename": "collective.js.jqueryui-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "d9b781212a96df24d6abf7158a5fc407",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 302388,
"upload_time": "2019-03-14T13:47:22",
"url": "https://files.pythonhosted.org/packages/d1/4b/17b9e9c2e3d370bae0fc5432f3c1f7a72f81a0f8262e774949c89bd2349c/collective.js.jqueryui-2.1.0.tar.gz"
}
],
"2.1.1": [
{
"comment_text": "",
"digests": {
"md5": "0c8f39a0b36c8f7c3aabd532fe524031",
"sha256": "8ec50bea05010f651ff048c78fa9793d6bea6a76a0cae70ac1cedc2b7506d204"
},
"downloads": -1,
"filename": "collective.js.jqueryui-2.1.1.tar.gz",
"has_sig": false,
"md5_digest": "0c8f39a0b36c8f7c3aabd532fe524031",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 302417,
"upload_time": "2019-03-14T13:56:52",
"url": "https://files.pythonhosted.org/packages/46/cd/9d3a270e2bbb7afc11f4e828300e93b8f945a1e7ce68bc691450e2807057/collective.js.jqueryui-2.1.1.tar.gz"
}
],
"2.1.2": [
{
"comment_text": "",
"digests": {
"md5": "ce9a586322c6c833374f7638b616c589",
"sha256": "f7bdb3edb24293f448d0f6ac3b286468cc4b994f4beaed114e2d436509ea586a"
},
"downloads": -1,
"filename": "collective.js.jqueryui-2.1.2.tar.gz",
"has_sig": false,
"md5_digest": "ce9a586322c6c833374f7638b616c589",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 302986,
"upload_time": "2019-03-14T14:08:45",
"url": "https://files.pythonhosted.org/packages/c6/a6/49c5ea8f7813d530868742a3305da4bcd405e271223eb8c67809131d4b07/collective.js.jqueryui-2.1.2.tar.gz"
}
],
"2.1.3": [
{
"comment_text": "",
"digests": {
"md5": "b630f950cd7deb3a2081c8443ddf49cd",
"sha256": "6df7852174ef5e0190703fc194b7185a184ca443b88d9e72358fb2311c349a57"
},
"downloads": -1,
"filename": "collective.js.jqueryui-2.1.3.tar.gz",
"has_sig": false,
"md5_digest": "b630f950cd7deb3a2081c8443ddf49cd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 302905,
"upload_time": "2019-04-09T13:14:01",
"url": "https://files.pythonhosted.org/packages/09/5a/3d58134471d2b8909b901ea74c79b206f65a1ea4e5abae0a978881730578/collective.js.jqueryui-2.1.3.tar.gz"
}
],
"2.1.4": [
{
"comment_text": "",
"digests": {
"md5": "414d008c35abeb133bc946c7427689f3",
"sha256": "de1de17ac926a526c94c4d78cf4de82fdd75fd7f66e6ab7f4fe55420862d4562"
},
"downloads": -1,
"filename": "collective.js.jqueryui-2.1.4.tar.gz",
"has_sig": false,
"md5_digest": "414d008c35abeb133bc946c7427689f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 302919,
"upload_time": "2019-04-09T13:55:53",
"url": "https://files.pythonhosted.org/packages/80/b7/b6e1e4ae6a6b8442873fbd2759098584c614a083d9049926a388c2a449b5/collective.js.jqueryui-2.1.4.tar.gz"
}
],
"2.1.5": [
{
"comment_text": "",
"digests": {
"md5": "59512d0470624411d67f05ead7af4986",
"sha256": "16cee3daaa00444387c4fd0d7a700ccf0c41e6cde65e85711048156c742da77b"
},
"downloads": -1,
"filename": "collective.js.jqueryui-2.1.5.tar.gz",
"has_sig": false,
"md5_digest": "59512d0470624411d67f05ead7af4986",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 303266,
"upload_time": "2019-04-09T14:10:56",
"url": "https://files.pythonhosted.org/packages/01/8c/f2432a457449d58af41b7e22cb2855b8a0d2e330cb59a2636f3c14bcde48/collective.js.jqueryui-2.1.5.tar.gz"
}
],
"2.1.6": [
{
"comment_text": "",
"digests": {
"md5": "29f28246d56d5b3109b2835a8b12e683",
"sha256": "d314e282a64cabc4025a15a0df82032de591caa66909e664ab24664ff6c6e7a3"
},
"downloads": -1,
"filename": "collective.js.jqueryui-2.1.6.tar.gz",
"has_sig": false,
"md5_digest": "29f28246d56d5b3109b2835a8b12e683",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 303278,
"upload_time": "2019-04-09T14:27:34",
"url": "https://files.pythonhosted.org/packages/ee/fc/80561abe0c15b349cc59fae1c9ef417571c21356918051d79867b540e924/collective.js.jqueryui-2.1.6.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "29f28246d56d5b3109b2835a8b12e683",
"sha256": "d314e282a64cabc4025a15a0df82032de591caa66909e664ab24664ff6c6e7a3"
},
"downloads": -1,
"filename": "collective.js.jqueryui-2.1.6.tar.gz",
"has_sig": false,
"md5_digest": "29f28246d56d5b3109b2835a8b12e683",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 303278,
"upload_time": "2019-04-09T14:27:34",
"url": "https://files.pythonhosted.org/packages/ee/fc/80561abe0c15b349cc59fae1c9ef417571c21356918051d79867b540e924/collective.js.jqueryui-2.1.6.tar.gz"
}
]
}