Skip to main content

Use the TinyMCE WYSIWYG editor for your form textareas.

Project description

tinymce is a Django application that contains a widget to render a form field as a TinyMCE editor.

Features: - Use as a form widget or with a view. - Enhanced support for content languages. - Integration with the TinyMCE spellchecker. - Enables predefined link and image lists for dialogs. - Can compress the TinyMCE Javascript code. - Integration with django-filebrowser.

The tinymce code is licensed under the MIT License. See the LICENSE.txt file in the distribution. Note that the TinyMCE editor is distributed under its own license.

Requirements

Django 1.3+ is required. For Django < 1.3 please check out django-tinymce 1.5.1.

Installation

1. Place the tinymce module in your Python path. You can put it into your Django project directory or run python setup.py install from a shell. 2. Copy the jscripts/tiny_mce directory from the TinyMCE distribution into a directory named js in your static root. You can override the location in your settings (see below). 3. If you want to use any of the views add tinymce your installed applications list and URLconf:

settings.py:

INSTALLED_APPS = (
    ...
    'tinymce',
    ...
)

urls.py:

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

Configuration

The application can be configured by editing the project’s settings.py file.

TINYMCE_JS_URL (default: settings.STATIC_URL + 'js/tiny_mce/tiny_mce.js')

The URL of the TinyMCE javascript file.

TINYMCE_JS_ROOT (default: settings.STATIC_ROOT + 'js/tiny_mce')

The filesystem location of the TinyMCE files.

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_attrs parameter for the widget.

TINYMCE_SPELLCHECKER (default: False)

Whether to use the spell checker through the supplied view. You must add spellchecker to 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_FILEBROWSER (default: True if 'filebrowser' is in INSTALLED_APPS, else False)

Whether to use 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",
}
TINYMCE_SPELLCHECKER = True
TINYMCE_COMPRESSOR = True

Redsolution CMS classifiers:

Content plugins

Copyright (C) 2008 Joost Cassee This program is licensed under the MIT License (see LICENSE.txt)

See http://django-tinymce.googlecode.com for docs.

– Joost Cassee joost@cassee.net

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

redsolutioncms.django-tinymce-1.6.0.zip (547.2 kB view details)

Uploaded Source

File details

Details for the file redsolutioncms.django-tinymce-1.6.0.zip.

File metadata

File hashes

Hashes for redsolutioncms.django-tinymce-1.6.0.zip
Algorithm Hash digest
SHA256 c77cf9f9086996238b0cc80b43cb386db2358ddab9e30795456d330a5e2e6d6c
MD5 7c5b3246926dc29246ad98df3aae5e4e
BLAKE2b-256 6d29bfbe435819e6d505151fe06d1ba4aa9b5aef7e7fbf2083c4a663d5e67dd9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page