This reusable Django app using WYSIWYG editor redactorjs.com
Project description
# django-wysiwyg-redactor
Updated to work with django 2.0.x
(Version modified of django-redactorjs)
Some changes:
* version of plugin redactorjs 7.6.3 (changes the [license](#license) too)
* new API method `$('#redactor').getSelection()` get the selected content in editor
* new API method `$('#redactor').getSettings()` you can get and set settings anytime you want
* removing some ajax calls, (modal windows), to avoid the crossdomain issue on production env
* with the *extra_script* option/setting you can load some script to do something more after load the redactor
* now the redactor toolbar is more responsive
* fixing some bugs, adapting things...
## Screenshot
<img src="https://raw.github.com/douglasmiranda/django-wysiwyg-redactor/master/static/img/screenshot.png">
What's that
-----------
*django-wysiwyg-redactor is a reusable application for Django, using WYSIWYG editor http://redactorjs.com/*
Dependence
-----------
- `Django >= 1.3` # for static files
- `PIL` # for image upload
Getting started
---------------
* Install django-wysiwyg-redactor:
```
pip install django-wysiwyg-redactor
```
* Add `'redactor'` to INSTALLED_APPS.
* Add `url(r'^redactor/', include('redactor.urls'))`, to urls.py
* Add default config in settings.py (more settings see: <https://github.com/douglasmiranda/django-wysiwyg-redactor/wiki/Settings>):
```python
REDACTOR_OPTIONS = {'lang': 'en'}
REDACTOR_UPLOAD = 'uploads/'
```
Using in model
--------------
```python
from django.db import models
from redactor.fields import RedactorField
class Entry(models.Model):
title = models.CharField(max_length=250, verbose_name=u'Title')
short_text = RedactorField(verbose_name=u'Text')
```
or use custom parametrs:
```python
short_text = RedactorField(
verbose_name=u'Text',
redactor_options={'lang': 'en', 'focus': 'true'},
upload_to='tmp/'
)
```
Using for only admin interface
-----------------------------
```python
from django import forms
from redactor.widgets import RedactorEditor
from blog.models import Entry
class EntryAdminForm(forms.ModelForm):
class Meta:
model = Entry
widgets = {
'short_text': RedactorEditor(),
}
class EntryAdmin(admin.ModelAdmin):
form = EntryAdminForm
```
`RedactorEditor` takes the same parameters as `RedactorField`
## License
Starting with version 7.6.3 redactor-js is licensed under [Creative Commons Attribution-NonCommercial 3.0 license](http://creativecommons.org/licenses/by-nc/3.0/)
For commercial use please buy license here: http://redactorjs.com/download/ or use earlier version.
Updated to work with django 2.0.x
(Version modified of django-redactorjs)
Some changes:
* version of plugin redactorjs 7.6.3 (changes the [license](#license) too)
* new API method `$('#redactor').getSelection()` get the selected content in editor
* new API method `$('#redactor').getSettings()` you can get and set settings anytime you want
* removing some ajax calls, (modal windows), to avoid the crossdomain issue on production env
* with the *extra_script* option/setting you can load some script to do something more after load the redactor
* now the redactor toolbar is more responsive
* fixing some bugs, adapting things...
## Screenshot
<img src="https://raw.github.com/douglasmiranda/django-wysiwyg-redactor/master/static/img/screenshot.png">
What's that
-----------
*django-wysiwyg-redactor is a reusable application for Django, using WYSIWYG editor http://redactorjs.com/*
Dependence
-----------
- `Django >= 1.3` # for static files
- `PIL` # for image upload
Getting started
---------------
* Install django-wysiwyg-redactor:
```
pip install django-wysiwyg-redactor
```
* Add `'redactor'` to INSTALLED_APPS.
* Add `url(r'^redactor/', include('redactor.urls'))`, to urls.py
* Add default config in settings.py (more settings see: <https://github.com/douglasmiranda/django-wysiwyg-redactor/wiki/Settings>):
```python
REDACTOR_OPTIONS = {'lang': 'en'}
REDACTOR_UPLOAD = 'uploads/'
```
Using in model
--------------
```python
from django.db import models
from redactor.fields import RedactorField
class Entry(models.Model):
title = models.CharField(max_length=250, verbose_name=u'Title')
short_text = RedactorField(verbose_name=u'Text')
```
or use custom parametrs:
```python
short_text = RedactorField(
verbose_name=u'Text',
redactor_options={'lang': 'en', 'focus': 'true'},
upload_to='tmp/'
)
```
Using for only admin interface
-----------------------------
```python
from django import forms
from redactor.widgets import RedactorEditor
from blog.models import Entry
class EntryAdminForm(forms.ModelForm):
class Meta:
model = Entry
widgets = {
'short_text': RedactorEditor(),
}
class EntryAdmin(admin.ModelAdmin):
form = EntryAdminForm
```
`RedactorEditor` takes the same parameters as `RedactorField`
## License
Starting with version 7.6.3 redactor-js is licensed under [Creative Commons Attribution-NonCommercial 3.0 license](http://creativecommons.org/licenses/by-nc/3.0/)
For commercial use please buy license here: http://redactorjs.com/download/ or use earlier version.
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
django-redactor-2.0-0.3.tar.gz
(243.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-redactor-2.0-0.3.tar.gz.
File metadata
- Download URL: django-redactor-2.0-0.3.tar.gz
- Upload date:
- Size: 243.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.5.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d099d5211f2d9b2cc6f15addbd9420d051f962d123a537a624c7883f99812f9
|
|
| MD5 |
807df00ca6ee91a4d099134b053c0baf
|
|
| BLAKE2b-256 |
bf1a45dff224c4e174048f84fe8070dc63575786572da08449a62b23e7636331
|
File details
Details for the file django_redactor_2.0-0.3-py3-none-any.whl.
File metadata
- Download URL: django_redactor_2.0-0.3-py3-none-any.whl
- Upload date:
- Size: 259.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.5.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b23d5c1fe2c86c761c87ad49c272e4fa07c9dcf1a9a3ce8429a807491a3c2e8f
|
|
| MD5 |
7684bda445080a802092fec687c37517
|
|
| BLAKE2b-256 |
fe43cc9d9fcd1672a0b06f4054afbfb325203251c923406ba1f40fa4f1bbe309
|