Metadata-Version: 1.1
Name: kotti-twitter
Version: 0.5
Summary: Add twitter widgets to your Kotti site
Home-page: http://pypi.python.org/pypi/kotti_twitter
Author: Daniel Nouri
Author-email: daniel.nouri@gmail.com
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Description: =============
        kotti_twitter
        =============
        
        This is an extension to the Kotti CMS that allows you to add Twitter
        widgets to your Kotti site.
        
        `Find out more about Kotti`_
        
        Setting up a profile widget
        ===========================
        
        To set up the profile widget to display on every page in Kotti on the
        right hand side, add ``kotti_twitter.include_profile_widget`` to the
        ``pyramid.includes`` setting in your Paste Deploy config::
        
          pyramid.includes = kotti_twitter.include_profile_widget
        
        To set the name of the user for which the widget is shown, set the
        ``kotti_twitter.profile_widget.user`` variable.  An example with some
        other variables::
        
          pyramid.includes = kotti_twitter.include_profile_widget
          kotti_twitter.profile_widget.user = dnouri
          kotti_twitter.profile_widget.loop = true
          kotti_twitter.profile_widget.tweets_links = #00ff00
        
        Setting up a search widget
        ==========================
        
        The search widget is very similar to the profile widget, but instead
        of a ``user``, it expects a ``search``.  An example configuration::
        
          pyramid.includes = kotti_twitter.include_search_widget
          kotti_twitter.search_widget.search = #pylons #pyramid
          kotti_twitter.search_widget.title = Pylons Project news
        
        
        .. _Find out more about Kotti: http://pypi.python.org/pypi/Kotti
        
Keywords: twitter kotti cms pylons pyramid
Platform: UNKNOWN
Classifier: Programming Language :: Python
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
