--- projects/cms/source/server/build/etc/default.properties 2000/12/12 19:00:44 1.1.2.1 +++ projects/cms/source/server/build/etc/default.properties 2001/03/14 23:25:18 1.10 @@ -2,13 +2,14 @@ # be used as defaults by the I-Scream CORE # # $Author: tdb $ -# $Id: default.properties,v 1.1.2.1 2000/12/12 19:00:44 tdb Exp $ +# $Id: default.properties,v 1.10 2001/03/14 23:25:18 tdb Exp $ # These properties are REQUIRED by the system to tell it # which ORB to use. org.omg.CORBA.ORBClass= jacorb.orb.ORB org.omg.CORBA.ORBSingletonClass= jacorb.orb.ORBSingleton +jdbc.drivers= org.gjt.mm.mysql.Driver # The logging verbosity to be used by the system, # ie, how much information will be printed to the @@ -31,6 +32,10 @@ uk.ac.ukc.iscream.Verbosity= 5 uk.ac.ukc.iscream.ConfigurationLocation=./etc uk.ac.ukc.iscream.SystemConfigurationFile=system.conf +# The time in seconds that the system should wait before +# trying again to start it. +uk.ac.ukc.iscream.ComponentTimeout=5 + # Currently unused, but will allow the # user to select what logger they use # Please choose the Logger class that you wish to use @@ -39,13 +44,37 @@ uk.ac.ukc.iscream.SystemConfigurationFile=system.conf # ScreenLogger - Logs everything to the screen # [Params = none] # FileLogger - Logs everything to a file -# [Param1 = logfile name] +# [FileLogger.filename = logfile name] # MultiLogger - Logs to both the screen and a file -# [Param1 = logfile name] +# [uses parameters of the loggers it uses] # SimpleGUILogger - Logs to a nice GUI ! -# [Params = none] +# [SimpleGUILogger.maxMessages = maximum number of lines to +# hold in the window] +# SimpleSwingLogger - Logs to a nicer GUI! +# [SimpleSwingLogger.maxMessages = maximum number of lines to +# hold in the window] # # [default = ScreenLogger] -uk.ac.ukc.iscream.LoggerPackage=uk.ac.ukc.iscream.core.loggers -uk.ac.ukc.iscream.LoggerClass=ScreenLogger -uk.ac.ukc.iscream.LoggerClassParam1=/usr/local/proj/co600_10/servercore.log +uk.ac.ukc.iscream.LoggerPackage=uk.org.iscream.core.loggers +uk.ac.ukc.iscream.LoggerClass=FileLogger + +uk.ac.ukc.iscream.LoggerClass.FileLogger.filename=/home/cut/iscream/www/server.log + +uk.ac.ukc.iscream.LoggerClass.SimpleSwingLogger.maxMessages=1000 +uk.ac.ukc.iscream.LoggerClass.SimpleGUILogger.maxMessages=1000 + +# A list of components that should be started by the component manager +# ORDER IS IMPORTANT +# Ensure you read all documentation regarding the order of starting +# components +# +# Core - Must be first +# DBInterface & ClientInterface - Must be before RootFilter +# RootFilter - Must be after above, and before Filter +# Filter - Must be after above +# FilterManager - Must be after the filters +# Client - Must be after the ClientInterface, but usually last +# +# Thus a typical order is: +# Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client +uk.org.iscream.ComponentList=Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client