Metadata-Version: 1.0
Name: Shimehari-DebugToolbar
Version: 0.1.1
Summary: A port of the Django debug toolbar to Shimehari
Home-page: http://github.com/matsumos/shimehari-debugtoolbar
Author: Keiichiro Matsumoto
Author-email: matsumos@gmail.com
License: BSD
Description: Shimehari Debug-toolbar
        ===================
        
        This is a port of the excellent `django-debug-toolbar <https://github.com/django-debug-toolbar/django-debug-toolbar>`_
        for Shimehari applications.
        
        
        Installation
        ------------
        
        Installing is simple with pip::
        
            $ pip install shimehari-debugtoolbar
        
        
        Usage
        -----
        
        Setting up the debug toolbar is simple::
        
            from shimehari import Shimehari
            from shimehari_debugtoolbar import DebugToolbarExtension
        
            app = Shimehari(__name__)
        
            toolbar = DebugToolbarExtension(app)
        
        
        The toolbar will automatically be injected into Jinja templates when debug mode is on.
        
        See the `documentation`_ for more information.
        
        .. _documentation: http://shimehari-debugtoolbar.readthedocs.org
        
        
        Changes
        =======
        
        0.1.1 (2012-11-01)
        ------------------
        
        release
        
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
