cvs commit: modperl-2.0 Changes
geoff 2003/12/02 07:18:53 Modified:.Changes Log: less spam for me Revision ChangesPath 1.267 +4 -5 modperl-2.0/Changes Index: Changes === RCS file: /home/cvs/modperl-2.0/Changes,v retrieving revision 1.266 retrieving revision 1.267 diff -u -r1.266 -r1.267 --- Changes 1 Dec 2003 19:17:41 - 1.266 +++ Changes 2 Dec 2003 15:18:53 - 1.267 @@ -681,8 +681,7 @@ evolved merging. [Stas Bekman] fix Apache::TestConfigPerl under mod_perl 1.0, need to require -mod_perl.pm before using $mod_perl::VERSION [Geoffrey Young -<[EMAIL PROTECTED]>] +mod_perl.pm before using $mod_perl::VERSION [Geoffrey Young] add an Apache::SIG backcompat stub to Apache::compat [Stas Bekman] @@ -734,7 +733,7 @@ [Walery Studennikov <[EMAIL PROTECTED]>] fix post_connection compat method to behave as it did in 1.x -[Geoff Young <[EMAIL PROTECTED]>] +[Geoffrey Young] add support for setting $r->auth_name and $r->auth_type [Philippe M. Chiasson <[EMAIL PROTECTED]>] @@ -822,8 +821,8 @@ ModPerl::RegistryCooker syncs with mod_perl 1.0's registry: - prototypes defined checks in flush_namespace [Yair Lenga <[EMAIL PROTECTED]>] - - set error-notes on error [Geoff Young <[EMAIL PROTECTED]>] - - preserve status in Registry scripts [Geoff Young <[EMAIL PROTECTED]>] + - set error-notes on error [Geoffrey Young] + - preserve status in Registry scripts [Geoffrey Young] apr_table_t is now an opaque type, use apr_table_elts() to get the array record [Stas Bekman]
cvs commit: modperl-2.0/xs/tables/current/Apache ConstantsTable.pm FunctionTable.pm
geoff 2003/12/02 07:49:22
Modified:t/filter/TestFilter both_str_req_proxy.pm
t/response/TestAPI rutil.pm
xs/maps apr_functions.map
xs/tables/current/Apache ConstantsTable.pm FunctionTable.pm
Log:
remove deprecated APR features: apr_uri_default_port_for_scheme(),
apr_socket_opt_get(), apr_socket_opt_set(), and APR_NO_TIMEOUT.
Revision ChangesPath
1.3 +20 -1 modperl-2.0/t/filter/TestFilter/both_str_req_proxy.pm
Index: both_str_req_proxy.pm
===
RCS file: /home/cvs/modperl-2.0/t/filter/TestFilter/both_str_req_proxy.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- both_str_req_proxy.pm 25 Nov 2003 00:11:52 - 1.2
+++ both_str_req_proxy.pm 2 Dec 2003 15:49:22 - 1.3
@@ -58,6 +58,8 @@
__DATA__
+
+# 2.0
http://@servername@:@port@/*>
Order Deny,Allow
@@ -71,7 +73,24 @@
http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
ProxyPassReverse /TestFilter__both_str_req_proxy/ \
http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
-
+
+
+# 2.1
+
+http://@servername@:@port@/*>
+Order Deny,Allow
+Deny from all
+Allow from @servername@
+
+ProxyRequests Off
+RewriteEngine On
+
+ProxyPass/TestFilter__both_str_req_proxy/ \
+http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
+ProxyPassReverse /TestFilter__both_str_req_proxy/ \
+http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
+
+
PerlModule TestFilter::both_str_req_proxy
1.10 +1 -1 modperl-2.0/t/response/TestAPI/rutil.pm
Index: rutil.pm
===
RCS file: /home/cvs/modperl-2.0/t/response/TestAPI/rutil.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- rutil.pm 22 Aug 2003 19:15:08 - 1.9
+++ rutil.pm 2 Dec 2003 15:49:22 - 1.10
@@ -44,7 +44,7 @@
ok $r->get_limit_req_body || 1;
while(my($scheme, $port) = each %default_ports) {
-my $apr_port = APR::URI::default_port_for_scheme($scheme);
+my $apr_port = APR::URI::port_of_scheme($scheme);
#$r->puts("$scheme => expect: $port, got: $apr_port\n");
ok $apr_port == $port;
}
1.61 +1 -3 modperl-2.0/xs/maps/apr_functions.map
Index: apr_functions.map
===
RCS file: /home/cvs/modperl-2.0/xs/maps/apr_functions.map,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- apr_functions.map 17 Nov 2003 23:27:11 - 1.60
+++ apr_functions.map 2 Dec 2003 15:49:22 - 1.61
@@ -58,8 +58,6 @@
!apr_socket_addr_get
!apr_socket_data_get
!apr_socket_data_set
- apr_socket_opt_get
- apr_socket_opt_set
apr_socket_timeout_get | mpxs_ | ...
apr_socket_timeout_set
-apr_socket_sendfile
@@ -569,7 +567,7 @@
uptr, flags=APR_URI_UNP_OMITPASSWORD | unparse
#special case to set both uri->port and uri->port_str
mpxs_APR__URI_port | | uri, portsv=Nullsv
- apr_uri_default_port_for_scheme
+ apr_uri_port_of_scheme
!MODULE=Apache::XML
apr_text_append
1.32 +0 -1 modperl-2.0/xs/tables/current/Apache/ConstantsTable.pm
Index: ConstantsTable.pm
===
RCS file: /home/cvs/modperl-2.0/xs/tables/current/Apache/ConstantsTable.pm,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ConstantsTable.pm 25 Nov 2003 18:41:47 - 1.31
+++ ConstantsTable.pm 2 Dec 2003 15:49:22 - 1.32
@@ -242,7 +242,6 @@
'APR_SO_DEBUG',
'APR_SO_NONBLOCK',
'APR_SO_REUSEADDR',
- 'APR_SO_TIMEOUT',
'APR_SO_SNDBUF',
'APR_SO_RCVBUF',
'APR_SO_DISCONNECTED'
1.49 +0 -10 modperl-2.0/xs/tables/current/Apache/FunctionTable.pm
Index: FunctionTable.pm
===
RCS file: /home/cvs/modperl-2.0/xs/tables/current/Apache/FunctionTable.pm,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- FunctionTable.pm 1 Dec 2003 17:14:16 - 1.48
+++ FunctionTable.pm 2 Dec 2003 15:49:22 - 1.49
@@ -12903,16 +12903,6 @@
]
},
{
-'return_type' => 'apr_port_t',
-'name' => 'apr_uri_default_port_for_scheme',
-'arg
cvs commit: modperl-2.0 Changes
geoff 2003/12/02 07:49:34 Modified:.Changes Log: remove deprecated APR features: apr_uri_default_port_for_scheme(), apr_socket_opt_get(), apr_socket_opt_set(), and APR_NO_TIMEOUT. Revision ChangesPath 1.268 +4 -0 modperl-2.0/Changes Index: Changes === RCS file: /home/cvs/modperl-2.0/Changes,v retrieving revision 1.267 retrieving revision 1.268 diff -u -r1.267 -r1.268 --- Changes 2 Dec 2003 15:18:53 - 1.267 +++ Changes 2 Dec 2003 15:49:34 - 1.268 @@ -12,6 +12,10 @@ =item 1.99_12-dev +remove deprecated APR features: apr_uri_default_port_for_scheme(), +apr_socket_opt_get(), apr_socket_opt_set(), and APR_NO_TIMEOUT. +[Geoffrey Young] + Apache::MPM->is_threaded() replaces Apache::MPM_IS_THREADED [Geoffrey Young]
cvs commit: modperl-2.0 Changes
geoff 2003/12/02 10:31:53 Modified:.Changes Log: make changes reflect user space Revision ChangesPath 1.269 +3 -2 modperl-2.0/Changes Index: Changes === RCS file: /home/cvs/modperl-2.0/Changes,v retrieving revision 1.268 retrieving revision 1.269 diff -u -r1.268 -r1.269 --- Changes 2 Dec 2003 15:49:34 - 1.268 +++ Changes 2 Dec 2003 18:31:52 - 1.269 @@ -12,8 +12,9 @@ =item 1.99_12-dev -remove deprecated APR features: apr_uri_default_port_for_scheme(), -apr_socket_opt_get(), apr_socket_opt_set(), and APR_NO_TIMEOUT. +remove deprecated APR features: APR::URI::default_port_for_scheme() +and APR::NO_TIMEOUT. enabled APR::URI::port_of_scheme as a +replacement for default_port_for_scheme(). [Geoffrey Young] Apache::MPM->is_threaded() replaces Apache::MPM_IS_THREADED
cvs commit: modperl-2.0/xs/maps apr_functions.map
geoff 2003/12/02 10:34:35 Modified:xs/maps apr_functions.map Log: whoops, apr_socket_opt_get/set not deprecated, just the APR_NO_TIMEOUT option Revision ChangesPath 1.62 +2 -0 modperl-2.0/xs/maps/apr_functions.map Index: apr_functions.map === RCS file: /home/cvs/modperl-2.0/xs/maps/apr_functions.map,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- apr_functions.map 2 Dec 2003 15:49:22 - 1.61 +++ apr_functions.map 2 Dec 2003 18:34:35 - 1.62 @@ -58,6 +58,8 @@ !apr_socket_addr_get !apr_socket_data_get !apr_socket_data_set + apr_socket_opt_get + apr_socket_opt_set apr_socket_timeout_get | mpxs_ | ... apr_socket_timeout_set -apr_socket_sendfile
