Metadata-Version: 1.0
Name: megrok.tinymce
Version: 3.1.0.1.1
Summary: TinyMCE javascript editor packaged as a Grok resource library.
Home-page: UNKNOWN
Author: Grok Team, 
Author-email: grok-dev@zope.org
License: LGPL
Description: megrok.tinymce: tinymce packaged for Grok
        =========================================
        
        This is a Grok extension that packages TinyMCE_, a Javascript HTML
        WYSIWYG editor control.
        
        .. _TinyMCE: http://tinymce.moxiecode.com/
        
        Simply include ``megrok.tinymce`` as a dependency in your project's
        ``setup.py`` to make it available in your project.
        
        To construct URLs to TinyMCE javascript libraries, use something like this::
        
        <script type="text/javascript"
        tal:attributes="src context/@@/TinyMCE/tiny_mce.js"></script>
        
        Alternatively you can also declare that your template or Python code
        needs the widget somewhere in the code path that's executed during the
        display of the page. In a page template this looks like this::
        
        <tal:block replace="resource_library:TinyMCE"/>
        
        In Python code you can do the following::
        
        from megrok.tinymce import TinyMCE
        
        def mywidgetcode():
        ...
        TinyMCE.need()
        ...
        
        Changes
        =======
        
        3.1.0.1.1 (2008-08-07, TinyMCE release date: 2008-06-18)
        --------------------------------------------------------
        
        * Turn off zip-safe-ness in ``setup.py``. This makes this package actually
        get registered properly using ``z3c.autoinclude``.
        
        3.1.0.1 (2008-08-07, TinyMCE release date: 2008-06-18)
        ------------------------------------------------------
        
        * Package version 3.1.0.1 of TinyMCE.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: JavaScript
Classifier: Framework :: Zope3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
