first round of NRPA changes:
- added color customization in render-config.xml - added ability to scale size of Venice logo in footer - added ability to customize size of site logo, as well as add a hyperlink - moved to use of LOG4J 1.1.3, LOG4J now installed in Venice lib directory instead of in JRE extensions directory (only Java extensions should go in JRE extensions directory) - close to requiring JAXP 1.1 (will still work with 1.0 though)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE configuration SYSTEM "log4j.dtd">
|
||||
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
||||
<!--
|
||||
The contents of this file are subject to the Mozilla Public License Version 1.1
|
||||
(the "License"); you may not use this file except in compliance with the License.
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
Contributor(s):
|
||||
-->
|
||||
<configuration>
|
||||
<log4j:configuration>
|
||||
|
||||
<!-- Define the standard file appender. -->
|
||||
<appender name="STDLOG" class="org.apache.log4j.RollingFileAppender">
|
||||
@@ -44,7 +44,7 @@
|
||||
<priority value="fatal"/>
|
||||
</category>
|
||||
|
||||
</configuration>
|
||||
</log4j:configuration>
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -41,6 +41,33 @@
|
||||
<!-- Specifies the default <FONT FACE=""> to use for all text. -->
|
||||
<font>Arial, Helvetica</font>
|
||||
|
||||
<!-- Various HTML colors to render portions of the interface in. Note that these may either be
|
||||
standard HTML color names or #RRGGBB color values. -->
|
||||
<colors>
|
||||
<frame-bg>#9999FF</frame-bg> <!-- outer frame background -->
|
||||
<title-bg>#6666CC</title-bg> <!-- title background -->
|
||||
<title-fg>white</title-fg> <!-- title foreground -->
|
||||
<title-link>yellow</title-link> <!-- title links -->
|
||||
<left-bg>#9999FF</left-bg> <!-- left menu bar background -->
|
||||
<left-fg>black</left-fg> <!-- left menu bar foreground -->
|
||||
<content-bg>white</content-bg> <!-- content background -->
|
||||
<content-fg>black</content-fg> <!-- content text -->
|
||||
<content-hdr>#3333AA</content-hdr> <!-- content header text -->
|
||||
<content-disabled>silver</content-disabled> <!-- disabled text -->
|
||||
<content-error>#660000</content-error> <!-- error message text -->
|
||||
<sidebox-title-bg>#6666CC</sidebox-title-bg> <!-- background of sidebox title (front page) -->
|
||||
<sidebox-title-fg>white</sidebox-title-fg> <!-- foreground of sidebox title (front page) -->
|
||||
<sidebox-content-bg>#9999FF</sidebox-content-bg> <!-- background of sidebox content (front page) -->
|
||||
<sidebox-content-fg>black</sidebox-content-fg> <!-- foreground of sidebox content (front page) -->
|
||||
<confirm-title-bg>#006600</confirm-title-bg> <!-- background of confirm box title bar -->
|
||||
<confirm-title-fg>white</confirm-title-fg> <!-- foreground of confirm box title bar -->
|
||||
<error-title-bg>#660000</error-title-bg> <!-- background of error box title bar -->
|
||||
<error-title-fg>white</error-title-fg> <!-- foreground of error box title bar -->
|
||||
</colors>
|
||||
|
||||
<!-- Footer logo scaling expressed as a percentage of full size. -->
|
||||
<footer-logo-scale>100</footer-logo-scale>
|
||||
|
||||
</rendering>
|
||||
|
||||
<!-- Used to configure URL paths to various global resources. -->
|
||||
@@ -51,8 +78,12 @@
|
||||
<!-- Base URL for all static pages linked to by the engine. MUST include the trailing slash. -->
|
||||
<static>/venice/static/</static>
|
||||
|
||||
<!-- The site-relative URL to the site logo. The image should be 140x80 pixels. -->
|
||||
<site-logo>/venice/images/powered-by-venice.gif</site-logo>
|
||||
<!-- The site-relative URL to the site logo. The image should be 140x80 pixels, unless overridden
|
||||
by the "width" and "height" attributes. The optional "href" attribute is where clicking on
|
||||
the site logo should link to. -->
|
||||
<site-logo width="140" height="80"
|
||||
href="http://venice.sourceforge.net">/venice/images/powered-by-venice.gif</site-logo>
|
||||
|
||||
</paths>
|
||||
|
||||
<!-- Contains standard messages displayed by front end -->
|
||||
|
||||
Reference in New Issue
Block a user