You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bi...@apache.org on 2011/12/16 19:21:08 UTC

svn commit: r1215237 - in /incubator/accumulo/branches/1.4: docs/config.html src/core/src/main/java/org/apache/accumulo/core/conf/Property.java

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,
     <td>monitor.banner.background</td>
     <td><b><a href='#STRING'>string</a></b></td>
     <td>yes</td>
-    <td><pre>white</pre></td>
+    <td><pre>#304065</pre></td>
     <td>The background color of the banner text displayed on the monitor page.</td>
    </tr>
    <tr >
     <td>monitor.banner.color</td>
     <td><b><a href='#STRING'>string</a></b></td>
     <td>yes</td>
-    <td><pre>black</pre></td>
+    <td><pre>#c4c4c4</pre></td>
     <td>The color of the banner text displayed on the monitor page.</td>
    </tr>
    <tr class='highlight'>

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"),