Return-Path: Delivered-To: apmail-httpd-apreq-cvs-archive@www.apache.org Received: (qmail 77233 invoked from network); 2 Oct 2005 13:59:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Oct 2005 13:59:51 -0000 Received: (qmail 10709 invoked by uid 500); 2 Oct 2005 13:59:50 -0000 Delivered-To: apmail-httpd-apreq-cvs-archive@httpd.apache.org Received: (qmail 10670 invoked by uid 500); 2 Oct 2005 13:59:49 -0000 Mailing-List: contact apreq-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: apreq-dev@httpd.apache.org List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list apreq-cvs@httpd.apache.org Received: (qmail 10654 invoked by uid 99); 2 Oct 2005 13:59:49 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 02 Oct 2005 06:59:49 -0700 Received: (qmail 77006 invoked by uid 65534); 2 Oct 2005 13:59:21 -0000 Message-ID: <20051002135920.76894.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r293116 - in /httpd/apreq/trunk: CHANGES glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pm glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pod Date: Sun, 02 Oct 2005 13:57:51 -0000 To: apreq-cvs@httpd.apache.org From: joes@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: joes Date: Sun Oct 2 06:56:37 2005 New Revision: 293116 URL: http://svn.apache.org/viewcvs?rev=293116&view=rev Log: fix freeze() Modified: httpd/apreq/trunk/CHANGES httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pm httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pod Modified: httpd/apreq/trunk/CHANGES URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/CHANGES?rev=293116&r1=293115&r2=293116&view=diff ============================================================================== --- httpd/apreq/trunk/CHANGES (original) +++ httpd/apreq/trunk/CHANGES Sun Oct 2 06:56:37 2005 @@ -5,6 +5,9 @@ @section v2_07 Changes with libapreq2-2.07 +- Perl API [joes] + APR::Request::Cookie::freeze() isn't a class method. + - C API [joes] Fix off-by-one bug in the continuation-lines portion of the header parser. Modified: httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pm URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pm?rev=293116&r1=293115&r2=293116&view=diff ============================================================================== --- httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pm (original) +++ httpd/apreq/trunk/glue/perl/xsbuilder/APR/Request/Cookie/Cookie.pm Sun Oct 2 06:56:37 2005 @@ -20,7 +20,6 @@ sub freeze { return $_[1] } sub thaw { my $obj = shift; - return shift if @_; return "$obj"; } 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=293116&r1=293115&r2=293116&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 Sun Oct 2 06:56:37 2005 @@ -145,10 +145,10 @@ =head2 thaw - APR::Request::Cookie->thaw($value) + $cookie->thaw() -Class method that reverses C<< freeze() >>; -here it returns $value unmodified. +Reverses C<< freeze() >>; here it simply returns +$cookie->value since freeze() is a noop.