geoff 2004/03/23 17:12:24
Modified: src/docs/2.0/user/porting compat.pod
Log:
remove revisions 1.33 through 1.37
Revision Changes Path
1.47 +7 -7 modperl-docs/src/docs/2.0/user/porting/compat.pod
Index: compat.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/porting/compat.pod,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- compat.pod 23 Mar 2004 18:22:52 -0000 1.46
+++ compat.pod 24 Mar 2004 01:12:24 -0000 1.47
@@ -376,7 +376,7 @@
C<Apache::Constants::SERVER_VERSION()> has been replaced with:
- Apache::Server::get_server_version();
+ Apache::get_server_version();
=head2 C<export()>
@@ -536,7 +536,7 @@
=head2 C<Apache-E<gt>define>
C<Apache-E<gt>define> has been replaced with
-C<Apache::Server::exists_config_define()> residing inside
+C<Apache::exists_config_define()> residing inside
C<Apache::ServerUtil>.
See the
@@ -1017,13 +1017,13 @@
=head2 C<$r-E<gt>server_root_relative>
-C<Apache::Server::server_root_relative> is a function in 2.0 and its first
+C<Apache::server_root_relative> is a function in 2.0 and its first
argument is the I<pool> object. For example:
# during request
- my $conf_dir = Apache::Server::server_root_relative($r->pool, 'conf');
+ my $conf_dir = Apache::server_root_relative($r->pool, 'conf');
# during startup
- my $conf_dir = Apache::Server::server_root_relative($s->pool, 'conf');
+ my $conf_dir = Apache::server_root_relative($s->pool, 'conf');
Alternatively:
@@ -1036,7 +1036,7 @@
my $conf_dir = Apache->server_root_relative('conf');
-is no longer valid - C<Apache::Server::server_root_relative> must be called
+is no longer valid - C<Apache::server_root_relative> must be called
from either one of C<$r>, C<$s>, or C<$c>, or be explicitly
passed a pool.
@@ -1198,7 +1198,7 @@
=head2 C<Apache::Util::unescape_uri()>
C<Apache::Util::unescape_uri()> has been replaced with
-C<Apache::URI::unescape_url()>.
+C<Apache::unescape_url()>.
=head2 C<Apache::Util::escape_html()>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]