Metadata-Version: 2.1
Name: django3-flatpages-tinymce
Version: 0.2.2
Summary: HTML editor on django.contrib.flatpages
Home-page: https://gitlab.com/lansharkconsulting/django/django3-flatpages-tinymce
License: MIT
Keywords: django,flatpages,tinymce,WYSIWYG
Author: Scott Sharkey
Author-email: ssharkey@lanshark.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Requires-Dist: Django (>=3.0)
Requires-Dist: django_tinymce (>=1.5)
Project-URL: Repository, https://gitlab.com/lansharkconsulting/django/django3-flatpages-tinymce
Description-Content-Type: text/markdown

# About

**django3-flatpages-tinymce** provides on-site editing of "Flat Pages"
with minimal impact on the rest of code.  This is a fork of the original,
dropping support for python 2 and django < 3.0.

django3-flatpages-tinymce is available under the MIT license.

# Usage

First of all, you need to have **django3-flatpages-tinymce** and
**django-tinymce** installed; for your convenience, recent versions
should be available from PyPI.

    pip install django-tinymce django3-flatpages-tinymce

To use, just add these applications to your INSTALLED_APPS **after**
**django.contrib.flatpages** app:

    INSTALLED_APPS = (
        ...
            'django.contrib.staticfiles',
            'django.contrib.flatpages',
            ...
            'tinymce',
            'flatpages_tinymce',
    )

As instructed by the **flatpages** guide, add this to your
MIDDLEWARE_CLASSES:

    MIDDLEWARE_CLASSES = (
        ...
        'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
    )

Remember that this little addition to your **urls.py** is required by
**django-tinymce**:

    urlpatterns = patterns('',
        ...
        path('tinymce/', include('tinymce.urls')),
        ...
    )

Finally create the tables for **flatpages** and install the JS/CSS files
using

    ./manage.py nugrate
    ./manage.py collectstatic

If you want on-site editing of templates, you must edit **flatpages**
templates: change {{flatpage.content} to {% flatpage_admin flatpage %}
from flatpage_admin template library. So

    {% extends "base.html" %}
    {% block body %}
    {% endblock %}
    {% block body %}
    <h1>{{flatpage.title}}</h1>
    {{flatpage.content}}
    {% endblock %}

will become

    {% extends "base.html" %}
    {% load flatpage_admin %}
    {% block body %}
    <h1>{{flatpage.title}}</h1>
    {% flatpage_admin flatpage %]
    {% endblock %}

If you are bothered with \<script\>/\<link\> tags, being inserted in
\<body\> tag and your template has something like {% block extrahead %},
you can move all plugin media in head, using {% flatpage_media %} tag.

    {% extends "base.html" %}
    {% block extrahead %}
    {% flatpage_media %}
    {% endblock %}
    {% block body %}
    <h1>{{flatpage.title}}</h1>
    {% flatpage_admin flatpage %}
    {% endblock %}

# Settings

Default settings are in flatpages_tinymce.settings.py file. Also, you
can override them in site-wide settings.py file. The main of them are:

> -   FLATPAGES_TINYMCE_ADMIN (default True) - use TinyMCE widget in
>     admin area
> -   FLATPAGES_TINYMCE_FRONTEND (default True) - use TinyMCE widget in
>     frontend
> -   FLATPAGES_TEMPLATE_DIR (default: TEMPLATE_DIRS\[0\] +
>     'flatpages') - directory where flatpages templates are placed
> -   FLATPAGES USE_MINIFIED (defalut: not settings.DEBUG) - use
>     minified versions of JS/CSS

Further, you will want to change default settings of TinyMCE Editor.

    TINYMCE_DEFAULT_CONFIG = {
       # custom plugins
           'plugins': "table,spellchecker,paste,searchreplace",
       # editor theme
       'theme': "advanced",
       # custom CSS file for styling editor area
           'content_css': MEDIA_URL + "css/custom_tinymce.css",
           # use absolute urls when inserting links/images
           'relative_urls': False,
       }

# Changes

## Changes in version 0.2

> -   Ported to support Django \> 3 and Python 3
> -   drop support for Russian

## Changes in version 0.1

> -   First public release.

