Metadata-Version: 1.0
Name: tw.gravatar
Version: 0.1a0dev-20100727
Summary: inserts gravatar images
Home-page: http://code.google.com/p/twgravatar/
Author: Nicolas Laurance
Author-email: nicolas[dot]laurance<at>gmail.com
License: UNKNOWN
Description: 
        .. contents::
        
        Detailed Documentation
        **********************
        
        
        Gravatar widget for toscawidget and turbogears
        ==============================================
        
        This Widget allow for the insertion of gravatar's image
        
        `http://www.gravatar.com/ <gravatar website>`_
        
        A common use in `lib/helpers.py` ::
        
        from tw.gravatar import Gravatar
        gravatar=Gravatar(size=32, rating="G", default="wavatar")
        
        anywhere in templates::
        
        ${h.gravatar(email='your.name@domain.com')}
        
        parameters you can use::
        
        params = {
        "email": "email adress associated to a gravatar",
        "size": "size in pixels of the expected image",
        "rating": "a string chosen from 'G', 'PG' 'R' or 'X'",
        "default": "identicon, monsterid, mm, wavatar"
        }
        
        Contributors
        ************
        
        
        Main developpers
        ================
        
        * Nicolas Laurance <nicolas[dot]laurance[at]gmail[dot]com>
        
        
        Change history
        **************
        
        New in 0.1
        ==========
        
        First Release
        
        
Keywords: toscawidgets.widgets,gravatar
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Environment :: Web Environment :: ToscaWidgets
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Widget Sets
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: TurboGears :: Widgets
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: License :: OSI Approved :: MIT License
