You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Geoffrey Young <gy...@laserlink.net> on 2000/10/19 16:15:17 UTC

[ANNOUNCE] Apache-DebugInfo-0.05

The URL

 
http://morpheus.laserlink.net/~gyoung/modules/Apache-DebugInfo-0.05.tar.gz

has entered CPAN as

  file: $CPAN/authors/id/G/GE/GEOFF/Apache-DebugInfo-0.05.tar.gz
  size: 9882 bytes
   md5: c02c9f2cd84a9e0629812ab717a36463

Apache::DebugInfo provides a per-server, per-directory, or OO interface into
various bits of data that developers might be interested in on a per-request
basis, such as the contents of any notes or pnotes, start of phase
processing, headers, etc...

***this version requires at least mod_perl 1.2401 due to important changes
in get/set handlers methods - failure to upgrade will cause grave problems
with Apache::DebugInfo's get_handlers and mark_phases methods and probably
cause your server to, uh, misbehave.  Other than that, it has proven quite
helpful for me at least :)

new methods:
  dir_config()   - display variables set by PerlSetVar and PerlAddVar

  get_handlers() - display the enabled handlers for this request

  mark_phases()  - display the phase before executing any other
                   handlers

Changes:
0.05  10.19.2000
  - added get_handlers() method and associated documentation
  - added dir_config() method and associated documentation
  - added mark_phases() method, associated internal functions,
    and documentation
  - made ip() and type() methods return 'ALL' if not set
  - changed names of internal methods to start with _
  - modified internal methods
  - updated pod
  - minor code change thanks to Damian Conway

--Geoff