Skip to content

nabucosound/django-wysiwyg-redactor

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A lightweight wysiwyg editor for Django

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

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request =]

License

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: http://imperavi.com/redactor/download

About

django-wysiwyg-redactor is a lightweight wysiwyg editor.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 85.8%
  • CSS 10.3%
  • Python 3.9%