{ "info": { "author": "Melfi Silver", "author_email": "diveru4i@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python" ], "description": "Wagtail Redactor\n========================\n\nFork of [django-wysiwyg-redactor](https://github.com/douglasmiranda/django-wysiwyg-redactor), that works with WagtailCMS.\n\n## Requirements\n\n- wagtail>=1.5\n\nThis package comes with [Codemirror](https://codemirror.net/)\n\n## What's inside\n\n- wagtail_redactor.fields.RedactorField - Django field\n- wagtail_redactor.blocks.RedactorFieldBlock - Wagtail StreamField block\n\n## Quick start\n\n* Install:\n ```\n pip install -e git+https://github.com/diveru4i/wagtail-redactor.git#egg=wagtail_redactor\n ```\n* Add \"wagtail_redactor\" to your INSTALLED_APPS\n ```python\n INSTALLED_APPS = (\n ...\n 'wagtail_redactor',\n ...\n\n )\n ```\n*. Add url(r'^redactor/', include(wagtail_redactor.urls)), to urls.py\n```python\nimport wagtail_redactor.urls\n\nurlpatterns = [\n # ...\n url(r'^redactor/', include(wagtail_redactor.urls)),\n # ...\n]\n```\n* Add default config in settings.py\n```python\nREDACTOR_OPTIONS = {'lang': 'en'}\nREDACTOR_UPLOAD = 'uploads/'\nFILE_UPLOAD_PERMISSIONS = 0644\n```\n* If you wish to use RedactorFieldBlock as part of a more complex StreamField block, you should add ```icon-redactor``` to it's Meta:\n```python\nclass MoreComplexBlock(blocks.StructBlock):\n title = blocks.CharBlock()\n text = RedactorFieldBlock(label=u'Text', required=False)\n\n class Meta:\n icon = 'pick icon-redactor'\n```\n\n## Documentation\n - [WagtailCMS](https://github.com/torchbox/wagtail)\n - [django-wysiwyg-redactor](https://github.com/douglasmiranda/django-wysiwyg-redactor)\n - [Imperavi Redactor](http://imperavi.com/redactor/)", "description_content_type": null, "docs_url": null, "download_url": null, "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/diveru4i/wagtail-redactor", "keywords": "django,admin,wysiwyg,editor,redactor,redactorjs,wagtail,wagtailcms", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "wagtail-redactor", "package_url": "https://pypi.org/project/wagtail-redactor/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/wagtail-redactor/", "project_urls": { "Homepage": "https://github.com/diveru4i/wagtail-redactor" }, "release_url": "https://pypi.org/project/wagtail-redactor/0.5.1/", "requires_dist": null, "requires_python": null, "summary": "Imperavi Redactor for WagtailCMS", "version": "0.5.1" }, "last_serial": 2421553, "releases": { "0.5": [], "0.5.1": [] }, "urls": [] }