ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/build/etc/default.properties
Revision: 1.14
Committed: Sat May 12 00:14:14 2001 UTC (23 years ago) by tdb
Branch: MAIN
Changes since 1.13: +3 -3 lines
Log Message:
Changes to reflect the updates in JacORB (1.3.21).

File Contents

# User Rev Content
1 tdb 1.2 # This file contains system properties that should
2     # be used as defaults by the I-Scream CORE
3     #
4 tdb 1.7 # $Author: tdb1 $
5 tdb 1.14 # $Id: default.properties,v 1.13 2001/03/23 04:14:00 tdb1 Exp $
6 tdb 1.2
7    
8     # These properties are REQUIRED by the system to tell it
9     # which ORB to use.
10 tdb 1.14 org.omg.CORBA.ORBClass= org.jacorb.orb.ORB
11     org.omg.CORBA.ORBSingletonClass= org.jacorb.orb.ORBSingleton
12 tdb 1.9 jdbc.drivers= org.gjt.mm.mysql.Driver
13 tdb 1.2
14     # The logging verbosity to be used by the system,
15     # ie, how much information will be printed to the
16     # log file, where the number is:
17     #
18     # FATAL - (0) Fatal or Critical Errors
19     # ERROR - (1) All Errors
20     # WARNING - (2) Warnings
21     # SYSMSG - (3) System Component messages
22     # SYSINIT - (4) System Component initialisation
23     # DEBUG - (5) All debugging messages
24     #
25     # [default = 3]
26 tdb 1.11 uk.org.iscream.Verbosity= 5
27 tdb 1.2
28     # The directory containing all the configuration files
29     # for the system
30     #
31     # [default = cwd]
32 tdb 1.11 uk.org.iscream.ConfigurationLocation=./etc
33     uk.org.iscream.SystemConfigurationFile=system.conf
34 ajm 1.5
35     # The time in seconds that the system should wait before
36     # trying again to start it.
37 tdb 1.11 uk.org.iscream.ComponentTimeout=5
38 tdb 1.2
39     # Currently unused, but will allow the
40     # user to select what logger they use
41     # Please choose the Logger class that you wish to use
42     # for system logging. Choices are, at present;
43     #
44     # ScreenLogger - Logs everything to the screen
45     # [Params = none]
46     # FileLogger - Logs everything to a file
47     # [FileLogger.filename = logfile name]
48     # MultiLogger - Logs to both the screen and a file
49     # [uses parameters of the loggers it uses]
50     # SimpleGUILogger - Logs to a nice GUI !
51     # [SimpleGUILogger.maxMessages = maximum number of lines to
52     # hold in the window]
53     # SimpleSwingLogger - Logs to a nicer GUI!
54     # [SimpleSwingLogger.maxMessages = maximum number of lines to
55     # hold in the window]
56     #
57     # [default = ScreenLogger]
58 tdb 1.11 uk.org.iscream.LoggerPackage=uk.org.iscream.core.loggers
59     uk.org.iscream.LoggerClass=FileLogger
60 tdb 1.2
61 tdb 1.11 uk.org.iscream.LoggerClass.FileLogger.filename=/home/cut/iscream/www/server.log
62 tdb 1.2
63 tdb 1.11 uk.org.iscream.LoggerClass.SimpleSwingLogger.maxMessages=1000
64     uk.org.iscream.LoggerClass.SimpleGUILogger.maxMessages=1000
65 tdb 1.2
66     # A list of components that should be started by the component manager
67     # ORDER IS IMPORTANT
68     # Ensure you read all documentation regarding the order of starting
69     # components
70     #
71     # Core - Must be first
72     # DBInterface & ClientInterface - Must be before RootFilter
73     # RootFilter - Must be after above, and before Filter
74     # Filter - Must be after above
75 ajm 1.3 # FilterManager - Must be after the filters
76 tdb 1.6 # Client - Must be after the ClientInterface, but usually last
77 tdb 1.2 #
78     # Thus a typical order is:
79 tdb 1.6 # Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client
80 tdb 1.13 uk.org.iscream.ComponentList=Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client