Return-Path: X-Original-To: apmail-incubator-accumulo-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-accumulo-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 744AF9E2C for ; Fri, 16 Dec 2011 18:21:30 +0000 (UTC) Received: (qmail 6130 invoked by uid 500); 16 Dec 2011 18:21:30 -0000 Delivered-To: apmail-incubator-accumulo-commits-archive@incubator.apache.org Received: (qmail 6105 invoked by uid 500); 16 Dec 2011 18:21:30 -0000 Mailing-List: contact accumulo-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: accumulo-dev@incubator.apache.org Delivered-To: mailing list accumulo-commits@incubator.apache.org Received: (qmail 6098 invoked by uid 99); 16 Dec 2011 18:21:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2011 18:21:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2011 18:21:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 64D422388860; Fri, 16 Dec 2011 18:21:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1215237 - in /incubator/accumulo/branches/1.4: docs/config.html src/core/src/main/java/org/apache/accumulo/core/conf/Property.java Date: Fri, 16 Dec 2011 18:21:08 -0000 To: accumulo-commits@incubator.apache.org From: billie@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111216182108.64D422388860@eris.apache.org> Author: billie Date: Fri Dec 16 18:21:07 2011 New Revision: 1215237 URL: http://svn.apache.org/viewvc?rev=1215237&view=rev Log: ACCUMULO-224 changed default banner colors Modified: incubator/accumulo/branches/1.4/docs/config.html incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/conf/Property.java Modified: incubator/accumulo/branches/1.4/docs/config.html URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/docs/config.html?rev=1215237&r1=1215236&r2=1215237&view=diff ============================================================================== --- incubator/accumulo/branches/1.4/docs/config.html (original) +++ incubator/accumulo/branches/1.4/docs/config.html Fri Dec 16 18:21:07 2011 @@ -621,14 +621,14 @@ $HADOOP_HOME/lib/[^.].*.jar, monitor.banner.background string yes -
white
+
#304065
The background color of the banner text displayed on the monitor page. monitor.banner.color string yes -
black
+
#c4c4c4
The color of the banner text displayed on the monitor page. Modified: incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/conf/Property.java URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/conf/Property.java?rev=1215237&r1=1215236&r2=1215237&view=diff ============================================================================== --- incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/conf/Property.java (original) +++ incubator/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/conf/Property.java Fri Dec 16 18:21:07 2011 @@ -182,8 +182,9 @@ public enum Property { MONITOR_PORT("monitor.port.client", "50095", PropertyType.PORT, "The listening port for the monitor's http service"), MONITOR_LOG4J_PORT("monitor.port.log4j", "4560", PropertyType.PORT, "The listening port for the monitor's log4j logging collection."), MONITOR_BANNER_TEXT("monitor.banner.text", "", PropertyType.STRING, "The banner text displayed on the monitor page."), - MONITOR_BANNER_COLOR("monitor.banner.color", "black", PropertyType.STRING, "The color of the banner text displayed on the monitor page."), - MONITOR_BANNER_BACKGROUND("monitor.banner.background", "white", PropertyType.STRING, "The background color of the banner text displayed on the monitor page."), + MONITOR_BANNER_COLOR("monitor.banner.color", "#c4c4c4", PropertyType.STRING, "The color of the banner text displayed on the monitor page."), + MONITOR_BANNER_BACKGROUND("monitor.banner.background", "#304065", PropertyType.STRING, + "The background color of the banner text displayed on the monitor page."), TRACE_PREFIX("trace.", null, PropertyType.PREFIX, "Properties in this category affect the behavior of distributed tracing."), TRACE_PORT("trace.port.client", "12234", PropertyType.PORT, "The listening port for the trace server"),