Metadata-Version: 1.0
Name: tw.epiclock
Version: 0.1a2dev-20100723
Summary: Insert Clocks in templates
Home-page: http://code.google.com/p/twepiclock
Author: Nicolas Laurance
Author-email: nicolas[dot]laurance<at>gmail
License: UNKNOWN
Description: 
        .. contents::
        
        Detailed Documentation
        **********************
        
        
        Clock widget for toscawidget and turbogears
        ===========================================
        
        This Widget encapsulates the epiclock JavaScript library
        `http://code.google.com/p/epiclock`_
        for inserting clocks and countdowns contents in a standard-friendly manner.
        
        The current epiclock version packaged with this widget is version 3.0
        `http://epiclock.googlecode.com/files/epiclock-3.0.fixed.tar.gz`_
        
        From within your controller, simply instantiate an Epiclock
        and return this instance to be rendered within your template::
        
            from tw.epiclock import Epiclock
            from tg import tmpl_context
            ...
            tmpl_context.my_clock = Epiclock("my_clock")
        
        From within your template, simply call the epiclock::
        
                ${tmpl_context.my_clock()}
        
        
        Another common use is display server time somewhere in a header zone
        in lib/helpers.py::
        
            from tw.epiclock import Epiclock
            clock = Epiclock("clock", format="j-n-Y G:i:s")
        
        anywhere in templates::
        
            ${h.clock()}
        
        custom renderers (retros) are not available is this release
        
        in static jquery.dateformat.js and jquery.epiclock.js are for documentation purpose
        only the minimized versions are actually injected in your code
        
        Contributors
        ************
        
        
        Main developpers
        ================
        
        * Nicolas Laurance <nicolas[dot]laurance[at]gmail[dot]com>
        
        
        Change history
        **************
        
        New in 0.1
        ==========
        
        First Release
        
        
Keywords: toscawidgets.widgets,turbogears,clock
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
