Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id CCB6C200C3A for ; Fri, 31 Mar 2017 22:18:35 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id CB43B160B80; Fri, 31 Mar 2017 20:18:35 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1E11C160B7C for ; Fri, 31 Mar 2017 22:18:34 +0200 (CEST) Received: (qmail 67210 invoked by uid 500); 31 Mar 2017 20:18:33 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 67200 invoked by uid 99); 31 Mar 2017 20:18:33 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Mar 2017 20:18:33 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id A6BD13A00A6 for ; Fri, 31 Mar 2017 20:18:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1789744 - in /tomcat/trunk: build.xml java/org/apache/tomcat/buildutil/SignCode.java webapps/docs/changelog.xml Date: Fri, 31 Mar 2017 20:18:32 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170331201832.A6BD13A00A6@svn01-us-west.apache.org> archived-at: Fri, 31 Mar 2017 20:18:36 -0000 Author: markt Date: Fri Mar 31 20:18:32 2017 New Revision: 1789744 URL: http://svn.apache.org/viewvc?rev=1789744&view=rev Log: Complete fixes to code signing task - update URL - make the debug log that was actually useful configurable Modified: tomcat/trunk/build.xml tomcat/trunk/java/org/apache/tomcat/buildutil/SignCode.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/build.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1789744&r1=1789743&r2=1789744&view=diff ============================================================================== --- tomcat/trunk/build.xml (original) +++ tomcat/trunk/build.xml Fri Mar 31 20:18:32 2017 @@ -2059,7 +2059,7 @@ skip.installer property in build.propert classpath="${tomcat.classes}" /> iter = response.getMimeHeaders().getAllHeaders(); - while (iter.hasNext()) { - MimeHeader mh = (MimeHeader) iter.next(); - log("Response header: Name: [" + mh.getName() + "], Value: [" + mh.getValue() + "]"); + if (debug) { + ByteArrayOutputStream baos = new ByteArrayOutputStream(2 * 1024); + response.writeTo(baos); + log(baos.toString("UTF-8")); } log("Processing response"); Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1789744&r1=1789743&r2=1789744&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Fri Mar 31 20:18:32 2017 @@ -85,6 +85,11 @@ Review i18n property files, remove unencessary escaping and consistently use [...] to delimit inserted values. (markt) + + Update the custom Ant task that integrates with the Symantec code + signing service to use the now mandatory 2-factor authentication. + (markt) + --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org