| Apache-XPP documentation | Contained in the Apache-XPP distribution. |
Apache::XPP::Cache::Expiry - Cache expiry superclass
...
Nothing
Nothing
Apache::XPP::Cache::Expiry provides a barebones AUTOLOAD for XPP's Cache-Expiry classes.
r ( )Returns the Apache request object
$Log: Expiry.pm,v $ Revision 1.7 2002/01/16 21:06:01 kasei Updated VERSION variables to 2.01 Revision 1.6 2000/09/11 20:12:23 david Various minor code efficiency improvements. Revision 1.5 2000/09/07 19:02:41 dougw Pod, over fix Revision 1.4 2000/09/07 18:50:01 dougw Fixed pod error Revision 1.3 2000/09/07 18:44:52 dougw POD updates.
Greg Williams <greg@cnation.com>
perl(1). Apache::XPP Apache::XPP::Cache
| Apache-XPP documentation | Contained in the Apache-XPP distribution. |
package Apache::XPP::Cache::Expiry;
use Carp; use strict; use vars qw( $AUTOLOAD $debug $debuglines ); BEGIN { $Apache::XPP::Cache::Expiry::REVISION = (qw$Revision: 1.7 $)[-1]; $Apache::XPP::Cache::Expiry::VERSION = '2.01'; $debug = undef; $debuglines = 0; }
*r = \&{ "Apache::XPP::r" }; *AUTOLOAD = \&{ "Apache::XPP::AUTOLOAD" }; 1; __END__