Index: openacs-4/packages/xotcl-core/tcl/05-db-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/05-db-procs.tcl,v diff -u -r1.148.2.28 -r1.148.2.29 --- openacs-4/packages/xotcl-core/tcl/05-db-procs.tcl 6 Dec 2020 08:37:05 -0000 1.148.2.28 +++ openacs-4/packages/xotcl-core/tcl/05-db-procs.tcl 5 Jan 2021 09:38:55 -0000 1.148.2.29 @@ -75,7 +75,7 @@ switch -- $type { string { set type text } long_text { set type text } - date { set type "timestamp with time zone" } + date { set type "timestamp with timezone" } ltree { set type [expr {[:has_ltree] ? "ltree" : "text" }] } default { return [next] } } @@ -706,7 +706,7 @@ # Cache the information, whether the prepared statement was # defined per pg session. Depending on the version of the driver, # we can obtain a session_id from the db driver. If we can't, - # we fall back to a per request-cache (via toplevel variable). + # we fall back to a per request-cache (via top-level variable). # try { set session_id [ns_db session_id $handle] @@ -1799,7 +1799,7 @@ # DBMS. Therefore, we use a type cast to check whether # specified default value (e.g. '1900-01-01') is in fact # equivalent to default stored in db (e.g. '1900-01-01 - # 00:00:00+01'::timestamp with time zone). + # 00:00:00+01'::timestamp with timezone). # # Booleans can be normalized in advance without involving the # database Index: openacs-4/packages/xotcl-core/tcl/context-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/context-procs.tcl,v diff -u -r1.75.2.20 -r1.75.2.21 --- openacs-4/packages/xotcl-core/tcl/context-procs.tcl 18 Dec 2020 14:38:30 -0000 1.75.2.20 +++ openacs-4/packages/xotcl-core/tcl/context-procs.tcl 5 Jan 2021 09:38:55 -0000 1.75.2.21 @@ -176,7 +176,7 @@ if {![info exists :__including_page]} { # - # An includelet is called from the toplevel. The actual_query + # An includelet is called from the top-level. The actual_query # might be cached, so we reset it here. # set :actual_query [::xo::cc actual_query]