Django CKEditor
===============
Django CKEditor contains the JavaScript WYSIWYG editor, [CKEditor](http://ckeditor.com/) and functionality for uploading and browsing files on your server.
Installation
------------
Run `pip install django-ckedit`
Add `ckeditor` to your `INSTALLED_APPS` setting:
```python
INSTALLED_APPS = (
...
'ckeditor',
)
```
To your sites `url.py` add:
```python
urlpatterns = patterns('',
...
url(r'^ckeditor/', include('ckeditor.urls')),
)
```
Views
-----
###upload
Uploads a file from the CKEditor insert image dialog's upload section to a user-specified path using the [default storage](https://docs.djangoproject.com/en/dev/topics/files/#the-built-in-filesystem-storage-class).
##browse
Displays image thumbnails from the CKEditor insert image dialog's browse section.
Settings
--------
`CKEDTIOR_UPLOAD_DIRECTORY (default 'ckeditor')`
The directory the uploads are saved to and files are browsed from.
===============
Django CKEditor contains the JavaScript WYSIWYG editor, [CKEditor](http://ckeditor.com/) and functionality for uploading and browsing files on your server.
Installation
------------
Run `pip install django-ckedit`
Add `ckeditor` to your `INSTALLED_APPS` setting:
```python
INSTALLED_APPS = (
...
'ckeditor',
)
```
To your sites `url.py` add:
```python
urlpatterns = patterns('',
...
url(r'^ckeditor/', include('ckeditor.urls')),
)
```
Views
-----
###upload
Uploads a file from the CKEditor insert image dialog's upload section to a user-specified path using the [default storage](https://docs.djangoproject.com/en/dev/topics/files/#the-built-in-filesystem-storage-class).
##browse
Displays image thumbnails from the CKEditor insert image dialog's browse section.
Settings
--------
`CKEDTIOR_UPLOAD_DIRECTORY (default 'ckeditor')`
The directory the uploads are saved to and files are browsed from.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-ckedit-1.0.zip
(1.4 MB
view details)
File details
Details for the file django-ckedit-1.0.zip.
File metadata
- Download URL: django-ckedit-1.0.zip
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
596032fb3f234793c80446ce80f149a63d879abcd9e6968c4fb812d8e5954ae0
|
|
| MD5 |
2e61c3d9eefeacebb62792f763dd0f8f
|
|
| BLAKE2b-256 |
a4c7e7659a02e28389fdabda776563e074bf92d9bfcab0a94bfcbc5087790761
|