Index: openacs-4/tcl/0-acs-init.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/tcl/0-acs-init.tcl,v diff -u -r1.3 -r1.4 --- openacs-4/tcl/0-acs-init.tcl 12 Apr 2001 17:17:32 -0000 1.3 +++ openacs-4/tcl/0-acs-init.tcl 29 Aug 2001 21:22:49 -0000 1.4 @@ -1,24 +1,24 @@ # /tcl/0-acs-init.tcl # -# The very first file invoked when ACS is started up. Sources +# The very first file invoked when OpenACS is started up. Sources # /packages/acs-tcl/bootstrap/bootstrap.tcl. # # jsalz@mit.edu, 12 May 2000 # # $Id$ -# Determine the ACS root directory, which is the directory right above the +# Determine the OpenACS root directory, which is the directory right above the # Tcl library directory [ns_info tcllib]. set root_directory [file dirname [string trimright [ns_info tcllib] "/"]] nsv_set acs_properties root_directory $root_directory -ns_log "Notice" "Loading the ACS, rooted at $root_directory" +ns_log "Notice" "Loading OpenACS, rooted at $root_directory" set bootstrap_file "$root_directory/packages/acs-bootstrap-installer/bootstrap.tcl" ns_log "Notice" "Sourcing $bootstrap_file" if { [file isfile $bootstrap_file] } { source $bootstrap_file } else { - ns_log "Error" "$bootstrap_file does not exist. Aborting the ACS load process." + ns_log "Error" "$bootstrap_file does not exist. Aborting the OpenACS load process." }