Index: openacs-4/packages/acs-templating/www/doc/developer-guide.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/developer-guide.adp,v
diff -u -r1.4.2.2 -r1.4.2.3
--- openacs-4/packages/acs-templating/www/doc/developer-guide.adp 3 Sep 2021 09:15:54 -0000 1.4.2.2
+++ openacs-4/packages/acs-templating/www/doc/developer-guide.adp 6 Jun 2023 09:30:30 -0000 1.4.2.3
@@ -15,7 +15,7 @@
promised in the contract, and not write to the connection. At the
end of your Tcl page, call ad_return_template
. The
-template system will look for an adp page with the file name stub
+template system will look for an adp page with the filename stub
you indicate (defaulting to the same stub as the Tcl page), process
that, and deliver it to the client. The adp page can use the
datasources defined in the Tcl page.
Index: openacs-4/packages/acs-templating/www/doc/developer-guide.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/developer-guide.html,v
diff -u -r1.5 -r1.5.2.1
--- openacs-4/packages/acs-templating/www/doc/developer-guide.html 7 Aug 2017 23:48:02 -0000 1.5
+++ openacs-4/packages/acs-templating/www/doc/developer-guide.html 6 Jun 2023 09:30:30 -0000 1.5.2.1
@@ -18,7 +18,7 @@
use of templating. The Tcl page should fill the data sources you
promised in the contract, and not write to the connection. At the
end of your Tcl page, call ad_return_template
. The
- template system will look for an adp page with the file name stub
+ template system will look for an adp page with the filename stub
you indicate (defaulting to the same stub as the Tcl page),
process that, and deliver it to the client. The adp page can use
the datasources defined in the Tcl page.
Index: openacs-4/packages/acs-templating/www/doc/no-quote-upgrade.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/no-quote-upgrade.adp,v
diff -u -r1.6.2.5 -r1.6.2.6
--- openacs-4/packages/acs-templating/www/doc/no-quote-upgrade.adp 3 Sep 2021 09:15:57 -0000 1.6.2.5
+++ openacs-4/packages/acs-templating/www/doc/no-quote-upgrade.adp 6 Jun 2023 09:30:30 -0000 1.6.2.6
@@ -104,7 +104,7 @@
</form>
-Snippets of HTML produced by Tcl code, a.k.a.
+Snippets of HTML produced by Tcl code, aka
widgets
.
- Snippets of HTML produced by Tcl code, a.k.a.
+ Snippets of HTML produced by Tcl code, aka
widgets.
The templating system code is oriented towards parsing templates
-stored in the file system, in conjunction with a Tcl script that is
+stored in the filesystem, in conjunction with a Tcl script that is
also stored as a file. However, when the template is not actually
-stored in the file system, you will need to parse it as a string in
+stored in the filesystem, you will need to parse it as a string in
memory. Two common situations in which this occurs are: The templating system code is oriented towards parsing templates
-stored in the file system, in conjunction with a Tcl script that is
+stored in the filesystem, in conjunction with a Tcl script that is
also stored as a file. However, when the template is not actually
-stored in the file system, you will need to parse it as a string in
+stored in the filesystem, you will need to parse it as a string in
memory. Two common situations in which this occurs are: The "code" part can divert to another page by calling
-
The "code" part can divert to another page by calling
- Initially, user_id is not specified. In this case,
-the page includes a user search form. The user enters part of a user name or screen name and submits
+the page includes a user search form. The user enters part of a username or screen name and submits
the form, which returns to the same URL with the query parameter
user_search. If this parameter is defined, the page
queries the database for potential matches. If one match is found, the page sets a user_id
Index: openacs-4/packages/acs-templating/www/doc/guide/search.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/guide/search.html,v
diff -u -r1.2 -r1.2.2.1
--- openacs-4/packages/acs-templating/www/doc/guide/search.html 7 Aug 2017 23:48:03 -0000 1.2
+++ openacs-4/packages/acs-templating/www/doc/guide/search.html 6 Jun 2023 09:30:30 -0000 1.2.2.1
@@ -50,7 +50,7 @@
Initially, user_id is not specified. In this
case, the page includes a user search form. The user enters part of a user name or screen name and submits
+ The user enters part of a username or screen name and submits
the form, which returns to the same URL with the query parameter
user_search. If this parameter is defined, the page
queries the database for potential matches. Generally, avoid putting escaped Tcl code in adp files, or
generating HTML fragments in Tcl procedures. It subverts the
separation of code and layout, one of the benefits of templating.
-Embedded Tcl makes templates non-portable to ACS/Java. Also the wizard params name is present across the current
wizards being used, so the developer has to be aware not to use the
same names with different purpose. For example on main wizard with
-have a param called "name" for the user name. And on on
+have a param called "name" for the username. And on on
sub wizard we have the param again called "name" but used
-for the file name. Also the wizard params name is present across the current wizards being used,
so the developer has to be aware not to use the same names with different
purpose. For example on main wizard with have a param called "name" for
- the user name. And on on sub wizard we have the param again called "name"
- but used for the file name.
+ the username. And on on sub wizard we have the param again called "name"
+ but used for the filename.
Normally we try to fit all HTML code into the ADP template and have
Index: openacs-4/packages/acs-templating/www/doc/no-quote-upgrade.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/no-quote-upgrade.html,v
diff -u -r1.4.2.3 -r1.4.2.4
--- openacs-4/packages/acs-templating/www/doc/no-quote-upgrade.html 10 Aug 2021 13:26:58 -0000 1.4.2.3
+++ openacs-4/packages/acs-templating/www/doc/no-quote-upgrade.html 6 Jun 2023 09:30:30 -0000 1.4.2.4
@@ -124,7 +124,7 @@
Normally we try to fit all HTML code into the ADP template and
Index: openacs-4/packages/acs-templating/www/doc/TclDocs/publish.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/TclDocs/publish.adp,v
diff -u -r1.5.2.4 -r1.5.2.5
--- openacs-4/packages/acs-templating/www/doc/TclDocs/publish.adp 28 Dec 2021 14:36:13 -0000 1.5.2.4
+++ openacs-4/packages/acs-templating/www/doc/TclDocs/publish.adp 6 Jun 2023 09:30:30 -0000 1.5.2.5
@@ -129,7 +129,7 @@
url_ref
*
The name of the variable in the calling frame that
-will receive the relative URL of the file in the file system which
+will receive the relative URL of the file in the filesystem which
contains the content blob
+ The name of the variable in the calling frame that will receive the relative URL of the file in the filesystem which contains the content blob
Index: openacs-4/packages/acs-templating/www/doc/TclDocs/publish.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/TclDocs/publish.html,v
diff -u -r1.5.2.2 -r1.5.2.3
--- openacs-4/packages/acs-templating/www/doc/TclDocs/publish.html 28 Dec 2021 14:36:13 -0000 1.5.2.2
+++ openacs-4/packages/acs-templating/www/doc/TclDocs/publish.html 6 Jun 2023 09:30:30 -0000 1.5.2.3
@@ -242,7 +242,7 @@
*
- The name of the variable in the calling frame that will receive the relative URL of the file in the file system which contains the content blob
error_ref
Index: openacs-4/packages/acs-templating/www/doc/appendices/memory.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/appendices/memory.adp,v
diff -u -r1.4.2.2 -r1.4.2.3
--- openacs-4/packages/acs-templating/www/doc/appendices/memory.adp 3 Sep 2021 09:16:17 -0000 1.4.2.2
+++ openacs-4/packages/acs-templating/www/doc/appendices/memory.adp 6 Jun 2023 09:30:30 -0000 1.4.2.3
@@ -7,9 +7,9 @@
Parsing Templates in Memory
Templating System
Index: openacs-4/packages/acs-templating/www/doc/guide/wizard-procs-doc.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/guide/wizard-procs-doc.html,v
diff -u -r1.4.2.1 -r1.4.2.2
--- openacs-4/packages/acs-templating/www/doc/guide/wizard-procs-doc.html 15 Aug 2019 10:18:49 -0000 1.4.2.1
+++ openacs-4/packages/acs-templating/www/doc/guide/wizard-procs-doc.html 6 Jun 2023 09:30:30 -0000 1.4.2.2
@@ -186,8 +186,8 @@
Index: openacs-4/packages/acs-templating/www/doc/exercise/ats-for-designers.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/exercise/ats-for-designers.adp,v
diff -u -r1.7.2.3 -r1.7.2.4
--- openacs-4/packages/acs-templating/www/doc/exercise/ats-for-designers.adp 3 Sep 2021 09:16:19 -0000 1.7.2.3
+++ openacs-4/packages/acs-templating/www/doc/exercise/ats-for-designers.adp 6 Jun 2023 09:30:30 -0000 1.7.2.4
@@ -133,7 +133,7 @@
with quantitative values, so conditions like less than, greater
than, and (not) between can also be used with text to determine
alphabetical order: a < b < ... <
-z, lower-case letters are greater than upper-case, and
+z, lowercase letters are greater than uppercase, and
numbers less than letters. Example: "you" are greater
than "me", and "I" am less than
"you"
template::set_file
to modify the file name stub of the
+template::set_file
to modify the filename stub of the
page being processed. For convenience,
ad_return_template
can be used with the same effect;
it is a wrapper for template::set_file
, and it
Index: openacs-4/packages/acs-templating/www/doc/guide/composite.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/guide/composite.html,v
diff -u -r1.5.2.1 -r1.5.2.2
--- openacs-4/packages/acs-templating/www/doc/guide/composite.html 5 Oct 2019 13:29:58 -0000 1.5.2.1
+++ openacs-4/packages/acs-templating/www/doc/guide/composite.html 6 Jun 2023 09:30:30 -0000 1.5.2.2
@@ -227,7 +227,7 @@
template::set_file
to modify the file name stub of
+ template::set_file
to modify the filename stub of
the page being processed. For convenience,
ad_return_template
can be used with the same
effect; it is a wrapper for template::set_file
, and
Index: openacs-4/packages/acs-templating/www/doc/guide/search.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/guide/search.adp,v
diff -u -r1.3.2.2 -r1.3.2.3
--- openacs-4/packages/acs-templating/www/doc/guide/search.adp 3 Sep 2021 09:16:21 -0000 1.3.2.2
+++ openacs-4/packages/acs-templating/www/doc/guide/search.adp 6 Jun 2023 09:30:30 -0000 1.3.2.3
@@ -42,7 +42,7 @@
a user. The administrator requests a page,
user-edit.acs. The page looks for a query parameter
named user_id to specify which user to edit.
\ No newline at end of file
Index: openacs-4/packages/acs-templating/www/doc/guide/tcl.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/guide/tcl.html,v
diff -u -r1.3 -r1.3.2.1
--- openacs-4/packages/acs-templating/www/doc/guide/tcl.html 7 Aug 2017 23:48:03 -0000 1.3
+++ openacs-4/packages/acs-templating/www/doc/guide/tcl.html 6 Jun 2023 09:30:30 -0000 1.3.2.1
@@ -19,7 +19,7 @@
Generally, avoid putting escaped Tcl code in adp files, or
generating HTML fragments in Tcl procedures. It subverts the
separation of code and layout, one of the benefits of
- templating. Embedded Tcl makes templates non-portable to ACS/Java.
+ templating. Embedded Tcl makes templates nonportable to ACS/Java.
Index: openacs-4/packages/acs-templating/www/doc/guide/wizard-procs-doc.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/guide/wizard-procs-doc.adp,v
diff -u -r1.6.2.3 -r1.6.2.4
--- openacs-4/packages/acs-templating/www/doc/guide/wizard-procs-doc.adp 3 Sep 2021 09:16:22 -0000 1.6.2.3
+++ openacs-4/packages/acs-templating/www/doc/guide/wizard-procs-doc.adp 6 Jun 2023 09:30:30 -0000 1.6.2.4
@@ -158,8 +158,8 @@
save_last_visited_step -key $yourkey"