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.15 -r1.16 --- openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 10 Oct 2003 14:52:16 -0000 1.15 +++ openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 14 Oct 2003 13:59:06 -0000 1.16 @@ -68,20 +68,19 @@ error "Installer: Could not find root node application in install.xml file" } - nsv_set acs_application name [apm_required_attribute_value $root_node name] - nsv_set acs_application pretty_name \ - [apm_attribute_value -default [nsv_get acs_application name] $root_node pretty-name] - nsv_set acs_application home [apm_attribute_value -default "" $root_node home] + set acs_application(name) [apm_required_attribute_value $root_node name] + set acs_application(pretty_name) [apm_attribute_value -default $acs_application(name) $root_node pretty-name] + set acs_application(home) [apm_attribute_value -default "" $root_node home] append body "

-The installer will automatically install the [nsv_get acs_application pretty_name] +The installer will automatically install the $acs_application(pretty_name) application after the basic OpenACS tookit has been installed. " - if { ![string equal [nsv_get acs_application home] ""] } { + if { ![string equal $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 +For more information about the $acs_application(pretty_name) application visit the +$acs_application(pretty_name) home page " } }