Metadata-Version: 1.0
Name: tgext.debugbar
Version: 0.0.2
Summary: Provides debug toolbar for TurboGears2
Home-page: http://bitbucket.org/_amol_/tgext.debugbar
Author: Alessandro Molina
Author-email: alessandro.molina@axant.it
License: MIT
Description: About Debug Toolbar
        -------------------------
        
        tgext.debugbar provides a Debug Toolbar for TurboGears2 framework.
        
        Exposed sections are:
        
        * Controller and Rendering time reporting
        * Controller Profiling
        * Request Parameters, Headers, Attributes and Environ
        * SQLAlchemy Queries reporting and timing
        * Explain and Show result of performed SQLAlchemy queries
        * List mounted controllers, their path and exposed methods
        * Log Messages
        
        Installing
        -------------------------------
        
        tgext.debugbar can be installed both from pypi or from bitbucket::
        
            easy_install tgext.debugbar
        
        should just work for most of the users
        
        Using it
        ----------------------------------
        
        To use the debug toolbar all is needed is to add a few
        lines to your project ``app_cfg.py``::
        
            from tgext.debugbar import enable_debugbar
            enable_debugbar(base_config)
        
        The ``enable_debugbar`` function will then check for
        the ``debug`` config option disabling the debugbar
        when it is false.
        
Keywords: turbogears2.widgets
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: TurboGears
