- Updated to CKEditor 4.3.2
- Added source maps for the concatenated and minified javascript files
- Fixed bug that caused parse errors in JSON.parse (thanks blag)
- Fixed
django.conf.urls
import for Django 1.5 (where it was deprecated) and Django 1.6 (where it was removed).
- Updated to CKEditor 4.3.0 beta
- Added form clean method that strips control characters from input
- Updated to CKEditor 4.1.2
- Added
RichCharField
, which is functionally the same asRichTextField
, but is a djangoCharField
, not aTextField
- Added ability to pass raw javascript into settings (e.g. javascript functions, conditional logic) with the
JSCode
class - Changed ckeditor-dev folder to use the ckeditor repository and isolated custom javascript to allow easier version updates.
- Forked from shaunsephton
- Updated to CKEditor 3.6.3
- Automatic image resize functionality
- Support Promise objects in
CKEDITOR_CONFIG
(thanks timheap) - Added
CKEDITOR_DEBUG
setting, which if set toTrue
uses the unminified CKEditor javascript - Support for django-filebrowser's file browser and uploader
- Added a
config
keyword argument to RichTextFields, which provides a way of defining or overriding configuration directly on a RichTextField without requiring an edit to theCKEDITOR_CONFIGS
setting.
- 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.
- Added ability to configure CKeditor through a CKEDITOR_CONFIGS settings. Thanks jeffh for the input.
- Removed buggy url include check.
- Egg package corrected to exclude testing admin.py and models.py.
- 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.
- csrf_exempt backwards compatability. Thanks chr15m .
- Include resources, sorry about that.
- More robust PIL import. Thanks buchuki .
- Better CKEDITOR_MEDIA_PREFIX setting error.
- Included README.rst in manifest.
- Added CKEDITOR_UPLOAD_PREFIX setting. Thanks chr15m for the input.