|
NAMECGI::Compress::Gzip::FileHandle - CGI::Compress::Gzip helper packageLICENSECopyright 2006-2007 Clotho Advanced Media, Inc., <cpan@clotho.com>Copyright 2007-2008 Chris Dolan <cdolan@cpan.org> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SYNOPSISuse CGI::Compress::Gzip; my $cgi = new CGI::Compress::Gzip; print $cgi->header(); print "<html> ..."; DESCRIPTIONThis is intended for internal use only! Use CGI::Compress::Gzip instead.This CGI::Compress::Gzip helper class subclasses IO::Zlib. It is is needed to make sure that output is not compressed until the CGI header is emitted. This filehandle delays the ignition of the zlib filter until it sees the exact same header generated by CGI::Compress::Gzip::header() pass through it's WRITE() method. If you change the header before printing it, this class will throw an exception. This class holds one global variable representing the previous default filehandle used before the gzip filter is put in place. This filehandle, usually STDOUT, is replaced after the gzip stream finishes (which is usually when the CGI object goes out of scope and is destroyed). FUNCTIONS
AUTHORClotho Advanced Media, cpan@clotho.comPrimary developer: Chris Dolan
Visit the GSP FreeBSD Man Page Interface. |