You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2005/09/06 23:06:23 UTC

svn commit: r279110 - in /httpd/apreq/trunk: ./ build/ glue/perl/xsbuilder/APR/Request/ glue/perl/xsbuilder/APR/Request/Apache2/ glue/perl/xsbuilder/APR/Request/CGI/ glue/perl/xsbuilder/APR/Request/Cookie/ glue/perl/xsbuilder/APR/Request/Error/ glue/pe...

Author: joes
Date: Tue Sep  6 14:06:16 2005
New Revision: 279110

URL: http://svn.apache.org/viewcvs?rev=279110&view=rev
Log:
Run update_version.pl 2.07.

Modified:
    httpd/apreq/trunk/build/update_version.pl
    httpd/apreq/trunk/configure.ac
    httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Apache2/Apache2.pod
    httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/CGI/CGI.pod
    httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pod
    httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Error/Error.pod
    httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Param/Param.pod
    httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.pod
    httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Request.pod

Modified: httpd/apreq/trunk/build/update_version.pl
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/build/update_version.pl?rev=279110&r1=279109&r2=279110&view=diff
==============================================================================
--- httpd/apreq/trunk/build/update_version.pl (original)
+++ httpd/apreq/trunk/build/update_version.pl Tue Sep  6 14:06:16 2005
@@ -28,7 +28,8 @@
 find(sub { push @pm, $File::Find::name if /\.pm$/ },
      qw(glue/perl/lib/Apache2));
 
-system "perl -i -ple '$substitution' @pm";
+my $pattern = '(?<=our $VERSION = ")([^"]+)(?=")';
+system "perl -i -ple 's/$pattern/$version/' @pm";
 
 #
 #  configure.ac -

Modified: httpd/apreq/trunk/configure.ac
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/configure.ac?rev=279110&r1=279109&r2=279110&view=diff
==============================================================================
--- httpd/apreq/trunk/configure.ac (original)
+++ httpd/apreq/trunk/configure.ac Tue Sep  6 14:06:16 2005
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.53)
-AC_INIT(Apache HTTP Server Request Library, 33, apreq-dev@httpd.apache.org, libapreq2)
+AC_INIT(Apache HTTP Server Request Library, 2.07, apreq-dev@httpd.apache.org, libapreq2)
 dnl Generate config.nice script- macro must be here at the top
 dnl to avoid corruption of $0 and $@.
 APR_CONFIG_NICE(config.nice)
@@ -13,7 +13,7 @@
 
 dnl debian woody's archaic auto* tools don't set PACKAGE/VERSION correctly via 
 dnl AC_INIT above, so we do it again here.
-AM_INIT_AUTOMAKE(libapreq2, 33)
+AM_INIT_AUTOMAKE(libapreq2, 2.07)
 
 AC_PROG_MAKE_SET
 

Modified: httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Apache2/Apache2.pod
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Apache2/Apache2.pod?rev=279110&r1=279109&r2=279110&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Apache2/Apache2.pod (original)
+++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Apache2/Apache2.pod Tue Sep  6 14:06:16 2005
@@ -18,7 +18,7 @@
 The APR::Request::Apache2 module provides a constructor
 for interfacing with the mod_apreq2 Apache module.
 
-This manpage documents version 33 of 
+This manpage documents version 2.07 of 
 the APR::Request::Apache2 package.
 
 

Modified: httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/CGI/CGI.pod
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/CGI/CGI.pod?rev=279110&r1=279109&r2=279110&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/CGI/CGI.pod (original)
+++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/CGI/CGI.pod Tue Sep  6 14:06:16 2005
@@ -18,7 +18,7 @@
 The APR::Request::CGI module provides a constructor
 for accessing CGI request data associated to a pool via libapreq2.
 
-This manpage documents version 33
+This manpage documents version 2.07
 of the APR::Request::CGI package.
 
 

Modified: httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pod
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pod?rev=279110&r1=279109&r2=279110&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pod (original)
+++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pod Tue Sep  6 14:06:16 2005
@@ -63,7 +63,7 @@
 for interfacing with libapreq2's cookie API.  It also provides
 a few utility functions and constants.
 
-This manpage documents version 33
+This manpage documents version 2.07
 of the APR::Request::Cookie and
 APR::Request::Cookie::Table packages.
 

Modified: httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Error/Error.pod
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Error/Error.pod?rev=279110&r1=279109&r2=279110&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Error/Error.pod (original)
+++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Error/Error.pod Tue Sep  6 14:06:16 2005
@@ -13,7 +13,7 @@
 
 =head1 DESCRIPTION
 
-This manpage documents version 33
+This manpage documents version 2.07
 of the APR::Request::Error package.
 
 

Modified: httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Param/Param.pod
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Param/Param.pod?rev=279110&r1=279109&r2=279110&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Param/Param.pod (original)
+++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Param/Param.pod Tue Sep  6 14:06:16 2005
@@ -74,7 +74,9 @@
 for interfacing with libapreq2's param API.  It also provides
 a few utility functions and constants.
 
-
+This manpage documents version 2.07
+of the APR::Request::Param, APR::Request::Brigade,
+and APR::Request::Param::Table packages.
 
 
 =head1 OVERLOADS

Modified: httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.pod
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.pod?rev=279110&r1=279109&r2=279110&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.pod (original)
+++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Parser/Parser.pod Tue Sep  6 14:06:16 2005
@@ -15,7 +15,7 @@
 =head1 DESCRIPTION
 
 
-This manpage documents version 33
+This manpage documents version 2.07
 of the APR::Request::Parser package.
 
 

Modified: httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Request.pod
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Request.pod?rev=279110&r1=279109&r2=279110&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Request.pod (original)
+++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Request.pod Tue Sep  6 14:06:16 2005
@@ -51,7 +51,7 @@
 for interfacing with libapreq2's module API.  It also provides
 a few utility functions and constants.
 
-This manpage documents version 33
+This manpage documents version 2.07
 of the APR::Request and APR::Request::Custom packages.