M build.properties.sample

- declare compile.source=1.5

M dom/build.xml
M plugins/build.xml
M plugins/examples/MediaPlayer/build.xml
M plugins/test/build.xml
M util/build.xml

- remove compile.source property, take it from top level build.properties

M plugins/mozilla/Makefile.in

- remove hard coded MS_SDK_HOME reference

M util/classes/org/mozilla/util/Log.java

- This class is the home to the LogStrings property for java supplement

M webclient/build-tests.xml

- copy properties file

- turn on logging

M webclient/build.xml

- remove compile.source property, take it from top level build.properties

- set a FILE_PATH_SEP property

- make run.test depend on prepare

- make run.test.browser depend on prepare

M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/BookmarksImpl.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/CocoaBrowserControlCanvas.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/CurrentPageImpl.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/EventRegistrationImpl.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/HistoryImpl.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/NavigationImpl.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/PreferencesImpl.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/RDFEnumeration.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/Win32BrowserControlCanvas.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WindowControlImpl.java
M webclient/classes_spec/org/mozilla/webclient/impl/wrapper_native/WrapperFactoryImpl.java

- Define toString() for all the WCRunnable and Runnable impls.

M webclient/test/automated/src/classes/org/mozilla/webclient/WebclientTestCase.java

- Some logging.

A util/classes/org/mozilla/LogStrings.properties
A webclient/test/automated/src/classes/org/mozilla/webclient/TestLogStrings.properties

- LogStrings.properties files for tests and core impl

A logging.properties

- Logging settings for java supplement


git-svn-id: svn://10.0.0.236/trunk@218507 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2007-01-17 11:43:43 +00:00
parent d3fcdf173a
commit d0b3db034a
25 changed files with 251 additions and 27 deletions

View File

@@ -0,0 +1 @@
# Sample ResourceBundle properties file

View File

@@ -24,14 +24,24 @@
package org.mozilla.util;
import java.util.Date;
import java.util.logging.Logger;
/**
* <p>Logging facility.</p>
* @author Keith Bernstein
* @version $Id: Log.java,v 1.3 2005-03-15 02:49:16 edburns%acm.org Exp $
* @version $Id: Log.java,v 1.4 2007-01-17 11:43:43 edburns%acm.org Exp $
*/
public class Log extends Object {
public static Logger getLogger( String loggerName ) {
return Logger.getLogger(loggerName, LOG_STRINGS );
}
public static final String LOG_STRINGS = "org.mozilla.LogStrings";
public static final String LOG = "org.mozilla";
public static final Logger LOGGER = getLogger(LOG);
static String applicationName = "APPLICATION NAME UNKNOWN [call setApplicationName() from main]";
static String applicationVersion = "APPLICATION VERSION UNKNOWN [call setApplicationVersion() from main]";
static String applicationVersionDate = "APPLICATION VERSION DATE UNKNOWN [call setApplicationVersionDate() from main]";