stas 2003/03/03 16:56:26
Modified: lib/Apache compat.pm
. Changes
Log:
support 1.0's Apache->push_handlers, Apache->set_handlers
and Apache->get_handlers
Revision Changes Path
1.82 +15 -0 modperl-2.0/lib/Apache/compat.pm
Index: compat.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/Apache/compat.pm,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- compat.pm 19 Feb 2003 23:55:23 -0000 1.81
+++ compat.pm 4 Mar 2003 00:56:26 -0000 1.82
@@ -125,6 +125,21 @@
die $err if $err;
}
+sub push_handlers {
+ shift;
+ Apache->server->push_handlers(@_);
+}
+
+sub set_handlers {
+ shift;
+ Apache->server->set_handlers(@_);
+}
+
+sub get_handlers {
+ shift;
+ Apache->server->get_handlers(@_);
+}
+
package Apache::Constants;
use Apache::Const ();
1.142 +3 -0 modperl-2.0/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl-2.0/Changes,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- Changes 3 Mar 2003 03:39:07 -0000 1.141
+++ Changes 4 Mar 2003 00:56:26 -0000 1.142
@@ -10,6 +10,9 @@
=item 1.99_09-dev
+Apache::compat: support 1.0's Apache->push_handlers,
+Apache->set_handlers and Apache->get_handlers [Stas]
+
revamp the code handling output flushing and flush bucket
sending. Namelly modperl_wbucket_flush and modperl_wbucket_pass now
can be told to send a flush bucket by themselves, attaching it to the