Index: openacs-4/packages/acs-bootstrap-installer/installer.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/installer.tcl,v diff -u -r1.13 -r1.14 --- openacs-4/packages/acs-bootstrap-installer/installer.tcl 11 Dec 2003 21:39:46 -0000 1.13 +++ openacs-4/packages/acs-bootstrap-installer/installer.tcl 13 Dec 2003 13:19:04 -0000 1.14 @@ -16,13 +16,18 @@ {-type ""} {-size 40} {-extra_attributes ""} + {-value ""} param_name } { Return an HTML input widget for a parameter with an indication of whether the param is mandatory. } { set type_attribute [ad_decode $type "" "" "type=\"$type\""] + if { ![empty_string_p $value] } { + append extra_attributes " value=\"[ad_quotehtml $value]\"" + } + set input_widget "" if { [install_param_mandatory_p $param_name] } { 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.18 -r1.19 --- openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 11 Dec 2003 18:02:26 -0000 1.18 +++ openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 13 Dec 2003 13:19:04 -0000 1.19 @@ -339,7 +339,7 @@ System URL: - [install_input_widget system_url]
+ [install_input_widget -value $system_url system_url]
The canonical URL of your system as visible from the outside world
Usually it should include the port if your server is not on port 80