Some changes:
- redactorjs 7.6.3 (changes the [license](#license) too)
- new API methods
- $('#redactor').getSelection() get the selected content in editor
- $('#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...
django-wysiwyg-redactor is a reusable application for Django, using Redactor WYSIWYG editor
- Django >= 1.3 # for static files
- PIL # for image upload
- 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 (fot more settings, see here)
`
REDACTOR_OPTIONS = {'lang': 'en'}
REDACTOR_UPLOAD = 'uploads/'
`
this:
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:
short_text = RedactorField( verbose_name=u'Text', redactor_options={'lang': 'en', 'focus': 'true'}, upload_to='tmp/', allow_file_upload=True, allow_image_upload=True )
this:
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
- Fork it!
- Create your feature branch: git checkout -b my-new-feature
- Commit your changes: git commit -am 'Add some feature'
- Push to the branch: git push origin my-new-feature
- Submit a pull request =]
- 0.3.8.2 Feb 14, 2014
- Improvement: Rename uploaded image by dint of uuid ( pull #33 )
- 0.3.8.1 Feb 13, 2014
- Fix: Solve Deprecation of 'simplejson' ( pull #25 )
- previous versions
- Lots of fixes, see the commits.
Awesome people, you should see the AUTHORS file.
Starting with version 7.6.3 redactor-js is licensed under Creative Commons Attribution-NonCommercial 3.0 license
If you want to use a newer version please buy license here