/django-wysiwyg-redactor

django-wysiwyg-redactor is a lightweight wysiwyg editor. (reusable application for Django)

Primary LanguageJavaScriptBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

django-wysiwyg-redactor - A lightweight wysiwyg editor

(Modified version of django-redactorjs)

Some changes:

  • redactorjs 7.6.3 (changes the 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...

Screenshot

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
REDACTOR_OPTIONS = {'lang': 'en'}
REDACTOR_UPLOAD = 'uploads/'

Using in model

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
    )

Using for only admin interface

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

For commercial use please buy license here: http://redactorjs.com/download/ or use earlier version.