Giter Club home page Giter Club logo

djaloha's Introduction

Djaloha

https://secure.travis-ci.org/dmpinheiro/djaloha.png?branch=master

What is djaloha good for?

Djaloha (django + aloha) is a backend for using the Aloha Editor into a Django site. It enables inline editing for your HTML content. It includes a django Form and a Widget helper. Djaloha is using aloha.0.20

Quick start

In settings.py, add 'djaloha' to the INSTALLED_APPS Under Django 1.3+, the static folder should be found automatically, as the templates folder. In urls.py add (r'^djaloha/', include('djaloha.urls')) to your urlpatterns

Then create a form. For example something like

import floppyforms
from models import Note
from djaloha.widgets import AlohaInput

class NoteForm(floppyforms.ModelForm):
    class Meta:
        model = Note
        fields = ('text',)
        widgets = {
            'text': AlohaInput(),
        }

Let's assume that you've a form variable pointing on an instance of a NoteForm. In the template file, call the form and don't forget to put {{form.media}} in the headers.

Options

Djaloha has a "provider" that allows you to add local links to your models (articles, contacts, whatever) easily, through an autocomplete field that will search for objects based on rules you defined for each model :

  • search this kind of models using get_absolute_url()
  • search this kind of models using another method
  • search this kind of models using a specified model field

You can set the DJALOHA_LINK_MODELS setting in your settings.py to tell which django models will be available in the auto-complete field of the "add link" widget like this

DJALOHA_LINK_MODELS = ('coop_local.Article','calendar.Event')

djaloha requires jquery and is provided by default with jquery.1.7.2. You can change the jquery version if needed

DJALOHA_JQUERY = 'js/jquery.1.7.2.js'

Aloha has a nice plugin architecture. djaloha includes by default the main Aloha plugins. You may want to have a different set of plugins. Please refer to the Aloha docs for more information on plugins

DJALOHA_PLUGINS = (
    "common/format",
    "common/highlighteditables",
    "common/list",
    "common/link",
    "common/undo",
    "common/paste",
    "common/commands",
    "common/image",
    "common/align",
    "extra/attributes",
    "common/characterpicker",
    "common/abbr",
    "common/horizontalruler",
    "common/table",
    "extra/browser",
)

Please note that the DJALOHA_PLUGINS setting is a global setting. If you need to change the set of plugins for a specific form field, you can pass a similar tuple in the aloha_plugins attribute of your AlohaInput widget. The extra_aloha_plugins attribute will add additional plugins to the default set.

DJALOHA_INIT_URL setting make possible to overloaf the aloha init file of djaloha. aloha_init_url attribute of AlohaInput can also be used to overload it for a specific form field.

License

Djaloha uses the same license as Django (BSD).

Djaloha development was funded by CREDIS, FSE (European Social Fund) and Conseil Regional d'Auvergne.

djaloha's People

Contributors

ljean avatar petry avatar ricobl avatar

Watchers

 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.