GithubHelp home page GithubHelp logo

hongphi / django-wysiwyg-redactor Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 117.0 420 KB

django-wysiwyg-redactor is a reusable application for Django, using WYSIWYG redactorjs

Home Page: https://github.com/douglasmiranda/django-wysiwyg-redactor

License: BSD 3-Clause "New" or "Revised" License

django-wysiwyg-redactor's Introduction

django-wysiwyg-redactor

(Version modified of django-redactorjs)

Some changes:

  • version of plugin redactorjs 7.6.3 (changes the 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

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/'
    )

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.

django-wysiwyg-redactor's People

Contributors

avelino avatar douglasmiranda avatar mbi avatar tigorc avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.