├── .gitignore ├── CONTRIBUTORS.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── django_wysiwyg ├── __init__.py ├── models.py ├── templates │ ├── django_wysiwyg │ │ ├── alloyeditor │ │ │ ├── editor_instance.html │ │ │ └── includes.html │ │ ├── ckeditor │ │ │ ├── editor_instance.html │ │ │ └── includes.html │ │ ├── froala │ │ │ ├── editor_instance.html │ │ │ └── includes.html │ │ ├── redactor │ │ │ ├── editor_instance.html │ │ │ └── includes.html │ │ ├── tinymce │ │ │ ├── editor_instance.html │ │ │ └── includes.html │ │ ├── tinymce_advanced │ │ │ ├── editor_instance.html │ │ │ └── includes.html │ │ ├── yui │ │ │ ├── editor_instance.html │ │ │ └── includes.html │ │ └── yui_advanced │ │ │ ├── editor_instance.html │ │ │ └── includes.html │ └── my-app-name │ │ └── admin │ │ └── change_form.html ├── templatetags │ ├── __init__.py │ └── wysiwyg.py └── utils.py ├── docs ├── Makefile ├── conf.py ├── examples.rst ├── extending.rst ├── index.rst ├── install.rst ├── javascript_api.rst ├── make.bat └── utils.rst ├── setup.py └── test_project ├── __init__.py ├── fun ├── __init__.py ├── admin.py ├── models.py ├── tests.py └── views.py ├── manage.py ├── settings.py ├── templates ├── basic_test.html └── fun │ └── admin │ ├── fancyplayground │ ├── change_form.html │ └── django_wysiwyg_includes.html │ └── playground │ └── change_form.html ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | docs/_build/ 3 | dist/ 4 | *.egg-info/ 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/README.rst -------------------------------------------------------------------------------- /django_wysiwyg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/__init__.py -------------------------------------------------------------------------------- /django_wysiwyg/models.py: -------------------------------------------------------------------------------- 1 | # only for unittest 2 | -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/alloyeditor/editor_instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/alloyeditor/editor_instance.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/alloyeditor/includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/alloyeditor/includes.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/ckeditor/editor_instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/ckeditor/editor_instance.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/ckeditor/includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/ckeditor/includes.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/froala/editor_instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/froala/editor_instance.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/froala/includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/froala/includes.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/redactor/editor_instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/redactor/editor_instance.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/redactor/includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/redactor/includes.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/tinymce/editor_instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/tinymce/editor_instance.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/tinymce/includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/tinymce/includes.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/tinymce_advanced/editor_instance.html: -------------------------------------------------------------------------------- 1 | {% extends "django_wysiwyg/tinymce/editor_instance.html" %} 2 | -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/tinymce_advanced/includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/tinymce_advanced/includes.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/yui/editor_instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/yui/editor_instance.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/yui/includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/yui/includes.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/yui_advanced/editor_instance.html: -------------------------------------------------------------------------------- 1 | {% extends "django_wysiwyg/yui/editor_instance.html" %} 2 | -------------------------------------------------------------------------------- /django_wysiwyg/templates/django_wysiwyg/yui_advanced/includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/django_wysiwyg/yui_advanced/includes.html -------------------------------------------------------------------------------- /django_wysiwyg/templates/my-app-name/admin/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templates/my-app-name/admin/change_form.html -------------------------------------------------------------------------------- /django_wysiwyg/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_wysiwyg/templatetags/wysiwyg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/templatetags/wysiwyg.py -------------------------------------------------------------------------------- /django_wysiwyg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/django_wysiwyg/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/extending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/docs/extending.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/javascript_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/docs/javascript_api.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/docs/utils.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/fun/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/fun/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/fun/admin.py -------------------------------------------------------------------------------- /test_project/fun/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/fun/models.py -------------------------------------------------------------------------------- /test_project/fun/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/fun/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/templates/basic_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/templates/basic_test.html -------------------------------------------------------------------------------- /test_project/templates/fun/admin/fancyplayground/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/templates/fun/admin/fancyplayground/change_form.html -------------------------------------------------------------------------------- /test_project/templates/fun/admin/fancyplayground/django_wysiwyg_includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/templates/fun/admin/fancyplayground/django_wysiwyg_includes.html -------------------------------------------------------------------------------- /test_project/templates/fun/admin/playground/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/templates/fun/admin/playground/change_form.html -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/urls.py -------------------------------------------------------------------------------- /test_project/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/django-wysiwyg/HEAD/test_project/views.py --------------------------------------------------------------------------------