Django admin CKEditor integration.
Project description
Django CKEditor
Django admin CKEditor integration.
Provides a RichTextField and CKEditorWidget utilizing CKEditor with image upload and browsing support included.
Installation
Required
Install or add django-ckeditor to your python path.
Add ckeditor to your INSTALLED_APPS setting.
Run the collectstatic management command: $ /manage.py collectstatic. This’ll copy static CKEditor require media resources into the directory given by the STATIC_ROOT setting. See Django’s documentation on managing static files for more info.
Add a CKEDITOR_UPLOAD_PATH setting to the project’s settings.py file. This setting specifies an absolute filesystem path to your CKEditor media upload directory. Make sure you have write permissions for the path, i.e.:
CKEDITOR_UPLOAD_PATH = "/home/media/media.lawrence.com/uploads"
Add CKEditor URL include to your project’s urls.py file:
(r'^ckeditor/', include('ckeditor.urls')),
Optional
Set the CKEDITOR_RESTRICT_BY_USER setting to True in the project’s settings.py file (default False). This restricts access to uploaded images to the uploading user (e.g. each user only sees and uploads their own images). Superusers can still see all images. NOTE: This restriction is only enforced within the CKEditor media browser.
Add a CKEDITOR_UPLOAD_PREFIX setting to the project’s settings.py file. This setting specifies a URL prefix to media uploaded through CKEditor, i.e.:
CKEDITOR_UPLOAD_PREFIX = "http://media.lawrence.com/media/ckuploads/
(If CKEDITOR_UPLOAD_PREFIX is not provided, the media URL will fall back to MEDIA_URL with the difference of MEDIA_ROOT and the uploaded resource’s full path and filename appended.)
Add a CKEDITOR_CONFIGS setting to the project’s settings.py file. This specifies sets of CKEditor settings that are passed to CKEditor (see CKEditor’s Setting Configurations), i.e.:
CKEDITOR_CONFIGS = { 'awesome_ckeditor': { 'toolbar': 'Basic', }, }
The name of the settings can be referenced when instantiating a RichTextField:
content = RichTextField(config_name='awesome_ckeditor')
The name of the settings can be referenced when instantiating a CKEditorWidget:
widget = CKEditorWidget(config_name='awesome_ckeditor')
By specifying a set named default you’ll be applying its settings to all RichTextField and CKEditorWidget objects for which config_name has not been explicitly defined
CKEDITOR_CONFIGS = { 'default': { 'toolbar': 'Full', 'height': 300, 'width': 300, }, }
Usage
Field
The quickest way to add rich text editing capabilities to your models is to use the included RichTextField model field type. A CKEditor widget is rendered as the form field but in all other regards the field behaves as the standard Django TextField. For example:
from django.db import models from ckeditor.fields import RichTextField class Post(models.Model): content = RichTextField()
Widget
Alernatively you can use the included CKEditorWidget as the widget for a formfield. For example:
from django import forms from django.contrib import admin from ckeditor.widgets import CKEditorWidget from post.models import Post class PostAdminForm(forms.ModelForm): content = forms.CharField(widget=CKEditorWidget()) class Meta: model = Post class PostAdmin(admin.ModelAdmin): form = PostAdminForm admin.site.register(Post, PostAdmin)
Managment Commands
Included is a management command to create thumbnails for images already contained in CKEDITOR_UPLOAD_PATH. This is useful to create thumbnails when starting to use django-ckeditor with existing images. Issue the command as follows:
$ ./manage.py generateckeditorthumbnails
NOTE: If you’re using custom views remember to include ckeditor.js in your form’s media either through {{ form.media }} or through a <script> tag. Admin will do this for you automatically. See Django’s Form Media docs for more info.
Changelog
3.6.2
Include CKEditor version 3.6.2.
Initial work on Django aligned theme.
Fix schema slash removal issue on media url generation. Thanks mwcz
Added compatibility for South. Thanks 3point2
Prevented settings from leaking between widget instances. Thanks 3point2
Fixed config_name conflict when verbose_name is used as first positional argument for a field. Thanks 3point2
Refactored views to allow use of file walking with local paths. Thanks 3point2
Added command to generate thumbnails. Thanks 3point2
Migrated from using media to static file management.
0.0.9
Added ability to configure CKeditor through a CKEDITOR_CONFIGS settings. Thanks jeffh for the input.
0.0.8
Removed buggy url include check.
0.0.7
Egg package corrected to exclude testing admin.py and models.py.
0.0.6
Enforce correct configuration.
Changed upload behavior to separate files into directories by upload date. Thanks loop0 .
Added ability to limit user access to uploaded content (see the CKEDITOR_RESTRICT_BY_USER setting). Thanks chr15m for the input.
Added initial set of much needed tests.
General cleanup, light refactor.
0.0.5
csrf_exempt backwards compatability. Thanks chr15m .
0.0.4
Include resources, sorry about that.
0.0.3
More robust PIL import. Thanks buchuki .
Better CKEDITOR_MEDIA_PREFIX setting error.
0.0.2
Included README.rst in manifest.
0.0.1
Added CKEDITOR_UPLOAD_PREFIX setting. Thanks chr15m for the input.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-ckeditor-3.6.2.tar.gz
.
File metadata
- Download URL: django-ckeditor-3.6.2.tar.gz
- Upload date:
- Size: 1.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54ecc165a93c631bbde612408aa699a3cfc91cb823bb291ae39d51196ee4442f |
|
MD5 | 2fa224e528854d9ff2c899da14d67c49 |
|
BLAKE2b-256 | 2aea3870a1c1f080200cbaba77639aefc6bd911b456958deda432c5c212bba10 |
File details
Details for the file django_ckeditor-3.6.2-py2.7.egg
.
File metadata
- Download URL: django_ckeditor-3.6.2-py2.7.egg
- Upload date:
- Size: 2.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1ab140b693f830e869b7bb91c36c8d6a10d16e076d1cd546d58908c470fb302 |
|
MD5 | 316bb7911b8fc349b8f0841ea47d8dc8 |
|
BLAKE2b-256 | 6b4deaf723556998724ce091e349ba811197f10eed946f29a2fa6c924cc6077b |