Metadata-Version: 1.1
Name: kotti-etherpad
Version: 0.4
Summary: Etherpad integration into your Kotti site
Home-page: http://pypi.python.org/pypi/kotti_etherpad/
Author: Marco Scheihuber
Author-email: j23d@jusid.de
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Description: ==============
        kotti_etherpad
        ==============
        
        This is an extension to the Kotti CMS to add an etherpad on your site.  
        
        `Find out more about Kotti`_
        `Find out more about etherpad`_
        
        Setting up your etherpad
        ========================
        
        This Addon provides an Content Type to present an etherpad on your Kotti
        site. To set up the content type add ``kotti_etherpad.kotti_configure``
        to the ``kotti.configurators`` setting in your ini file::
        
            kotti.configurators = kotti_etherpad.kotti_configure
        
        Now you can add a new pad. You can host your own server (have a look to
        the `etherpad documentation`_) or use a free one (choose from a 
        `list of free etherpad servers`_).
        
        Pads widget
        -----------
        
        kotti_etherpad provides a widget, where all pads are listed, which is disabled
        by default. To enable the widget add the following to the ``pyramid.includes``
        setting::
        
          pyramid.includes = kotti_etherpad.widgets.include_protocol_widget
        
        or(to set the widget on the left instead of the right side)::
        
          pyramid.includes = kotti_etherpad.widgets.include_protocol_widget_left
        
        
        .. _Find out more about Kotti: http://pypi.python.org/pypi/Kotti
        .. _Find out more about etherpad: https://github.com/Pita/etherpad-lite/
        .. _etherpad documentation: https://github.com/Pita/etherpad-lite/blob/master/README.md
        .. _list of free etherpad servers: http://etherpad.org/public-sites/
        
        Thanks
        ======
        
        Thanks to the following people for support, code, patches etc:
        
          - Tetsuya Morimoto (t2y)
        
        Change History
        ==============
        
        0.4 - 2012-11-20
        ----------------
        
        - Switch licences to BSD derived. [j23d]
        - Use assign slot for widget instead of deprecated rendering. [j23d]
        - Changes for compatibility with Kotti>=0.8. These changes
          are not backward compatibel. If you want to use kotti_etherpad
          with Kotti<=0.7.x then pin kotti_etherpad to 0.3.
          - Tests are require pytest fixtures from Kotti>=0.8.
          - Use form classes for the form views instead of deprecated generic functions.
          - Use fanstatic for resources.
        - Use view_config decoration for views.
        
        
        0.3 - 2012-07-19
        ----------------
        
        - Added a sanitizer to remove a last "/" character of the server_domain. [t2y]
        - Fixed the title/description typos for line numbers. [t2y]
        - Added test to check if the current username is used for the pad. [j23d]
        - Activate translation settings and added title/description for all fields. [t2y]
        
        0.2 - 2012-07-12
        ----------------
        
        - Update translations. [j23d]
        - Use Integer type for border in schema. [j23d]
        - Set pad_id directly in the settings. [j23d]
        
        
        0.2a1 - 2012-07-02
        ------------------
        
        - Initial version [j23d]
        
Keywords: kotti etherpad
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Framework :: Pylons
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: License :: Repoze Public License
