{
"info": {
"author": "Douglas Miranda",
"author_email": "douglasmirandasilva@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
],
"description": "A lightweight wysiwyg editor for Django\n=======================================\n\nScreenshot\n----------\n\n.. image:: https://raw.githubusercontent.com/douglasmiranda/django-wysiwyg-redactor/master/screenshots/redactor.jpg\n\nWhat's that\n-----------------\n\n*django-wysiwyg-redactor* is a text editor application for Django, using `Redactor WYSIWYG editor `_\n\nDependency\n----------\n\n- `Pillow or PIL` # for image upload\n\nGetting started\n---------------\n\n- Install *django-wysiwyg-redactor*:\n\n``pip install django-wysiwyg-redactor``\n\n- Add `'redactor'` to INSTALLED_APPS.\n\n.. code-block:: python\n\n INSTALLED_APPS = (\n # ...\n 'redactor',\n # ...\n )\n\n- Add `url(r'^redactor/', include('redactor.urls'))`, to urls.py\n\n.. code-block:: python\n\n urlpatterns = [\n # ...\n url(r'^redactor/', include('redactor.urls')),\n # ...\n ]\n\n\n- Add default config in settings.py\n\n.. code-block:: python\n\n REDACTOR_OPTIONS = {'lang': 'en'}\n REDACTOR_UPLOAD = 'uploads/'\n\nMore `redactor settings `_.\n\nUsing in model\n--------------\n\n.. code-block:: python\n\n from django.db import models\n from redactor.fields import RedactorField\n\n class Entry(models.Model):\n title = models.CharField(max_length=250, verbose_name=u'Title')\n short_text = RedactorField(verbose_name=u'Text')\n\nor use custom parameters:\n\n.. code-block:: python\n\n short_text = RedactorField(\n verbose_name=u'Text',\n redactor_options={'lang': 'en', 'focus': True},\n upload_to='tmp/',\n allow_file_upload=True,\n allow_image_upload=True\n )\n\nUsing only in Django Admin\n--------------------------\n\n.. code-block:: python\n\n from django import forms\n from redactor.widgets import RedactorEditor\n from blog.models import Entry\n\n class EntryAdminForm(forms.ModelForm):\n class Meta:\n model = Entry\n widgets = {\n 'short_text': RedactorEditor(),\n }\n\n class EntryAdmin(admin.ModelAdmin):\n form = EntryAdminForm\n\n`RedactorEditor` takes the same parameters as `RedactorField`.\n\nUsing Plugins\n-------------\n`Download `_ the plugin you want or `create a custom plugin `_.\n\nThen:\n\n.. code-block:: python\n\n from django.db import models\n from redactor.fields import RedactorField\n\n class Entry(models.Model):\n title = models.CharField(max_length=250, verbose_name=u'Title')\n short_text = RedactorField(\n verbose_name=u'Text',\n # for example, if you downloaded the 'table' plugin:\n redactor_options={'plugins': ['table']}\n )\n\nOR (on settings.py):\n\n.. code-block:: python\n\n REDACTOR_OPTIONS = {'lang': 'en', 'plugins': ['table']}\n\nImportant: if you set a plugin called \"table\", you must create/paste the \"table.js\" on **YOUR_STATIC_FILES_FOLDER/redactor/plugins/table.js**\n\nUpload Handlers\n---------------\nSimpleUploader - The Standard Uploader. Will upload your file to REDACTOR_UPLOAD.\n\nUUIDUploader - This handler will replace the original file name for an UUID.\n\nDateDirectoryUploader - This handler saves the file in a directory based on the current server date.\n\nUsage:\n\nFor example, if I want to use the DateDirectoryUploader handler, I will put this on settings.py:\n\n.. code-block:: python\n\n REDACTOR_UPLOAD_HANDLER = 'redactor.handlers.DateDirectoryUploader'\n\nUpload permissions\n------------------\nBy default django-wysiwyg-redactor uses `staff_member_required` decorator from\n`django.contrib.admin.views.decorators` package to control access to dispatch\nmethod.\n\nTo use custom authentication decorator, set `REDACTOR_AUTH_DECORATOR` to\nanything else, eg. if every authenticated user should have permissions to\nupload files/images/etc.:\n\n.. code-block:: python\n\n REDACTOR_AUTH_DECORATOR = 'django.contrib.auth.decorators.login_required'\n\nFile Storages\n-------------\n*django-wysiwyg-redactor* defaults to using the default media storage for your Django application.\n\nThis can be overridden to use a different storage backend with this settings.py variable:\n\n.. code-block::\n\n REDACTOR_FILE_STORAGE = 'my_site.file_storages.StorageClass'\n\nInformation on writing a custom storage backend is `here in the Django documentation `_.\n\nOther third-party libraries exist to provide storage backends for cloud object storages (e.g. `django-cumulus `_ for Rackspace/OpenStack or `django-storages `_ for Amazon S3). For example, following should be enough to store all your files and images to Amazon S3, even if the rest of the application uses different storage.\n\n.. code-block:: python\n\n REDACTOR_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'\n AWS_ACCESS_KEY_ID = '...'\n AWS_SECRET_ACCESS_KEY = '...'\n AWS_STORAGE_BUCKET_NAME = '...'\n\n\nNOTE: Soon we will have a better documentation.\n\nContributing\n------------\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request =]\n\nMade by robots, or what?\n------------------------\nAwesome people, you should see the `AUTHORS `_ file.\n\nAbout the licensing\n-------------------\nYou may want to see the `LICENSE `_ file.",
"description_content_type": null,
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/douglasmiranda/django-wysiwyg-redactor",
"keywords": "django,admin,wysiwyg,editor,redactor,redactorjs",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "django-wysiwyg-redactor",
"package_url": "https://pypi.org/project/django-wysiwyg-redactor/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/django-wysiwyg-redactor/",
"project_urls": {
"Homepage": "https://github.com/douglasmiranda/django-wysiwyg-redactor"
},
"release_url": "https://pypi.org/project/django-wysiwyg-redactor/0.5.1/",
"requires_dist": [
"setuptools"
],
"requires_python": "",
"summary": "django-wysiwyg-redactor is a lightweight responsive wysiwyg editor for Django",
"version": "0.5.1"
},
"last_serial": 2746594,
"releases": {
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "56c552aefd0c85ce515b25d59ba7d881",
"sha256": "2ee40565799f3fe97de0f4fd1e1569a08097ddb0f248101dae2c67f469abc5f5"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "56c552aefd0c85ce515b25d59ba7d881",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 108703,
"upload_time": "2012-12-11T04:09:33",
"url": "https://files.pythonhosted.org/packages/f8/fb/0bd5961f680be1444fa73bd2b47ddaf03f677ab163abd3888711b556ad8a/django-wysiwyg-redactor-0.3.0.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "fa32b1f61e12a0761c64c591450aa9fb",
"sha256": "359664b45c00f66d2744e7b54296a902640b63396087476b732f056be23997fb"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "fa32b1f61e12a0761c64c591450aa9fb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 93778,
"upload_time": "2013-03-07T04:44:51",
"url": "https://files.pythonhosted.org/packages/3c/28/a41ed9a092925f742bb4d8597f124cf8679b730477d7ac15bef16e5f71cf/django-wysiwyg-redactor-0.3.1.tar.gz"
}
],
"0.3.2": [
{
"comment_text": "",
"digests": {
"md5": "5a5f233c3e58d3efa79dee1b625e598e",
"sha256": "2a01bd78acedee37d79b99981f73505947af64643cb5a6f26982def84ed7261a"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "5a5f233c3e58d3efa79dee1b625e598e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 94006,
"upload_time": "2013-04-14T03:53:11",
"url": "https://files.pythonhosted.org/packages/11/42/f5fcefdda77685b99ffbedc97fcddd64b6e854a1e6a7ae7e8d3d5d0fb32f/django-wysiwyg-redactor-0.3.2.tar.gz"
}
],
"0.3.3": [
{
"comment_text": "",
"digests": {
"md5": "c3fe0e7fa9536bb66656f1418ba7e8a8",
"sha256": "ebf3bc815e73fa25c962802cafa309f1151da9fedab4d6872a7ad354a207f3e3"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.3.tar.gz",
"has_sig": false,
"md5_digest": "c3fe0e7fa9536bb66656f1418ba7e8a8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 93986,
"upload_time": "2013-05-03T04:40:21",
"url": "https://files.pythonhosted.org/packages/5b/a5/e1a87f20116e23aa5c2c524d28466a6e677165f1ec4448c44a5f70010bcf/django-wysiwyg-redactor-0.3.3.tar.gz"
}
],
"0.3.4": [
{
"comment_text": "",
"digests": {
"md5": "5fccac29efb3e3bf38001c6fa4b7c521",
"sha256": "a77e4567405125c16db5a2ba587fddcf3f4976f008ab5a929af7b43a60b3bf75"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.4.tar.gz",
"has_sig": false,
"md5_digest": "5fccac29efb3e3bf38001c6fa4b7c521",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 94122,
"upload_time": "2013-06-14T04:09:28",
"url": "https://files.pythonhosted.org/packages/89/23/13997a0b750f839d7ff7e224823202cb6b15477d9d568f3b283419a30a4a/django-wysiwyg-redactor-0.3.4.tar.gz"
}
],
"0.3.5": [
{
"comment_text": "",
"digests": {
"md5": "79f23cc7c5a834d7e56be492610e3c34",
"sha256": "2bbf534dc6e7f854e2661c0182536a0eaff2e7261085d00373ba2404f1ce47be"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.5.tar.gz",
"has_sig": false,
"md5_digest": "79f23cc7c5a834d7e56be492610e3c34",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 94247,
"upload_time": "2013-06-26T17:14:53",
"url": "https://files.pythonhosted.org/packages/11/9d/c2eb30055de6ac3b5f2b01703efa18fa71bd7fac795125a9c77fd73ed7e0/django-wysiwyg-redactor-0.3.5.tar.gz"
}
],
"0.3.6": [
{
"comment_text": "",
"digests": {
"md5": "272e91333bb865e9841e070d986616ac",
"sha256": "732db52f71522c475f30aeb9911f9ef0b828cc8a2e0e24b452fefaa50c4b3070"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.6.tar.gz",
"has_sig": false,
"md5_digest": "272e91333bb865e9841e070d986616ac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 93614,
"upload_time": "2013-08-12T07:13:36",
"url": "https://files.pythonhosted.org/packages/ee/ed/0b6b339e950b1e918af872c2cb1c38207737c248f0e9db7b0e81c5fb2f61/django-wysiwyg-redactor-0.3.6.tar.gz"
}
],
"0.3.7": [
{
"comment_text": "",
"digests": {
"md5": "f849a0792985badd9c0d80e330af14b6",
"sha256": "4e12c826390ae16b202e00e05ca2605976699c1c072922100262fdcd9e86251f"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.7.tar.gz",
"has_sig": false,
"md5_digest": "f849a0792985badd9c0d80e330af14b6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 92869,
"upload_time": "2013-10-27T05:49:55",
"url": "https://files.pythonhosted.org/packages/7d/33/e637319341efdb30cdf833138159076847c2c3732759ddcb9f1776d19fa1/django-wysiwyg-redactor-0.3.7.tar.gz"
}
],
"0.3.8": [
{
"comment_text": "",
"digests": {
"md5": "bf2b6cd470775c1d28425ba4fd17e108",
"sha256": "8aaa757f0fb6ff9fab472b3dc90611982c72443f3650d7b98044c6ccae12e17d"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.8.tar.gz",
"has_sig": false,
"md5_digest": "bf2b6cd470775c1d28425ba4fd17e108",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 93083,
"upload_time": "2013-11-16T18:16:45",
"url": "https://files.pythonhosted.org/packages/43/b0/7cb6fb5139845c8839250065c4604ad960f43ef266a5f37bea15948ae240/django-wysiwyg-redactor-0.3.8.tar.gz"
}
],
"0.3.8.1": [
{
"comment_text": "",
"digests": {
"md5": "70b8cfec1cffc0ffea8a4f737218b903",
"sha256": "110d192947c4004d2bf37eb4b6c74097bba5a88539a9d6b6ea02c93cb308fa0d"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.8.1.tar.gz",
"has_sig": false,
"md5_digest": "70b8cfec1cffc0ffea8a4f737218b903",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 94203,
"upload_time": "2014-02-13T18:23:25",
"url": "https://files.pythonhosted.org/packages/68/3d/ad94a297b87f59f57e1adde47b07337bfbb55526a8d54a88576f20b76842/django-wysiwyg-redactor-0.3.8.1.tar.gz"
}
],
"0.3.8.2": [
{
"comment_text": "",
"digests": {
"md5": "d6604266a92b4203cb798c720b813600",
"sha256": "258955da2292d5c4c3a2349aa2c837ad4c11a1676700f0651c60216b4ade637b"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.8.2.tar.gz",
"has_sig": false,
"md5_digest": "d6604266a92b4203cb798c720b813600",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 94466,
"upload_time": "2014-02-14T22:46:07",
"url": "https://files.pythonhosted.org/packages/b9/cb/3fb4e1f6f67f75dfda474ac701839a128236bbbf05e37fc4d3d714d75b46/django-wysiwyg-redactor-0.3.8.2.tar.gz"
}
],
"0.3.9": [
{
"comment_text": "",
"digests": {
"md5": "84427393dbae934680116707ffe7dfe2",
"sha256": "ec6a000714313f29a364ff398262f8e40b1f00df180a951e9b0c0ad85bb5b73c"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.9.tar.gz",
"has_sig": false,
"md5_digest": "84427393dbae934680116707ffe7dfe2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 95981,
"upload_time": "2014-03-29T20:13:43",
"url": "https://files.pythonhosted.org/packages/8b/10/58c9e4c77967fafbe8840242bf26c12c0fd8f6dc21f302f9bf30b63c6cc8/django-wysiwyg-redactor-0.3.9.tar.gz"
}
],
"0.3.9.1": [
{
"comment_text": "",
"digests": {
"md5": "aeedba540ddee5a191104d26739cc8a4",
"sha256": "ca04a7831bd11b6f4024955d589da8e50babae82439410425d909cc86a96b31f"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.3.9.1.tar.gz",
"has_sig": false,
"md5_digest": "aeedba540ddee5a191104d26739cc8a4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 94405,
"upload_time": "2014-06-06T16:56:34",
"url": "https://files.pythonhosted.org/packages/06/8a/2c59366e5ef3189479e80330f4c43de582c6b913bdd733ff999e227e69f4/django-wysiwyg-redactor-0.3.9.1.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "25b016337674463ee7bf9e3495538c48",
"sha256": "0db53495f3eacdbb01d25e5dd16ff9f507606a15f98dd04cfd62e5aa16f81904"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "25b016337674463ee7bf9e3495538c48",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 147579,
"upload_time": "2014-09-11T22:08:08",
"url": "https://files.pythonhosted.org/packages/96/53/c6156b7a8f0106d8a41c8b58c85ad9601e2224b1319bcd524e88bb28a3e9/django-wysiwyg-redactor-0.4.0.tar.gz"
}
],
"0.4.1": [
{
"comment_text": "",
"digests": {
"md5": "3f593ab6c9f6f284623591deb879bc08",
"sha256": "5caaf02e8a5360ee892df132079c2d2d80159125ae0d4ce12f7d334bc116d14d"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.1.tar.gz",
"has_sig": false,
"md5_digest": "3f593ab6c9f6f284623591deb879bc08",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 282103,
"upload_time": "2014-10-21T15:46:56",
"url": "https://files.pythonhosted.org/packages/9b/e5/dafa2c7746f9d037758e480cd90debf20d6b4fc3ff721f386e34ef0a73b5/django-wysiwyg-redactor-0.4.1.tar.gz"
}
],
"0.4.2": [
{
"comment_text": "",
"digests": {
"md5": "8370f8e86033424c82cc5efbc7229def",
"sha256": "7356905d2d3d4a1df867f97d1076d0fa073a8ab2984c933f5bb4141a33d7e92e"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.2.tar.gz",
"has_sig": false,
"md5_digest": "8370f8e86033424c82cc5efbc7229def",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 282256,
"upload_time": "2014-11-06T05:41:58",
"url": "https://files.pythonhosted.org/packages/30/a0/04d0fb9ba088c21eaea5926f894a470da92a8807f64b9ff4a32592ddbad0/django-wysiwyg-redactor-0.4.2.tar.gz"
}
],
"0.4.2.1": [
{
"comment_text": "",
"digests": {
"md5": "9fb03917afa27c8d837a389079e23fea",
"sha256": "28d02ba4718c72923e3b1a2a12aecea89fd7d81f34e0d3b421d1493f502505f4"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.2.1.tar.gz",
"has_sig": false,
"md5_digest": "9fb03917afa27c8d837a389079e23fea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 142827,
"upload_time": "2014-11-06T16:19:54",
"url": "https://files.pythonhosted.org/packages/9e/34/380bfa0df70c62cbf0ad208ff8325bfc434301c384e26d3702058c1c81b5/django-wysiwyg-redactor-0.4.2.1.tar.gz"
}
],
"0.4.3": [
{
"comment_text": "",
"digests": {
"md5": "4ba9e4884409b998815eca27f733d533",
"sha256": "cd7ee0287b4473c7f7fd5401626ab399702933c1aca1e41ee1371d9dde3537b2"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.3.tar.gz",
"has_sig": false,
"md5_digest": "4ba9e4884409b998815eca27f733d533",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 156788,
"upload_time": "2014-12-10T20:30:19",
"url": "https://files.pythonhosted.org/packages/c3/2f/5e99d344f3f6f01e2f5d108129a4e8a739441627a5ccf99cf696f0786507/django-wysiwyg-redactor-0.4.3.tar.gz"
}
],
"0.4.3.1": [
{
"comment_text": "",
"digests": {
"md5": "d9d82cd806965f8cadff07b0571c19f1",
"sha256": "315b0cc1826e142a69221dd877694ee49dd2f8a2e4615c90e64868996c0ba512"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.3.1.tar.gz",
"has_sig": false,
"md5_digest": "d9d82cd806965f8cadff07b0571c19f1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 156793,
"upload_time": "2014-12-15T13:59:27",
"url": "https://files.pythonhosted.org/packages/5f/59/b1b8e8754ed7b6bc670a7c5170d2d206fa90100222ecb171c2add6673d6e/django-wysiwyg-redactor-0.4.3.1.tar.gz"
}
],
"0.4.3.2": [
{
"comment_text": "",
"digests": {
"md5": "e5ff6c800f811bc63c95866902ee9301",
"sha256": "25f2f4c85bd0844326deb5c88108345c0632e8eb047493f251881532052313ad"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.3.2.tar.gz",
"has_sig": false,
"md5_digest": "e5ff6c800f811bc63c95866902ee9301",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 156858,
"upload_time": "2014-12-19T15:51:03",
"url": "https://files.pythonhosted.org/packages/92/3e/4cd49d086caea5bebc80259ea15ecd12d3dc852320191eb905bab57c2943/django-wysiwyg-redactor-0.4.3.2.tar.gz"
}
],
"0.4.4": [
{
"comment_text": "",
"digests": {
"md5": "9bc75a46ed2b43b363e2b6ebce09a009",
"sha256": "27b477afba2a3fd3a1e326715ce68bd02f59a85b112ad17c2c1de5c5ae3d0c79"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.4.tar.gz",
"has_sig": false,
"md5_digest": "9bc75a46ed2b43b363e2b6ebce09a009",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 160489,
"upload_time": "2015-01-04T21:58:25",
"url": "https://files.pythonhosted.org/packages/0e/77/8e8ea331ebb61d62b0a9739917ffe1aa4e16511fc6a35bf210b1dfe06b0f/django-wysiwyg-redactor-0.4.4.tar.gz"
}
],
"0.4.4.1": [
{
"comment_text": "",
"digests": {
"md5": "2e42e5e1ee10f0f610ce56caf4dd148f",
"sha256": "b69bd9cc2410dba77fa6e7504a031738fde37db466a75b56893e537f396605fa"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.4.1.tar.gz",
"has_sig": false,
"md5_digest": "2e42e5e1ee10f0f610ce56caf4dd148f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 160543,
"upload_time": "2015-01-06T02:30:13",
"url": "https://files.pythonhosted.org/packages/de/f9/ac6377b475a4d5e4e9aaadb8570d19e85157bab68838b52808ea818668cb/django-wysiwyg-redactor-0.4.4.1.tar.gz"
}
],
"0.4.5": [
{
"comment_text": "",
"digests": {
"md5": "ff9318f7fa88930d7dc18f1cca47a97e",
"sha256": "d85bb52e8627666560f3d4df4aa02826365c2b2fcdcb188eb839463fe5369b7b"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.5.tar.gz",
"has_sig": false,
"md5_digest": "ff9318f7fa88930d7dc18f1cca47a97e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 163128,
"upload_time": "2015-02-18T19:46:13",
"url": "https://files.pythonhosted.org/packages/c8/6d/26d03d6a45febb5a592f18f1459d6832e401026e7dd7e02459a07613e244/django-wysiwyg-redactor-0.4.5.tar.gz"
}
],
"0.4.5.1": [
{
"comment_text": "",
"digests": {
"md5": "baf036bce7634265e77ebda60311eddc",
"sha256": "639b3f7d61affc11fc3e6b4ba1a730148bbb2f34a85462c3c5c3a3643cadbf52"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.5.1.tar.gz",
"has_sig": false,
"md5_digest": "baf036bce7634265e77ebda60311eddc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 163432,
"upload_time": "2015-03-18T04:10:03",
"url": "https://files.pythonhosted.org/packages/47/f4/dba197f809cf5d29dc9a2bfcf7225bf763300d5b66dd4a768438ed35fa1e/django-wysiwyg-redactor-0.4.5.1.tar.gz"
}
],
"0.4.6": [
{
"comment_text": "",
"digests": {
"md5": "de0b86f19e1c3023524e7d497e30ad4f",
"sha256": "1e12a68862c7e4c682c9e64a5dd1acbee885b5b5e588c48b9ce1ee5d2d7e56c5"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.6.tar.gz",
"has_sig": false,
"md5_digest": "de0b86f19e1c3023524e7d497e30ad4f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 164856,
"upload_time": "2015-04-30T05:44:41",
"url": "https://files.pythonhosted.org/packages/20/a7/de0e94f7d3550f048f3ff51b83438504abc12fc59a95aab737926204263a/django-wysiwyg-redactor-0.4.6.tar.gz"
}
],
"0.4.7": [
{
"comment_text": "",
"digests": {
"md5": "b580cb5822166bf412b5333e7e59b6d6",
"sha256": "744fdc191f1c5eeb453d6570c1eab5fd0de8dd1830188c2c717c380f6f96980f"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.7.tar.gz",
"has_sig": false,
"md5_digest": "b580cb5822166bf412b5333e7e59b6d6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 165146,
"upload_time": "2015-05-01T21:43:14",
"url": "https://files.pythonhosted.org/packages/70/89/353acb7ac139aec7131efdb7f099f4eeeb2800735ae00aeb84f15856ed6f/django-wysiwyg-redactor-0.4.7.tar.gz"
}
],
"0.4.8": [
{
"comment_text": "",
"digests": {
"md5": "8f1bab9284c4f7d5d98b9e24abc90b15",
"sha256": "5b0f52c30766958d942a2725407d1c78b59fef1d8ab32d9cd5fb812f59910997"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.8.tar.gz",
"has_sig": false,
"md5_digest": "8f1bab9284c4f7d5d98b9e24abc90b15",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 168308,
"upload_time": "2015-06-18T07:18:14",
"url": "https://files.pythonhosted.org/packages/83/72/82659eb972cca92160243ecb451a6c7be4ddbf04601ca17ccfa673c94fa9/django-wysiwyg-redactor-0.4.8.tar.gz"
}
],
"0.4.8.1": [
{
"comment_text": "",
"digests": {
"md5": "1b5c7c31eb846529cea2e0a3ee766e50",
"sha256": "eb91e94c5e75d14fb1b8f21c702680ca0d06f5210bcac1bc1f39e6255e4dcaa0"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.8.1.tar.gz",
"has_sig": false,
"md5_digest": "1b5c7c31eb846529cea2e0a3ee766e50",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 168328,
"upload_time": "2015-06-18T20:31:31",
"url": "https://files.pythonhosted.org/packages/79/ee/5ffb5e6eac24f18bc6307f76b73afc2b5a66bf279d0a5670a799b881d63e/django-wysiwyg-redactor-0.4.8.1.tar.gz"
}
],
"0.4.9": [
{
"comment_text": "",
"digests": {
"md5": "fdf78006c47bab7ad83b3a7ab71e79c7",
"sha256": "79d8c45d67bc40f1e33567a440c8ffeeb89dc3f3e35278cf1f3fa85c11295b98"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.9.tar.gz",
"has_sig": false,
"md5_digest": "fdf78006c47bab7ad83b3a7ab71e79c7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 162228,
"upload_time": "2015-08-02T21:56:42",
"url": "https://files.pythonhosted.org/packages/71/23/9b28609666dc46ffc005f157656b3ed843ba14f97f6e0c310084bdcec814/django-wysiwyg-redactor-0.4.9.tar.gz"
}
],
"0.4.9.1": [
{
"comment_text": "",
"digests": {
"md5": "83572319fcea7d0f8af3906779a7048c",
"sha256": "5467ac1a180fd9386787a8fb6cfe0bd0eb4f89045a1adb2a3ebbacfd9b9a3b8e"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.4.9.1.tar.gz",
"has_sig": false,
"md5_digest": "83572319fcea7d0f8af3906779a7048c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 168128,
"upload_time": "2016-08-31T05:45:18",
"url": "https://files.pythonhosted.org/packages/31/ea/a33a3089d5f6cddd7ac74f22cddf3c3b277704ea36861d54e375a1a1c1fa/django-wysiwyg-redactor-0.4.9.1.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "c0dfaebe2a126118246d6427351ce6b2",
"sha256": "b4fca47e8f0db62788cd1f4c6cfb02e83de9d83b2dd710b6010a9aeab48041a1"
},
"downloads": -1,
"filename": "django_wysiwyg_redactor-0.5.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "c0dfaebe2a126118246d6427351ce6b2",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 168395,
"upload_time": "2017-03-03T05:03:02",
"url": "https://files.pythonhosted.org/packages/ba/d5/f92b401ff4ae97611d0ea3694b06f196c7223b4f4d20f55aadb044437d62/django_wysiwyg_redactor-0.5.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5abe2bfd5417c7c29f75718e45788634",
"sha256": "2043e181f16ce3e52e32e8fd5993752db6535e47aa997ea2da98b72121896c4e"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "5abe2bfd5417c7c29f75718e45788634",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 152370,
"upload_time": "2017-03-03T05:03:05",
"url": "https://files.pythonhosted.org/packages/75/5e/465e014b993a7e6d08e8a0f104cec9b9b0f8bb7d9287f114d77a63edc775/django-wysiwyg-redactor-0.5.0.tar.gz"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "0359158a658292b55e0498414aebe4c5",
"sha256": "f4dfa3c7e471ff8a9ec38049fdfadbd8ebc6f0b35585fd0ce596707733e66854"
},
"downloads": -1,
"filename": "django_wysiwyg_redactor-0.5.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "0359158a658292b55e0498414aebe4c5",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 167800,
"upload_time": "2017-04-01T21:45:37",
"url": "https://files.pythonhosted.org/packages/b4/b3/c79fdf7a1cfe3c07f53e6926cf28f16896733d027df813208f83940eb7eb/django_wysiwyg_redactor-0.5.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "05c4f5717c9a269c9bb2f96f3092ab64",
"sha256": "03c8ecca077d191cd030a3e59144f43de901c9b855347c27c96332e6ec904736"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "05c4f5717c9a269c9bb2f96f3092ab64",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 151978,
"upload_time": "2017-04-01T21:45:39",
"url": "https://files.pythonhosted.org/packages/da/9c/a80ab754b0adf5484df8066b78d07fd8a3c8e35e99b38fc2f44b1838d70b/django-wysiwyg-redactor-0.5.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "0359158a658292b55e0498414aebe4c5",
"sha256": "f4dfa3c7e471ff8a9ec38049fdfadbd8ebc6f0b35585fd0ce596707733e66854"
},
"downloads": -1,
"filename": "django_wysiwyg_redactor-0.5.1-py2-none-any.whl",
"has_sig": false,
"md5_digest": "0359158a658292b55e0498414aebe4c5",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 167800,
"upload_time": "2017-04-01T21:45:37",
"url": "https://files.pythonhosted.org/packages/b4/b3/c79fdf7a1cfe3c07f53e6926cf28f16896733d027df813208f83940eb7eb/django_wysiwyg_redactor-0.5.1-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "05c4f5717c9a269c9bb2f96f3092ab64",
"sha256": "03c8ecca077d191cd030a3e59144f43de901c9b855347c27c96332e6ec904736"
},
"downloads": -1,
"filename": "django-wysiwyg-redactor-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "05c4f5717c9a269c9bb2f96f3092ab64",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 151978,
"upload_time": "2017-04-01T21:45:39",
"url": "https://files.pythonhosted.org/packages/da/9c/a80ab754b0adf5484df8066b78d07fd8a3c8e35e99b38fc2f44b1838d70b/django-wysiwyg-redactor-0.5.1.tar.gz"
}
]
}