{ "info": { "author": "Divio AG", "author_email": "info@divio.ch", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.11", "Framework :: Django :: 2.1", "Framework :: Django :: 2.2", "Framework :: Django CMS", "Framework :: Django CMS :: 3.4", "Framework :: Django CMS :: 3.5", "Framework :: Django CMS :: 3.6", "Framework :: Django CMS :: 3.7", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development", "Topic :: Software Development :: Libraries" ], "description": "========================\ndjango CMS Text CKEditor\n========================\n\n|pypi| |build| |coverage|\n\nCKEditor is a ready-for-use HTML text editor designed to simplify web content\ncreation. It's a WYSIWYG editor that brings common word processor features\ndirectly to your web pages. Enhance your website experience with our community\nmaintained editor. This package aims to integrate CKEditor into django CMS as\na text plugin.\n\nThis addon is compatible with `Divio Cloud `_ and is also available on the\n`django CMS Marketplace `_\nfor easy installation.\n\n.. WARNING::\n\n - For django CMS 3.4.x use ``djangocms-text-ckeditor`` >= 3.2.x (e.g.: version 3.2.1).\n - For django CMS 3.3.x use ``djangocms-text-ckeditor`` >= 3.1.x,<3.5.1 (e.g.: version 3.1.0).\n - For django CMS 3.2.x use ``djangocms-text-ckeditor`` <= 2.9.x (e.g.: version 2.9.3).\n - For django CMS 3.0 and 3.1 use ``djangocms-text-ckeditor`` <= 2.7 (e.g.: version 2.7.0).\n - For django CMS 2.3 and 2.4 use the ``djangocms-text-ckeditor`` 1.x releases (e.g.: version 1.0.10).\n - For Django 1.4 and 1.5 use ``djangocms-text-ckeditor`` < 2.7.\n - ``cms.plugins.text`` and ``djangocms-text-ckeditor`` can't be used at the same time.\n\n.. image:: preview.gif\n\n\nContributing\n============\n\nThis is a an open-source project. We'll be delighted to receive your\nfeedback in the form of issues and pull requests. Before submitting your\npull request, please review our `contribution guidelines\n`_.\n\nWe're grateful to all contributors who have helped create and maintain this package.\nContributors are listed at the `contributors `_\nsection.\n\nOne of the easiest contributions you can make is helping to translate this addon on\n`Transifex `_.\n\n\nDocumentation\n=============\n\nSee ``REQUIREMENTS`` in the `setup.py `_\nfile for additional dependencies:\n\n|python| |django| |djangocms|\n\nThe current integrated Version of CKEditor is: **4.7.3**\n\nFor a full documentation visit: http://ckeditor.com/\n\n\nInstallation\n------------\n\nThis plugin requires `django CMS` 3.4.5 or higher to be properly installed.\n\nFor a manual install:\n\n* run ``pip install djangocms-text-ckeditor``\n* add ``djangocms_text_ckeditor`` to your ``INSTALLED_APPS``\n* run ``python manage.py migrate djangocms_text_ckeditor``\n\n\nUpgrading from ``cms.plugins.text``\n***********************************\n\n* remove ``cms.plugins.text`` from ``INSTALLED_APPS``\n* add ``djangocms_text_ckeditor`` to ``INSTALLED_APPS``\n* run ``python manage.py migrate djangocms_text_ckeditor 0001 --fake``\n\n\nConfiguration\n-------------\n\nDefault content in Placeholder\n******************************\n\nIf you use Django-CMS >= 3.0, you can use ``TextPlugin`` in \"default_plugins\"\n(see docs about the `CMS_PLACEHOLDER_CONF`_ setting in Django CMS 3.0).\n``TextPlugin`` requires just one value: ``body`` where you write your default\nHTML content. If you want to add some \"default children\" to your\nautomagically added plugin (i.e. a ``LinkPlugin``), you have to put children\nreferences in the body. References are ``\"%(_tag_child_)s\"`` with the\ninserted order of chidren. For example::\n\n CMS_PLACEHOLDER_CONF = {\n 'content': {\n 'name' : _('Content'),\n 'plugins': ['TextPlugin', 'LinkPlugin'],\n 'default_plugins':[\n {\n 'plugin_type':'TextPlugin',\n 'values':{\n 'body':'

Great websites : %(_tag_child_1)s and %(_tag_child_2)s

'\n },\n 'children':[\n {\n 'plugin_type':'LinkPlugin',\n 'values':{\n 'name':'django',\n 'url':'https://www.djangoproject.com/'\n },\n },\n {\n 'plugin_type':'LinkPlugin',\n 'values':{\n 'name':'django-cms',\n 'url':'https://www.django-cms.org'\n },\n },\n ]\n },\n ]\n }\n }\n\n.. _CMS_PLACEHOLDER_CONF: http://docs.django-cms.org/en/latest/how_to/placeholders.html?highlight=cms_placeholder_conf\n\n\nCKEDITOR_SETTINGS\n*****************\n\nYou can override the setting ``CKEDITOR_SETTINGS`` in your settings.py::\n\n CKEDITOR_SETTINGS = {\n 'language': '{{ language }}',\n 'toolbar': 'CMS',\n 'skin': 'moono-lisa',\n }\n\nThis is the default dict that holds all **CKEditor** settings.\n\n\nCustomizing plugin editor\n#########################\n\nTo customize the plugin editor, use `toolbar_CMS` attribute, as in::\n\n CKEDITOR_SETTINGS = {\n 'language': '{{ language }}',\n 'toolbar_CMS': [\n ['Undo', 'Redo'],\n ['cmsplugins', '-', 'ShowBlocks'],\n ['Format', 'Styles'],\n ],\n 'skin': 'moono-lisa',\n }\n\n\nCustomizing HTMLField editor\n############################\n\nIf you use ``HTMLField`` from ``djangocms_text_ckeditor.fields`` in your own\nmodels, use `toolbar_HTMLField` attribute::\n\n CKEDITOR_SETTINGS = {\n 'language': '{{ language }}',\n 'toolbar_HTMLField': [\n ['Undo', 'Redo'],\n ['ShowBlocks'],\n ['Format', 'Styles'],\n ],\n 'skin': 'moono-lisa',\n }\n\n\nYou can further customize each `HTMLField` field by using different\nconfiguration parameter in your settings::\n\n models.py\n\n class Model1(models.Model):\n text = HTMLField(configuration='CKEDITOR_SETTINGS_MODEL1')\n\n class Model2(models.Model):\n text = HTMLField(configuration='CKEDITOR_SETTINGS_MODEL2')\n\n settings.py\n\n CKEDITOR_SETTINGS_MODEL1 = {\n 'toolbar_HTMLField': [\n ['Undo', 'Redo'],\n ['ShowBlocks'],\n ['Format', 'Styles'],\n ['Bold', 'Italic', 'Underline', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'],\n ]\n }\n\n CKEDITOR_SETTINGS_MODEL2 = {\n 'toolbar_HTMLField': [\n ['Undo', 'Redo'],\n ['Bold', 'Italic', 'Underline', '-', 'Subscript', 'Superscript', '-', 'RemoveFormat'],\n ]\n }\n\n#. Add `configuration='MYSETTING'` to the `HTMLField` usage(s) you want to\n customize;\n#. Define a setting parameter named as the string used in the `configuration`\n argument of the `HTMLField` instance with the desidered configuration;\n\nValues not specified in your custom configuration will be taken from the global\n``CKEDITOR_SETTINGS``.\n\nFor an overview of all the available settings have a look here:\n\nhttp://docs.ckeditor.com/#!/api/CKEDITOR.config\n\n\nInline preview\n--------------\n\nThe child plugins of TextPlugin can be rendered directly inside CKEditor if\n``text_editor_preview`` isn't ``False``. However there are few important points\nto note:\n\n- by default CKEditor doesn't load CSS of your project inside the editing area\n and has specific settings regarding empty tags, which could mean that things\n will not look as they should until CKEditor is configured correctly.\n\n See examples:\n\n - `add styles and js configuration`_\n - `stop CKEditor from removing empty spans`_ (useful for iconfonts)\n\n- if you override widget default behaviour - be aware that it requires the\n property \"`allowedContent`_\" `to contain`_ ``cms-plugin[*]`` as this custom tag is\n what allows the inline previews to be rendered\n\n- Important note: please avoid html tags in ``__str__`` representation of text\n enabled plugins - this messes up inline preview.\n\n.. _add styles and js configuration: https://github.com/divio/django-cms-demo/blob/7a104acaa749c52a8ed4870a74898e38daf20e46/src/settings.py#L318-L324\n.. _stop CKEditor from removing empty spans: https://github.com/divio/django-cms-explorer/blob/908a88afa4e1d1176e267e77eb5c61e31ef0f9e5/static/js/addons/ckeditor.wysiwyg.js#L73\n.. _allowedContent: http://docs.ckeditor.com/#!/guide/dev_allowed_content_rules\n.. _to contain: https://github.com/divio/djangocms-text-ckeditor/issues/405#issuecomment-276814197\n\n\nDrag & Drop Images\n------------------\n\nIn IE and Firefox based browsers it is possible to drag and drop a picture into the text editor.\nThis image is base64 encoded and lives in the 'src' attribute as a 'data' tag.\n\nWe detect this images, encode them and convert them to picture plugins.\nIf you want to overwirite this behavior for your own picture plugin:\n\nThere is a setting called::\n\n TEXT_SAVE_IMAGE_FUNCTION = 'djangocms_text_ckeditor.picture_save.create_picture_plugin'\n\nyou can overwrite this setting in your settings.py and point it to a function that handles image saves.\nHave a look at the function ``create_picture_plugin`` for details.\n\nTo completely disable the feature, set ``TEXT_SAVE_IMAGE_FUNCTION = None``.\n\n\nUsage as a model field\n----------------------\n\nIf you want to use the widget on your own model fields, you can! Just import the provided ``HTMLField`` like so::\n\n from djangocms_text_ckeditor.fields import HTMLField\n\nAnd use it in your models, just like a ``TextField``::\n\n class MyModel(models.Model):\n myfield = HTMLField(blank=True)\n\nThis field does not allow you to embed any other CMS plugins within the text editor. Plugins can only be embedded\nwithin ``Placeholder`` fields.\n\nIf you need to allow additional plugins to be embedded in a HTML field, convert the ``HTMLField`` to a ``Placeholderfield``\nand configure the placeholder to only accept TextPlugin. For more information on using placeholders outside of the CMS see:\n\nhttp://docs.django-cms.org/en/latest/how_to/placeholders.html\n\n\nAuto Hyphenate Text\n-------------------\n\nYou can hyphenate the text entered into the editor, so that the HTML entity ``­`` (soft-hyphen_)\nautomatically is added in between words, at the correct syllable boundary.\n\nTo activate this feature, ``pip install django-softhyphen``. In ``settings.py`` add ``'softhyphen'``\nto the list of ``INSTALLED_APPS``. django-softhyphen_ also installs hyphening dictionaries for 25\nnatural languages.\n\nIn case you already installed ``django-softhyphen`` but do not want to soft hyphenate, set\n``TEXT_AUTO_HYPHENATE`` to ``False``.\n\n.. _soft-hyphen: http://www.w3.org/TR/html4/struct/text.html#h-9.3.3\n.. _django-softhyphen: https://github.com/datadesk/django-softhyphen\n\n\nExtending the plugin\n--------------------\n\n.. NOTE::\n Added in version 2.0.1\n\nYou can use this plugin as base to create your own CKEditor-based plugins.\n\nYou need to create your own plugin model extending ``AbstractText``::\n\n from djangocms_text_ckeditor.models import AbstractText\n\n class MyTextModel(AbstractText):\n title = models.CharField(max_length=100)\n\nand a plugin class extending ``TextPlugin`` class::\n\n from djangocms_text_ckeditor.cms_plugins import TextPlugin\n from .models import MyTextModel\n\n\n class MyTextPlugin(TextPlugin):\n name = _(u\"My text plugin\")\n model = MyTextModel\n\n plugin_pool.register_plugin(MyTextPlugin)\n\nNote that if you override the `render` method that is inherited from the base ``TextPlugin`` class, any child text\nplugins will not render correctly. You must call the super ``render`` method in order for ``plugin_tags_to_user_html()``\nto render out all child plugins located in the ``body`` field. For example::\n\n from djangocms_text_ckeditor.cms_plugins import TextPlugin\n from .models import MyTextModel\n\n\n class MyTextPlugin(TextPlugin):\n name = _(u\"My text plugin\")\n model = MyTextModel\n\n def render(self, context, instance, placeholder):\n context.update({\n 'name': instance.name,\n })\n # Other custom render code you may have\n return super(MyTextPlugin, self).render(context, instance, placeholder)\n\n plugin_pool.register_plugin(MyTextPlugin)\n\nYou can further `customize your plugin`_ as other plugins.\n\n.. _customize your plugin: http://docs.django-cms.org/en/latest/how_to/custom_plugins.html\n\n\nAdding plugins to the \"CMS Plugins\" dropdown\n--------------------------------------------\n\nIf you have created a plugin that you want to use within Text plugins you can make them appear in the dropdown by\nmaking them `text_enabled`. This means that you assign the property ``text_enabled`` of a plugin to ``True``,\nthe default value is `False`. Here is a very simple implementation::\n\n class MyTextPlugin(TextPlugin):\n name = \"My text plugin\"\n model = MyTextModel\n text_enabled = True\n\nWhen the plugin is picked up, it will be available in the *CMS Plugins* dropdown, which you can find in the editor.\nThis makes it very easy for users to insert special content in a user-friendly Text block, which they are familiair with.\n\nThe plugin will even be previewed in the text editor. **Pro-tip**: make sure your plugin provides its own `icon_alt` method.\nThat way, if you have many `text_enabled`-plugins, it can display a hint about it. For example, if you created a plugin which displays prices of configurable product, it can display a tooltip with the name of that product.\n\nFor more information about extending the CMS with plugins, read `django-cms doc`_ on how to do this.\n\n.. _django-cms doc: http://docs.django-cms.org/en/latest/reference/plugins.html#cms.plugin_base.CMSPluginBase.text_enabled\n\n\nConfigurable sanitizer\n----------------------\n\n``djangocms-text-ckeditor`` uses `html5lib`_ to sanitize HTML to avoid\nsecurity issues and to check for correct HTML code.\nSanitisation may strip tags usesful for some use cases such as ``iframe``;\nyou may customize the tags and attributes allowed by overriding the\n``TEXT_ADDITIONAL_TAGS`` and ``TEXT_ADDITIONAL_ATTRIBUTES`` settings::\n\n TEXT_ADDITIONAL_TAGS = ('iframe',)\n TEXT_ADDITIONAL_ATTRIBUTES = ('scrolling', 'allowfullscreen', 'frameborder')\n\nIn case you need more control on sanitisation you can extend AllowTokenParser class and define\nyour logic into parse() method. For example, if you want to skip your donut attribute during\nsanitisation, you can create a class like this::\n\n from djangocms_text_ckeditor.sanitizer import AllowTokenParser\n\n\n class DonutAttributeParser(AllowTokenParser):\n\n def parse(self, attribute, val):\n return attribute.startswith('donut-')\n\nAnd add your class to ``ALLOW_TOKEN_PARSERS`` settings::\n\n ALLOW_TOKEN_PARSERS = (\n 'mymodule.DonutAttributeParser',\n )\n\n**NOTE**: Some versions of CKEditor will pre-sanitize your text before passing it to the web server,\nrendering the above settings useless. To ensure this does not happen, you may need to add the\nfollowing parameters to ``CKEDITOR_SETTINGS``::\n\n ...\n 'basicEntities': False,\n 'entities': False,\n ...\n\nTo completely disable the feature, set ``TEXT_HTML_SANITIZE = False``.\n\nSee the `html5lib documentation`_ for further information.\n\n.. _html5lib: https://pypi.python.org/pypi/html5lib\n.. _html5lib documentation: https://code.google.com/p/html5lib/wiki/UserDocumentation#Sanitizing_Tokenizer\n\n\nSearch\n------\n\ndjangocms-text-ckeditor works well with `aldryn-search `_\nto make text content using Haystack.\n\n\nDevelopment\n===========\n\nBuilding the JavaScript\n-----------------------\n\n``djangocms-text-ckeditor`` distributes a javascript bundle required for the\nplugin to work, which contains CKEditor itself and all the necessary plugins for\nfunctioning within CMS. To build the bundle you need to have to install\ndependencies with ``npm install`` and then to run ``gulp bundle``.\n\nThis command also updates the file name loaded based on the file contents.\n\n\nUpdating the CKEditor\n---------------------\n\nMake sure to use the url in `build config\n_`.\n\n\nRunning Tests\n-------------\n\nYou can run tests by executing::\n\n virtualenv env\n source env/bin/activate\n pip install -r tests/requirements.txt\n python setup.py test\n\n\n.. |pypi| image:: https://badge.fury.io/py/djangocms-text-ckeditor.svg\n :target: http://badge.fury.io/py/djangocms-text-ckeditor\n.. |build| image:: https://travis-ci.org/divio/djangocms-text-ckeditor.svg?branch=master\n :target: https://travis-ci.org/divio/djangocms-text-ckeditor\n.. |coverage| image:: https://codecov.io/gh/divio/djangocms-text-ckeditor/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/divio/djangocms-text-ckeditor\n\n.. |python| image:: https://img.shields.io/badge/python-2.7%20%7C%203.4+-blue.svg\n :target: https://pypi.org/project/djangocms-text-ckeditor/\n.. |django| image:: https://img.shields.io/badge/django-1.11%20%7C%202.1%20%7C%202.2-blue.svg\n :target: https://www.djangoproject.com/\n.. |djangocms| image:: https://img.shields.io/badge/django%20CMS-3.4%2B-blue.svg\n :target: https://www.django-cms.org/\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/divio/djangocms-text-ckeditor", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "djangocms-text-ckeditor", "package_url": "https://pypi.org/project/djangocms-text-ckeditor/", "platform": "", "project_url": "https://pypi.org/project/djangocms-text-ckeditor/", "project_urls": { "Homepage": "https://github.com/divio/djangocms-text-ckeditor" }, "release_url": "https://pypi.org/project/djangocms-text-ckeditor/3.8.0/", "requires_dist": null, "requires_python": "", "summary": "Text Plugin for django CMS with CKEditor support", "version": "3.8.0" }, "last_serial": 5308000, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "1fd1b5f070b789a12fb7bc269ab72365", "sha256": "893dca9488aef007c9002523b7cb3bc3edf4bc7b4a2dfc695a1569a4f4e200b9" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.0.tar.gz", "has_sig": false, "md5_digest": "1fd1b5f070b789a12fb7bc269ab72365", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7446, "upload_time": "2012-11-27T15:51:58", "url": "https://files.pythonhosted.org/packages/56/38/4589089ae46cc077cbbcaf189b0a40ecb8fc7963278c57af516307dbcd27/djangocms-text-ckeditor-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "9ea34cbe086b9e65aa2bb6b9c3af8b60", "sha256": "b6b1971bca6249950b17417fef9f19f4fe8e8f9e812ceaf3f280bf374583734d" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.1.tar.gz", "has_sig": false, "md5_digest": "9ea34cbe086b9e65aa2bb6b9c3af8b60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 748743, "upload_time": "2012-11-28T09:43:40", "url": "https://files.pythonhosted.org/packages/9f/64/0a4012ed6dea30a48ff781be6e45cffd4451dc5a065c52aef28ff42ce0ae/djangocms-text-ckeditor-1.0.1.tar.gz" } ], "1.0.10": [ { "comment_text": "", "digests": { "md5": "2f27b7be6cbb94eb88cdf4a4977ba3ef", "sha256": "3550f5b638f8a743a0b64784125dd89b60c997a49b506ec18c4beb5a2270c48d" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.10.tar.gz", "has_sig": false, "md5_digest": "2f27b7be6cbb94eb88cdf4a4977ba3ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 763549, "upload_time": "2013-06-19T10:52:56", "url": "https://files.pythonhosted.org/packages/82/08/c07528fa47628e9f52315dc5fdcba662aaa131c7329b0ed3d58e457ab75b/djangocms-text-ckeditor-1.0.10.tar.gz" } ], "1.0.11": [ { "comment_text": "", "digests": { "md5": "161ff11d89473101b8de5fb2d6edd26d", "sha256": "2c03e45a2515f55bdd2e5bfdb07700f6414e9de77efcd6510194b56e0beca6cb" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.11.tar.gz", "has_sig": false, "md5_digest": "161ff11d89473101b8de5fb2d6edd26d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 762936, "upload_time": "2013-12-21T01:48:19", "url": "https://files.pythonhosted.org/packages/2d/6e/27abc99ce08694f5ca50177b49dc7ee88d3f9557fa8bbb8aa8c2bef349af/djangocms-text-ckeditor-1.0.11.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "5fca9fec5ca3ee255f7c06410603fd41", "sha256": "1300fb235d97e08918fc356a200726cfd5a6e896fbbe05c4490718675f94fd4e" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.2.tar.gz", "has_sig": false, "md5_digest": "5fca9fec5ca3ee255f7c06410603fd41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 748869, "upload_time": "2012-11-28T10:16:18", "url": "https://files.pythonhosted.org/packages/71/d1/ca06bfbdcf2290463449acd2f373d67f0e311269a09dc175eab6a3e03622/djangocms-text-ckeditor-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "cb7ae8e9938a00aab24f3421ec09ccf0", "sha256": "3788204e99d0708f755604b002cf61582b2bd2c1d34f26a994b8ea8224ffc167" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.3.tar.gz", "has_sig": false, "md5_digest": "cb7ae8e9938a00aab24f3421ec09ccf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 753602, "upload_time": "2012-12-12T09:41:22", "url": "https://files.pythonhosted.org/packages/d7/c4/d1b5defaa74a74abddce08fcf570418a9f98067d8e2926a034689d5a3bb5/djangocms-text-ckeditor-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "2ec91a994a10e14dbfd77362537333ef", "sha256": "8c96be5ddc4bf3c89eada6746a95fc2c533df24326445b7b2899889a5e5ef1ed" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.4.tar.gz", "has_sig": false, "md5_digest": "2ec91a994a10e14dbfd77362537333ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 753891, "upload_time": "2012-12-14T14:10:08", "url": "https://files.pythonhosted.org/packages/26/e9/49130499a095ad992d2fdd3be57ee63f069a126fb8f3f94f866f767707ca/djangocms-text-ckeditor-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "2dfb718a768eb9007ea416752388fdb3", "sha256": "f234ba3ef03afa7ec3cf9dd4c89877b3e6eab5e2a0a09e51f9e8d2c1913e386a" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.5.tar.gz", "has_sig": false, "md5_digest": "2dfb718a768eb9007ea416752388fdb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 754195, "upload_time": "2013-01-17T17:50:36", "url": "https://files.pythonhosted.org/packages/e4/18/7c344d1c8ed0a8df8feeb1915131c9911a67dce3df5281fee4430fbdb8e9/djangocms-text-ckeditor-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "875eee4d02e1a5df1de384d48e676a23", "sha256": "e0bfb103d2e884903bf52f4166f78054ea68a7d02b0f1275f717812eac58663d" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.6.tar.gz", "has_sig": false, "md5_digest": "875eee4d02e1a5df1de384d48e676a23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 754745, "upload_time": "2013-01-29T10:36:50", "url": "https://files.pythonhosted.org/packages/6c/de/6495a6894f08a2b54b20fca4d8c19e558140e5b830e3f3fc867371064437/djangocms-text-ckeditor-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "faae743c250dffb6551399f6f9330b43", "sha256": "23f94637bf7331d6161725f8699180951a510502c2973701f0c2f003a0086e98" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.7.tar.gz", "has_sig": false, "md5_digest": "faae743c250dffb6551399f6f9330b43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 754825, "upload_time": "2013-02-20T08:11:51", "url": "https://files.pythonhosted.org/packages/94/bb/1546f039f184cf9f81a0de42bf53715e305c8913b8307b82c04e21a41fa5/djangocms-text-ckeditor-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "96682b7a99eb698bb83bd1ca66fa8e55", "sha256": "ea0639ffa206d5b585d172b6502498b26fad156c1f08e0d16a37ab9e75650175" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.8.tar.gz", "has_sig": false, "md5_digest": "96682b7a99eb698bb83bd1ca66fa8e55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 754926, "upload_time": "2013-04-10T14:20:16", "url": "https://files.pythonhosted.org/packages/e5/2f/2a0cce52ed866d9f9e15fc8d1586057ebc98aa505f1ec7598bde1cb91e59/djangocms-text-ckeditor-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "c997546b9a2b95042d371f9b27e085db", "sha256": "38ae8093ab712110a70d0e20e966da378e2a68870bd43cba88dc4761cacce9f1" }, "downloads": -1, "filename": "djangocms-text-ckeditor-1.0.9.tar.gz", "has_sig": false, "md5_digest": "c997546b9a2b95042d371f9b27e085db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 754938, "upload_time": "2013-04-19T11:04:11", "url": "https://files.pythonhosted.org/packages/cc/64/ed85988d732ed4d4d77aa9d0cfcf85de6361b2314520418f4f9d3ae94bad/djangocms-text-ckeditor-1.0.9.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "36cc75db390273636e8e9aad46e277e3", "sha256": "ecde45ce99ef48f25ae4b5156c530aab4dda58606ca366253e27136924c7b8cf" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.0.0.tar.gz", "has_sig": false, "md5_digest": "36cc75db390273636e8e9aad46e277e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 765794, "upload_time": "2013-07-10T15:13:43", "url": "https://files.pythonhosted.org/packages/8e/ce/a521fc2b6fd05e143855c4e09c00ba2ceccf22d2961570a5abbb1b91e435/djangocms-text-ckeditor-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "818d7779d4cc1987fd806e39c996e3fa", "sha256": "41861cb3f4cadde4a4e356d550e516463f6fd4adbd29c23ee35dd3b8211f8e28" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.0.1.tar.gz", "has_sig": false, "md5_digest": "818d7779d4cc1987fd806e39c996e3fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1092302, "upload_time": "2013-08-12T07:47:54", "url": "https://files.pythonhosted.org/packages/59/04/c95f71ab41270b7df7f284db66d855e63538cae895ea76a734ce6c497ebf/djangocms-text-ckeditor-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "dd3481ca436d0cc2b18b6f5e93e20f68", "sha256": "f466f0e92bf606170a30169ffbcfab01a189a431e17e7106c6c20a15d555c656" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.0.2.tar.gz", "has_sig": false, "md5_digest": "dd3481ca436d0cc2b18b6f5e93e20f68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1092262, "upload_time": "2013-08-22T14:25:42", "url": "https://files.pythonhosted.org/packages/87/b2/5ad42b600ba4567449390b41f60e8dc33941518cdccaacbdf58989dd8824/djangocms-text-ckeditor-2.0.2.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "7d9b9716e0d802217a6b449b6fc22954", "sha256": "377631f5cc8f94d000df80d6c36630732126ec2a298a2640c133f7709b906909" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.0.4-py27-none-any.whl", "has_sig": false, "md5_digest": "7d9b9716e0d802217a6b449b6fc22954", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1523046, "upload_time": "2013-11-28T13:24:37", "url": "https://files.pythonhosted.org/packages/e0/dc/45903184dbc48f048ba4ab63d387b409eba8de88c677a2a1b9b8cabd3601/djangocms_text_ckeditor-2.0.4-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "99665b674e6d0268dad3bfe98367f26b", "sha256": "09581b2a5ba5f0df0c1656149f013910d5da67b46f5e18c89458bef023fb7790" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.0.4.tar.gz", "has_sig": false, "md5_digest": "99665b674e6d0268dad3bfe98367f26b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1141492, "upload_time": "2013-11-28T13:21:25", "url": "https://files.pythonhosted.org/packages/ae/66/a789a597d3b1044db9480bd4e67a51be6f1d953ca7b6474e1b7e26c495bb/djangocms-text-ckeditor-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "9381b0d9cb42738c90dc7ced49a88814", "sha256": "d0c8d3aa72d9041fd1130805f854e779791c140c4889305c93d88f862ab3be07" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.0.5-py27-none-any.whl", "has_sig": false, "md5_digest": "9381b0d9cb42738c90dc7ced49a88814", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1572309, "upload_time": "2013-12-13T15:42:30", "url": "https://files.pythonhosted.org/packages/38/3e/f74584dff9251db2bacb1b864e3857e5c31a7c207e16282aed3bd4c28414/djangocms_text_ckeditor-2.0.5-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "86bf23761c936345512ba9065c11697a", "sha256": "460a22aa2582d74a6303b2c41451574895c76be1bb1a063194641581eb6d2291" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.0.5.tar.gz", "has_sig": false, "md5_digest": "86bf23761c936345512ba9065c11697a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1149078, "upload_time": "2013-12-13T15:41:22", "url": "https://files.pythonhosted.org/packages/db/31/36dba7455ac68b3bb30c760d83c3ba02122468f12474e9a52abbc119add9/djangocms-text-ckeditor-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "620d84588c47587879bd9c28d16c556f", "sha256": "6b3389325e9eba7075289257d296574147b5d65c55908520e898d8b17d36e3ea" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.0.6.tar.gz", "has_sig": false, "md5_digest": "620d84588c47587879bd9c28d16c556f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1149955, "upload_time": "2014-01-16T14:59:13", "url": "https://files.pythonhosted.org/packages/73/c1/c2349a9dd996c25bd0f98c4c939e235cbf66ba6e595e3789adec062b1761/djangocms-text-ckeditor-2.0.6.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "d31d7f48988d1c43048e84df8889ffa8", "sha256": "004af9d6a710515e848507322c9bef11926f7e2b3278acca0c344198be58497b" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.1.tar.gz", "has_sig": false, "md5_digest": "d31d7f48988d1c43048e84df8889ffa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1151996, "upload_time": "2014-02-03T12:02:06", "url": "https://files.pythonhosted.org/packages/8d/76/61500abc6c390b057b60e7a869d03df23baa363ab0607455a01b615dcbad/djangocms-text-ckeditor-2.1.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "c8ce1248df273b92eaa62730efda0db6", "sha256": "b5edf987c5600085096d198c8b90568ec3a641a884824186021cd7864454bc12" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.1.1.tar.gz", "has_sig": false, "md5_digest": "c8ce1248df273b92eaa62730efda0db6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1152366, "upload_time": "2014-02-07T16:51:40", "url": "https://files.pythonhosted.org/packages/1d/3c/89b36c0b9b0d6e25f9bd3f395e8575d4f5590f5f12a5d7a93bbd5e38215b/djangocms-text-ckeditor-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "9892cbca38b838098103358cf11ef1ef", "sha256": "6fd97ce0c816048988ec2a612f6f9af8500744350eb6b2ae8259cead0ea03114" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.1.2.tar.gz", "has_sig": false, "md5_digest": "9892cbca38b838098103358cf11ef1ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1151371, "upload_time": "2014-02-11T15:27:13", "url": "https://files.pythonhosted.org/packages/80/74/7c190b4ce4a94d5c602d3d6ed6d81b79a02308830fd887e1a668ea7ed829/djangocms-text-ckeditor-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "279b5b6b8b5d8fb19b4cc0a86dc9aa07", "sha256": "20e84a67bb8e95a55b85c055424a86bf05af07239029bb81d0b52ad1dbe22a09" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.1.3.tar.gz", "has_sig": false, "md5_digest": "279b5b6b8b5d8fb19b4cc0a86dc9aa07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1152925, "upload_time": "2014-03-05T08:46:57", "url": "https://files.pythonhosted.org/packages/45/94/b275cc10718c83dd3390656d37019ff518a234d24abadb934d7636d3f51a/djangocms-text-ckeditor-2.1.3.tar.gz" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "803e74a74b11b0f1b4c58de09e010cf2", "sha256": "684b9ce55636e9428b7812149d2fb986f4df413026e53299ce8ef9744d065f70" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.1.4.tar.gz", "has_sig": false, "md5_digest": "803e74a74b11b0f1b4c58de09e010cf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1152918, "upload_time": "2014-03-06T14:00:02", "url": "https://files.pythonhosted.org/packages/11/aa/d4bc77f31603cc4c51272bb3a14d2baa9190e33a24393a8a9180d4217654/djangocms-text-ckeditor-2.1.4.tar.gz" } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "b19a891c8f764e7cf1a0c32c72cb133c", "sha256": "14edff45f70bb7894f2428cb39ac35689820635e3f2c3d37cb8b6e8d54e67148" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.1.5.tar.gz", "has_sig": false, "md5_digest": "b19a891c8f764e7cf1a0c32c72cb133c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1153968, "upload_time": "2014-06-04T15:15:25", "url": "https://files.pythonhosted.org/packages/8d/6f/0960e66d6da4a56648f805594f0de0391e568e46db6151189edb54ca9a19/djangocms-text-ckeditor-2.1.5.tar.gz" } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "857628f8e000a10b3f11e011158de924", "sha256": "15ffa0cd270fe04c9a4a5b1df4546054bc5ac6c36977511e77cb6baf6e53b7a6" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "857628f8e000a10b3f11e011158de924", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1581466, "upload_time": "2014-06-06T08:19:15", "url": "https://files.pythonhosted.org/packages/02/83/2bda8dd392898dcae5a88db3782b4d04c3d0f497d7980affed4b14902d53/djangocms_text_ckeditor-2.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e995e95464dc7d6d943c320f537b5f55", "sha256": "f6527651ae7225d4f52b7381b5a53de51fdd179a183938aff634c40837fa3a7b" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.1.6.tar.gz", "has_sig": false, "md5_digest": "e995e95464dc7d6d943c320f537b5f55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1155087, "upload_time": "2014-06-06T08:08:39", "url": "https://files.pythonhosted.org/packages/60/f2/3e1b515b4dff9a23daa4404de5ef8f8263cde62566c1a80e10f5fe5cffd6/djangocms-text-ckeditor-2.1.6.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "febdae829b35bacda9302a25c3470f18", "sha256": "0fa3d6c25b7eb9d39e6c82e737894d38df359b7047c7eeaedd4efe3c72e6daaa" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "febdae829b35bacda9302a25c3470f18", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 3032308, "upload_time": "2014-08-14T09:43:38", "url": "https://files.pythonhosted.org/packages/4f/97/ada6e41cc47be0d5ac7cfae3cae0eeeb0921691b413e2fd9476620f06938/djangocms_text_ckeditor-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f42ac8bb361582d496926b93cba004b0", "sha256": "7bf8720a772edd8cec89fd3067ce3907f918e792f722e1b788f2e474c04455ac" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.2.0.tar.gz", "has_sig": false, "md5_digest": "f42ac8bb361582d496926b93cba004b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1177190, "upload_time": "2014-08-14T09:43:14", "url": "https://files.pythonhosted.org/packages/04/69/24bb362f031d27260bd8fbcce3540e480881963cf026f73b23c5a0d8bdd8/djangocms-text-ckeditor-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "7a8ea40ef73954d915ec59e8540320ab", "sha256": "aa126972acb4f6b4a21674115499f8b247f3e570329256a7a0049c06556567c9" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a8ea40ef73954d915ec59e8540320ab", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 3032298, "upload_time": "2014-08-27T09:43:27", "url": "https://files.pythonhosted.org/packages/3b/f6/b7a378880d1a94ad536ffe2ddcabe399a878753e009ccdef775aa7b521df/djangocms_text_ckeditor-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d06841ce00b28eef893ee0c38c424495", "sha256": "2243f02e03e9385938082f09451d215aa4af1b3fb492ed3638a6983ba2bb4497" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.3.0.tar.gz", "has_sig": false, "md5_digest": "d06841ce00b28eef893ee0c38c424495", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1177291, "upload_time": "2014-08-27T09:43:20", "url": "https://files.pythonhosted.org/packages/1f/39/2055d6f6175a48be22000c6ae5eb52648b0399cc1c962862850387ebee39/djangocms-text-ckeditor-2.3.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "02b7b63076bb38b53f948ae5b81af342", "sha256": "df63cb1cbec5aca60b42ce0d4abb5e8104b3b376d2b8aafa4dc0c80339bb0615" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "02b7b63076bb38b53f948ae5b81af342", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 3034546, "upload_time": "2014-10-10T09:59:20", "url": "https://files.pythonhosted.org/packages/3a/3b/40d306b220c4f251584c4633c8890eafab47ab358021c9b83c5da9464fdd/djangocms_text_ckeditor-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7ab789bf5fa31c016ea2bddb63dec31", "sha256": "36789e4fa018b152ea9c14d23ab6a289c5ac519c81fb1f26f78260712c3edd0e" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.4.0.tar.gz", "has_sig": false, "md5_digest": "c7ab789bf5fa31c016ea2bddb63dec31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1177664, "upload_time": "2014-10-10T09:59:13", "url": "https://files.pythonhosted.org/packages/38/91/0002e955eb6f658d96d63bb9e0119a2fd6e7e0faeae37c2d66a89cea2018/djangocms-text-ckeditor-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "7d874ffc62483ef3c6220221c4641d9c", "sha256": "76b77a43229471539054ae1933a0b2908979f7d9ceb02c40c1c1ea4e573d12e8" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7d874ffc62483ef3c6220221c4641d9c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1616326, "upload_time": "2014-10-26T12:16:57", "url": "https://files.pythonhosted.org/packages/87/14/554778883598605b14cc094e816e06e09e5df9f8034c4bba5d14074847a4/djangocms_text_ckeditor-2.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8096e448a640812d220b8ede8f977ed", "sha256": "b2fa7af735ae22ef65aef4f922dc1f47b5e1c32aeb2773a6ccdb647ffa3c567b" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.4.1.tar.gz", "has_sig": false, "md5_digest": "b8096e448a640812d220b8ede8f977ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1178568, "upload_time": "2014-10-26T12:16:33", "url": "https://files.pythonhosted.org/packages/e3/e5/3753c5664cb1b616f24b8c60daf28b465c9e21c158b520f9432e4d8a1967/djangocms-text-ckeditor-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "709ef9b60459fc152c2478b6c78617c8", "sha256": "5e0f755bad5b9a5c465fc93331688796f54140d1369aad2060fbd9f6bc7ab633" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.4.2.tar.gz", "has_sig": false, "md5_digest": "709ef9b60459fc152c2478b6c78617c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1187588, "upload_time": "2014-12-15T21:51:56", "url": "https://files.pythonhosted.org/packages/e0/f8/d5b1d3c127f2a5daa62a7c66c89724ac452a9c24e1cf4fabdbb9bfa356af/djangocms-text-ckeditor-2.4.2.tar.gz" } ], "2.4.3": [ { "comment_text": "", "digests": { "md5": "a623d538551954ec5cd6c3bbd74250a5", "sha256": "dd8990a12ce74309ce95650fdf66d38701b6918134da0cdcccc2cd5c03d1f7ee" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a623d538551954ec5cd6c3bbd74250a5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1619126, "upload_time": "2014-12-26T23:47:33", "url": "https://files.pythonhosted.org/packages/5c/13/3176a67fe742ed6d17d6a4f09fef876e7544b5aa01d8473a2c5408dec9f7/djangocms_text_ckeditor-2.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f664ba71f09b10a65d882266ce9d4515", "sha256": "be59256d7d38eaab03573c3de6cbafc50d4e8d7d00584193f9156cb3b12086e2" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.4.3.tar.gz", "has_sig": false, "md5_digest": "f664ba71f09b10a65d882266ce9d4515", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1180081, "upload_time": "2014-12-26T23:46:33", "url": "https://files.pythonhosted.org/packages/32/c6/51b0f46eeaf595d00485db8f5ace36aa06d87c44ba37acb059ffd5cc612d/djangocms-text-ckeditor-2.4.3.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "f3a92d33adba50c5d9960cf054d1f2d0", "sha256": "ca7a17c40bf5f63210572f9099c3f0ed24b890732f043c70f08e1a536b337362" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3a92d33adba50c5d9960cf054d1f2d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1621814, "upload_time": "2015-05-31T22:03:47", "url": "https://files.pythonhosted.org/packages/65/cc/1ca48e0e5c63e8e727b3d974b62eea7d8d34daafe1ce940bab2a5c0f1c46/djangocms_text_ckeditor-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "522e4010b498c407e2c1277fcc0260f9", "sha256": "aa071ec2d10a36e0be37a355dcaddcb5e3e0e01fbb19c64169cb555e7b82baff" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.5.0.tar.gz", "has_sig": false, "md5_digest": "522e4010b498c407e2c1277fcc0260f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1154547, "upload_time": "2015-05-31T22:04:04", "url": "https://files.pythonhosted.org/packages/c7/97/f4b410769722cfa9c0359a45a2baa35a3fc97a66829e8f590a013a766356/djangocms-text-ckeditor-2.5.0.tar.gz" } ], "2.5.0b1": [ { "comment_text": "", "digests": { "md5": "1279f3c11d04658756190d35e6c5b7d4", "sha256": "13c5dab71d6c476857f6cf17c2dc582cf290cd511db5e01086b32e04bb30b737" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.5.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1279f3c11d04658756190d35e6c5b7d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1621802, "upload_time": "2015-05-31T22:03:07", "url": "https://files.pythonhosted.org/packages/51/fb/442afe9e99f4e4d5855c508453dce738eb190e5d389327d35c8a72cf8e01/djangocms_text_ckeditor-2.5.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4bda8ea1b7ad6f509f50b87523d00e7a", "sha256": "67994339edf19af38c984ca9adda5f1cf42b9740bb076baac6fbbce451930645" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.5.0b1.tar.gz", "has_sig": false, "md5_digest": "4bda8ea1b7ad6f509f50b87523d00e7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1154492, "upload_time": "2015-05-31T22:03:24", "url": "https://files.pythonhosted.org/packages/70/cc/45596488f980e81d8264f8ee9d418a664455a97d60a21a869f722b02c794/djangocms-text-ckeditor-2.5.0b1.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "020d119428a5934161ffb72f1e28198d", "sha256": "0884dddfcf7b0d6c151d13ac095c4703f22671e2ec7b085ca1e018f075cdca58" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "020d119428a5934161ffb72f1e28198d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1622210, "upload_time": "2015-06-05T09:18:38", "url": "https://files.pythonhosted.org/packages/f4/60/362008be7e17f6ac6a2ecde6f4a1094414e04854dbf29ef223017c25f71f/djangocms_text_ckeditor-2.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c314c08d3f28cd1cd697565faefb7c5", "sha256": "f7a40c7d69b2349d23488fdfdb1b0037e2096e1c182c0b946a4dc649add1c16b" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.5.1.tar.gz", "has_sig": false, "md5_digest": "2c314c08d3f28cd1cd697565faefb7c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1154639, "upload_time": "2015-06-05T09:18:44", "url": "https://files.pythonhosted.org/packages/d3/5c/0e745585921ef742c1ed22f1afedfcd9df9776cdfe33b3ac349fb584ba68/djangocms-text-ckeditor-2.5.1.tar.gz" } ], "2.5.2": [ { "comment_text": "", "digests": { "md5": "0fb897bc34fa1eb7e837ce47671d1d56", "sha256": "02c22b92629bea1852652f0dfe8ea2ca44910013a5d5c178e213bbaa3a972959" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0fb897bc34fa1eb7e837ce47671d1d56", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1620598, "upload_time": "2015-06-06T10:32:19", "url": "https://files.pythonhosted.org/packages/b1/10/45ebf373d6c148140af731a75ce15122438b1ffd0fbe98807ea0fb838603/djangocms_text_ckeditor-2.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "72d6c697463b8d190acffba7d1c69c50", "sha256": "3113ef4aadb47d8de2a8f54f840d427f81069522784fa6c22a29794b1a4c5198" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.5.2.tar.gz", "has_sig": false, "md5_digest": "72d6c697463b8d190acffba7d1c69c50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1154680, "upload_time": "2015-06-06T10:32:54", "url": "https://files.pythonhosted.org/packages/bf/71/de714a85d8f7b1761c7cd21d851d669a81c46ba7e78582821eb92e328567/djangocms-text-ckeditor-2.5.2.tar.gz" } ], "2.5.3": [ { "comment_text": "", "digests": { "md5": "6c0877d82b4b144bc87d921945dd683c", "sha256": "92b9d346d089c1645d78341763a22266ef4ffe2a350ce712a40111ae1ee32fcc" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c0877d82b4b144bc87d921945dd683c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1622573, "upload_time": "2015-07-18T16:23:09", "url": "https://files.pythonhosted.org/packages/0e/96/67f107a50cb7d190897ae575f935aa24490326dbf1e4ad38a2efcb642a1f/djangocms_text_ckeditor-2.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27bf3e83d087cd9f0c9f07661df630b3", "sha256": "10e344010c9950a930c7f1515a570fc4cf46aabf598eb226134aabb2858b761d" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.5.3.tar.gz", "has_sig": false, "md5_digest": "27bf3e83d087cd9f0c9f07661df630b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1155674, "upload_time": "2015-07-18T16:22:49", "url": "https://files.pythonhosted.org/packages/ae/31/9c2d2e928c77f619a41ad8c5947de27545ddf2b89cad7193c0675596c1a3/djangocms-text-ckeditor-2.5.3.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "1cdcbaf8d45343989a9f3d0dc37c1d6d", "sha256": "1f0844fd288d1056ff8a48fca9296252faaca7079ff9b58f6896cf159ec46317" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1cdcbaf8d45343989a9f3d0dc37c1d6d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1969846, "upload_time": "2015-08-05T16:26:32", "url": "https://files.pythonhosted.org/packages/3e/12/c2bac8af9929d85c731e63de4df258c3f32fd65f55c89fe86e4f24f9fc96/djangocms_text_ckeditor-2.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a0754a6167257d5fc1e22be9e10f5eb7", "sha256": "d0ef15a9058ba640cc7227348d1a32399539326bd6729eb5a792e876a07da51a" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.6.0.tar.gz", "has_sig": false, "md5_digest": "a0754a6167257d5fc1e22be9e10f5eb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1364155, "upload_time": "2015-08-05T15:53:14", "url": "https://files.pythonhosted.org/packages/98/e4/cbc9fc166904d9d0cb0d9c1ce6e4fba41b219c0a951ca5dbe57095c30236/djangocms-text-ckeditor-2.6.0.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "5b94f98ee792c6c0ba46c3571c2164ea", "sha256": "5ac4082f40358d0eefdf16943b4392a5f0dd87169d99ed89f8b4921d2023b57f" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5b94f98ee792c6c0ba46c3571c2164ea", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1825978, "upload_time": "2015-11-03T13:54:08", "url": "https://files.pythonhosted.org/packages/50/ae/bb83086278f956e690799ba7044d16ed59052f51c1c44231444d218d3021/djangocms_text_ckeditor-2.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a94f49e8c02b93834aae8ca8a9a9f296", "sha256": "53eec04653c23d02c0a73e200c62fd80dbd4a333e408f4080b1286b8459c21cd" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.7.0.tar.gz", "has_sig": false, "md5_digest": "a94f49e8c02b93834aae8ca8a9a9f296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1340451, "upload_time": "2015-11-03T13:53:52", "url": "https://files.pythonhosted.org/packages/d5/c8/402c01f41ed2838c8fac81cca8f43e7f28deaa3bb1bf5908aa4c7a5b6e6b/djangocms-text-ckeditor-2.7.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "73d1a7cb0c8254e76b7be5f7e1c332ca", "sha256": "4a0145055a6d468dd4f86456a6fe5d5e93d43b8cb507a762f7fe87c166a4207d" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.7.1.tar.gz", "has_sig": false, "md5_digest": "73d1a7cb0c8254e76b7be5f7e1c332ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1343964, "upload_time": "2015-12-30T16:02:26", "url": "https://files.pythonhosted.org/packages/82/6a/bcf984a62685a6d52f3785ac00c150f4c561137c689bde2fd91b07d708eb/djangocms-text-ckeditor-2.7.1.tar.gz" } ], "2.7.2": [ { "comment_text": "", "digests": { "md5": "9576cbcb6b4c7108c006bbcc547c0582", "sha256": "57424cf9c1ad62418003ca57ea7b505b749d6fe11f8d7ba0f469306d2267c8de" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9576cbcb6b4c7108c006bbcc547c0582", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1875514, "upload_time": "2016-04-27T01:36:28", "url": "https://files.pythonhosted.org/packages/ad/18/e1cdca90bacaddcf587b7e3e329308433dde3499231b227999796e229f80/djangocms_text_ckeditor-2.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9757fbb862f138249eedd77eaf8c2b1c", "sha256": "70bc35118da4b858bd5ca01bad053e6486bbee1e4a10575488b2584ab6d9ac43" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.7.2.tar.gz", "has_sig": false, "md5_digest": "9757fbb862f138249eedd77eaf8c2b1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1345965, "upload_time": "2016-04-27T01:36:00", "url": "https://files.pythonhosted.org/packages/74/da/6ed8519f7d42a4c08bf844cd6602fa0fefe8471badebb9c5e354b01fc2b1/djangocms-text-ckeditor-2.7.2.tar.gz" } ], "2.7.3": [ { "comment_text": "", "digests": { "md5": "9778085bc18a5bb7bb51fe347b2753a4", "sha256": "e88fe7ae7b5fe62a417b4f51c7a6bf559ae3c030dac00decfafc6ba971ade1b8" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9778085bc18a5bb7bb51fe347b2753a4", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1875658, "upload_time": "2016-04-28T01:11:48", "url": "https://files.pythonhosted.org/packages/e8/b9/8da951748ee3ecaf7dd1dadb7473e40fa4885510784ea97832eb56eb081f/djangocms_text_ckeditor-2.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d2e4224efd7620aef44a661935fd227", "sha256": "7d21fece2619408c8abd1a0fa181833000832e9120d15dab7ba66ba011d71a02" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.7.3.tar.gz", "has_sig": false, "md5_digest": "4d2e4224efd7620aef44a661935fd227", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1346198, "upload_time": "2016-04-28T01:11:37", "url": "https://files.pythonhosted.org/packages/a7/ce/8e1666f535134f1d3f130a25d4ce40974a2e9c547f8c29d01269d4d10963/djangocms-text-ckeditor-2.7.3.tar.gz" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "ba9c92f77274a0a1cb8815648d5c60ff", "sha256": "f91585d7b583a555696bc752a805b79e6274d9a0c718a7ebd7379455d2effbe8" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.8.0.tar.gz", "has_sig": false, "md5_digest": "ba9c92f77274a0a1cb8815648d5c60ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1401639, "upload_time": "2015-11-19T15:21:23", "url": "https://files.pythonhosted.org/packages/b4/9d/13e6b63375a345e3a3f2f939fe3504829b77d91957db82352f50c3c0abac/djangocms-text-ckeditor-2.8.0.tar.gz" } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "42c9eb84f8dadeee0c9457f58e5cc054", "sha256": "96a88f620d3f908197fe3676220793abf9f4b0e2d919f79e3eb00d29e3ecac1d" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.8.1.tar.gz", "has_sig": false, "md5_digest": "42c9eb84f8dadeee0c9457f58e5cc054", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1378460, "upload_time": "2015-12-30T16:45:43", "url": "https://files.pythonhosted.org/packages/07/c1/45ebb905fd38ec0a2d4fb2f447cd0329c299110970a061c119365d5a8623/djangocms-text-ckeditor-2.8.1.tar.gz" } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "7dd782950ab175e32d09b8a52dfaba46", "sha256": "ffeaeaa3839b8fd0d2d515b18dfba453f93bdfa754abecad28ab718c82ff4a12" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.9.0.tar.gz", "has_sig": false, "md5_digest": "7dd782950ab175e32d09b8a52dfaba46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1378693, "upload_time": "2016-03-04T14:50:02", "url": "https://files.pythonhosted.org/packages/8a/28/370545a6e524c21ef51ea871daa9044b3f30f30aa90b755dd57511436aee/djangocms-text-ckeditor-2.9.0.tar.gz" } ], "2.9.1": [ { "comment_text": "", "digests": { "md5": "ad8d1e925485075db29b7b8cd01295d6", "sha256": "2ec364c1afbc18614d97ddc18a16a04218479f6cca4dd708b2c80ac18610f39d" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.9.1.tar.gz", "has_sig": false, "md5_digest": "ad8d1e925485075db29b7b8cd01295d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1378634, "upload_time": "2016-03-29T12:39:51", "url": "https://files.pythonhosted.org/packages/23/cc/486804ad94f26988ca6988bd197d15150216d6d800a78a73afa866c8e905/djangocms-text-ckeditor-2.9.1.tar.gz" } ], "2.9.2": [ { "comment_text": "", "digests": { "md5": "985d4a225d32fa9cb81fc1f07f5c352b", "sha256": "d75e9aef28d220db958ca2b9155df7524be49e59d121198a79e928b2050601f8" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "985d4a225d32fa9cb81fc1f07f5c352b", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1863228, "upload_time": "2016-04-27T01:01:28", "url": "https://files.pythonhosted.org/packages/04/b0/4cda8be8420727c52427360943d5b2fcc120aa3ee7644bd86e3dbedab8ea/djangocms_text_ckeditor-2.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8873107341ab3784fff5641c2797c44", "sha256": "44101d610f7a4702424194f728f015d204b0c5e704877457ea095cb861497285" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.9.2.tar.gz", "has_sig": false, "md5_digest": "b8873107341ab3784fff5641c2797c44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1379780, "upload_time": "2016-04-27T01:01:14", "url": "https://files.pythonhosted.org/packages/0d/75/9ee091985e6bcc59d8a561b36a8a2cac8c092f15a6d3ffca8c2da76a8dbb/djangocms-text-ckeditor-2.9.2.tar.gz" } ], "2.9.3": [ { "comment_text": "", "digests": { "md5": "2171ff9b0ed5460cf60aaf54319681af", "sha256": "a79a94433e8ab42fb5ff864e555543a33928d52166ab0a9ee00f3aeab6b34bb5" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2171ff9b0ed5460cf60aaf54319681af", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1879983, "upload_time": "2016-04-28T01:14:45", "url": "https://files.pythonhosted.org/packages/eb/f8/8bd660e5b5cf6fc88728c8e4b3b1dd9dc7144661a744b946ae1d10fb223c/djangocms_text_ckeditor-2.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a767ab286d11783e03753691188d305", "sha256": "35ae827954cdcd14bab21c4b487ab2e13e919a41607a4de8e4d7b1d8bc709b0c" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.9.3.tar.gz", "has_sig": false, "md5_digest": "7a767ab286d11783e03753691188d305", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1381672, "upload_time": "2016-04-28T01:14:36", "url": "https://files.pythonhosted.org/packages/5a/f3/e167c9fa75b1d9acab2d032eb0f39c8a3d3c668954147b24b309145b0e3c/djangocms-text-ckeditor-2.9.3.tar.gz" } ], "2.9.4": [ { "comment_text": "", "digests": { "md5": "1dcba29107d3e4b5b22a4e95e5fc11e8", "sha256": "89b5a99269a0dfb8abd13dec486ce9be8ec709e6f785c57b7673a602b7933589" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.9.4.tar.gz", "has_sig": false, "md5_digest": "1dcba29107d3e4b5b22a4e95e5fc11e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1345703, "upload_time": "2016-07-15T20:22:34", "url": "https://files.pythonhosted.org/packages/86/be/145090b7d1c73da8071916c016ef1043cb9966be0d44eee28be9a3419ecc/djangocms-text-ckeditor-2.9.4.tar.gz" } ], "2.9.5": [ { "comment_text": "", "digests": { "md5": "11793c9a999dd1af8901a0de5b5d0977", "sha256": "b3811894c2f65be773891b56b045405d056afb2b90f5bbf2e1270f36c73c0336" }, "downloads": -1, "filename": "djangocms_text_ckeditor-2.9.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "11793c9a999dd1af8901a0de5b5d0977", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1884454, "upload_time": "2016-08-01T21:27:06", "url": "https://files.pythonhosted.org/packages/e8/4a/e1ef8caa911d0ae4c931b71ad7f0e866b4123aa45cb6fe419c4922985c3e/djangocms_text_ckeditor-2.9.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e966b84d1c17db719a894223bc682e6", "sha256": "82ffcbb3962a8a566b28b82562590d50fd7f38d96a9b50a906aafa3cf98ee776" }, "downloads": -1, "filename": "djangocms-text-ckeditor-2.9.5.tar.gz", "has_sig": false, "md5_digest": "0e966b84d1c17db719a894223bc682e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1418011, "upload_time": "2016-08-01T21:26:59", "url": "https://files.pythonhosted.org/packages/57/a1/31feb27e70e3171ec62f613b32d96b89c564a5c00ba3407c7f76cb521b71/djangocms-text-ckeditor-2.9.5.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "1037539c5870c3edd64500451ee9f30e", "sha256": "dbb38d04de754ca5ae3a0db65ba5ca2e0f4d42618304abeddba49d74ee57576d" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.0.0.tar.gz", "has_sig": false, "md5_digest": "1037539c5870c3edd64500451ee9f30e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1383982, "upload_time": "2016-05-26T21:20:52", "url": "https://files.pythonhosted.org/packages/6a/24/941eb3404e59bf463c26e4081d6aae573a7bb70888f1fab3023a46700903/djangocms-text-ckeditor-3.0.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "696558e0ad60a392921ec127c4e1df3e", "sha256": "1db6c43bbf262caa1c749bd0ff8f8157eec1b35bfae11fd2a4732b060505402d" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "696558e0ad60a392921ec127c4e1df3e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1919756, "upload_time": "2016-07-15T08:53:05", "url": "https://files.pythonhosted.org/packages/54/34/9cad6abda1499a3d905b06037ca642bff376e367430d9ca49e382291bfd2/djangocms_text_ckeditor-3.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f02702e7cfbb4f500e0d6982e0ebbcf6", "sha256": "98d06b03675bd79b1a0b95f70bbec6b5b0fbfad07e2f49e30745f33a2c171700" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.0.1.tar.gz", "has_sig": false, "md5_digest": "f02702e7cfbb4f500e0d6982e0ebbcf6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1408572, "upload_time": "2016-07-15T08:52:51", "url": "https://files.pythonhosted.org/packages/e1/da/b4561d849f9672925f105438290f8992acf72d6f143a46bb559a736c371c/djangocms-text-ckeditor-3.0.1.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "61dcabcd5bf10345299b8eaae3905a66", "sha256": "a3caa2c32fa158eabc536fdfaf1d79d050fadcda9cd5abd7a937363b11c516e2" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "61dcabcd5bf10345299b8eaae3905a66", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1923994, "upload_time": "2016-08-18T12:42:52", "url": "https://files.pythonhosted.org/packages/e0/dd/7177bd1fa8430ade7da7e696f20a440a3d330be9bb15e66ed2aae7e1f92d/djangocms_text_ckeditor-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "234866622ca07b6680773413d69cbab9", "sha256": "ce0864ac099aabf19278917d7dbb4cf2c1dfe39750781eafd9906b57294cfb40" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.1.0.tar.gz", "has_sig": false, "md5_digest": "234866622ca07b6680773413d69cbab9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1412025, "upload_time": "2016-08-18T12:42:44", "url": "https://files.pythonhosted.org/packages/20/78/2b779723984c7bd6bbe3284cd8756b5095fbcafd4e9f0f4b47388e763a78/djangocms-text-ckeditor-3.1.0.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "286435b9329571edfdd826e388b531c5", "sha256": "2bee1ea030a2c75ca24d0d341ddee1848b98ce4b8bcf880bd9fdad3bc2918eb6" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "286435b9329571edfdd826e388b531c5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1924275, "upload_time": "2016-09-07T16:00:22", "url": "https://files.pythonhosted.org/packages/cb/6d/036872406669a06e03146d8643fea0c5073d80ebaebde30b12511ff34b9c/djangocms_text_ckeditor-3.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b77446c36b1c2da14a7c0241002559a", "sha256": "fc279017c284c3cd530913ead8de1fb35dbbf466badee4d64da7659f10525899" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.2.0.tar.gz", "has_sig": false, "md5_digest": "5b77446c36b1c2da14a7c0241002559a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1412344, "upload_time": "2016-09-07T16:00:14", "url": "https://files.pythonhosted.org/packages/f7/7b/1d8e42cf9d7d114ca67c2c1443daaffe224e7e39a86d6a1e3e667e682315/djangocms-text-ckeditor-3.2.0.tar.gz" } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "02f299ba2c2d47a23e65efe809866e44", "sha256": "567f853a78f359c231724f1c53f628f26676b7a15e9b5d6079941ff7a9446ea1" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "02f299ba2c2d47a23e65efe809866e44", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2120989, "upload_time": "2016-09-14T18:14:23", "url": "https://files.pythonhosted.org/packages/db/f0/10e0e7f4871c0d8859a117be625a71cbfc491bea8f5e3235dd1444428f1d/djangocms_text_ckeditor-3.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dec8f8dbf0697f1ba6068be113b77e5c", "sha256": "167a3bf3afdfe3a61f017f4454f05445f4094fad8a311e8f2fc7d1091ee43e64" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.2.1.tar.gz", "has_sig": false, "md5_digest": "dec8f8dbf0697f1ba6068be113b77e5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1606686, "upload_time": "2016-09-14T18:14:18", "url": "https://files.pythonhosted.org/packages/6d/f3/a067e5d8578a6e25dd77b71ad8c9549a4c64dc745f36ea178dbc04eedd22/djangocms-text-ckeditor-3.2.1.tar.gz" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "7461893cf58373a7027f1aad3beccc5a", "sha256": "1cab567b77e2f331105d578ed4ee208bfa592469862db506b7a93791baa19b40" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7461893cf58373a7027f1aad3beccc5a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2125360, "upload_time": "2016-10-04T18:41:59", "url": "https://files.pythonhosted.org/packages/15/ba/cbddee8af04ffe792df27134afeecd31d4529493bfbab7e7e1539115fd59/djangocms_text_ckeditor-3.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "955506ad75c82acd69515a96ee378247", "sha256": "f3bececc695ca6d35be6cd1c94eb98bb2b8aee45aef0db12607543a344647de3" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.3.0.tar.gz", "has_sig": false, "md5_digest": "955506ad75c82acd69515a96ee378247", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1611008, "upload_time": "2016-10-04T18:41:54", "url": "https://files.pythonhosted.org/packages/35/4e/dbe30e3a61e3241dc88fc1b40a055e79c7966f1c03f5636fd6131823e82c/djangocms-text-ckeditor-3.3.0.tar.gz" } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "80a3fbbfb03ca78a3987e3c41a189953", "sha256": "a952b2d5f657be18b5903101787226e3d9929e12cfe08a967f28580e10474b30" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "80a3fbbfb03ca78a3987e3c41a189953", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2125955, "upload_time": "2016-11-02T12:37:53", "url": "https://files.pythonhosted.org/packages/44/49/91faeeea2d0ce0aaccd604c7af643041a3b1e2b29064ece5762776397ea7/djangocms_text_ckeditor-3.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80c18c0d5b3b655a8de4d852cdcd5bd3", "sha256": "6c7bb0332734784afc5cfb75d63fb41c857dae567e9bcd5de71827633c1a3dc7" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.3.1.tar.gz", "has_sig": false, "md5_digest": "80c18c0d5b3b655a8de4d852cdcd5bd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1611710, "upload_time": "2016-11-02T12:37:49", "url": "https://files.pythonhosted.org/packages/e2/6b/49d4ee9dc1949243166397051d5349cf30d4bfc3280b043995417a4317d2/djangocms-text-ckeditor-3.3.1.tar.gz" } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "88a970b40685b117c12a2ff183dbf7a8", "sha256": "40fb2ac9e07317ee2eacf5f88ef966a7bacce461677e427b5510109d0fc5128e" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "88a970b40685b117c12a2ff183dbf7a8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2322725, "upload_time": "2017-01-23T23:41:25", "url": "https://files.pythonhosted.org/packages/88/4c/047cd4ce3ed5f934e1a22461ed72b2bab9bbb54a028a9481f71d6a483cb1/djangocms_text_ckeditor-3.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "53a05eed554826ec6ec705493dafa97a", "sha256": "9f7ebf25a5907df6cb80566244e8de7e6061fd1c2e30d946535302d397c471e3" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.4.0.tar.gz", "has_sig": false, "md5_digest": "53a05eed554826ec6ec705493dafa97a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1806780, "upload_time": "2017-01-23T23:41:20", "url": "https://files.pythonhosted.org/packages/f2/cc/5673c7f6ac591c7a4ae4fdcf04cfebfc2d97e87341789c199da21fe6dd7e/djangocms-text-ckeditor-3.4.0.tar.gz" } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "5f11c2aa93588e89ee464591dfc69f73", "sha256": "6e6beefa1586bca8278e31ad4396e88c9a7e54f13f7f119086be658ffb274446" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f11c2aa93588e89ee464591dfc69f73", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2470290, "upload_time": "2017-05-03T09:27:41", "url": "https://files.pythonhosted.org/packages/7b/f8/e555a4caa8dbfddb893eabe6e43e745fde0da65e4b33afd57f79776f1e38/djangocms_text_ckeditor-3.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0cc0e3a9e00ccf4f8a5bcee962bf074", "sha256": "e6d29ec5c41a8ee73c611f3724ab0419da8dfac3d4508694484acb28f5613b53" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.5.0.tar.gz", "has_sig": false, "md5_digest": "f0cc0e3a9e00ccf4f8a5bcee962bf074", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1903581, "upload_time": "2017-05-03T09:27:20", "url": "https://files.pythonhosted.org/packages/22/d7/7a2d09cc179affe1faf678a36a8c9ce2920ec12135fde73b7125308f69a9/djangocms-text-ckeditor-3.5.0.tar.gz" } ], "3.5.1": [ { "comment_text": "", "digests": { "md5": "3307073ffc7c1a72450a9ea761bcb4c5", "sha256": "9ca15edda90d94a48b4e2ecfd11381949a8912e5b6f60d1bc5d08fe166cbc770" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3307073ffc7c1a72450a9ea761bcb4c5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2466123, "upload_time": "2017-10-17T15:31:37", "url": "https://files.pythonhosted.org/packages/d9/0d/238ff6617eeb198eb3a4136d5ed0b77bf2951b40bf7c5c3136f1d7940c34/djangocms_text_ckeditor-3.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "37523625abcd0b73d29a6675b31db90f", "sha256": "cf08123b33396a4b2767b76bdb2cc8cd950beaff46d8d5ee1e4dc28509996ee7" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.5.1.tar.gz", "has_sig": false, "md5_digest": "37523625abcd0b73d29a6675b31db90f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1903122, "upload_time": "2017-10-17T15:31:33", "url": "https://files.pythonhosted.org/packages/e0/e0/f9322666331b2d454197aaf4b3a3bdaaded46d85a6bcbbfd9fc440f5198a/djangocms-text-ckeditor-3.5.1.tar.gz" } ], "3.5.3": [ { "comment_text": "", "digests": { "md5": "753de99355cf3d7ec22fbdbb235dd546", "sha256": "5bd39c0c9c430ad16fbc4e646bba45f615f6b01e5ea51bf35c84a8131b41fc0b" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "753de99355cf3d7ec22fbdbb235dd546", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 2088457, "upload_time": "2018-01-29T15:55:52", "url": "https://files.pythonhosted.org/packages/f8/7d/e46b2d5c35a3d4693528052274ab009f5a76f446ab3e43c2a6dc46602d29/djangocms_text_ckeditor-3.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8c2b0b42c64e731a3e3b523948143b45", "sha256": "a6f23df8647e3bb416d2ed4ce552896597741965faa37a80e201388a24e7ed36" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.5.3.tar.gz", "has_sig": false, "md5_digest": "8c2b0b42c64e731a3e3b523948143b45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1589290, "upload_time": "2018-01-29T15:55:47", "url": "https://files.pythonhosted.org/packages/00/cc/7a182baf877df01a10e729c7e9e6ea7acb00eea2b27898489370d71884e5/djangocms-text-ckeditor-3.5.3.tar.gz" } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "9836ae13429b06ba9e18bf6b9c70f030", "sha256": "9c129e294845a3b1237d69273afe478aadea3e862d1353c5dbc32711a75ad8b6" }, "downloads": -1, "filename": "djangocms_text_ckeditor-3.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9836ae13429b06ba9e18bf6b9c70f030", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2089438, "upload_time": "2018-04-11T14:09:33", "url": "https://files.pythonhosted.org/packages/fc/b1/33bf4b201808d66c576295e4f31f7951f7d4513b8b16cd222460c6a021de/djangocms_text_ckeditor-3.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "929b13a1dbcc71be5e6d4c96d1a19b1e", "sha256": "e9ef01569d7f7992a6eaf512731d1d6bf0915efb7485cb944624b92ce8d64f01" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.6.0.tar.gz", "has_sig": false, "md5_digest": "929b13a1dbcc71be5e6d4c96d1a19b1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1546848, "upload_time": "2018-04-11T14:09:29", "url": "https://files.pythonhosted.org/packages/c7/f0/6fcf72a5d759703e4dd2fc756c3f179038625a9cb9649e38109dea184104/djangocms-text-ckeditor-3.6.0.tar.gz" } ], "3.6.1": [ { "comment_text": "", "digests": { "md5": "811fec0b1d0fabc4d2c2c04ccf7a6f9b", "sha256": "d96a39062ad0d20f1cc2dc745594b8aafb2d5d1b9296d25739df1ab01439d8ff" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.6.1.tar.gz", "has_sig": false, "md5_digest": "811fec0b1d0fabc4d2c2c04ccf7a6f9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1586655, "upload_time": "2018-11-08T11:05:57", "url": "https://files.pythonhosted.org/packages/ef/20/8ed3671773d5a759c1d49ad474d573c173cefed286fe0f4efe37dc510e71/djangocms-text-ckeditor-3.6.1.tar.gz" } ], "3.7.0": [ { "comment_text": "", "digests": { "md5": "4752db3e0c86bbf5d54d22dddb441e55", "sha256": "583fe6bc858075278b927b4cac7e537b72071751b3ca35d2f60f3af18d6b42c7" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.7.0.tar.gz", "has_sig": false, "md5_digest": "4752db3e0c86bbf5d54d22dddb441e55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1586676, "upload_time": "2018-12-05T13:32:42", "url": "https://files.pythonhosted.org/packages/b1/2a/40881dc1f2bff431901ae6d83cdb0ef5e4321ef1abb98bb93fc6f9473670/djangocms-text-ckeditor-3.7.0.tar.gz" } ], "3.8.0": [ { "comment_text": "", "digests": { "md5": "99561b3d54bb145eb22655b7a3ac4dd0", "sha256": "0f0291cdf305c469741a639d89c71ee77f29dfc5aada4f7a453d6dc2926ceca9" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.8.0.tar.gz", "has_sig": false, "md5_digest": "99561b3d54bb145eb22655b7a3ac4dd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1535643, "upload_time": "2019-05-23T15:18:37", "url": "https://files.pythonhosted.org/packages/f6/23/7859d1a25c36fe24f2f407ae32c88039856cd4c0a354621c88b8a13d6890/djangocms-text-ckeditor-3.8.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "99561b3d54bb145eb22655b7a3ac4dd0", "sha256": "0f0291cdf305c469741a639d89c71ee77f29dfc5aada4f7a453d6dc2926ceca9" }, "downloads": -1, "filename": "djangocms-text-ckeditor-3.8.0.tar.gz", "has_sig": false, "md5_digest": "99561b3d54bb145eb22655b7a3ac4dd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1535643, "upload_time": "2019-05-23T15:18:37", "url": "https://files.pythonhosted.org/packages/f6/23/7859d1a25c36fe24f2f407ae32c88039856cd4c0a354621c88b8a13d6890/djangocms-text-ckeditor-3.8.0.tar.gz" } ] }