Installation¶
This section describes how to install the django-tinymce application in your Django project.
Prerequisites¶
The django-tinymce application requires Django version 1.0 or higher. You will also
need TinyMCE version 3.0.1 or higher and a language pack for every
language you enabled in settings.LANGUAGES. If you use the django-filebrowser
application in your project, the tinymce application can use it as a browser
when including media.
If you want to use the spellchecker plugin using the supplied view (no PHP
needed) you must install the PyEnchant package and dictionaries for your
project languages. Note that the Enchant needs a dictionary that exactly
matches your language codes. For example, a dictionary for code 'en-us'
will not automatically be used for 'en'. You can check the availability of
the Enchant dictionary for the 'en' language code using the following
Python code:
import enchant
enchant.dict_exists('en')
Note that the documentation will use ‘TinyMCE’ (capitalized) to refer the editor itself and ‘django-tinymce’ (lower case) to refer to the Django application.
Installation¶
Install django-tinymce using pip (or any other way to install python package) from PyPI. If you need to use a different way to install django-tinymce you can place the
tinymcemodule on your Python path. You can put it into your Django project directory or runpython setup.py installfrom a shell.pip install django-tinymce
Add
tinymceto INSTALLED_APPS insettings.pyfor your project:INSTALLED_APPS = ( ... 'tinymce', ... )
Add
tinymce.urlstourls.pyfor your project:urlpatterns = patterns('', ... (r'^tinymce/', include('tinymce.urls')), ... )
Testing¶
Verify that everything is installed and configured properly:
Setup an isolated environment with virtualenv and activate environment:
virtualenv --no-site-packages env . env/bin/activate
Install required packages:
pip install Django django-tinymce
Setup environment variable
DJANGO_SETTINGS_MODULE:export DJANGO_SETTINGS_MODULE='testtinymce.settings'
Create project and change into project directory
django-admin startproject tinymce_test cd tinymce_test
Setup test database (it will be created in current folder):
python manage.py migrate
Create superuser
python manage.py createsuperuser
Run Django runserver command to verify results:
python manage.py runserver
Open this address in a browser:
http://localhost:8000/admin/testapp/testpage/add/
If you see TinyMCE instead of standard textarea boxes everything is working fine, otherwise check installation steps.
Configuration¶
The application can be configured by editing the project’s settings.py
file.
TINYMCE_JS_URL(default:settings.MEDIA_URL + 'js/tiny_mce/tiny_mce.js')The URL of the TinyMCE javascript file:
TINYMCE_JS_URL = os.path.join(MEDIA_URL, "path/to/tiny_mce/tiny_mce.js")
TINYMCE_JS_ROOT(default:settings.MEDIA_ROOT + 'js/tiny_mce')The filesystem location of the TinyMCE files. It is used by the compressor (see below):
TINYMCE_JS_ROOT = os.path.join(MEDIA_ROOT, "path/to/tiny_mce")
TINYMCE_DEFAULT_CONFIG(default:{'theme': "simple", 'relative_urls': False})- The default TinyMCE configuration to use. See the TinyMCE manual for all
options. To set the configuration for a specific TinyMCE editor, see the
mce_attrsparameter for the widget. TINYMCE_SPELLCHECKER(default:False)- Whether to use the spell checker through the supplied view. You must add
spellcheckerto the TinyMCE plugin list yourself, it is not added automatically. TINYMCE_COMPRESSOR(default:False)- Whether to use the TinyMCE compressor, which gzips all Javascript files into a single stream. This makes the overall download size 75% smaller and also reduces the number of requests. The overall initialization time for TinyMCE will be reduced dramatically if you use this option.
TINYMCE_INCLUDE_JQUERY(default:True)- Whether a jQuery version should be included in the widget media property.
Set this to
Falseif you include jQuery yourself in your templates. TINYMCE_EXTRA_MEDIA(default:None)- Extra media to include on the page with the widget.
TINYMCE_FILEBROWSER(default:Trueif'filebrowser'is inINSTALLED_APPS, elseFalse)- Whether to use the django-filebrowser as a custom filebrowser for media inclusion. See the official TinyMCE documentation on custom filebrowsers.
Example:
TINYMCE_JS_URL = 'http://debug.example.org/tiny_mce/tiny_mce_src.js'
TINYMCE_DEFAULT_CONFIG = {
'plugins': "table,spellchecker,paste,searchreplace",
'theme': "advanced",
'cleanup_on_startup': True,
'custom_undo_redo_levels': 10,
}
TINYMCE_SPELLCHECKER = True
TINYMCE_COMPRESSOR = True
TINYMCE_EXTRA_MEDIA = {
'css': {
'all': [
...
],
},
'js': [
...
],
}