Index: openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl,v diff -u -r1.3.2.18 -r1.3.2.19 --- openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl 21 Apr 2017 14:22:45 -0000 1.3.2.18 +++ openacs-4/packages/acs-tcl/tcl/http-client-procs.tcl 22 Apr 2017 18:11:54 -0000 1.3.2.19 @@ -233,7 +233,7 @@ } { Obtains the right https native API } { - # Since naviserver 4.99.12 ns_http handles also https + # Since NaviServer 4.99.12 ns_http handles also https if {[apm_version_names_compare \ [ns_info patchlevel] "4.99.12"] >= 0} { return [info commands ns_http] @@ -1701,7 +1701,7 @@ # Unfortunately, as we are interacting with a shell, there is no # way to escape content easily and safely. Even when body is - # passed as a tcl variable, we just write its content to a file + # passed as a Tcl variable, we just write its content to a file # and let it be read by curl. set create_body_file_p [expr {$body_file eq ""}] if {$create_body_file_p} { @@ -2152,7 +2152,7 @@
  • array (list of key value pairs like what [array get] returns)
  • formvars (list of url encoded formvars, i.e. foo=bar&x=1)
  • ns_set (an ns_set containing key/value pairs) -
  • vars (a list of tcl vars to grab from the calling environment) +
  • vars (a list of Tcl vars to grab from the calling environment)