{
"info": {
"author": "Alterway Solutions",
"author_email": "toutpt@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.0",
"Framework :: Plone :: 4.1",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"description": ".. image:: https://travis-ci.org/collective/collective.ckeditor.svg\n :target: https://travis-ci.org/collective/collective.ckeditor\n.. image:: https://coveralls.io/repos/collective/collective.ckeditor/badge.svg?branch=master&service=github\n :target: https://coveralls.io/github/collective/collective.ckeditor?branch=master\n\n\nIntroduction\n============\n\nThis addon is a ckeditor_ integration for Plone. This release includes ckeditor_ version 4.12.1.\n\n.. contents::\n\nHow to install\n==============\n\nYou can install it as any Plone addon. Please follow official documentation_.\n\nThe code source can be found at\nhttps://github.com/collective/collective.ckeditor\n\nPlease report issues at\nhttps://github.com/collective/collective.ckeditor/issues\n\nDependencies\n------------\n\n* Plone >= 4\n* collective.plonefinder_\n\nUpgrades\n========\n\nGo to ZMI-->portal_setup-->Upgrades, choose \"collective.ckeditor:default\"\nprofile and execute the upgrade steps.\n\n4.3.0\n-----\n\nRelease 4.3.0 comes with the **Enhanced Image** plugin (`image2`). It is not\nenabled by default as it removes some of the advanced functionality provided by\nthe default image plugin (`image`). However, the **Enhanced Image** plugin\nprovides the ability to add a caption together with the image. It is also much\nmore user-friendly.\n\nTo enable the plugin, you need to setup `ckeditor_properties` through generic\nsetup `propertiestool.xml`::\n\n \n \n\nThis disables the `image` (default) plugin and enables the `image2` plugin.\n\nThe `image2` plugin comes with two specific settings (configurable only through\ngeneric setup)::\n\n \n \n \n image\n \n \n \n \n \n \n \n\nThe settings are `image2_captionedClass` and `image2_alignClasses`.\nThe values above are the default values.\n\nIf you enable the plugin, you also need to setup Plone to accept \nthe `figcaption` tag.\n\nThis is done by configuring HTML filtering with a setup handler like::\n\n def enable_figcaption(p):\n \"\"\" Allow figcaption as valid tag in portal_transforms safe_html\"\"\"\n\n from Products.PortalTransforms.Transform import make_config_persistent\n\n pt = getToolByName(p, 'portal_transforms')\n tid = 'safe_html'\n if not tid in pt.objectIds():\n return\n trans = pt[tid]\n tconfig = trans._config\n\n validtags = tconfig['valid_tags']\n validtags.update({'figcaption': 1})\n\n make_config_persistent(tconfig)\n trans._p_changed = True\n trans.reload()\n log.info('added figcaption as valid tag')\n\nCKEditor plugins\n================\n\n`balloontoolbar` plugin\n-----------------------\nprovided since version 4.8.0\n\nNot enabled by default, this plugin provides an API to setup context sensitive toolbars.\n\nTo enable the plugin, add ``balloontoolbar;/++resource++ckeditor/plugins/balloontoolbar/plugin.js``\nto the `Plugins` field in CKEditor control panel (``@@ckeditor-controlpanel``).\n\n`uploadimage` plugin\n--------------------\nprovided since version 4.7.0\n\nEnabled by default, this plugin manages support for uploading images that were dropped or pasted into the editor.\n\n`nonbreaking` plugin\n--------------------\nprovided since version 4.4.5.\n\nWhen enabled, the plugin provides keyboard shortcuts to insert non breaking chars:\n\n- ``Ctrl-Alt-Space`` for non breaking space,\n- ``Ctrl-Alt-Hyphen`` for non breaking hyphen.\n\nCorresponding buttons can also be configured in the toolbar:\n\n- ``NbSpace``\n- ``NbHyphen``\n\nTo enable the plugin, add ``nonbreaking;/++resource++cke_nonbreaking/plugin.js``\nto the `Plugins` field in CKEditor control panel (``@@ckeditor-controlpanel``).\n\nOr setup `ckeditor_properties` through generic setup `propertiestool.xml`::\n\n \n \n \n \n \n \n \n \n \n\n`tableresize` plugin\n--------------------\n\nWhen enabled, the plugin makes it easy to change the table columns width by\ndrag/dropping it from left to right and right to left.\n\nTo enable the plugin, add ``tableresize;/++resource++ckeditor/plugins/tableresize/plugin.js``\nto the `Plugins` field in CKEditor control panel (``@@ckeditor-controlpanel``).\n\nOr setup `ckeditor_properties` through generic setup `propertiestool.xml`::\n\n \n \n \n \n \n \n \n \n\nDevelopment\n===========\n\n.. attention:: \n ConfigurationError \n\n If you try to run a Zope/Plone instance with a collective.ckeditor\n checkout, your instance will break with a ``ConfigurationError``::\n\n Directory .../browser/ckeditor does not exist.\n\nAfter checking out collective.ckeditor sources, run the included buildout.\n\nThis installs and runs the ``copy_ckeditor_code`` script. It takes care of\ncopying ckeditor code in the appropriate ``browser/ckeditor`` directory.\n\nThe ``browser/ckeditor`` directory makes ckeditor javascript code available to\nthe browser at::\n\n http://yourplonesite/++resource++ckeditor/\n\nHow to Release\n--------------\n\nObviously, the ckeditor code also needs to be included in the released eggs.\n\n``collective.ckeditor`` registers an entry point for ``zest.releaser`` that (if\ncalled properly) takes care of copying the code when preparing the release.\n\nHowever, in order to take advantage of the entry point, you have to use the\n``bin/fullrelease`` locally installed by the development buildout instead of\na globally installed ``fullrelease``.\n\nOnly the local ``bin/fullrelease`` script can see the entry_point registered by\n``collective.ckeditor``.\n\nHow to update to a newer version of CKEditor\n--------------------------------------------\n\nValid for CKEditor 4\n\n1. Go to ``dev/build-ckeditor``\n2. Update plugin versions computation in ``image2.sh``, ``moono.sh``,\n ``scayt`` and ``wsc`` in ``scayt.sh``\n3. Issue the following command ``CKEDITOR_VERSION=4.x.x make``\n4. Run ``bin/copy_ckeditor_code``\n5. Test\n6. Add untracked files ``git add ../../src/collective/ckeditor/_src/ckeditor/``\n7. Commit\n\nIf you need unminified JS to debug the release,\nstep 3 can be replaced with::\n\n MINIFIED_JS=--leave-js-unminified CKEDITOR_VERSION=4.x.x make\n\nTests status\n------------\n\n.. image:: https://secure.travis-ci.org/collective/collective.ckeditor.png\n :target: http://travis-ci.org/collective/collective.ckeditor\n\nCredits\n=======\n\nCompanies\n---------\n\n* `Makina Corpus `_\n* `Ecreall `_\n* `BubbleNet `_\n* `Hexagonit `_\n\nContributors\n------------\n\n- Kai Lautaportti \n- Giacomo Spettoli \n- Godefroid Chapelle \n- Mathieu Le Marec - Pasquet \n- Jean-Mat Grimaldi \n- Michael Smith \n- Victor Fernandez de Alba \n- Kim Paulissen \n- Jean-Michel FRANCOIS aka toutpt \n- Gauthier Bastien \n\n.. _documentation: http://plone.org/documentation/kb/installing-add-ons-quick-how-to\n.. _FCKEditor: http://plone.org/fckeditor\n.. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif\n.. _makinacom: http://www.makina-corpus.com\n.. _ckeditor: http://ckeditor.com/\n.. _collective.plonefinder: http://plone.org/products/collective.plonefinder\n\nChangelog\n=========\n\n4.9.0 (2019-09-12)\n------------------\n\n- Update to CKEditor 4.12.1\n [gotcha]\n\n\n4.8.3 (2018-11-13)\n------------------\n\n- AjaxSave plugin, defend against not traversable objects like plone.registry\n records\n [gotcha]\n\n\n\n\n4.8.2 (2018-10-12)\n------------------\n\n- refactor AjaxSave plugin\n\n - fix for Archetypes\n - support for plone.app.contenttypes\n - support for formlib portlets\n\n [gotcha]\n\n\n4.8.1 (2018-07-10)\n------------------\n\n- CKEditor language is coherent with edit view language\n [gotcha]\n \n\n\n4.8.0 (2018-06-22)\n------------------\n\n- Update to CKEditor 4.9.2\n Include not enabled balloontoolbar plugin\n [gotcha]\n\n\n4.7.2 (2017-12-15)\n------------------\n\n- Make `uploadimage` `resolveuid` links relative.\n [gotcha]\n\n\n4.7.1 (2017-12-08)\n------------------\n\n- `uploadimage` support uses `resolveuid`.\n [gotcha]\n\n\n4.7.0 (2017-12-01)\n------------------\n\n- Enable `uploadwidget` and `uploadimage` plugins.\n Corresponding upgrade step\n (Now depends on `plone.api`)\n [gotcha]\n\n\n4.6.0 (2017-08-18)\n------------------\n\n- Update to CKEditor 4.7.2\n [gotcha]\n\n\n4.5.0 (2017-02-24)\n------------------\n\n- Add a setting for CKEditor skin: colored or flat buttons\n\n Default skin remains Moonocolor, colored buttons.\n Flat buttons comes from the new Moono-lisa skin (see http://ckeditor.com/addon/moono-lisa)\n [gotcha]\n\n To avoid ugly border-bottom on buttons in default Plone 4 skin: add the\n following style to your CSS::\n\n #content a.cke_button {\n border-bottom: 0;\n }\n\n #content a.cke_button:hover {\n border-bottom: #ccc 0.1em solid;\n }\n\n- Update to CKEditor 4.6.2\n [gotcha]\n\n\n4.4.5 (2016-11-23)\n------------------\n\n- ``nonbreaking`` plugin: used to insert non breaking spaces and hyphens.\n [gotcha]\n\n\n4.4.4 (2016-05-02)\n------------------\n\n- Fix overloading settings: it should be empty dict rather than None\n [gotcha]\n\n\n4.4.3 (2016-05-02)\n------------------\n\n- Enable settings overloading for formlib wysiwyg widget\n [gotcha]\n\n\n4.4.2 (2016-04-13)\n------------------\n\n- Fix customization per widget of filexxxBrowserUrl, depending on language\n [gotcha]\n\n\n4.4.1 (2016-04-13)\n------------------\n\n- Enable settings overloading for plone.app.z3cform wysiwyg widget\n [gotcha]\n\n- Enable customization per widget of filexxxBrowserUrl, depending on language\n [gotcha]\n\n4.4.0 (2016-03-11)\n------------------\n\n- Store custom toolbars in registry.\n (With previous change, enable different toolbars per widget)\n [gotcha]\n\n- Improve settings overloading per widget\n [gotcha]\n\n- Load js only if you are an authenticated user.\n [bsuttor]\n\n\n4.3.5 (2016-02-16)\n------------------\n\n- Fix image preview in ckeditor when clicking on main image in pop-pup window.\n [boulch]\n \n4.3.4 (2016-01-21)\n------------------\n\n- Fix context of ckeditor_plone_config.js\n when called by plone.app.form.widgets.wysiwygwidget\n when adding a portlet.\n [gotcha]\n\n\n4.3.3 (2016-01-20)\n------------------\n\n- Fix context of ckeditor_plone_config.js\n when called by plone.app.form.widgets.wysiwygwidget\n when editing a portlet.\n [gotcha]\n\n\n4.3.2 (2016-01-08)\n------------------\n\n- Fix default value of image2_alignClasses (plus upgrade step)\n [gotcha]\n\n- Add option to not minify JS to build-ckeditor scripts\n [gotcha]\n\n- Fix build-ckeditor scripts to keep option to not use \n image2 plugin\n [gotcha]\n\n- Update ckeditor accordingly\n [gotcha]\n\n- Check validity of image2_alignClasses\n [gotcha]\n\n\n4.3.1.1 (2015-01-05)\n--------------------\n\n- Re-publish egg with generated static resources\n [ebrehault]\n\n\n4.3.1 (2015-12-14)\n------------------\n\n- Update to CKeditor 4.5.6\n [gotcha]\n\n- Add some robot tests\n [spreverde, gotcha]\n\n- Add defaultTableWidth option to control panel to set the default table width in the table dialog window.\n\n\n4.3.0b2 (2014-06-19)\n--------------------\n\n- Fix javascript order though GS.\n [montypie]\n\n\n4.3.0b1 (2014-06-19)\n--------------------\n\n- Add image2 plugin and its dependencies.\n [gotcha]\n\n- Add image2_alignClasses and image2_captionedClass setting to setup\n image2 plugin.\n [gotcha]\n\n- Updated to CKeditor 4.4.1.\n [gotcha]\n\n- Add removePlugins option to control panel to allow to deactivate plugins.\n [gotcha]\n\n4.2.0 (2014-06-05)\n------------------\n\n- Show actual url in link dialog besides resolveuid.\n [gotcha]\n\n\n4.1.1 (2014-03-27)\n------------------\n\n- Fix upgrade steps to avoid overwriting custom configuration.\n [gotcha]\n\n- Updated to CKeditor 4.3.4\n [gotcha]\n\n\n4.1 (2014-03-27)\n----------------\n\n- Expand setup of Advanced Content filter (ACF).\n [spereverde, gotcha]\n\n\n4.0.0 (2014-02-05)\n------------------\n\n- Updated to CKeditor 4.3.2\n [gotcha]\n\n- Add extraAllowedContent option to setup filter rules.\n [gotcha]\n\n- Backward compatibility of toolbar settings\n [gotcha]\n\n- Moved to CKeditor 4.2.3\n [gbastien]\n\n\n3.6.12 (2013-09-05)\n-------------------\n\n- Make it possible to enable/disable SCAYT by default\n [gbastien]\n\n3.6.11 (2013-05-30)\n-------------------\n\n- Stay compatible with IE<9, do not use indexOf in JS\n [gbastien]\n\n3.6.10 (2013-05-30)\n-------------------\n\n- Updated ckeditor to 3.6.6.1\n [vincentfretin]\n\n- travis setup / buildout infra\n [kiorky]\n\n3.6.9 (2013-05-29)\n------------------\n\n- Works under Plone 4.3.\n [thomasdesvenain]\n\n\n3.6.8 (2012-12-13)\n------------------\n\n- Update install and uninstall to change the default_editor site\n property instead of the wysiwyg_editor memberdata property.\n [maurits]\n\n- Also check the default_editor site property when determining whether\n the member wants to use CKeditor.\n [maurits]\n\n- Changed the way external plugins are registered. It's better to use the three\n parameter variant of ``CKEDITOR.plugins.addExternal`` because this will make\n the base URL for the plugin resources available within the plugin code as\n ``this.path`` correctly. Otherwise ``this.path`` contains the full URL to the\n plugin script itself which consequently breaks loading of related resources\n (images, translations, etc).\n [dokai]\n\n- Refactored the ``ck_ruid_to_url`` transform to use plone.app.uuid to transform\n UIDs to URLs. This avoids using reference_catalog in favor of portal_catalog\n and appears to fix issues with Dexterity types not available through the\n reference_catalog.\n [dokai]\n\n- Limited string length to be searched under 3000 characters by re.search method.\n [taito]\n\n3.6.7 (2012-08-20)\n------------------\n\n- take care of external stylesheets registered with an absolute URL.\n [gotcha]\n\n- fix plugins (add migration)\n [kiorky]\n\n- refresh translations\n [kiorky]\n\n- translate styles menu\n [kiorky]\n\n3.6.6 (2012-07-05)\n------------------\n\n- Fix default value for images\n [kai.hoppert@tomcom.de]\n\n- Add a duplicate directory for ckeditor sources: it needs a more ambitious\n patch but fix a development installation\n [kiorky]\n\n3.6.5 (2012-07-04)\n------------------\n\n- Fix missing directory in 3.6.4 release\n [encolpe]\n\n3.6.4 (2012-07-03)\n------------------\n\n- Fix missing include for rst files in the manifest\n [encolpe]\n\n- Version the latest known working ckeditor commited in browser/ckeditor\n [kiorky]\n\n3.6.3 (2012-07-03)\n------------------\n\n- Don't show ckeditor if html is not in the allowable content types of the field.\n This fixes integration with Products.Poi where the details field of a\n PoiIssue allows only text/x-web-intelligent by default.\n [vincentfretin]\n\n- Fixed the finder to honor the \"Allow folder creation\" option.\n [dokai]\n\n- Added i18n support\n [giacomos]\n\n- Added Italian translation\n [giacomos]\n\n- Fix language configuration according to plone_portal_state.language()\n [toutpt]\n\n- Add French translation\n [toutpt]\n\n- Add z3c.autoinclude targeted to Plone\n [toutpt]\n\n3.6.2 (2011-12-12)\n------------------\n\n- Describe in README how to release to ensure ``ckeditor`` code is included in\n the egg.\n [gotcha]\n\n\n3.6.2b2 (2011-12-12)\n--------------------\n\n- Nothing changed yet.\n\n\n3.6.2b1 (2011-12-12)\n--------------------\n\n- use ckeditor 3.6.2\n [spereverde]\n\n- Add ``ajaxsave`` plugin to allow asynchronous save.\n [gotcha]\n\n- Use zest.releaser entry point to bundle ckeditor code.\n [gotcha]\n\n3.6.1 (2011-07-14)\n------------------\n\n- Nothing changed yet.\n\n\n3.6.1rc (2011-07-14)\n--------------------\n\n- use ckeditor 3.6.1\n [spereverde]\n\n- some pep8 and pyflakes\n [spereverde]\n\n- added control panel setting for templates_replaceContent\n [spereverde]\n\n- add control panel setting for registration of custom templates\n [gotcha]\n\n- Plone4.1 support - fix IVocabularyFactory import\n [msmith64]\n\n\n3.4.1\n-----\n\n- use ckeditor 3.4.1\n [macadames]\n\n- fix an error in set_media_type\n [macadames]\n\n- fix an error in mediaupload session\n [macadames]\n\n\n3.4\n---\n\n- use ckeditor 3.4\n\n3.3.1b\n------\n\n- use ckeditor 3.3.1\n [macadames]\n\n- icon for control panel is now in controlpanel.xml\n [macadames]\n\n- Make control panel (and tests) running without errors with last Plone4 version ...\n The listTypesForInterface method was broken.\n [macadames]\n\n- Use the new mediaupload attribute in collective.plonefinder\n (Force the selection of content-type in jquery.uploadify)\n [macadames]\n\n- Added support for z3c.autoinclude so no zcml slugs will be needed for this package.\n [sneridagh]\n\n3.2.1b\n------\n\n- image sizes selection added (use this new option provided by collective.plonefinder)\n\n- some fixes for last collective.plonefinder usage.\n\n3.2.1a\n------\n\n- use ckeditor 3.2.1\n\n- plone 4 compliance :\n\n - remove iw.resourcetraverser dependency\n\n - remove wysiwyg_support in skin (no more useful)\n\n- control panel improvements\n\n- functional doctests added or improved\n\n- FAQ added\n\n- buildout examples added to help developers using svn product\n\n- javascript contextuel config is now packed\n\n- added local field widget settings overload\n\n- changed portal_transforms resolveuid\n\n- all basehref problems fixed\n\n- menu styles through control panel finished\n\n- toolbar through control panel finished\n\n3.0.2\n-----\n\n- use ckeditor 3.0.2\n\n\n3.0\n---\n\n- Initial release\n\nCKEditor for Plone : FAQ\n------------------------\n\nHow to completely remove any trace of ckeditor in Plone ?\n Use the Plone control panel > Addons > remove the product\n In ZMI > portal_properties remove 'ckeditor_properties', all your registered \n parameters for ckeditor will be destroyed.\n\nHow to install a new version of CKeditor for Plone ?\n Always read this FAQ\n From one version to another, it could be needed to run a migration \n Generic Setup upgrade step for ckeditor_properties sheet.\n\nHow to use a svn version of collective.ckeditor ?\n Just take a look at buildout/buildout.cfg and buildout/sources.cfg in this package.\n Checkout the standard plone4 buildout.\n Make a diff with standard plone4 buidout to see the parts you need to change.\n You need to add the svn adresses in sources.cfg for mr.developper, 'ckeditor'\n in egg and zcml sections, and the 'ckeditor' part ....\n\nHow to completly overload the ckeditor configuration with your own javascript config ?\n Just create a javascript file called 'ckeditor_plone_config.js' in your ZMI\n > portal_skins > Custom or in a skin product.",
"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.ckeditor",
"keywords": "Plone CKeditor WYSIWYG",
"license": "GPL",
"maintainer": "",
"maintainer_email": "",
"name": "collective.ckeditor",
"package_url": "https://pypi.org/project/collective.ckeditor/",
"platform": "",
"project_url": "https://pypi.org/project/collective.ckeditor/",
"project_urls": {
"Homepage": "https://github.com/collective/collective.ckeditor"
},
"release_url": "https://pypi.org/project/collective.ckeditor/4.9.0/",
"requires_dist": null,
"requires_python": "",
"summary": "CKEditor for Plone",
"version": "4.9.0"
},
"last_serial": 5820174,
"releases": {
"3.2.1a": [
{
"comment_text": "",
"digests": {
"md5": "04e6fbcbbd8033f785a1535db6bd4c06",
"sha256": "36331057b1f721306593e8cbff3118af936d72dc0a004a69595d3be81e0d6b48"
},
"downloads": -1,
"filename": "collective.ckeditor-3.2.1a-py2.6.egg",
"has_sig": false,
"md5_digest": "04e6fbcbbd8033f785a1535db6bd4c06",
"packagetype": "bdist_egg",
"python_version": "2.6",
"requires_python": null,
"size": 3661339,
"upload_time": "2010-04-26T11:20:51",
"url": "https://files.pythonhosted.org/packages/30/54/38adfd53889f1e92c8ab84ca9f0328c544629952bbbabfb1845aa65faae7/collective.ckeditor-3.2.1a-py2.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "50b9166006f74581fe548db580fe5c3f",
"sha256": "46f5b2cfbf88be08f3fdc93ecdeebd18e0302488ab96f7ef856f3ec5d5fa9b0b"
},
"downloads": -1,
"filename": "collective.ckeditor-3.2.1a.zip",
"has_sig": false,
"md5_digest": "50b9166006f74581fe548db580fe5c3f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3709724,
"upload_time": "2010-04-26T11:20:16",
"url": "https://files.pythonhosted.org/packages/11/05/01191ca05c7189a52f54eed30aa32e2e9fc24aa8d4c59f14527a5ca921f1/collective.ckeditor-3.2.1a.zip"
}
],
"3.2.1b": [
{
"comment_text": "",
"digests": {
"md5": "33d238adc20ea11c711efd9245dd99c8",
"sha256": "958458376b585bd2b3acd0c2228f901668c25497dc2682f238a02f17b69bc086"
},
"downloads": -1,
"filename": "collective.ckeditor-3.2.1b-py2.6.egg",
"has_sig": false,
"md5_digest": "33d238adc20ea11c711efd9245dd99c8",
"packagetype": "bdist_egg",
"python_version": "2.6",
"requires_python": null,
"size": 3661208,
"upload_time": "2010-05-28T16:21:07",
"url": "https://files.pythonhosted.org/packages/6d/53/3d9353526631429003dae04893c771d44038ace3c77eec6430be68accb1d/collective.ckeditor-3.2.1b-py2.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "45c1ccb1efdd6bf8e9dda80911ab0ede",
"sha256": "13a2cc023d8f7efc12cb15224961651b3856910aafa4839fc8c78a817b9525f9"
},
"downloads": -1,
"filename": "collective.ckeditor-3.2.1b.zip",
"has_sig": false,
"md5_digest": "45c1ccb1efdd6bf8e9dda80911ab0ede",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3709250,
"upload_time": "2010-05-28T16:20:32",
"url": "https://files.pythonhosted.org/packages/b4/9e/beba5da54f9f0e83098025e4360a01f660f15be74ae17ed22f0f4d4c2dd6/collective.ckeditor-3.2.1b.zip"
}
],
"3.3.1b": [
{
"comment_text": "",
"digests": {
"md5": "945d864a6f7b3195f2b68d0d297903e0",
"sha256": "180e52c735a3059a48153276fd6b67a699ee06a3e7884a7384eb43ad68843185"
},
"downloads": -1,
"filename": "collective.ckeditor-3.3.1b-py2.4.egg",
"has_sig": false,
"md5_digest": "945d864a6f7b3195f2b68d0d297903e0",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 3884821,
"upload_time": "2010-08-20T16:42:39",
"url": "https://files.pythonhosted.org/packages/1d/64/85f1bf736a92d118c0e82fd5c2b4ff075271747ad2d1a28b570b3f829584/collective.ckeditor-3.3.1b-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "237252abdd9e979506b8ec2ebc18ebe9",
"sha256": "ccabbf9d3ab58b8a4ea011556e23dab2f5b02c2ec89d94d2e104b11af8448d55"
},
"downloads": -1,
"filename": "collective.ckeditor-3.3.1b.zip",
"has_sig": false,
"md5_digest": "237252abdd9e979506b8ec2ebc18ebe9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3934079,
"upload_time": "2010-08-20T16:41:52",
"url": "https://files.pythonhosted.org/packages/28/ce/c91b8fbede2a86066250ef3414624bb8d07ca22499fa377a48b7587f8692/collective.ckeditor-3.3.1b.zip"
}
],
"3.4": [
{
"comment_text": "",
"digests": {
"md5": "c8189bb0da5873fb9a94ac8412664744",
"sha256": "60820f9c7ee5b52338ffaccfffaaff2d52cae673754b30d47a608f7b64a20093"
},
"downloads": -1,
"filename": "collective.ckeditor-3.4-py2.6.egg",
"has_sig": false,
"md5_digest": "c8189bb0da5873fb9a94ac8412664744",
"packagetype": "bdist_egg",
"python_version": "2.6",
"requires_python": null,
"size": 3966875,
"upload_time": "2010-09-11T18:06:00",
"url": "https://files.pythonhosted.org/packages/c9/3e/eadfe12f7062d27a996aa55d499d09e258fbf312e81fc6bf00d7be160dd0/collective.ckeditor-3.4-py2.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "e4e062e025ae251481dc6fae124a23f9",
"sha256": "a8835a5a84762f25d06383ae7eafce74b5bfe74500dd3328146fe995553e4b67"
},
"downloads": -1,
"filename": "collective.ckeditor-3.4.zip",
"has_sig": false,
"md5_digest": "e4e062e025ae251481dc6fae124a23f9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4010418,
"upload_time": "2010-09-11T18:05:23",
"url": "https://files.pythonhosted.org/packages/81/1d/c373b2b6697f74b1df69e1cdec46e6a781a3fced8fbdc66b5cc5a83a9f25/collective.ckeditor-3.4.zip"
}
],
"3.4.1": [
{
"comment_text": "",
"digests": {
"md5": "7c54552710a788e684335c02c9f4e3ce",
"sha256": "a649c0a810bf658dfe7c0df86c027f5238f63116045119e4f3f9a8700b304b6a"
},
"downloads": -1,
"filename": "collective.ckeditor-3.4.1-py2.6.egg",
"has_sig": false,
"md5_digest": "7c54552710a788e684335c02c9f4e3ce",
"packagetype": "bdist_egg",
"python_version": "2.6",
"requires_python": null,
"size": 4043542,
"upload_time": "2010-09-26T17:35:55",
"url": "https://files.pythonhosted.org/packages/f3/f3/210e13595ab21507d11bbb441bcc4e43e2d0f9eee3bc05d74c91f65abf2d/collective.ckeditor-3.4.1-py2.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "1f34c19b11dba4735bf5786a0686526c",
"sha256": "0fa056f3a8fd6a651316649dc81891ffb735f75c22856282782e9d69f89cc7ca"
},
"downloads": -1,
"filename": "collective.ckeditor-3.4.1.zip",
"has_sig": false,
"md5_digest": "1f34c19b11dba4735bf5786a0686526c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4092614,
"upload_time": "2010-09-26T17:35:17",
"url": "https://files.pythonhosted.org/packages/8c/1a/2e7ef11bf2eec995a8710568a93425654dadfb39c23f90379fc4e6503fee/collective.ckeditor-3.4.1.zip"
}
],
"3.6.1": [
{
"comment_text": "",
"digests": {
"md5": "540a025cda76361f2d0a8d21b21a4d0a",
"sha256": "01f7a3ec68f9493b16c3b1f8734eb59e5c8bc3c4b8bf9d0dbcaca35e3039d14d"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.1.tar.gz",
"has_sig": false,
"md5_digest": "540a025cda76361f2d0a8d21b21a4d0a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3305636,
"upload_time": "2011-07-14T12:49:36",
"url": "https://files.pythonhosted.org/packages/9e/1c/9e9c40792feca36ef09d78f2e27e6ccc6a585d669d0a22de6d02f05af2b3/collective.ckeditor-3.6.1.tar.gz"
}
],
"3.6.10": [],
"3.6.11": [
{
"comment_text": "",
"digests": {
"md5": "f6f23f8c9c4b1f46e122e88d1bd6b950",
"sha256": "ea54dfc66c584aadf2629e3da8566ac764b0051990b366197fea65a1057a4e42"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.11.zip",
"has_sig": false,
"md5_digest": "f6f23f8c9c4b1f46e122e88d1bd6b950",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5413066,
"upload_time": "2013-05-30T15:19:08",
"url": "https://files.pythonhosted.org/packages/60/60/76af913848acc9e0fdaf5d2dcc77fba83e350027fe31f6659b320df03805/collective.ckeditor-3.6.11.zip"
}
],
"3.6.12": [
{
"comment_text": "",
"digests": {
"md5": "9a8dcc4a3a3615c6c0d2ee4745561c8f",
"sha256": "5a172d6d81f64f3d25b5c0c6814cc7b81bb32120606c681b7d048bb9de02639f"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.12.zip",
"has_sig": false,
"md5_digest": "9a8dcc4a3a3615c6c0d2ee4745561c8f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5416131,
"upload_time": "2013-09-05T12:17:58",
"url": "https://files.pythonhosted.org/packages/d3/7e/335be0db8a6beeb747ae7691da90cf0ac5bfa674f6c4618520706c7589d7/collective.ckeditor-3.6.12.zip"
}
],
"3.6.1rc": [
{
"comment_text": "",
"digests": {
"md5": "6142b270b82ae8c8c3ace30589e31a2b",
"sha256": "c25b6ebc6683b0e534ceb5ecea7ee7c1115128016a704093024a566a0dc5237a"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.1rc.tar.gz",
"has_sig": false,
"md5_digest": "6142b270b82ae8c8c3ace30589e31a2b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3306211,
"upload_time": "2011-07-14T12:31:00",
"url": "https://files.pythonhosted.org/packages/a0/80/f41fd559eda3926166eeb7dc2b65476e7b7a6aa60cdf708e110fbd6c275c/collective.ckeditor-3.6.1rc.tar.gz"
}
],
"3.6.2": [
{
"comment_text": "",
"digests": {
"md5": "1ad3ad84ddcc555f08259ea22edd72dc",
"sha256": "3efe0532e9a9398a70c76957622bda29bb1cf2ea2640ed108faad143a2d7b87b"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.2.tar.gz",
"has_sig": false,
"md5_digest": "1ad3ad84ddcc555f08259ea22edd72dc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3498683,
"upload_time": "2011-12-12T11:12:36",
"url": "https://files.pythonhosted.org/packages/ca/9e/231e42972e3916eaec4f4865e0cc7bbeacfdfa91924239b740d4e10f8565/collective.ckeditor-3.6.2.tar.gz"
}
],
"3.6.2b1": [
{
"comment_text": "",
"digests": {
"md5": "5e3dc8fd3c6dd146caeb7f2db2cf55ec",
"sha256": "7b5761ddf36b960f5fcc49ea9673b5338700feddfc256afdcf82a830db3a3361"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.2b1.tar.gz",
"has_sig": false,
"md5_digest": "5e3dc8fd3c6dd146caeb7f2db2cf55ec",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1735058,
"upload_time": "2011-12-12T09:54:43",
"url": "https://files.pythonhosted.org/packages/eb/07/91633c9c33fb0f30e12b27ba452e015f94a66b9a24590e4ecba73ad2d710/collective.ckeditor-3.6.2b1.tar.gz"
}
],
"3.6.2b2": [
{
"comment_text": "",
"digests": {
"md5": "77a81edf9b522ba6342eb64326946413",
"sha256": "58cda894cd123b567806e07bca93f6060fa4b73527a789db2118236705fa7b50"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.2b2.tar.gz",
"has_sig": false,
"md5_digest": "77a81edf9b522ba6342eb64326946413",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3406594,
"upload_time": "2011-12-12T10:16:00",
"url": "https://files.pythonhosted.org/packages/4b/25/3f8abc78e0482f444efb57b082edf92e9d8a736d40f877e9a158dbbec2fd/collective.ckeditor-3.6.2b2.tar.gz"
}
],
"3.6.3": [
{
"comment_text": "",
"digests": {
"md5": "d62206bcf770bd99f1d5229b69eca460",
"sha256": "98783b5a571b11bd1607c60c65739dcf4c908ece3c5e98b17e694d22d2359046"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.3.zip",
"has_sig": false,
"md5_digest": "d62206bcf770bd99f1d5229b69eca460",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 72818,
"upload_time": "2012-07-04T11:45:18",
"url": "https://files.pythonhosted.org/packages/55/ef/6b387db60009ca277f48e630dd014ae0f251f22ab461d79ab5cd4a50e41f/collective.ckeditor-3.6.3.zip"
}
],
"3.6.4": [
{
"comment_text": "",
"digests": {
"md5": "ada5e052b1bfca0be9c1fa0b5d8b75f9",
"sha256": "8fba293f74b7001a4ee25c3581b2d3eedc731c25ae82b59861659e9c431ff375"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.4.zip",
"has_sig": false,
"md5_digest": "ada5e052b1bfca0be9c1fa0b5d8b75f9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 74293,
"upload_time": "2012-07-04T13:11:30",
"url": "https://files.pythonhosted.org/packages/70/9f/9bfd729e7979df3b077cd86d32c57394ac9b2c0a0835373d55470461c32a/collective.ckeditor-3.6.4.zip"
}
],
"3.6.5": [
{
"comment_text": "",
"digests": {
"md5": "179586a4a7ba4234b6a8d5032d3fd098",
"sha256": "1b890cc3461d4d6f2deebcfddf1fc2cec534fa96286e362d2106e9c3b86a0e3c"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.5.zip",
"has_sig": false,
"md5_digest": "179586a4a7ba4234b6a8d5032d3fd098",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4706573,
"upload_time": "2012-07-05T10:40:49",
"url": "https://files.pythonhosted.org/packages/cc/67/76ea85bae5801561edd677d435fbe5de3bae65a4969874ca847f35b937a0/collective.ckeditor-3.6.5.zip"
}
],
"3.6.6": [
{
"comment_text": "",
"digests": {
"md5": "95d63be6fb2dec7d03e4d38aa61148b4",
"sha256": "f6358f766ade4508b1b0757fa8fe61af0112a327850ed2a4469d4c7ba92ec667"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.6.zip",
"has_sig": false,
"md5_digest": "95d63be6fb2dec7d03e4d38aa61148b4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4707071,
"upload_time": "2012-07-05T23:37:56",
"url": "https://files.pythonhosted.org/packages/bb/3a/963e7a3a8b92cdaa0c9d49f1a875cc15633a1a32deffb58fd10f2df06d76/collective.ckeditor-3.6.6.zip"
}
],
"3.6.7": [
{
"comment_text": "",
"digests": {
"md5": "4e6da501f0823f6d8acd0d4d2a41698c",
"sha256": "35a25a8b2b3cbe2272b38938e6f007618409537d696759607a113518a6c90e8a"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.7.zip",
"has_sig": false,
"md5_digest": "4e6da501f0823f6d8acd0d4d2a41698c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4709230,
"upload_time": "2012-08-20T10:26:52",
"url": "https://files.pythonhosted.org/packages/ea/ae/eedb27403f2a9cf6308124e1821979778ed5139bda43386eb0c64d9e0c39/collective.ckeditor-3.6.7.zip"
}
],
"3.6.8": [
{
"comment_text": "",
"digests": {
"md5": "9ee7dff36ca8f4070b5e901a17929079",
"sha256": "0e3c5cad0afd1f6ae91d3004b359cfb68580a4e570aec87c18a3e9d8d1dcb5ca"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.8.zip",
"has_sig": false,
"md5_digest": "9ee7dff36ca8f4070b5e901a17929079",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4710859,
"upload_time": "2012-12-13T22:59:47",
"url": "https://files.pythonhosted.org/packages/26/88/50c113362d17542efbe1f3fd1e682bf4325cef7c0cee3bd0daf8e41d4510/collective.ckeditor-3.6.8.zip"
}
],
"3.6.9": [
{
"comment_text": "",
"digests": {
"md5": "c01084f2c6a0b76692eb22e1fd26f547",
"sha256": "04f144f47c96491fb358c1c3cde74f95149373e18e58d2d589e581adc3dcfb46"
},
"downloads": -1,
"filename": "collective.ckeditor-3.6.9.zip",
"has_sig": false,
"md5_digest": "c01084f2c6a0b76692eb22e1fd26f547",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4711105,
"upload_time": "2013-05-29T13:37:34",
"url": "https://files.pythonhosted.org/packages/34/f9/c76af46ba45216b7f868ea8b1ee2d0fa526f21a58cb11e7a9dbf7846b266/collective.ckeditor-3.6.9.zip"
}
],
"4.0.0": [
{
"comment_text": "",
"digests": {
"md5": "5e0edd6c8c813c9f1dfdca6dc9107784",
"sha256": "a24bccff5feeed3d1506597c56fedaadc02755baf2979057b94001239ad9fbfd"
},
"downloads": -1,
"filename": "collective.ckeditor-4.0.0.zip",
"has_sig": false,
"md5_digest": "5e0edd6c8c813c9f1dfdca6dc9107784",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2896102,
"upload_time": "2014-02-05T16:11:40",
"url": "https://files.pythonhosted.org/packages/5b/c1/98edf5e0f93031fa167d9eec83f8a62d98a79677bc1e6de28793c8c7fa4e/collective.ckeditor-4.0.0.zip"
}
],
"4.1": [
{
"comment_text": "",
"digests": {
"md5": "c874a1b5f08275b1dc2b2862c8ad5934",
"sha256": "4ef12f320a5d902b023fd8fbe448d3d123b1d999bcbccf84a6d3d0f568f8e7f0"
},
"downloads": -1,
"filename": "collective.ckeditor-4.1.tar.gz",
"has_sig": false,
"md5_digest": "c874a1b5f08275b1dc2b2862c8ad5934",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2121814,
"upload_time": "2014-03-27T11:14:27",
"url": "https://files.pythonhosted.org/packages/48/26/386df7084ce15b29133fb5eedd67e894083adb16d4c051813045d460c8b4/collective.ckeditor-4.1.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "69610cc60e04efeabfcf103367515523",
"sha256": "e26e4798b9f0f419231f23bb8373f5109fd8726a31ddb28c41085e4d83b0a8f2"
},
"downloads": -1,
"filename": "collective.ckeditor-4.1.zip",
"has_sig": false,
"md5_digest": "69610cc60e04efeabfcf103367515523",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2893653,
"upload_time": "2014-03-27T11:09:53",
"url": "https://files.pythonhosted.org/packages/89/f3/4b4f856ae40c29a5cc214c08a3d83643d8cad566be335f89afb6d049e484/collective.ckeditor-4.1.zip"
}
],
"4.1.1": [
{
"comment_text": "",
"digests": {
"md5": "d573554bb2d74d8f292d66125cca4de6",
"sha256": "11393c147b97edb1e80028e8eea1cf5d5acc8485ebf3f30d71028ae5dd9e5dc8"
},
"downloads": -1,
"filename": "collective.ckeditor-4.1.1.zip",
"has_sig": false,
"md5_digest": "d573554bb2d74d8f292d66125cca4de6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2907899,
"upload_time": "2014-03-27T11:59:40",
"url": "https://files.pythonhosted.org/packages/05/ac/6608ce8d8e9f170efd6c13af9c830d6fb3c038a1c8a0a9af1cf391a5d0aa/collective.ckeditor-4.1.1.zip"
}
],
"4.2.0": [
{
"comment_text": "",
"digests": {
"md5": "cf9f18d93585f3dfb808678eaadbf5f1",
"sha256": "ea8d8dac5f767186dab54042c06f762eb08d4d53b0af1e3fd7d469294dde96c2"
},
"downloads": -1,
"filename": "collective.ckeditor-4.2.0.zip",
"has_sig": false,
"md5_digest": "cf9f18d93585f3dfb808678eaadbf5f1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2910144,
"upload_time": "2014-06-05T13:53:52",
"url": "https://files.pythonhosted.org/packages/40/b1/5bd96b7821fb905cdd3e7a5440f983198ed06ff0333b9c2a74f31448b702/collective.ckeditor-4.2.0.zip"
}
],
"4.3.0b1": [
{
"comment_text": "",
"digests": {
"md5": "7867e1507871c8b525eb8c7cc5d47f0a",
"sha256": "f57858da7da6b97c14406a3b0fd524189f04e763c7c54e230880e986d153041b"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.0b1.zip",
"has_sig": false,
"md5_digest": "7867e1507871c8b525eb8c7cc5d47f0a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3429591,
"upload_time": "2014-06-19T13:29:25",
"url": "https://files.pythonhosted.org/packages/60/c4/df2ee8ffee6ac03acf3f34b3880b1dc60294840b78cd08f44ef5aa0bf8e2/collective.ckeditor-4.3.0b1.zip"
}
],
"4.3.0b2": [
{
"comment_text": "",
"digests": {
"md5": "da5f8f61a02f2016e8a8878d7b85e5a7",
"sha256": "35b2af92f727bcd6055645f2a5fe7ab26005257b1d5da069947b88d0b12d7606"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.0b2.zip",
"has_sig": false,
"md5_digest": "da5f8f61a02f2016e8a8878d7b85e5a7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3429700,
"upload_time": "2014-06-19T14:04:15",
"url": "https://files.pythonhosted.org/packages/90/fe/4caaabf438807dace1b67633fcdf0fe3a6651ddf4ead35f9b1a0e1771076/collective.ckeditor-4.3.0b2.zip"
}
],
"4.3.1": [
{
"comment_text": "",
"digests": {
"md5": "99b456f0aa0d5d7bb8c3c0bfbf25bab3",
"sha256": "a0aa264ea4bf6aa42ed6252d78e79cf0181235bfd3a8296fb7411ea8c75efd23"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.1.tar.gz",
"has_sig": false,
"md5_digest": "99b456f0aa0d5d7bb8c3c0bfbf25bab3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1473009,
"upload_time": "2015-12-14T12:35:12",
"url": "https://files.pythonhosted.org/packages/0c/5f/4d5406506a9a11a39f1852cead3f18db8af3a0318324c08762dadd03a543/collective.ckeditor-4.3.1.tar.gz"
}
],
"4.3.1.1": [],
"4.3.1.2": [
{
"comment_text": "",
"digests": {
"md5": "7446972787e5fc1ad448c4f9a9e3ab95",
"sha256": "b1b5d2eb150e69fb88f54b08c22f143f85a93b6e3991964cf3d00e0baf11f490"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.1.2.tar.gz",
"has_sig": false,
"md5_digest": "7446972787e5fc1ad448c4f9a9e3ab95",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2969132,
"upload_time": "2016-01-05T12:53:07",
"url": "https://files.pythonhosted.org/packages/34/3f/6da5609e41ce44de373810a55dda33c7785d8ae7085a11ec235288153f48/collective.ckeditor-4.3.1.2.tar.gz"
}
],
"4.3.2": [
{
"comment_text": "",
"digests": {
"md5": "a33f7eb7e4e41a6080d5c9004d2828c9",
"sha256": "55df08e6af01db1ce7515c2f6b7fb54da1d8de9eb49016e384e9ea1dc0cb7e81"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.2.zip",
"has_sig": false,
"md5_digest": "a33f7eb7e4e41a6080d5c9004d2828c9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4583056,
"upload_time": "2016-01-08T16:25:58",
"url": "https://files.pythonhosted.org/packages/24/53/518e1a12de4f3ddb9c02d9b1e81167a9b74e4238fc8e31161f8d2c97c1f8/collective.ckeditor-4.3.2.zip"
}
],
"4.3.3": [
{
"comment_text": "",
"digests": {
"md5": "a7fba54178f92ec21fbd94fe18267dbf",
"sha256": "0014dda8e4a20ce90c844d3facb1a387cd55b358577bc456cef42a94e7445c75"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.3.zip",
"has_sig": false,
"md5_digest": "a7fba54178f92ec21fbd94fe18267dbf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4583413,
"upload_time": "2016-01-20T14:45:29",
"url": "https://files.pythonhosted.org/packages/e2/4b/85044bd1ccfb43e6e7563d23462befd09063b522888765477288a2b375a0/collective.ckeditor-4.3.3.zip"
}
],
"4.3.4": [
{
"comment_text": "",
"digests": {
"md5": "1904e0c0a295c86b2edf5e44a59cca3e",
"sha256": "8ccee08243446e5e0d7eed3bd362f8b7bb4709cb621ae29e5ce0709b9c19a6ad"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.4.tar.gz",
"has_sig": false,
"md5_digest": "1904e0c0a295c86b2edf5e44a59cca3e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3190285,
"upload_time": "2016-01-21T12:02:16",
"url": "https://files.pythonhosted.org/packages/86/c9/46ab76c0b29a7ece544357cdb808922ef85e3cecf5d004f27b658d6f1750/collective.ckeditor-4.3.4.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "f1025ba4ceef2517413c663ae54d6f04",
"sha256": "beeeb8d6cb0c36ec4e5a9e2ac5c9033b779fe9a4fb8ba0800095857121d1b958"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.4.zip",
"has_sig": false,
"md5_digest": "f1025ba4ceef2517413c663ae54d6f04",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4583517,
"upload_time": "2016-01-21T11:52:30",
"url": "https://files.pythonhosted.org/packages/28/a0/cd31973e9dc4b31d942124e1b8b3575aedf85926ff7005c7a601a7659187/collective.ckeditor-4.3.4.zip"
}
],
"4.3.5": [
{
"comment_text": "",
"digests": {
"md5": "801d2b6d382180392368f09fc410dbe5",
"sha256": "6a909080ee00557b4fd6fb13f120c941a1876da1e1c32f4d12b56c1f4ed40c19"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.5.tar.gz",
"has_sig": false,
"md5_digest": "801d2b6d382180392368f09fc410dbe5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3191662,
"upload_time": "2016-02-16T10:08:54",
"url": "https://files.pythonhosted.org/packages/a1/27/e3ef8ad928a09bf8eae5e89732aacbf2bac0c6a47428934b77a2bd441603/collective.ckeditor-4.3.5.tar.gz"
}
],
"4.3.6": [
{
"comment_text": "",
"digests": {
"md5": "e07a00848095846082d83e7a661c58e4",
"sha256": "22197e8f68bc0f73fdb62f6ea172bb4503eb043e18ccf6b48a9694a4dd652c97"
},
"downloads": -1,
"filename": "collective.ckeditor-4.3.6.tar.gz",
"has_sig": false,
"md5_digest": "e07a00848095846082d83e7a661c58e4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3190910,
"upload_time": "2016-03-11T14:57:20",
"url": "https://files.pythonhosted.org/packages/43/e2/6f240a26b028c2a77a63ceb62f49d68718e6b4503f84382c6feb0cff36d6/collective.ckeditor-4.3.6.tar.gz"
}
],
"4.4.0": [
{
"comment_text": "",
"digests": {
"md5": "bac134ae31f089a2a202e52c6f7100c6",
"sha256": "e0a3bbcbf73e0df4b09579412da022e96fbf7349305fd67e7455cc7b0c7fcbe1"
},
"downloads": -1,
"filename": "collective.ckeditor-4.4.0.tar.gz",
"has_sig": false,
"md5_digest": "bac134ae31f089a2a202e52c6f7100c6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3191414,
"upload_time": "2016-03-11T14:52:50",
"url": "https://files.pythonhosted.org/packages/6c/2c/13ee33350a2e384bed508fdac061db2e684c6a7506826fbd5719e7b29e48/collective.ckeditor-4.4.0.tar.gz"
}
],
"4.4.1": [
{
"comment_text": "",
"digests": {
"md5": "344d4f9fbde607e13aaceddfda45d35e",
"sha256": "17d5141d84e8751e365c6576990826a3026d22ddd7c71150a1f2f1d2a6c423f8"
},
"downloads": -1,
"filename": "collective.ckeditor-4.4.1.tar.gz",
"has_sig": false,
"md5_digest": "344d4f9fbde607e13aaceddfda45d35e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3191601,
"upload_time": "2016-04-13T12:03:53",
"url": "https://files.pythonhosted.org/packages/f9/96/6f85413e1f0e265cbefa2eb08e6fc8c3eaf46d9e3e7ba0d94500df3982fe/collective.ckeditor-4.4.1.tar.gz"
}
],
"4.4.2": [
{
"comment_text": "",
"digests": {
"md5": "f1215e45cfac1b1a9bcf0644c5c4e805",
"sha256": "60aec89294e5414dd557921a0e57aba271ebc4fdb0315378c8009f8b5002776b"
},
"downloads": -1,
"filename": "collective.ckeditor-4.4.2.tar.gz",
"has_sig": false,
"md5_digest": "f1215e45cfac1b1a9bcf0644c5c4e805",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3191617,
"upload_time": "2016-04-13T12:55:27",
"url": "https://files.pythonhosted.org/packages/06/ac/def07c1566ecd2990446d952f697ef75c4d3be1b72d11aeb29e8c9ffc569/collective.ckeditor-4.4.2.tar.gz"
}
],
"4.4.3": [
{
"comment_text": "",
"digests": {
"md5": "938e1640e0a3b2e19f90a3cca6237210",
"sha256": "cd1863f5ac3cc3d978cab9ee896add1982620f5f9195baf4a456807258d26be7"
},
"downloads": -1,
"filename": "collective.ckeditor-4.4.3.tar.gz",
"has_sig": false,
"md5_digest": "938e1640e0a3b2e19f90a3cca6237210",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3191649,
"upload_time": "2016-05-02T12:15:17",
"url": "https://files.pythonhosted.org/packages/e8/82/4f2f02a0674f334e3db4563897364a58b62d396fd6b1171c7b75c891e6cc/collective.ckeditor-4.4.3.tar.gz"
}
],
"4.4.4": [
{
"comment_text": "",
"digests": {
"md5": "1215cb80a28673912250fda07055d06d",
"sha256": "8c132a348ef0d738f6010ad80e1e42802eb4a7c32e318cda3f52768612f87861"
},
"downloads": -1,
"filename": "collective.ckeditor-4.4.4.tar.gz",
"has_sig": false,
"md5_digest": "1215cb80a28673912250fda07055d06d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3191726,
"upload_time": "2016-05-02T13:47:58",
"url": "https://files.pythonhosted.org/packages/34/27/3adf6dcc53c159edfd7db7dc178a0fed546ba94863052cbdf6d753937f7a/collective.ckeditor-4.4.4.tar.gz"
}
],
"4.4.5": [
{
"comment_text": "",
"digests": {
"md5": "00cc5179880c145be2ccff5b0ed81c56",
"sha256": "5cabec5d88db493c15c54c4794555b5904e7c9015ad2d53f3baed88bd01e4762"
},
"downloads": -1,
"filename": "collective.ckeditor-4.4.5.tar.gz",
"has_sig": false,
"md5_digest": "00cc5179880c145be2ccff5b0ed81c56",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3193350,
"upload_time": "2016-11-23T14:43:06",
"url": "https://files.pythonhosted.org/packages/59/2c/ffc8ae141f7912e978c85ac33a774efadb6f648f5e3cb4fc5546dd8f08d0/collective.ckeditor-4.4.5.tar.gz"
}
],
"4.5.0": [
{
"comment_text": "",
"digests": {
"md5": "a7586db54460e051556dae8eebd55539",
"sha256": "76785dbf74ed5010796f122e7ae8edb39a6c78469b5fea4039911cdcdfbc00e8"
},
"downloads": -1,
"filename": "collective.ckeditor-4.5.0.tar.gz",
"has_sig": false,
"md5_digest": "a7586db54460e051556dae8eebd55539",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3403807,
"upload_time": "2017-02-24T13:13:08",
"url": "https://files.pythonhosted.org/packages/19/60/5b0c0ae1335986c93dc6188f9d653ff37eebb6074402526573eabc9790bc/collective.ckeditor-4.5.0.tar.gz"
}
],
"4.6.0": [
{
"comment_text": "",
"digests": {
"md5": "8540ad4c78368a2c8e48e4d8178ca326",
"sha256": "58d8885313e07197d50d58d492e8296cfd605d8a93e7e12d9694a3952de33226"
},
"downloads": -1,
"filename": "collective.ckeditor-4.6.0.tar.gz",
"has_sig": false,
"md5_digest": "8540ad4c78368a2c8e48e4d8178ca326",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3335646,
"upload_time": "2017-08-18T08:09:28",
"url": "https://files.pythonhosted.org/packages/df/61/41428fb187541c9584262ba9d584daa52bb3a46a61aeb3d9e44819cdda7c/collective.ckeditor-4.6.0.tar.gz"
}
],
"4.7.0": [
{
"comment_text": "",
"digests": {
"md5": "a365d3bdbf4adf97f1f9fcd2ec59a563",
"sha256": "721bb67ad14cc7b4a35d60f55acb587c94e93e7b99d349b87ed77e415a772ca4"
},
"downloads": -1,
"filename": "collective.ckeditor-4.7.0.tar.gz",
"has_sig": false,
"md5_digest": "a365d3bdbf4adf97f1f9fcd2ec59a563",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3337069,
"upload_time": "2017-12-01T16:38:51",
"url": "https://files.pythonhosted.org/packages/47/39/66fe65c330916963a1f84ce6f90510b6459deca402582a8bad0066a9dcfe/collective.ckeditor-4.7.0.tar.gz"
}
],
"4.7.1": [
{
"comment_text": "",
"digests": {
"md5": "b745a206c4bb124213846d261c21e0f9",
"sha256": "60ab9b95dddd8e4eb494570ed4fe73ab958a33c88fc1342d2fe05d5c5b3d8291"
},
"downloads": -1,
"filename": "collective.ckeditor-4.7.1.tar.gz",
"has_sig": false,
"md5_digest": "b745a206c4bb124213846d261c21e0f9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3337618,
"upload_time": "2017-12-08T14:05:29",
"url": "https://files.pythonhosted.org/packages/ae/9d/d2dbbadf5af0348827b1da44b489bda22ed6f180fa286d180dd5f906b864/collective.ckeditor-4.7.1.tar.gz"
}
],
"4.7.2": [
{
"comment_text": "",
"digests": {
"md5": "d84b6c41039ab78f9220c62b1c57baa4",
"sha256": "a3cd3881edad07c14bc0179f1e2d3fbbf90abec88f26b0d1428c493b89afd91a"
},
"downloads": -1,
"filename": "collective.ckeditor-4.7.2.tar.gz",
"has_sig": false,
"md5_digest": "d84b6c41039ab78f9220c62b1c57baa4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3337442,
"upload_time": "2017-12-15T13:42:36",
"url": "https://files.pythonhosted.org/packages/6d/3e/4f013e1c05f05547e562cfd2010864cd6561db3dc6895b007c0d180effdc/collective.ckeditor-4.7.2.tar.gz"
}
],
"4.8.0": [
{
"comment_text": "",
"digests": {
"md5": "3e6ce533101aacf83fbbe7d94571e3ad",
"sha256": "d992ca8d031b82ba8f1efec1b048bb9e0b3e53e06148fcdea4bce9471c194252"
},
"downloads": -1,
"filename": "collective.ckeditor-4.8.0.tar.gz",
"has_sig": false,
"md5_digest": "3e6ce533101aacf83fbbe7d94571e3ad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3434979,
"upload_time": "2018-06-22T13:19:31",
"url": "https://files.pythonhosted.org/packages/a0/24/38c703729e1930aff97f572c22c355c64feb385ee540ce1ef5b686a43fe5/collective.ckeditor-4.8.0.tar.gz"
}
],
"4.8.1": [
{
"comment_text": "",
"digests": {
"md5": "2ad6181ae0b4d5fa252e830f23c5a100",
"sha256": "0bdd70686dc9b074049adfad36805b74ca895d5985afffd1da6c9759ad1aaccf"
},
"downloads": -1,
"filename": "collective.ckeditor-4.8.1.tar.gz",
"has_sig": false,
"md5_digest": "2ad6181ae0b4d5fa252e830f23c5a100",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3435177,
"upload_time": "2018-07-10T09:54:16",
"url": "https://files.pythonhosted.org/packages/a3/b4/111b1e6f65ab4cbe32b737ac213f528dd5007ec30d2128d58df02dbcc0c5/collective.ckeditor-4.8.1.tar.gz"
}
],
"4.8.2": [
{
"comment_text": "",
"digests": {
"md5": "ecdb6f616d8f2348624e0256bb9b593c",
"sha256": "77db7835eeb8f64c03a91c2ba4ad7613ec19f803bbd63d239d406c166c8f536b"
},
"downloads": -1,
"filename": "collective.ckeditor-4.8.2.tar.gz",
"has_sig": false,
"md5_digest": "ecdb6f616d8f2348624e0256bb9b593c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3435852,
"upload_time": "2018-10-12T15:34:15",
"url": "https://files.pythonhosted.org/packages/23/39/8fba84fd69f9442f6ecc38c7eeb281a2343ef9335adf25cda0595fc54bf5/collective.ckeditor-4.8.2.tar.gz"
}
],
"4.8.3": [
{
"comment_text": "",
"digests": {
"md5": "c136928b6db5091596f1b142e1a9301d",
"sha256": "30a2328673bc94f41e41c0169f46a79a725059c4df27b595e57999bb1bcf234b"
},
"downloads": -1,
"filename": "collective.ckeditor-4.8.3.tar.gz",
"has_sig": false,
"md5_digest": "c136928b6db5091596f1b142e1a9301d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3436186,
"upload_time": "2018-11-13T11:03:59",
"url": "https://files.pythonhosted.org/packages/15/1a/b5466c3146536cdd0a18842de0f125c48667d76701b349a1149a07eee236/collective.ckeditor-4.8.3.tar.gz"
}
],
"4.9.0": [
{
"comment_text": "",
"digests": {
"md5": "703d6e05930a765d78458d05c2618fb1",
"sha256": "c91bf8e57ce1b19f057ecc79eccff7775a9737a15974eee3b5112e0a76017494"
},
"downloads": -1,
"filename": "collective.ckeditor-4.9.0.tar.gz",
"has_sig": false,
"md5_digest": "703d6e05930a765d78458d05c2618fb1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3621744,
"upload_time": "2019-09-12T12:26:50",
"url": "https://files.pythonhosted.org/packages/ea/f7/7c28e6b2f7f57d44fc7322de5d51b59d3f3a14059cb35c7777d9db1ad0f5/collective.ckeditor-4.9.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "703d6e05930a765d78458d05c2618fb1",
"sha256": "c91bf8e57ce1b19f057ecc79eccff7775a9737a15974eee3b5112e0a76017494"
},
"downloads": -1,
"filename": "collective.ckeditor-4.9.0.tar.gz",
"has_sig": false,
"md5_digest": "703d6e05930a765d78458d05c2618fb1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3621744,
"upload_time": "2019-09-12T12:26:50",
"url": "https://files.pythonhosted.org/packages/ea/f7/7c28e6b2f7f57d44fc7322de5d51b59d3f3a14059cb35c7777d9db1ad0f5/collective.ckeditor-4.9.0.tar.gz"
}
]
}