4 A module containing helper functions for Drupal developers and
5 inquisitive admins. Initially, this module prints out a summary of
6 all database queries for each page request at the bottom of each page. The
7 summary includes how many times each query was executed on a page
8 (shouldn't run same query multiple times), and how long each query
9 took (short is good - use cache for complex queries).
11 Also a dprint_r($array) function is provided, which pretty prints arrays. Useful during
14 Also prints stack trace and profileing info when the xdebug extension is active.
15 See http://www.xdebug.org/index.php
18 weitzman at tejasa.com
23 The subdirectory generate/ includes some scripts that can be used to help testing
24 on a Drupal site. See generate/README for details.