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.8.2.2 -r1.8.2.3 --- openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 2 Apr 2003 00:33:43 -0000 1.8.2.2 +++ openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 4 Apr 2003 02:25:24 -0000 1.8.2.3 @@ -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.