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 2006/02/11 17:31:30 UTC

svn commit: r377000 - in /httpd/apreq/trunk: ./ glue/perl/lib/Apache2/ 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/Reques...

Author: joes
Date: Sat Feb 11 08:31:28 2006
New Revision: 377000

URL: http://svn.apache.org/viewcvs?rev=377000&view=rev
Log:
on to 2.08

Modified:
    httpd/apreq/trunk/CHANGES
    httpd/apreq/trunk/STATUS
    httpd/apreq/trunk/configure.ac
    httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm
    httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm
    httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm
    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
    httpd/apreq/trunk/include/apreq_version.h

Modified: httpd/apreq/trunk/CHANGES
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/CHANGES?rev=377000&r1=376999&r2=377000&view=diff
==============================================================================
--- httpd/apreq/trunk/CHANGES (original)
+++ httpd/apreq/trunk/CHANGES Sat Feb 11 08:31:28 2006
@@ -2,6 +2,9 @@
 //! brief List of major changes.
 
 
+@section v2_08 Changes with libapreq2-2.08 (under development)
+
+
 @section v2_07 Changes with libapreq2-2.07 (released February 12, 2006)
 
 

Modified: httpd/apreq/trunk/STATUS
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/STATUS?rev=377000&r1=376999&r2=377000&view=diff
==============================================================================
--- httpd/apreq/trunk/STATUS (original)
+++ httpd/apreq/trunk/STATUS Sat Feb 11 08:31:28 2006
@@ -1,6 +1,6 @@
 /** @page apreq_status STATUS
 
-    2.07 released on February 12, 2006
+    2.08 under development.
 
 Contributors looking for a mission:
 

Modified: httpd/apreq/trunk/configure.ac
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/configure.ac?rev=377000&r1=376999&r2=377000&view=diff
==============================================================================
--- httpd/apreq/trunk/configure.ac (original)
+++ httpd/apreq/trunk/configure.ac Sat Feb 11 08:31:28 2006
@@ -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, 2.07, apreq-dev@httpd.apache.org, libapreq2)
+AC_INIT(Apache HTTP Server Request Library, 2.08, 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, 2.07)
+AM_INIT_AUTOMAKE(libapreq2, 2.08)
 
 AC_PROG_MAKE_SET
 

Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm?rev=377000&r1=376999&r2=377000&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm Sat Feb 11 08:31:28 2006
@@ -9,7 +9,7 @@
 use overload '""' => sub { shift->as_string() }, fallback => 1;
 
 push our @ISA, "APR::Request::Cookie";
-our $VERSION = "2.07";
+our $VERSION = "2.08";
 
 sub new {
     my ($class, $r, %attrs) = @_;

Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm?rev=377000&r1=376999&r2=377000&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm Sat Feb 11 08:31:28 2006
@@ -3,7 +3,7 @@
 use APR::Request::Apache2;
 use Apache2::RequestRec;
 push our @ISA, qw/Apache2::RequestRec APR::Request::Apache2/;
-our $VERSION = "2.07";
+our $VERSION = "2.08";
 
 my %old_limits = (
     post_max => "read_limit",

Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm?rev=377000&r1=376999&r2=377000&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm Sat Feb 11 08:31:28 2006
@@ -1,7 +1,7 @@
 package Apache2::Upload;
 use Apache2::Request;
 push our @ISA, qw/APR::Request::Param/;
-our $VERSION = "2.07";
+our $VERSION = "2.08";
 no strict 'refs';
 for (qw/slurp type size link tempname fh io filename/) {
     *{$_} = *{"APR::Request::Param::upload_$_"}{CODE};

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=377000&r1=376999&r2=377000&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 Sat Feb 11 08:31:28 2006
@@ -18,7 +18,7 @@
 The APR::Request::Apache2 module provides a constructor
 for interfacing with the mod_apreq2 Apache module.
 
-This manpage documents version 2.07 of 
+This manpage documents version 2.08 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=377000&r1=376999&r2=377000&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 Sat Feb 11 08:31:28 2006
@@ -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 2.07
+This manpage documents version 2.08
 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=377000&r1=376999&r2=377000&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 Sat Feb 11 08:31:28 2006
@@ -63,7 +63,7 @@
 for interfacing with libapreq2's cookie API.  It also provides
 a few utility functions and constants.
 
-This manpage documents version 2.07
+This manpage documents version 2.08
 of the APR::Request::Cookie package.
 
 

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=377000&r1=376999&r2=377000&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 Sat Feb 11 08:31:28 2006
@@ -13,7 +13,7 @@
 
 =head1 DESCRIPTION
 
-This manpage documents version 2.07
+This manpage documents version 2.08
 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=377000&r1=376999&r2=377000&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 Sat Feb 11 08:31:28 2006
@@ -76,7 +76,7 @@
 for interfacing with libapreq2's param API.  It also provides
 a few utility functions and constants.
 
-This manpage documents version 2.07
+This manpage documents version 2.08
 of the APR::Request::Param, APR::Request::Brigade,
 and APR::Request::Brigade::IO packages.
 

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=377000&r1=376999&r2=377000&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 Sat Feb 11 08:31:28 2006
@@ -15,7 +15,7 @@
 =head1 DESCRIPTION
 
 
-This manpage documents version 2.07
+This manpage documents version 2.08
 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=377000&r1=376999&r2=377000&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Request.pod (original)
+++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Request.pod Sat Feb 11 08:31:28 2006
@@ -69,7 +69,7 @@
 for interfacing with libapreq2's module API.  It also provides
 a few utility functions and constants.
 
-This manpage documents version 2.07
+This manpage documents version 2.08
 of the APR::Request, APR::Request::Custom,
 APR::Request::Cookie::Table, and
 APR::Request::Param::Table packages.

Modified: httpd/apreq/trunk/include/apreq_version.h
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/include/apreq_version.h?rev=377000&r1=376999&r2=377000&view=diff
==============================================================================
--- httpd/apreq/trunk/include/apreq_version.h (original)
+++ httpd/apreq/trunk/include/apreq_version.h Sat Feb 11 08:31:28 2006
@@ -67,7 +67,7 @@
  *  This symbol is defined for internal, "development" copies of libapreq.
  *  This symbol will be \#undef'd for releases.
  */
-#undef APREQ_IS_DEV_VERSION
+#define APREQ_IS_DEV_VERSION
 
 
 /** The formatted string of libapreq's version */