Index: openacs-4/packages/acs-bootstrap-installer/installer/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/installer/index.tcl,v diff -u -r1.9 -r1.10 --- openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 30 Jan 2003 14:10:55 -0000 1.9 +++ openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 17 May 2003 09:40:03 -0000 1.10 @@ -59,6 +59,30 @@ " +if { [file exists [acs_root_dir]/install.xml] } { + + set file [open "[acs_root_dir]/install.xml"] + nsv_set acs_application node [xml_doc_get_first_node_by_name [xml_parse -persist [xml_prepare_data [read $file]]] application] + close $file + + nsv_set acs_application name [apm_required_attribute_value [nsv_get acs_application node] name] + nsv_set acs_application pretty_name \ + [apm_attribute_value -default [nsv_get acs_application name] [nsv_get acs_application node] pretty-name] + nsv_set acs_application home [apm_attribute_value -default "" [nsv_get acs_application node] home] + + append body "

+The installer will automatically install the [nsv_get acs_application pretty_name] +application after the basic OpenACS tookit has been installed. +" + + if { ![string equal [nsv_get acs_application home] ""] } { + append body "

+For more information about the [nsv_get acs_application pretty_name] application visit the +[nsv_get acs_application pretty_name] home page +" + } +} + set error_p 0 # do some error checking. @@ -183,7 +207,6 @@ # APM needs to check its permissions. if { [catch {apm_workspace_dir} ] } { append errors "

  • The [acs_root_dir] directory has incorrect permissions. It must be owned by -[apm_workspace_dir] the user executing the web server, normally nsadmin, and the owner must have read and write priveliges on this directory. You can correct this by running the following script as root. To give another user access to the files, add them to web group.