Index: openacs-4/packages/acs-content-repository/tcl/content-type-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/tcl/content-type-procs.tcl,v diff -u -r1.17 -r1.17.2.1 --- openacs-4/packages/acs-content-repository/tcl/content-type-procs.tcl 15 Aug 2018 16:24:28 -0000 1.17 +++ openacs-4/packages/acs-content-repository/tcl/content-type-procs.tcl 12 Apr 2019 21:19:13 -0000 1.17.2.1 @@ -374,7 +374,7 @@ -content_type:required -mime_type:required } { - Checks if the mime_type is of the content_type, e.g if application/pdf is of content_type "image" (which it should not...) + Checks if the mime_type is of the content_type, e.g. if application/pdf is of content_type "image" (which it should not...) Cached @@ -388,7 +388,7 @@ -content_type:required -mime_type:required } { - Checks if the mime_type is of the content_type, e.g if application/pdf is of content_type "image" (which it should not...) + Checks if the mime_type is of the content_type, e.g. if application/pdf is of content_type "image" (which it should not...) @param content_type content type to check against @param mime_type mime type to check for } { Index: openacs-4/packages/acs-content-repository/tcl/publish-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/tcl/publish-procs.tcl,v diff -u -r1.19 -r1.19.2.1 --- openacs-4/packages/acs-content-repository/tcl/publish-procs.tcl 14 Jun 2018 23:38:07 -0000 1.19 +++ openacs-4/packages/acs-content-repository/tcl/publish-procs.tcl 12 Apr 2019 21:19:13 -0000 1.19.2.1 @@ -1000,7 +1000,7 @@ server's INI file (the value returnded by publish::get_page_root is used as the default). The file extension will be based on the revision's mime-type.
- For example, an revision whose mime-type is "image/jpeg" + For example, a revision whose mime-type is "image/jpeg" for an item at "Sitemap/foo/bar" may be written as /web/your_server_name/www/foo/bar.jpg Index: openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl,v diff -u -r1.60.2.1 -r1.60.2.2 --- openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl 1 Mar 2019 15:10:27 -0000 1.60.2.1 +++ openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl 12 Apr 2019 21:19:13 -0000 1.60.2.2 @@ -495,7 +495,7 @@ # Initialize the array to return array set msg_catalog_array {} - # Parse the xml document + # Parse the XML document set tree [xml_parse -persist $catalog_file_contents] # Get the message catalog root node Index: openacs-4/packages/acs-core-docs/www/docbook-primer.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/docbook-primer.adp,v diff -u -r1.6.2.2 -r1.6.2.3 --- openacs-4/packages/acs-core-docs/www/docbook-primer.adp 10 Mar 2019 21:47:13 -0000 1.6.2.2 +++ openacs-4/packages/acs-core-docs/www/docbook-primer.adp 12 Apr 2019 21:21:48 -0000 1.6.2.3 @@ -208,7 +208,7 @@ of technological obsolescence), reliability, repairability, style of use, design (strategy in design, specifications, integrated, well-matched systems etc).

  • differentiate "service" by highlighting software -availability (licensing and completeness from mature to early +availability (licensing and completeness from mature too early adopters or development versions), community incident support, project collaborative opportunities, and contractor support availability

  • differentiate price (economic considerations of opensource and Index: openacs-4/packages/ajaxhelper/tcl/ajax-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/tcl/ajax-procs.tcl,v diff -u -r1.18.2.1 -r1.18.2.2 --- openacs-4/packages/ajaxhelper/tcl/ajax-procs.tcl 14 Feb 2019 16:15:01 -0000 1.18.2.1 +++ openacs-4/packages/ajaxhelper/tcl/ajax-procs.tcl 12 Apr 2019 21:25:45 -0000 1.18.2.2 @@ -458,7 +458,7 @@ {-options ""} } { Returns javascript that calls the prototype javascript library's ajax request (Ajax.Request) object. - The Ajax.Request object will only perform an xmlhttp request to a url. + The Ajax.Request object will only perform an xmlhttp request to a URL. If you prefer to perform an xmlhttp request and then update the contents of a < div >, look at ah::ajaxupdate. Parameters and options are case sensitive, refer to scriptaculous documentation. http://wiki.script.aculo.us/scriptaculous/show/Ajax.Request Index: openacs-4/packages/ajaxhelper/tcl/ajax-yahoo-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/tcl/ajax-yahoo-procs.tcl,v diff -u -r1.14.2.1 -r1.14.2.2 --- openacs-4/packages/ajaxhelper/tcl/ajax-yahoo-procs.tcl 14 Feb 2019 16:15:01 -0000 1.14.2.1 +++ openacs-4/packages/ajaxhelper/tcl/ajax-yahoo-procs.tcl 12 Apr 2019 21:25:45 -0000 1.14.2.2 @@ -681,7 +681,7 @@ @param varname The javascript variable to represent the autocomplete object. @param suggestlist A list or a list of lists with the values that will act as the datasource for the autocomplete object. - @param id The html id of that the autosuggest component will use to present suggestions. IMPORTANT : The html element with this id should already be in the adp page. e.g if id is oAutoContainer then your html document should already have "

    " in it + @param id The html id of that the autosuggest component will use to present suggestions. IMPORTANT : The html element with this id should already be in the adp page. e.g. if id is oAutoContainer then your HTML document should already have "
    " in it @param inputid The id of the input text box that the user will type in @param options Additional options that you want to pass to the javascript object constructor Index: openacs-4/packages/ajaxhelper/www/doc/blank-master.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/doc/blank-master.tcl,v diff -u -r1.5 -r1.5.4.1 --- openacs-4/packages/ajaxhelper/www/doc/blank-master.tcl 27 Oct 2014 16:40:53 -0000 1.5 +++ openacs-4/packages/ajaxhelper/www/doc/blank-master.tcl 12 Apr 2019 21:25:45 -0000 1.5.4.1 @@ -12,7 +12,7 @@ When using this template directly you MUST supply the following variables: - @property doc(title) The document title, ie. tag. + @property doc(title) The document title, i.e. <title /> tag. @property doc(title_lang) The language of the document title, if different from the document language. Index: openacs-4/packages/ajaxhelper/www/doc/head-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/doc/head-procs.tcl,v diff -u -r1.5.2.1 -r1.5.2.2 --- openacs-4/packages/ajaxhelper/www/doc/head-procs.tcl 14 Feb 2019 16:15:01 -0000 1.5.2.1 +++ openacs-4/packages/ajaxhelper/www/doc/head-procs.tcl 12 Apr 2019 21:25:45 -0000 1.5.2.2 @@ -1,7 +1,7 @@ ad_library { - The template::head::* api manipulates the head section of the document that - will be returned to the users client. Packages should use this api to add + The template::head::* API manipulates the head section of the document that + will be returned to the users client. Packages should use this API to add package specific javascripts, CSS, link tags and meta tags to the HTML document. @@ -59,12 +59,12 @@ caller must ensure that anonymous script blocks are not inadvertently added multiple times. You <strong>must</strong> supply either src or script. - @param type the type attribute of the script tag, eg. 'text/javascript' + @param type the type attribute of the script tag, e.g. 'text/javascript' @param defer whether execution of the script should be deferred until after the page has been loaded - @param src the src attribute of the script tag, ie. the source url of the + @param src the src attribute of the script tag, i.e. the source url of the script - @param charset the charset attribute of the script tag, ie. the character + @param charset the charset attribute of the script tag, i.e. the character set of the script if it differs from the main document @param script the inline script for the body of the script tag. This parameter will be ignored if a value has been supplied for @@ -103,13 +103,13 @@ entry. @param rel the rel attribute of the link tag defining the relationship - of the linked document to the current one, eg. 'stylesheet' - @param href the href attribute of the link tag, eg. the target document + of the linked document to the current one, e.g. 'stylesheet' + @param href the href attribute of the link tag, e.g. the target document of the link - @param type the type attribute of the link tag, eg. 'text/css' + @param type the type attribute of the link tag, e.g. 'text/css' @param media the media attribute of the link tag describing which display media this link is relevant to. This may be a comma - separated list of values, eg. 'screen,print,braille' + separated list of values, e.g. 'screen,print,braille' @param title the title attribute of the link tag describing the target of this link @param lang the lang attribute of the link tag specifying the language @@ -132,14 +132,14 @@ once; subsequent calls to add_meta will replace the existing entry. You <strong>must</strong> supply either name or http_equiv. - @param http_equiv the http-equiv attribute of the meta tag, ie. the + @param http_equiv the http-equiv attribute of the meta tag, i.e. the HTTP header which this metadata is equivalent to - eg. 'content-type' - @param name the name attribute of the meta tag, ie. the metadata + e.g. 'content-type' + @param name the name attribute of the meta tag, i.e. the metadata identifier @param scheme the scheme attribute of the meta tag defining which metadata scheme should be used to interpret the metadata, - eg. 'DC' for Dublin Core (http://dublincore.org/) + e.g. 'DC' for Dublin Core (http://dublincore.org/) @param content the content attribute of the meta tag, ie the metadata value @param lang the lang attribute of the meta tag specifying the language @@ -173,9 +173,9 @@ @param defer whether execution of the script should be deferred until after the page has been loaded - @param src the src attribute of the script tag, ie. the source url of the + @param src the src attribute of the script tag, i.e. the source url of the script - @param charset the charset attribute of the script tag, ie. the character + @param charset the charset attribute of the script tag, i.e. the character set of the script if it differs from the main document @param script the inline script for the body of the script tag. This parameter will be ignored if a value has been supplied for @@ -204,14 +204,14 @@ subsequent calls to add_css will replace the existing entry. This function is a wrapper around template::head::add_link. - @param href the href attribute of the link tag, eg. the target + @param href the href attribute of the link tag, e.g. the target stylesheet @param alternate sets the rel attribute of the link tag defining to 'alternate stylesheet' if set, sets it to 'stylesheet' otherwise @param media the media attribute of the link tag describing which display media this link is relevant to. This may be a - comma separated list of values, eg. 'screen,print,braille' + comma separated list of values, e.g. 'screen,print,braille' @param title the title attribute of the link tag describing the target of this link @param lang the lang attribute of the link tag specifying the language @@ -287,12 +287,12 @@ Add a script to the start of the body section of the document to be returned to the users client. You <strong>must</strong> supply either src or script. - @param type the type attribute of the script tag, eg. 'text/javascript' + @param type the type attribute of the script tag, e.g. 'text/javascript' @param defer whether execution of the script should be deferred until after the page has been loaded - @param src the src attribute of the script tag, ie. the source url of the + @param src the src attribute of the script tag, i.e. the source url of the script - @param charset the charset attribute of the script tag, ie. the character + @param charset the charset attribute of the script tag, i.e. the character set of the script if it differs from the main document @param script the inline script for the body of the script tag. This parameter will be ignored if a value has been supplied for Index: openacs-4/packages/assessment/lib/assessment.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/lib/assessment.tcl,v diff -u -r1.33 -r1.33.2.1 --- openacs-4/packages/assessment/lib/assessment.tcl 17 Jul 2018 13:32:18 -0000 1.33 +++ openacs-4/packages/assessment/lib/assessment.tcl 12 Apr 2019 21:26:56 -0000 1.33.2.1 @@ -1,6 +1,6 @@ ad_page_contract { - This page allows to display an assessment with sections and items + This page allows one to display an assessment with sections and items @author Eduardo PĂ©rez Ureta (eperez@it.uc3m.es) @author Timo Hentschel (timo@timohentschel.de) Index: openacs-4/packages/assessment/www/asm-admin/action-params.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/www/asm-admin/action-params.tcl,v diff -u -r1.14 -r1.14.2.1 --- openacs-4/packages/assessment/www/asm-admin/action-params.tcl 29 Jun 2018 17:27:18 -0000 1.14 +++ openacs-4/packages/assessment/www/asm-admin/action-params.tcl 12 Apr 2019 21:26:56 -0000 1.14.2.1 @@ -3,7 +3,7 @@ @author Anny Flores (annyflores@viaro.net) Viaro Networks (www.viaro.net) @creation-date 2005-01-07 - This page allows to add branches or actions to the question and its choices. + This page allows one to add branches or actions to the question and its choices. } { assessment_id:naturalnum,notnull inter_item_check_id:naturalnum,notnull Index: openacs-4/packages/assessment/www/asm-admin/action-select.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/www/asm-admin/action-select.tcl,v diff -u -r1.12 -r1.12.2.1 --- openacs-4/packages/assessment/www/asm-admin/action-select.tcl 29 Jun 2018 17:27:18 -0000 1.12 +++ openacs-4/packages/assessment/www/asm-admin/action-select.tcl 12 Apr 2019 21:26:56 -0000 1.12.2.1 @@ -3,7 +3,7 @@ @author Anny Flores (annyflores@viaro.net) Viaro Networks (www.viaro.net) @creation-date 2005-01-07 - This page allows to relate an action to the check. + This page allows one to relate an action to the check. } { assessment_id:naturalnum,notnull inter_item_check_id:naturalnum,notnull Index: openacs-4/packages/assessment/www/asm-admin/add-edit-check.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/www/asm-admin/add-edit-check.tcl,v diff -u -r1.14 -r1.14.2.1 --- openacs-4/packages/assessment/www/asm-admin/add-edit-check.tcl 17 Jul 2018 13:32:18 -0000 1.14 +++ openacs-4/packages/assessment/www/asm-admin/add-edit-check.tcl 12 Apr 2019 21:26:56 -0000 1.14.2.1 @@ -2,7 +2,7 @@ @author Anny Flores (annyflores@viaro.net) Viaro Networks (www.viaro.net) @creation-date 2005-01-07 - This page allows to add branches or actions to the question and its choices. + This page allows one to add branches or actions to the question and its choices. } { assessment_id:naturalnum,notnull Index: openacs-4/packages/assessment/www/asm-admin/checks-admin.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/www/asm-admin/checks-admin.tcl,v diff -u -r1.12 -r1.12.2.1 --- openacs-4/packages/assessment/www/asm-admin/checks-admin.tcl 29 Jun 2018 17:27:18 -0000 1.12 +++ openacs-4/packages/assessment/www/asm-admin/checks-admin.tcl 12 Apr 2019 21:26:56 -0000 1.12.2.1 @@ -1,6 +1,6 @@ ad_page_contract { - This page allows to add branches or actions to the question and its choices. + This page allows one to add branches or actions to the question and its choices. @author Anny Flores (annyflores@viaro.net) Viaro Networks (www.viaro.net) @creation-date 2005-01-07 Index: openacs-4/packages/assessment/www/asm-admin/section-select.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/www/asm-admin/section-select.tcl,v diff -u -r1.11 -r1.11.2.1 --- openacs-4/packages/assessment/www/asm-admin/section-select.tcl 17 Jul 2018 13:32:18 -0000 1.11 +++ openacs-4/packages/assessment/www/asm-admin/section-select.tcl 12 Apr 2019 21:26:56 -0000 1.11.2.1 @@ -3,7 +3,7 @@ @author Anny Flores (annyflores@viaro.net) Viaro Networks (www.viaro.net) @creation-date 2005-01-07 - This page allows to add branches or actions to the question and its choices. + This page allows one to add branches or actions to the question and its choices. } { assessment_id:naturalnum,notnull inter_item_check_id:naturalnum,notnull Index: openacs-4/packages/assessment/www/asm-admin/swap-actions.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/www/asm-admin/swap-actions.tcl,v diff -u -r1.6 -r1.6.2.1 --- openacs-4/packages/assessment/www/asm-admin/swap-actions.tcl 29 Jun 2018 17:27:18 -0000 1.6 +++ openacs-4/packages/assessment/www/asm-admin/swap-actions.tcl 12 Apr 2019 21:26:56 -0000 1.6.2.1 @@ -3,7 +3,7 @@ @author Anny Flores (annyflores@viaro.net) Viaro Networks (www.viaro.net) @creation-date 2005-01-13 - This page allows to swap action up and down + This page allows one to swap action up and down } { section_id:naturalnum,notnull check_id:naturalnum,notnull Index: openacs-4/packages/evaluation/tcl/evaluation-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/tcl/evaluation-procs.tcl,v diff -u -r1.49 -r1.49.2.1 --- openacs-4/packages/evaluation/tcl/evaluation-procs.tcl 26 Jul 2018 15:12:22 -0000 1.49 +++ openacs-4/packages/evaluation/tcl/evaluation-procs.tcl 12 Apr 2019 21:28:35 -0000 1.49.2.1 @@ -504,7 +504,7 @@ @param grade_item_id Grade type where the task belongs @param name The name of the task @param number_of_members If the task is in groups this parameter must be > 1 - @param online_p If the task will be submited online + @param online_p If the task will be submitted online @param due_date Due date of the task @param weight Weight of the task in the grade type @param late_submit_p If the students will be able to submit the task after due date @@ -1160,7 +1160,7 @@ } } else { - # it is a url + # it is a URL set url [db_string url { *SQL* }] Index: openacs-4/packages/evaluation/www/admin/evaluations/evaluate-students.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/www/admin/evaluations/evaluate-students.tcl,v diff -u -r1.13 -r1.13.2.1 --- openacs-4/packages/evaluation/www/admin/evaluations/evaluate-students.tcl 7 Aug 2017 23:48:10 -0000 1.13 +++ openacs-4/packages/evaluation/www/admin/evaluations/evaluate-students.tcl 12 Apr 2019 21:28:35 -0000 1.13.2.1 @@ -178,7 +178,7 @@ set evaluations_na:rowcount $counter -# editting grades +# editing grades # if the structure of the multirow datasource ever changes, this needs to be rewritten set counter 0 Index: openacs-4/packages/evaluation/www/admin/evaluations/student-list.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/www/admin/evaluations/student-list.tcl,v diff -u -r1.30 -r1.30.2.1 --- openacs-4/packages/evaluation/www/admin/evaluations/student-list.tcl 25 Jul 2018 02:16:04 -0000 1.30 +++ openacs-4/packages/evaluation/www/admin/evaluations/student-list.tcl 12 Apr 2019 21:28:35 -0000 1.30.2.1 @@ -326,7 +326,7 @@ } # -# working with students that have not answered and have not been yet evaluated and do not have submited their answers +# working with students that have not answered and have not been yet evaluated and do not have submitted their answers # set elements [list party_name \