ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/build/etc/default.properties
(Generate patch)

Comparing projects/cms/source/server/build/etc/default.properties (file contents):
Revision 1.1.2.1 by tdb, Tue Dec 12 19:00:44 2000 UTC vs.
Revision 1.17 by tdb, Fri Feb 21 13:45:49 2003 UTC

# Line 7 | Line 7
7  
8   # These properties are REQUIRED by the system to tell it
9   # which ORB to use.
10 < org.omg.CORBA.ORBClass= jacorb.orb.ORB
11 < org.omg.CORBA.ORBSingletonClass= jacorb.orb.ORBSingleton
10 > org.omg.CORBA.ORBClass= org.jacorb.orb.ORB
11 > org.omg.CORBA.ORBSingletonClass= org.jacorb.orb.ORBSingleton
12 > jdbc.drivers= org.gjt.mm.mysql.Driver
13  
14 + # Default naming service location
15 + ORBInitRef.NameService=http://localhost:8052/NS_Ref
16 +
17   # The logging verbosity to be used by the system,
18   # ie, how much information will be printed to the
19   # log file, where the number is:
# Line 22 | Line 26 | org.omg.CORBA.ORBSingletonClass= jacorb.orb.ORBSinglet
26   #   DEBUG   - (5) All debugging messages
27   #
28   # [default = 3]
29 < uk.ac.ukc.iscream.Verbosity= 5
29 > uk.org.iscream.cms.server.Verbosity= 5
30  
31   # The directory containing all the configuration files
32   # for the system
33   #
34   # [default = cwd]
35 < uk.ac.ukc.iscream.ConfigurationLocation=./etc
36 < uk.ac.ukc.iscream.SystemConfigurationFile=system.conf
35 > uk.org.iscream.cms.server.ConfigurationLocation=./etc
36 > uk.org.iscream.cms.server.SystemConfigurationFile=system.conf
37  
38 + # The time in seconds that the system should wait before
39 + # trying again to start it.
40 + uk.org.iscream.cms.server.ComponentTimeout=5
41 +
42   # Currently unused, but will allow the
43   # user to select what logger they use
44   # Please choose the Logger class that you wish to use
# Line 39 | Line 47 | uk.ac.ukc.iscream.SystemConfigurationFile=system.conf
47   #   ScreenLogger    - Logs everything to the screen
48   #     [Params = none]
49   #   FileLogger      - Logs everything to a file
50 < #     [Param1 = logfile name]
50 > #     [FileLogger.filename = logfile name]
51   #   MultiLogger     - Logs to both the screen and a file
52 < #     [Param1 = logfile name]
52 > #     [uses parameters of the loggers it uses]
53   #   SimpleGUILogger - Logs to a nice GUI !
54 < #     [Params = none]
54 > #     [SimpleGUILogger.maxMessages = maximum number of lines to
55 > #                                    hold in the window]
56 > #   SimpleSwingLogger - Logs to a nicer GUI!
57 > #     [SimpleSwingLogger.maxMessages = maximum number of lines to
58 > #                                      hold in the window]
59   #  
60   # [default = ScreenLogger]
61 < uk.ac.ukc.iscream.LoggerPackage=uk.ac.ukc.iscream.core.loggers
62 < uk.ac.ukc.iscream.LoggerClass=ScreenLogger
63 < uk.ac.ukc.iscream.LoggerClassParam1=/usr/local/proj/co600_10/servercore.log
61 > uk.org.iscream.cms.server.LoggerPackage=uk.org.iscream.cms.server.core.loggers
62 > uk.org.iscream.cms.server.LoggerClass=ScreenLogger
63 >
64 > uk.org.iscream.cms.server.LoggerClass.FileLogger.filename=/home/cut/iscream/www/server.log
65 >
66 > uk.org.iscream.cms.server.LoggerClass.SimpleSwingLogger.maxMessages=1000
67 > uk.org.iscream.cms.server.LoggerClass.SimpleGUILogger.maxMessages=1000
68 >
69 > # A list of components that should be started by the component manager
70 > # ORDER IS IMPORTANT
71 > # Ensure you read all documentation regarding the order of starting
72 > # components
73 > #
74 > # Core - Must be first
75 > # DBInterface & ClientInterface - Must be before RootFilter
76 > # RootFilter - Must be after above, and before Filter
77 > # Filter - Must be after above
78 > # FilterManager - Must be after the filters
79 > # Client - Must be after the ClientInterface, but usually last
80 > #
81 > # Thus a typical order is:
82 > # Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client
83 > uk.org.iscream.cms.server.ComponentList=Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines