https://github.com/domenkozar/pyramid_tinymce_spellchecker
Pyramid glue for different tinymce spellchecker backends
https://github.com/domenkozar/pyramid_tinymce_spellchecker
Last synced: 12 months ago
JSON representation
Pyramid glue for different tinymce spellchecker backends
- Host: GitHub
- URL: https://github.com/domenkozar/pyramid_tinymce_spellchecker
- Owner: domenkozar
- License: other
- Created: 2013-02-28T00:01:32.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-02-28T00:01:54.000Z (over 13 years ago)
- Last Synced: 2025-06-16T21:11:35.826Z (12 months ago)
- Language: Python
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- License: LICENSE
Awesome Lists containing this project
README
Pyramid machinery for TinyMCE spellchecker ajax calls. Currently only supports Enchant backend.
INSTALL
=======
::
$ pip install pyramid_tinymce_spellchecker
USAGE
=====
Use pyramid addon that will configure an ajax view::
config.include('pyramid_tinymce_spellchecker')
Configure TinyMCE to use spellchecker::
tinyMCE.init({
...
theme: "advanced",
plugins: "spellchecker",
theme_advanced_buttons3_add: "spellchecker",
spellchecker_languages = '+English=en',
spellchecker_rpc_url = '{{ request.route_url('tinymce_spellchecker') }}',
...
})
(for options see http://www.tinymce.com/wiki.php/Plugin:spellchecker)
DEVELOP
=======
::
$ git clone https://github.com/iElectric/pyramid_tinymce_spellchecker pyramid_tinymce_spellchecker
$ cd pyramid_tinymce_spellchecker
$ virtualenv .
$ source bin/activate
$ python setup.py dev
RUNNING TESTS
=============
::
$ make