Index: openacs-4/packages/xowiki/tcl/package-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/package-procs.tcl,v diff -u -r1.332 -r1.332.2.1 --- openacs-4/packages/xowiki/tcl/package-procs.tcl 9 Feb 2019 00:18:28 -0000 1.332 +++ openacs-4/packages/xowiki/tcl/package-procs.tcl 10 Mar 2019 21:01:03 -0000 1.332.2.1 @@ -1632,7 +1632,7 @@ } { # # Obtain (partial) item info from id. It does not handle - # e.g. special link_types as for e.g file|image|js|css|swf, etc. + # e.g. special link_types as for e.g. file|image|js|css|swf, etc. # ::xo::db::CrClass get_instance_from_db -item_id $item_id set name [$item_id name] Index: openacs-4/packages/xowiki/tcl/weblog-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/weblog-procs.tcl,v diff -u -r1.75.2.6 -r1.75.2.7 --- openacs-4/packages/xowiki/tcl/weblog-procs.tcl 8 Mar 2019 18:51:07 -0000 1.75.2.6 +++ openacs-4/packages/xowiki/tcl/weblog-procs.tcl 10 Mar 2019 21:01:03 -0000 1.75.2.7 @@ -40,7 +40,7 @@ # items refs. # if {![regexp {^[[:alnum:]:./_-]+$} $t]} { - error "invalid form specificaton '$t'" + error "invalid form specification '$t'" } #:log "trying to get $t // parent_id $parent_id" set page [$package_id get_page_from_item_ref \ 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.3 -r1.148.2.4 --- openacs-4/packages/xotcl-core/tcl/05-db-procs.tcl 5 Mar 2019 11:55:29 -0000 1.148.2.3 +++ openacs-4/packages/xotcl-core/tcl/05-db-procs.tcl 10 Mar 2019 21:02:30 -0000 1.148.2.4 @@ -1424,7 +1424,7 @@ # # In some cases, we need locks on SQL select statements, when the - # select updates tuples, e.g via a function. This is required at + # select updates tuples, e.g. via a function. This is required at # least in PostgreSQL. # set ::xo::db::sql_suffix(postgresql,content_item,set_live_revision) "FOR NO KEY UPDATE" Index: openacs-4/packages/xotcl-core/www/show-class-graph.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/www/show-class-graph.tcl,v diff -u -r1.12 -r1.12.2.1 --- openacs-4/packages/xotcl-core/www/show-class-graph.tcl 7 Aug 2017 23:48:30 -0000 1.12 +++ openacs-4/packages/xotcl-core/www/show-class-graph.tcl 10 Mar 2019 21:02:31 -0000 1.12.2.1 @@ -17,7 +17,7 @@ $classes] set dot "" catch {set dot [::util::which dot]} -# final ressort for cases, where ::util::which is not available +# final resort for cases, where ::util::which is not available if {$dot eq "" && [file executable /usr/bin/dot]} {set dot /usr/bin/dot} if {$dot eq ""} {ns_return 404 plain/text "dot not found"; ad_script_abort} Index: openacs-4/packages/xotcl-core/www/show-object.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/www/show-object.tcl,v diff -u -r1.27.2.1 -r1.27.2.2 --- openacs-4/packages/xotcl-core/www/show-object.tcl 1 Mar 2019 10:08:07 -0000 1.27.2.1 +++ openacs-4/packages/xotcl-core/www/show-object.tcl 10 Mar 2019 21:02:31 -0000 1.27.2.2 @@ -416,7 +416,7 @@ $class_hierarchy] set dot "" catch {set dot [::util::which dot]} - # final ressort for cases, where ::util::which is not available + # final resort for cases, where ::util::which is not available if {$dot eq "" && [file executable /usr/bin/dot]} {set dot /usr/bin/dot} if {$dot eq ""} { #ns_return 404 plain/text "dot not found" Index: openacs-4/packages/xotcl-core/tcl/cr-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/cr-procs.tcl,v diff -u -r1.76.2.1 -r1.76.2.2 --- openacs-4/packages/xotcl-core/tcl/cr-procs.tcl 5 Mar 2019 10:20:09 -0000 1.76.2.1 +++ openacs-4/packages/xotcl-core/tcl/cr-procs.tcl 10 Mar 2019 21:03:10 -0000 1.76.2.2 @@ -145,7 +145,7 @@ {-parent_id -100} {-content_type} } { - Check, whether an content item with the given name exists. + Check, whether a content item with the given name exists. When content_type is provided (e.g. -content_type "::%") then a like operation is applied on the value. @@ -807,7 +807,7 @@ CrItem instproc update_content {revision_id content} { # # This method can be use to update the content field (only this) of - # an content item without creating a new revision. This works + # a content item without creating a new revision. This works # currently only for storage_type == "text". # [:info class] instvar storage_type @@ -878,7 +878,7 @@ CrItem instproc update_content {revision_id content} { # # This method can be used to update the content field (only this) of - # an content item without creating a new revision. This works + # a content item without creating a new revision. This works # currently only for storage_type == "text". # [:info class] instvar storage_type Index: openacs-4/packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl,v diff -u -r1.67 -r1.67.2.1 --- openacs-4/packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl 8 Feb 2019 02:46:04 -0000 1.67 +++ openacs-4/packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl 10 Mar 2019 21:04:06 -0000 1.67.2.1 @@ -236,7 +236,7 @@ # # Check, whether the last request from a user was within # the minimum time interval. We are not keeping a full table - # of all request keys, but use an timeout triggered mechanism + # of all request keys, but use a timeout triggered mechanism # to keep only the active request keys in an associative array. # incr :alerts Index: openacs-4/packages/xotcl-core/xotcl-core.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/xotcl-core.info,v diff -u -r1.106.2.2 -r1.106.2.3 --- openacs-4/packages/xotcl-core/xotcl-core.info 5 Mar 2019 12:19:51 -0000 1.106.2.2 +++ openacs-4/packages/xotcl-core/xotcl-core.info 10 Mar 2019 21:04:35 -0000 1.106.2.3 @@ -55,7 +55,7 @@ - Index: openacs-4/packages/xowiki/xowiki.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/xowiki.info,v diff -u -r1.180.2.2 -r1.180.2.3 --- openacs-4/packages/xowiki/xowiki.info 5 Mar 2019 12:19:51 -0000 1.180.2.2 +++ openacs-4/packages/xowiki/xowiki.info 10 Mar 2019 21:05:15 -0000 1.180.2.3 @@ -19,7 +19,7 @@ XoWiki is a Wiki implementation for OpenACS in XOTcl. Instead of trying to implement the full set of Wiki markup commands of systems like MediaWiki, XoWiki is based on a rich text editor and focuses more -on integration with OpenACS (e.g categories, general comments, +on integration with OpenACS (e.g. categories, general comments, ADP-includes). XoWiki combines aspects of wikis (ease of page-creation) with aspects of a content management system (revisions, re-usable items, multiple languages). Furthermore, XoWiki allows one to @@ -119,7 +119,7 @@ - +