Skip to content

garethr/django-clue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Clue is a simple collection of useful middleware for Django. It currently
provides a handful of new debugging capabilities via a modified runserver command or by loading a collection of middleware.

Installation

Clue wants to be installed somewhere on your python path. The quickest way of achieving that is the packaged setup.py file.

python setup.py install

Usage

./manage.py runclueserver

Alternatively you can add the middleware to your settings.py file, although it is advisable to avoid running these in a production environment.

if DEBUG:
    settings.MIDDLEWARE_CLASSES += (
        'clue.middleware.query.QueryMiddleware',
        'clue.middleware.profiler.ProfileMiddleware',
        'clue.middleware.template.TemplateMiddleware',
        'clue.middleware.validate.HtmlValidatorMiddleware',
    )

Currently it supports four alternative views for each normal view, all of which are useful for performance tuning or general quality assurance. All of these can be appended to any URL running on the above mentioned development server.

Credit for much of this work goes to others. The middleware was mainly
based on code from Django Snippets, often tweaked and modified for use with
Django 1.0 and with a few changes to the interface. The team at Global Radio
also have similar tools from which I took ideas.

Alternative Views

Simply append the specified query string arguments to a url and it should render useful information depending on which of the following you choose.

Query Analysis

?query – provides a list of queries run to generate the page, including
a breakdown of slow queries and repeated queries.

Template Loading

?template – a list of all the templates used to render the page.

Profiling

?prof – a process profile showing where you spend most of
your time when rendering the view.

Markup validation

?validate – A view which shows the markup validation errors on the page and where they occured. Requires the Offline Validator command line utility.

Licence

Credits have been left in individual files. Except where otherwise stated the code is licensed as follows:

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

About

A collection of useful development middleware for Django packaged under a custom runserver command

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages