f19aab70fe
- New words in the dictionary - Bugs fixed in HTML Checker tag stack which rejected <IMG> and <LI> and had a potential infinite loop - Multipart handling now handles Windows-uploaded filenames correctly - Bug fixed in PostOperations that was causing nuke to fail and scribble and hide to succeed but throw an internal servlet error - Enhanced conference listing now gives a better activity report in conferences - Top Content font enlarged - Null posts now work (they used to in WebbMe) - Slippage display corrected - Probably a couple of other things I can't think of just now.
50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE 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.
|
|
You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
|
WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
|
language governing rights and limitations under the License.
|
|
|
|
The Original Code is the Venice Web Communities System.
|
|
|
|
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
|
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
|
Copyright (C) 2001 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
-->
|
|
<configuration>
|
|
|
|
<!-- Define the standard file appender. -->
|
|
<appender name="STDLOG" class="org.apache.log4j.FileAppender">
|
|
<param name="File" value="/home/erbo/venice.log"/>
|
|
<param name="Append" value="false"/>
|
|
<layout class="org.apache.log4j.PatternLayout">
|
|
<param name="ConversionPattern" value="%d %-5p %c{2} %x - %m%n"/>
|
|
</layout>
|
|
</appender>
|
|
|
|
<!-- Define the root configuration for logging. -->
|
|
<root>
|
|
<priority value="debug"/>
|
|
<appender-ref ref="STDLOG"/>
|
|
</root>
|
|
|
|
<!-- Turn down the standard detail in some areas -->
|
|
<category name="com.silverwrist.util.ServletMultipartHandler">
|
|
<priority value="fatal"/>
|
|
</category>
|
|
<category name="com.silverwrist.venice.htmlcheck">
|
|
<priority value="fatal"/>
|
|
</category>
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
|