Metadata-Version: 2.0
Name: zinnia-wysiwyg-tinymce
Version: 1.3
Summary: TinyMCE for editing entries in django-blog-zinnia
Home-page: https://github.com/django-blog-zinnia/zinnia-wysiwyg-tinymce
Author: Fantomas42
Author-email: fantomas42@gmail.com
License: BSD License
Keywords: django,zinnia,wysiwyg,tinymce
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: django-tinymce
Requires-Dist: sorl-thumbnail

======================
zinnia-wysiwyg-tinymce
======================

Zinnia-wysiwyg-tinymce is a package allowing you to edit your entries
with `TinyMCE`_, including a dedicated filebrowser plugin.

Installation
============

* Install the package on your system: ::

  $ pip install zinnia-wysiwyg-tinymce

  `django-tinymce`_ and `sorl-thumbnail`_ will also be installed as
  dependencies if they are not already present on the system.

* Install and configure in your project django-tinymce and sorl-thumbnail
  accordingly to their documentation:

  - http://django-tinymce.readthedocs.org/en/latest/installation.html
  - http://sorl-thumbnail.readthedocs.org/en/latest/installation.html

* Register the ``'zinnia_tinymce'`` in your ``INSTALLED_APPS`` after the
  ``'zinnia'`` application.

* Include this URLset into your project's urls.py: ::

    url(r'^tinymce/zinnia/', include('zinnia_tinymce.urls')),

* Run the ``syncdb`` or ``migrate`` command.

* You are done !

TinyMCE can be customized by overriding the
``admin/zinnia/entry/tinymce_textareas.js`` template.

.. _TinyMCE: http://www.tinymce.com/
.. _django-tinymce: https://github.com/aljosa/django-tinymce
.. _sorl-thumbnail: https://github.com/mariocesar/sorl-thumbnail


