{ "info": { "author": "Alexander Ivanov", "author_email": "alexander.ivanov@redsolution.ru", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: Freely Distributable", "Natural Language :: English", "Natural Language :: Russian", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP :: Site Management" ], "description": "Welcome to the tinymce documentation\n====================================\n\ntinymce is a Django_ application that contains a widget to render a form field\nas a TinyMCE_ editor.\n\nFeatures:\n- Use as a form widget or with a view.\n- Enhanced support for content languages.\n- Integration with the TinyMCE spellchecker.\n- Enables predefined link and image lists for dialogs.\n- Can compress the TinyMCE Javascript code.\n- Integration with `django-filebrowser`_.\n\nThe tinymce code is licensed under the `MIT License`_. See the ``LICENSE.txt``\nfile in the distribution. Note that the TinyMCE editor is distributed under\n`its own license`_.\n\n.. _Django: http://www.djangoproject.com/\n.. _TinyMCE: http://tinymce.moxiecode.com/\n.. _`django-filebrowser`: http://code.google.com/p/django-filebrowser/\n.. _`MIT License`: http://www.opensource.org/licenses/mit-license.php\n.. _`its own license`: http://tinymce.moxiecode.com/license.php\n\n\nRequirements\n------------\n\nDjango 1.3+ is required.\nFor Django < 1.3 please check out django-tinymce 1.5.1.\n\nInstallation\n------------\n\n1. Place the ``tinymce`` module in your Python path. You can put it into your\nDjango project directory or run ``python setup.py install`` from a shell.\n2. Copy the ``jscripts/tiny_mce`` directory from the TinyMCE distribution into\na directory named ``js`` in your static root. You can override the location in\nyour settings (see below).\n3. If you want to use any of the views add tinymce your installed applications\nlist and URLconf:\n\n``settings.py``::\n\n INSTALLED_APPS = (\n ...\n 'tinymce',\n ...\n )\n\n``urls.py``::\n\n urlpatterns = patterns('',\n ...\n (r'^tinymce/', include('tinymce.urls')),\n ...\n )\n\n\n.. _configuration:\n\nConfiguration\n-------------\n\nThe application can be configured by editing the project's ``settings.py``\nfile.\n\n``TINYMCE_JS_URL`` (default: ``settings.STATIC_URL + 'js/tiny_mce/tiny_mce.js'``)\n The URL of the TinyMCE javascript file.\n\n``TINYMCE_JS_ROOT`` (default: ``settings.STATIC_ROOT + 'js/tiny_mce'``)\n The filesystem location of the TinyMCE files.\n\n``TINYMCE_DEFAULT_CONFIG`` (default: ``{'theme': \"simple\", 'relative_urls': False}``)\n The default TinyMCE configuration to use. See `the TinyMCE manual`_ for all\n options. To set the configuration for a specific TinyMCE editor, see the\n ``mce_attrs`` parameter for the ``widget``.\n\n``TINYMCE_SPELLCHECKER`` (default: ``False``)\n Whether to use the spell checker through the supplied view. You must add\n ``spellchecker`` to the TinyMCE plugin list yourself, it is not added\n automatically.\n\n``TINYMCE_COMPRESSOR`` (default: ``False``)\n Whether to use the TinyMCE compressor, which gzips all Javascript files into\n a single stream. This makes the overall download size 75% smaller and also\n reduces the number of requests. The overall initialization time for TinyMCE\n will be reduced dramatically if you use this option.\n\n``TINYMCE_FILEBROWSER`` (default: ``True`` if ``'filebrowser'`` is in ``INSTALLED_APPS``, else ``False``)\n Whether to use `django-filebrowser`_ as a custom filebrowser for media\n inclusion. See the `official TinyMCE documentation on custom filebrowsers`_.\n\nExample::\n\n TINYMCE_JS_URL = 'http://debug.example.org/tiny_mce/tiny_mce_src.js'\n TINYMCE_DEFAULT_CONFIG = {\n 'plugins': \"table,spellchecker,paste,searchreplace\",\n 'theme': \"advanced\",\n }\n TINYMCE_SPELLCHECKER = True\n TINYMCE_COMPRESSOR = True\n\nRedsolution CMS classifiers:\n----------------------------\n\n`Content plugins`_\n\n\n.. _`the TinyMCE manual`: http://wiki.moxiecode.com/index.php/TinyMCE:Configuration\n.. _`official TinyMCE documentation on custom filebrowsers`: http://wiki.moxiecode.com/index.php/TinyMCE:Custom_filebrowser\n.. _`Content plugins`: http://www.redsolutioncms.org/classifiers/content\n\nCopyright (C) 2008 Joost Cassee\nThis program is licensed under the MIT License (see LICENSE.txt)\n\nSee http://django-tinymce.googlecode.com for docs.\n\n-- \nJoost Cassee\njoost@cassee.net", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/redsolution/django-tinymce", "keywords": "django widget tinymce", "license": "MIT License", "maintainer": null, "maintainer_email": null, "name": "redsolutioncms.django-tinymce", "package_url": "https://pypi.org/project/redsolutioncms.django-tinymce/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/redsolutioncms.django-tinymce/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/redsolution/django-tinymce" }, "release_url": "https://pypi.org/project/redsolutioncms.django-tinymce/1.6.0/", "requires_dist": null, "requires_python": null, "summary": "Use the TinyMCE WYSIWYG editor for your form textareas.", "version": "1.6.0" }, "last_serial": 1096964, "releases": { "1.5.0": [ { "comment_text": "", "digests": { "md5": "73fe8b1bdf8b7c09f2e07469035e74e6", "sha256": "b05e3afb216c1af7fedc2438e323d208bcabb0bb20a963c7536bcc851962083f" }, "downloads": -1, "filename": "redsolutioncms.django-tinymce-1.5.0.tar.gz", "has_sig": false, "md5_digest": "73fe8b1bdf8b7c09f2e07469035e74e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 459020, "upload_time": "2010-10-21T22:30:18", "url": "https://files.pythonhosted.org/packages/1c/ea/d0201ad2412cec0b042edfae0b99412f4c174cac2890feafffb3d29ae109/redsolutioncms.django-tinymce-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "8c9199ba91348bffd5ef3652bd7e6a11", "sha256": "c872de51fabec5494cfdc66ea539bed77b398b160f6c251dd4ce48c143b81e48" }, "downloads": -1, "filename": "redsolutioncms.django-tinymce-1.5.1.tar.gz", "has_sig": false, "md5_digest": "8c9199ba91348bffd5ef3652bd7e6a11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 423785, "upload_time": "2012-06-01T18:50:45", "url": "https://files.pythonhosted.org/packages/2f/55/a8cfcf33b1f823585690b496805184d72dd71728ea77660750469ad8fd60/redsolutioncms.django-tinymce-1.5.1.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "7c5b3246926dc29246ad98df3aae5e4e", "sha256": "c77cf9f9086996238b0cc80b43cb386db2358ddab9e30795456d330a5e2e6d6c" }, "downloads": -1, "filename": "redsolutioncms.django-tinymce-1.6.0.zip", "has_sig": false, "md5_digest": "7c5b3246926dc29246ad98df3aae5e4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 547241, "upload_time": "2014-05-19T09:13:08", "url": "https://files.pythonhosted.org/packages/6d/29/bfbe435819e6d505151fe06d1ba4aa9b5aef7e7fbf2083c4a663d5e67dd9/redsolutioncms.django-tinymce-1.6.0.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7c5b3246926dc29246ad98df3aae5e4e", "sha256": "c77cf9f9086996238b0cc80b43cb386db2358ddab9e30795456d330a5e2e6d6c" }, "downloads": -1, "filename": "redsolutioncms.django-tinymce-1.6.0.zip", "has_sig": false, "md5_digest": "7c5b3246926dc29246ad98df3aae5e4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 547241, "upload_time": "2014-05-19T09:13:08", "url": "https://files.pythonhosted.org/packages/6d/29/bfbe435819e6d505151fe06d1ba4aa9b5aef7e7fbf2083c4a663d5e67dd9/redsolutioncms.django-tinymce-1.6.0.zip" } ] }