Metadata-Version: 1.1
Name: django-tinymce4-lite
Version: 1.3.2
Summary: A Django application that provides a fully functional TinyMCE 4 editor widget for models and forms.
Home-page: https://github.com/romanvm/django-tinymce4-lite
Author: Roman Miroshnychenko (fork author)
Author-email: romanvm@yandex.ua
License: MIT License
Description: django-tinymce4-lite
        ====================
        
        .. image:: https://travis-ci.org/romanvm/django-tinymce4-lite.svg?branch=master
          :target: https://travis-ci.org/romanvm/django-tinymce4-lite
        .. image:: https://codecov.io/github/romanvm/django-tinymce4-lite/coverage.svg?branch=master
          :target: https://codecov.io/github/romanvm/django-tinymce4-lite?branch=master
        .. image:: https://www.quantifiedcode.com/api/v1/project/48b63a65324642af823606c3c0444395/badge.svg
          :target: https://www.quantifiedcode.com/app/project/48b63a65324642af823606c3c0444395
        .. image:: https://badge.fury.io/py/django-tinymce4-lite.svg
          :target: https://badge.fury.io/py/django.tinymce4-lite
        
        **django-tinymce4-lite** is a reworked fork of `django-tinymce4`_. It provides a fully functional `TinyMCE 4`_
        editor widget that can be used in Django forms and models.
        The application can use `django-filebrowser`_ or `django-filebrowser-no-grappelli`_
        as a file manager for TinyMCE 4 to insert images and file links into edited text.
        
        **Warning**: TinyMCE 4 is incompatible with TinyMCE 3. Read `TinyMCE docs`_ for more information
        about how to configure TimyMCE 4 editor widget.
        
        Compatibility
        -------------
        
        - **Python**: 2.7, 3+
        - **Django**: 1.8-1.11
        
        Quick Start
        ===========
        
        Install **django-tinymce4-lite**::
        
          $ pip install django-tinymce4-lite
        
        Add ``tinymce`` to ``INSTALLED_APPS`` in ``settings.py`` for your Django project:
        
        .. code-block:: python
        
          INSTALLED_APPS = (
              ...
              'tinymce',
          )
        
        Add ``tinymce.urls`` to ``urls.py`` for your project:
        
        .. code-block:: python
        
          urlpatterns = [
              ...
              url(r'^tinymce/', include('tinymce.urls')),
              ...
          ]
        
        In your code:
        
        .. code-block:: python
        
            from django.db import models
            from tinymce import HTMLField
        
            class MyModel(models.Model):
                ...
                content = HTMLField('Content')
        
        In Django Admin the widget is used automatically for all models that have ``HTMLField`` fields.
        If you are using TinyMCE 4 in your website forms, add ``form.media`` variable into your templates:
        
        .. code-block:: django
        
          <!DOCTYPE html>
          <html>
          <head>
            ...
            {{ form.media }}
          </head>
          <body>
          ...
          </body>
          </html>
        
        
        
        Documentation
        =============
        
        http://romanvm.github.io/django-tinymce4-lite
        
        License
        =======
        
        MIT license. See LICENSE.txt
        
        .. _django-tinymce4: https://github.com/dani0805/django-tinymce4
        .. _TinyMCE 4: https://www.tinymce.com/
        .. _django-filebrowser: https://github.com/sehmaschine/django-filebrowser
        .. _django-filebrowser-no-grappelli: https://github.com/smacker/django-filebrowser-no-grappelli
        .. _TinyMCE docs: https://www.tinymce.com/docs/
        
        
        Changelog
        =========
        1.3.2
        -----
        - Fix compatibility with Django v.1.11
        
        1.3.1
        -----
        - Upgraded TinyMCE to v.4.5.5
        - Fix language file configuration for languages with country codes [Gagaro].
        - Test rendering TinyMCE 4 with Selenium/PhantomJS.
        
        1.3.0
        -----
        - Upgraded TinyMCE to v.4.5.1
        
        1.2.0
        -----
        - Upgraded TinyMCE to v.4.4.3
        - Added ``TINYMCE_ADDITIONAL_JS_URLS`` configuration option.
        
        1.1.0
        -----
        
        - Upgraded TinyMCE to v.4.4.1
        - Added Django 1.10 to compatibility matrix
        
        1.0.0
        -----
        
        - Initial PyPI release
        
Keywords: django wysiwyg widget tinymce
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
