Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7950E173FB for ; Thu, 21 May 2015 15:08:56 +0000 (UTC) Received: (qmail 61158 invoked by uid 500); 21 May 2015 15:08:56 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 61097 invoked by uid 500); 21 May 2015 15:08:56 -0000 Mailing-List: contact cvs-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 cvs@httpd.apache.org Received: (qmail 61088 invoked by uid 99); 21 May 2015 15:08:56 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 May 2015 15:08:56 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 331EBAC0735 for ; Thu, 21 May 2015 15:08:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1680897 - /httpd/httpd/branches/2.4.x/STATUS Date: Thu, 21 May 2015 15:08:56 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150521150856.331EBAC0735@hades.apache.org> Author: rjung Date: Thu May 21 15:08:55 2015 New Revision: 1680897 URL: http://svn.apache.org/r1680897 Log: Propose correction to new millisecond duration feature in mod_log_config. Modified: httpd/httpd/branches/2.4.x/STATUS Modified: httpd/httpd/branches/2.4.x/STATUS URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/STATUS?rev=1680897&r1=1680896&r2=1680897&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/STATUS (original) +++ httpd/httpd/branches/2.4.x/STATUS Thu May 21 15:08:55 2015 @@ -269,6 +269,19 @@ PATCHES PROPOSED TO BACKPORT FROM TRUNK: http://people.apache.org/~trawick/OCSP-stapling-1679032-1679192-1680276.txt +1: trawick + *) mod_log_config: instead of using the dedicated pattern format "%M" for + duration milliseconds, overload the existing "%D" to choose the time + precision ("%{s}D" for seconds, "%{ms}D" for milliseconds and + "%{us}D" for microseconds). The existing %T and %D without precision + are kept for compatibility. The previously introduced "%M" is removed, + it has not yet been released. + Format pattern characters are rare, so we should only use a new one + if an existing one isn't a good fit. + trunk patch: http://svn.apache.org/r1680895 + 2.4.x patch: http://people.apache.org/~rjung/patches/httpd-2.4.x-mod_log_config-duration_units.patch + (trunk works plus CHANGES) + +1: rjung + PATCHES/ISSUES THAT ARE BEING WORKED