Metadata-Version: 1.1
Name: django-ace
Version: 0.2.0
Summary: django-ace provides integration for ajax.org ACE with Django
Home-page: https://github.com/bradleyayers/django-ace
Author: Bradley Ayers
Author-email: bradley.ayers@gmail.com
License: Simplified BSD
Description: ==========
        django-ace
        ==========
        
        
        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'))
        
        
        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 syncdb
            ./manage.py runserver
        
        Then browser to ``http://localhost:8000``.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
