stas 2004/08/01 22:35:47
Modified: xs/maps apache_structures.map
. Changes
Log:
Apache::RequestRec methods changes [Stas]
- readwrite => readonly:
per_dir_config, request_config,
proto_num, protocol, request_time, server, the_request,
unparsed_uri
- removed:
remaining - this method is not needed if the deprecated
$r->client_block methods aren't used, (use $r->read
$r->instead)
Revision Changes Path
1.34 +9 -9 modperl-2.0/xs/maps/apache_structures.map
Index: apache_structures.map
===================================================================
RCS file: /home/cvs/modperl-2.0/xs/maps/apache_structures.map,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -u -r1.33 -r1.34
--- apache_structures.map 24 Jul 2004 09:26:22 -0000 1.33
+++ apache_structures.map 2 Aug 2004 05:35:47 -0000 1.34
@@ -8,18 +8,18 @@
<request_rec>
< pool
< connection
- server
+< server
< next
< prev
< main
- the_request
+< the_request
assbackwards
~ proxyreq
< header_only
- protocol
- proto_num
+< protocol
+< proto_num
< hostname
- request_time
+< request_time
status_line
status
< method
@@ -33,7 +33,7 @@
> chunked
> range
> clength
- remaining
+- remaining
> read_length
> read_body
> read_chunked
@@ -52,7 +52,7 @@
ap_auth_type
~ no_cache
no_local_copy
- unparsed_uri
+< unparsed_uri
uri
filename
< canonical_filename
@@ -61,8 +61,8 @@
~ finfo
~ parsed_uri
used_path_info
- per_dir_config
- request_config
+< per_dir_config
+< request_config
! htaccess
output_filters
input_filters
1.425 +13 -3 modperl-2.0/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl-2.0/Changes,v
retrieving revision 1.424
retrieving revision 1.425
diff -u -u -r1.424 -r1.425
--- Changes 24 Jul 2004 09:26:22 -0000 1.424
+++ Changes 2 Aug 2004 05:35:47 -0000 1.425
@@ -16,9 +16,19 @@
option, configure and compile an httpd with mod_perl statically linked
in [Gozer]
-Apache::RequestRec methods: method_number, connection,
-canonical_filename, header_only, main, method, next, prev, pool are
-now read-only [Stas]
+Apache::RequestRec methods changes [Stas]
+- readwrite => readonly:
+
+ method_number, connection, canonical_filename, header_only, main,
+ method, next, prev, pool per_dir_config, request_config,
+ proto_num, protocol, request_time, server, the_request,
+ unparsed_uri
+
+- removed:
+
+ remaining - this method is not needed if the deprecated
+ $r->client_block methods aren't used, (use $r->read
+ $r->instead)
The func Apache::SubProcess::spawn_proc_prog is now a method:
$r->spawn_proc_prog [Stas]