[svn:modperl-modules] rev 257 - Apache-Peek/trunk
[email protected]@cvs.perl.org 26 Jul 2005 07:00:46 -0000
| Newsgroups | perl.modperl.modules.svn |
|---|---|
| Message-ID | <[email protected]> |
Author: [email protected] Date: Tue Jul 26 00:00:46 2005 New Revision: 257 Modified: Apache-Peek/trunk/Peek.pm Log: make this just a place holder Modified: Apache-Peek/trunk/Peek.pm ============================================================================== --- Apache-Peek/trunk/Peek.pm (original) +++ Apache-Peek/trunk/Peek.pm Tue Jul 26 00:00:46 2005 @@ -1,91 +1,3 @@ -# WARNING: DO NOT EDIT THIS FILE, EDIT Peek.pm.mp2.perl5.8 instead - +# WARNING: DO NOT EDIT THIS FILE package Apache::Peek; - -use strict; -use warnings; - -use XSLoader (); -use base qw(Exporter Devel::Peek); - our $VERSION = 1.04; -our @EXPORT = qw(Dump DumpArray); - -use mod_perl2; -die "This module was built against mod_perl 2.0 ", - "and can't be used with $mod_perl2::VERSION, " - unless $mod_perl2::VERSION > 1.99022; - -XSLoader::load 'Apache::Peek'; - -1; -__END__ - -=head1 NAME - -Apache::Peek - A data debugging tool for the XS programmer (under mod_perl) - -=head1 SYNOPSIS - - use Apache::Peek; - Dump( $a ); - Dump( $a, 5 ); - DumpArray( 5, $a, $b, ... ); - - # more functionality inherited from Devel::Peek - -=head1 DESCRIPTION - -C<Apache::Peek> is a sub-class of C<Devel::Peek>. The only difference -is that it overrides the stderr stream, to which C<Devel::Peek> sends -its output, and send the output to the client instead. - -Note: The following table summarizes what parts of the -C<Devel::Peek>'s API are available, depending on the used Perl version -and configurations: - - 5.005_0x all - 5.6.x only Dump() - 5.8.x (w/ -Duseperlio) all - 5.8.x (w/o -Duseperlio) none - -Patches to complete the functionality under all configurations are -welcome. - -C<Apache::Peek> works both with mod_perl 1.0 and 2.0. - -See the C<Devel::Peek> manpage for a complete documentation. - - - -=head1 Author - -Hacking the mod_perl versions: - -Philip M. Gollucci [email protected] - -Previously: Doug MacEachern and Stas Bekman - -Writing the original C<Devel::Peek> - -Ilya Zakharevich [email protected] - - - -=head1 Copyright - -Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved. -This program is free software; you can redistribute it and/or -modify it under the same terms as Perl itself. - -Author of this software makes no claim whatsoever about suitability, -reliability, edability, editability or usability of this product, and -should not be kept liable for any damage resulting from the use of -it. If you can use it, you are in luck, if not, I should not be kept -responsible. Keep a handy copy of your backup tape at hand. - -=head1 SEE ALSO - -L<perlguts>, and L<perlguts>, again. - -=cut