Return-Path: Delivered-To: apmail-httpd-apreq-cvs-archive@www.apache.org Received: (qmail 23710 invoked from network); 8 Jul 2005 21:32:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Jul 2005 21:32:25 -0000 Received: (qmail 59231 invoked by uid 500); 8 Jul 2005 21:32:25 -0000 Delivered-To: apmail-httpd-apreq-cvs-archive@httpd.apache.org Received: (qmail 59212 invoked by uid 500); 8 Jul 2005 21:32:24 -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 59199 invoked by uid 99); 8 Jul 2005 21:32:24 -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; Fri, 08 Jul 2005 14:32:13 -0700 Received: (qmail 23640 invoked by uid 65534); 8 Jul 2005 21:32:10 -0000 Message-ID: <20050708213210.23639.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r209893 - /httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm Date: Fri, 08 Jul 2005 21:32:10 -0000 To: apreq-cvs@httpd.apache.org From: joes@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: joes Date: Fri Jul 8 14:32:08 2005 New Revision: 209893 URL: http://svn.apache.org/viewcvs?rev=209893&view=rev Log: VALUE_CLASS is no longer available. Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm 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=209893&r1=209892&r2=209893&view=diff ============================================================================== --- httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm (original) +++ httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm Fri Jul 8 14:32:08 2005 @@ -96,17 +96,13 @@ sub cookies { Apache2::Cookie->fetch(@_) } *Apache2::Cookie::Jar::status = *APR::Request::jar_status; -my %old_args = ( - value_class => "cookie_class", -); - sub new { my $class = shift; my $jar = $class->APR::Request::Apache2::handle(shift); my %attrs = @_; while (my ($k, $v) = each %attrs) { $k =~ s/^-//; - my $method = $old_args{lc($k)} || lc $k; + my $method = lc $k; $jar->$method($v); } return $jar;