Skip to main content

django-ace provides integration for ajax.org ACE with Django

Project description

Usage

from django import forms
from django_ace import AceWidget

class EditorForm(forms.Form):
    text = forms.CharField(widget=AceWidget)

Syntax highlighting and static analysis can be enabled by specifying the language:

class EditorForm(forms.Form):
    text = forms.CharField(widget=AceWidget(mode='css'))

Themes are also supported:

class EditorForm(forms.Form):
    text = forms.CharField(widget=AceWidget(mode='css', theme='twilight'))

All options are:

class EditorForm(forms.Form):
    text = forms.CharField(widget=AceWidget(
        mode="python",
        theme="twilight",
        wordwrap=False,
        width="500px",
        height="300px",
        minlines=None,
        maxlines=None,
        showprintmargin=True,
        showinvisibles=False,
        usesofttabs=True,
        tabsize=None,
        fontsize=None,
        toolbar=True))

Install

  1. Install using pip:

    pip install django_ace
  2. Update INSTALLED_APPS:

    INSTALLED_APPS = (
        # ...
        'django_ace',
    )

Example Project

There’s an example project included in the source, to try it do:

cd example/
virtualenv .env
. .env/bin/activate
pip install -e ..
./manage.py makemigrations app
./manage.py migrate
./manage.py runserver

Then browser to http://localhost:8000.

Change log

v1.0.8

  • New widget option readonly.

  • Update ACE editor to version v1.4.12.

v1.0.7

  • New widget option toolbar.

  • Update ACE editor to version v1.4.8.

v1.0.6

  • New widget option fontsize.

  • Update ACE editor to version v1.4.7.

v1.0.5

  • New widget option tabsize.

  • Upgrade ACE editor to version v1.4.2.

v1.0.4

  • Update Django compatibility to >1.11,<=2.1

  • New widget options minLines, maxLines, showinvisibles, usesofttabs.

  • Upgrade ACE editor to version v1.4.0.

  • Updated example for Django 1.11

  • PEP8 improvements

v1.0.2

  • Upgrade ACE editor to version 1.1.8

  • Add support for showprintmargin

v1.0.1

  • Add support for Django 1.7 by removing deprecated imports.

v1.0.0

  • Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-ace-1.0.8.tar.gz (2.6 MB view details)

Uploaded Source

Built Distribution

django_ace-1.0.8-py3-none-any.whl (3.0 MB view details)

Uploaded Python 3

File details

Details for the file django-ace-1.0.8.tar.gz.

File metadata

  • Download URL: django-ace-1.0.8.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.4

File hashes

Hashes for django-ace-1.0.8.tar.gz
Algorithm Hash digest
SHA256 987b9609f0a499daf38bce253b0bbd4d182974effa9950c05b91f8efe82aea67
MD5 4ad446713da869b26a22ce9710f812cb
BLAKE2b-256 cc8d3088ba65256033a5f6182f6d0f6b2d1a8f8b07e13e5ef3085ad19f8c8b73

See more details on using hashes here.

Provenance

File details

Details for the file django_ace-1.0.8-py3-none-any.whl.

File metadata

  • Download URL: django_ace-1.0.8-py3-none-any.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.4

File hashes

Hashes for django_ace-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 f60066c158685533c9dd53f887d68d5f865e6b408d7d5b68b40da500f10fa768
MD5 c4f544d0101ae7323eb0f918bf176cb2
BLAKE2b-256 31054ef31cf2d9e0290ad7dcfb0357c2b55aef610ff892f47ccdd55e47dabdd0

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page