Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 77962 invoked from network); 1 Jan 2008 15:09:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Jan 2008 15:09:11 -0000 Received: (qmail 64148 invoked by uid 500); 1 Jan 2008 15:08:53 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 64126 invoked by uid 500); 1 Jan 2008 15:08:53 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 64115 invoked by uid 99); 1 Jan 2008 15:08:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Jan 2008 07:08:52 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [194.242.35.100] (HELO dns-factory.at) (194.242.35.100) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Jan 2008 15:08:25 +0000 Received: from WSLT03 apache@gknw.net [172.17.100.16] by dns-factory.at with NetMail SMTP Agent $Revision: 8582 $ on Novell NetWare; Tue, 01 Jan 2008 16:08:28 +0100 Date: Tue, 1 Jan 2008 16:08:24 +0100 From: Guenter Knauf To: dev@httpd.apache.org Subject: svn commit: r607853 - /httpd/httpd/branches/2.0.x/STATUS Message-ID: References: <20080101144852.79EA81A9838@eris.apache.org> X-Mailer: AK-Mail 4.01 [German] (registered, single user license) Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Hi Ruediger, > --- httpd/httpd/branches/2.0.x/STATUS (original) > +++ httpd/httpd/branches/2.0.x/STATUS Tue Jan 1 06:48:51 2008 > @@ -129,7 +129,7 @@ > http://svn.apache.org/viewvc?rev=3D=3D607282&view=3D=3Drev > Backport version for 2.0.x of patch: > http://awe.com/e8f6ad05238f8/CVE-2007-6388-httpd-2.x.patch > - +1: rpluem, > + +1: rpluem, fuankg > PATCHES ACCEPTED TO BACKPORT FROM TRUNK: > [ start all new proposals below, under PATCHES PROPOSED. ] I would prefer if we default to something greater than 1 second; with refresh of 1 second its near to impossible to correct a typo, f.e.: http://localhost/server-status?refresh=3Dbla results in an 1-second auto-refresh;=20 if we would default to 10 or 30 secs then it would be possible to edit the= URL and correct the value. apr_table_set(r->headers_out, status_options[i].hdr_out_str, --- apr_ltoa(r->pool, t < 1 ? 1 : t)); +++ apr_ltoa(r->pool, t < 1 ? 10 : t)); Guenter.