Update Version NumbersThe version numbers in the documentation and in the packages must be updated. This should only happen after a release candidate is approved.
- .LRN: this must be repeated for .LRN modules (dotlrn-core in the dotlrn cvs tree) and for any modified modules in the .LRN prerequisites (dotlrn-prereq in openacs cvs tree). My current working model is that I bulk-update .LRN and OpenACS core but that I don't touch dotlrn-prereq modules - I just use the most recent release and it's up to individual package developers to tag and release those packages when they change. This model is already broken because following it means that dotlrn-prereqs don't get new translations.
+ .LRN: this must be repeated for .LRN modules (dotlrn-core in the dotlrn cvs tree) and for any modified modules in the .LRN prerequisites (dotlrn-prereq in OpenACS cvs tree). My current working model is that I bulk-update .LRN and OpenACS core but that I don't touch dotlrn-prereq modules - I just use the most recent release and it's up to individual package developers to tag and release those packages when they change. This model is already broken because following it means that dotlrn-prereqs don't get new translations.Update /var/lib/aolserver/$OPENACS_SERVICE_NAME/packages/acs-core-docs/www/xml/variables.ent with the new version number.
@@ -159,7 +159,7 @@
Go to a new working space and export the tagged
files. (was getting errors here trying to use -d, so
gave up and just moved things from openacs-4 to
- openacs at the end)
+ OpenACS at the end)mkdir /var/tmp/dotlrn-tarball
cd /var/tmp/dotlrn-tarball
cvs -d /cvsroot export -r openacs-5-0-0a1 acs-core
Index: openacs-4/packages/acs-core-docs/www/xml/developers-guide/i18n.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/developers-guide/i18n.xml,v
diff -u -r1.27.2.6 -r1.27.2.7
--- openacs-4/packages/acs-core-docs/www/xml/developers-guide/i18n.xml 21 Apr 2017 15:07:52 -0000 1.27.2.6
+++ openacs-4/packages/acs-core-docs/www/xml/developers-guide/i18n.xml 22 Apr 2017 17:18:48 -0000 1.27.2.7
@@ -280,8 +280,8 @@
For each message call in the text, decide on a variable name and replace
the procedure call with a variable lookup on the syntax %var_name%. Remember
- to initialize a tcl variable with the same name on some line above the text.
- If the text is in a tcl file you must replace variable lookups
+ to initialize a Tcl variable with the same name on some line above the text.
+ If the text is in a Tcl file you must replace variable lookups
(occurrences of $var_name or ${var_name}) with %var_name%You are now ready to follow the normal procedure and mark up the text using a
tempoarary message tag (<#_ text_with_percentage_vars#>) and run the action
@@ -321,7 +321,7 @@
- When we were done going through the tcl files we ran the following
+ When we were done going through the Tcl files we ran the following
commands to check for mistakes:
@@ -334,7 +334,7 @@
# Check if you've forgotten space between default key and text in message tags (should return nothing)
find -iname '*.tcl'|xargs egrep -i '<#_[^ ]'
-# Review the list of tcl files with no message lookups
+# Review the list of Tcl files with no message lookups
for tcl_file in $(find -iname '*.tcl'); do egrep -L '(<#|\[_)' $tcl_file; done
@@ -514,7 +514,7 @@
Replace human-readable text in Tcl files with temporary tags
- Examine all of the tcl files in the packages for human-readable text and replace it with temporary tags. The temporary tags in Tcl are slightly different from those in ADP. If the first character in the temporary tag is an underscore (_), then the message keys will be auto-generated from the original message text. Here is an unmodified tcl file:
+ Examine all of the Tcl files in the packages for human-readable text and replace it with temporary tags. The temporary tags in Tcl are slightly different from those in ADP. If the first character in the temporary tag is an underscore (_), then the message keys will be auto-generated from the original message text. Here is an unmodified Tcl file:
set title "Messages for $a(name) in $b(label)"
@@ -538,7 +538,7 @@
Replace the temporary message tags in Tcl files
- Repeat step 2 for tcl files. Here is the example Tcl file after conversion:
+ Repeat step 2 for Tcl files. Here is the example Tcl file after conversion:
set title [_ simulation.admin_title]
@@ -664,7 +664,7 @@
message lookups in tcl, adp, and info files and the set of keys in
the catalog file are identical. The scripts below assume that
message lookups in adp and info files are on the format
- \#package_key.message_key\#, and that message lookups in tcl files
+ \#package_key.message_key\#, and that message lookups in Tcl files
are always is done with one of the valid lookups described above. The script further assumes
that you have perl installed and in your path. Run the script like
this:
@@ -882,7 +882,7 @@
Watch out for quoting and escaping when editing text that is also code. For example, the original string set title "Patch \"$patch_summary\" is nice."
- breaks if the message text retains all of the escaping that was in the tcl command:
+ breaks if the message text retains all of the escaping that was in the Tcl command:<msg>Patch \"$patch_summary\" is nice.</msg>When it becomes a key, it should be:<msg>Patch "$patch_summary" is nice.</msg>
Index: openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-advanced.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-advanced.xml,v
diff -u -r1.52.2.5 -r1.52.2.6
--- openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-advanced.xml 21 Apr 2017 15:07:52 -0000 1.52.2.5
+++ openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-advanced.xml 22 Apr 2017 17:18:48 -0000 1.52.2.6
@@ -181,7 +181,7 @@
In this problem set you will familiarise yourself with the templating system in openacs. This will be achieved through customising an existing edit-this-page application template.
- Before proceeding, it is strongly advised to read the templating documentation on your openacs installation (http://localhost:8000/doc/acs-templating). The documentation lists the special tags available for ADP files.
+ Before proceeding, it is strongly advised to read the templating documentation on your OpenACS installation (http://localhost:8000/doc/acs-templating). The documentation lists the special tags available for ADP files.
@@ -349,7 +349,7 @@
{ return_url "[ad_conn url]?[ad_conn query]"}
}]
- This calls a global, public tcl function that the
+ This calls a global, public Tcl function that the
general_comments package registered, to get its url. You then
embed in that url the id of the note and its title, and set the
return_url to the current url so that the user can return after
@@ -1054,7 +1054,7 @@
-notif_text $new_content
- This code is placed in the tcl procedure that creates blog
+ This code is placed in the Tcl procedure that creates blog
entries, right after the entry gets created in the code. The
$blog(package_id) is the OpenACS
object_id of the Weblogger instance to which the entry has been
@@ -1659,7 +1659,7 @@
db_ API calls. For
example, suppose there is a table called "foo" in the legacy
system, with a field "bar". List "bar" for all records with
- this tcl file:
+ this Tcl file:db_foreach -dbn legacy get_bar_query {
select bar from foo
limit 10
@@ -1683,7 +1683,7 @@
Builder HTML forms.How to make your package searchable with OpenFTS/OracleHow to prepare pagelets for inclusion in other pages
- How and when to put procedures in a tcl procedure library
+ How and when to put procedures in a Tcl procedure libraryMore on ad_form - data validation, other stuff.
(plan to draw from Jon Griffin's doc)partialquery in xql
Index: openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-debug.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-debug.xml,v
diff -u -r1.13.2.3 -r1.13.2.4
--- openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-debug.xml 3 Oct 2016 09:17:51 -0000 1.13.2.3
+++ openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-debug.xml 22 Apr 2017 17:18:48 -0000 1.13.2.4
@@ -31,7 +31,7 @@
Hint: "Parse error near *" usually means that an xql file
- wasn't recognized, because the tcl file is choking on the *SQL*
+ wasn't recognized, because the Tcl file is choking on the *SQL*
placeholder that it falls back on.Watching the server log
Index: openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-pages.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-pages.xml,v
diff -u -r1.20.2.3 -r1.20.2.4
--- openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-pages.xml 21 Apr 2017 15:07:52 -0000 1.20.2.3
+++ openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial-pages.xml 22 Apr 2017 17:18:48 -0000 1.20.2.4
@@ -13,7 +13,7 @@
Install some API
- As a workaround for missing content-repository functionality, copy a provided file into the directory for tcl files:
+ As a workaround for missing content-repository functionality, copy a provided file into the directory for Tcl files:cp /var/lib/aolserver/$OPENACS_SERVICE_NAME/packages/acs-core-docs/www/files/tutorial/note-procs.tcl /var/lib/aolserver/$OPENACS_SERVICE_NAME/packages/myfirstpackage/tcl/To make this file take effect, go to the APM and choose "Reload changed" for "MyFirstPackage".
@@ -42,7 +42,7 @@
and -oracle.xql files contains
database-specific SQL. The default page in any directory is
index, so we'll build that
- first, starting with the tcl file:
+ first, starting with the Tcl file:
[$OPENACS_SERVICE_NAME postgresql]$ cd /var/lib/aolserver/$OPENACS_SERVICE_NAME/packages/myfirstpackages/www
[$OPENACS_SERVICE_NAME www]$ emacs index.tclPaste this into the file.
@@ -65,7 +65,7 @@
[$OPENACS_SERVICE_NAME www]$ emacs note-edit.adpexample missingAnd the delete page. Since it has no UI, there is only a
- tcl page, and no adp page.
+ Tcl page, and no adp page.
[$OPENACS_SERVICE_NAME www]$ emacs note-delete.tclexample missing
Index: openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial.xml,v
diff -u -r1.21.2.1 -r1.21.2.2
--- openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial.xml 23 Jun 2016 08:32:46 -0000 1.21.2.1
+++ openacs-4/packages/acs-core-docs/www/xml/developers-guide/tutorial.xml 22 Apr 2017 17:18:48 -0000 1.21.2.2
@@ -25,7 +25,7 @@
OverviewTo start developing new code in OpenACS, we build a new package. A package
- is a a discrete collection of web pages, tcl code, and database tables and procedures.
+ is a a discrete collection of web pages, Tcl code, and database tables and procedures.
A package with user interface is called an application;
a package which provides functions to other packages and has no direct interface, a
service. A package can be installed, upgraded, and
Index: openacs-4/packages/acs-core-docs/www/xml/engineering-standards/cvs.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/engineering-standards/cvs.xml,v
diff -u -r1.6.14.3 -r1.6.14.4
--- openacs-4/packages/acs-core-docs/www/xml/engineering-standards/cvs.xml 21 Apr 2017 15:07:52 -0000 1.6.14.3
+++ openacs-4/packages/acs-core-docs/www/xml/engineering-standards/cvs.xml 22 Apr 2017 17:18:48 -0000 1.6.14.4
@@ -53,7 +53,7 @@
With this setup, you will be asked for your password with
each cvs command. To avoid this, set up ssh certificate
- authentication for your openacs account. (More
information)
@@ -150,7 +150,7 @@
Checkout .LRN
- .LRN consists of a given version openacs core, plus a set of
+ .LRN consists of a given version OpenACS core, plus a set of
packages. These are collectively packages together to form a
distribution of .LRN. F .LRN 2.0.0 sits on top of OpenACS 5.0.0.
.LRN also uses an OpenACS install.xml file during installation;
@@ -179,7 +179,7 @@
Modules
- All OpenACS code resides within a single CVS module, openacs-4. (The openacs-4 directory contains code for all versions of OpenACS 4 and later, and .LRN 1 and later.) Checking out this module retrieves all openacs code of any type. For convenience, subsets of openacs-4 are repackaged as smaller modules.
+ All OpenACS code resides within a single CVS module, openacs-4. (The openacs-4 directory contains code for all versions of OpenACS 4 and later, and .LRN 1 and later.) Checking out this module retrieves all OpenACS code of any type. For convenience, subsets of openacs-4 are repackaged as smaller modules.acs-core contains only critical common
@@ -277,7 +277,7 @@
added to core packages on release branches. For all other
packages, release branches are the recommended location
for development. For example, if you are working on
- calendar, which is compatible with openacs 5.0 but not
+ calendar, which is compatible with OpenACS 5.0 but not
5.1, work on the oacs-5-0 branch.
Index: openacs-4/packages/acs-core-docs/www/xml/engineering-standards/docbook-primer.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/engineering-standards/docbook-primer.xml,v
diff -u -r1.14.6.1 -r1.14.6.2
--- openacs-4/packages/acs-core-docs/www/xml/engineering-standards/docbook-primer.xml 23 Jun 2016 08:32:46 -0000 1.14.6.1
+++ openacs-4/packages/acs-core-docs/www/xml/engineering-standards/docbook-primer.xml 22 Apr 2017 17:18:48 -0000 1.14.6.2
@@ -554,7 +554,7 @@
list critical decisions (perhaps as questions) that need to
- be made before starting: which OS, which DB, which aolserver
+ be made before starting: which OS, which DB, which AOLserver
version, system name, dependencies et cetera. Maybe summarize
options as tables or decision-trees. For example, "As you
proceed throughout the installation, you will be acting on
@@ -610,7 +610,7 @@
Provide working examples that highlight the various
- subsystems, tcl environment, OpenACS protocols, aolserver
+ subsystems, Tcl environment, OpenACS protocols, AOLserver
template and ns_* commands, OpenACS templating, sql queries,
db triggers, scheduling protocols, how to use the page contract,
how to get the accessing user_id etc
Index: openacs-4/packages/acs-core-docs/www/xml/engineering-standards/style-guide.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/engineering-standards/style-guide.xml,v
diff -u -r1.3.14.2 -r1.3.14.3
--- openacs-4/packages/acs-core-docs/www/xml/engineering-standards/style-guide.xml 3 Oct 2016 09:17:51 -0000 1.3.14.2
+++ openacs-4/packages/acs-core-docs/www/xml/engineering-standards/style-guide.xml 22 Apr 2017 17:18:48 -0000 1.3.14.3
@@ -20,12 +20,12 @@
Well, first lets consider the OpenACS code base (all this as of
December 2003 and including dotLRN). There are about 390,000
- lines of tcl code, about 460,000 lines of sql (in datamodel
+ lines of Tcl code, about 460,000 lines of sql (in datamodel
scripts and .xql files), about 80,000 lines of markup in .adp
files, and about 100,000 lines of documentation. All told, just
about a million lines of "stuff". In terms of logical units
there are about 160 packages, 800 tables, 2,000 stored
- procedures, about 2,000 functional pages, and about 3,200 tcl
+ procedures, about 2,000 functional pages, and about 3,200 Tcl
procedures.
@@ -59,7 +59,7 @@
Some of the file naming rules are requirements for things
to function correctly (for example data model creation
- scripts and tcl library files must be named properly to be
+ scripts and Tcl library files must be named properly to be
used), while some are suggestions (the
object-verb naming convention) which
if ignored won't break anything, but if you follow the
Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/aolserver.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/aolserver.xml,v
diff -u -r1.22.14.1 -r1.22.14.2
--- openacs-4/packages/acs-core-docs/www/xml/install-guide/aolserver.xml 23 Jun 2016 08:32:46 -0000 1.22.14.1
+++ openacs-4/packages/acs-core-docs/www/xml/install-guide/aolserver.xml 22 Apr 2017 17:18:48 -0000 1.22.14.2
@@ -95,7 +95,7 @@
[root aolserver]# export POSTGRES=/usr/local/pgsql; ./conf
Building in /usr/local/aolserver
with the following modules:
-aolserver
+AOLserver
nscache
nsrewrite
nssha1
Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/aolserver4.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/aolserver4.xml,v
diff -u -r1.31.2.2 -r1.31.2.3
--- openacs-4/packages/acs-core-docs/www/xml/install-guide/aolserver4.xml 21 Apr 2017 15:07:52 -0000 1.31.2.2
+++ openacs-4/packages/acs-core-docs/www/xml/install-guide/aolserver4.xml 22 Apr 2017 17:18:48 -0000 1.31.2.3
@@ -16,7 +16,7 @@
Check suitability of previously installed TCL
- Start tcl (type tclsh or find it using which tclsh).
+ Start Tcl (type tclsh or find it using which tclsh).
[root root]% info exists tcl_platform(threaded)
@@ -29,8 +29,8 @@
info patchlevel
If the first command returns anything other than 1,
- then tcl is not threaded. If tcl is threaded and the version is 8.4 or higher, then installing
- tcl from source is optional.
+ then Tcl is not threaded. If Tcl is threaded and the version is 8.4 or higher, then installing
+ Tcl from source is optional.
Retrieve Tcl 8.4 (or higher)
@@ -41,7 +41,7 @@
to add tcl8.4 to their sources.list file as described on the
Install Postgres page). You'll
have to use /usr/lib/tcl8.4/ instead of /usr/local/lib when you
- try to find the tcl libraries, however.
+ try to find the Tcl libraries, however.If you have not installed Tcl already, download the latest Tcl version from SourceforgeDebian:
@@ -70,7 +70,7 @@
Retrieve AOLserver
- Download the aolserver from CVS.
+ Download the AOLserver from CVS.[root root]# cd /usr/local/src
[root src]# mkdir aolserver40r10
@@ -88,7 +88,7 @@
cd /usr/local/src
mkdir aolserver40r10
cd aolserver40r10
-cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/aolserver co -r aolserver_v40_r10 aolserver
+cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/aolserver co -r aolserver_v40_r10 AOLserver
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/aolserver co nscache
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/aolserver co nspostgres
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/aolserver co nssha1
Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/openacs.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/openacs.xml,v
diff -u -r1.31.14.2 -r1.31.14.3
--- openacs-4/packages/acs-core-docs/www/xml/install-guide/openacs.xml 5 Jul 2016 16:42:42 -0000 1.31.14.2
+++ openacs-4/packages/acs-core-docs/www/xml/install-guide/openacs.xml 22 Apr 2017 17:18:48 -0000 1.31.14.3
@@ -344,7 +344,7 @@
PostgreSQL:Create a user in the database matching the service
- name. With default PostgreSQL authentication, a system user connecting locally automatically authenticates as the postgres user of the same name, if one exists. We currently use postgres "super-users" for everything, which means that anyone with access to any of the openacs system accounts on a machine has full access to all postgresql databases on that machine.
+ name. With default PostgreSQL authentication, a system user connecting locally automatically authenticates as the postgres user of the same name, if one exists. We currently use postgres "super-users" for everything, which means that anyone with access to any of the OpenACS system accounts on a machine has full access to all postgresql databases on that machine.[root root]# su - postgres
[postgres pgsql]$ createuser -a -d $OPENACS_SERVICE_NAME
CREATE USER
@@ -523,7 +523,7 @@
to make sure the service is starting without any
problems. The most common errors here are trying to start a
port 80 server while not root, failing to connect because of
- a firewall, and aolserver failing to start due to
+ a firewall, and AOLserver failing to start due to
permissions errors or missing files. If you need to make
changes, don't forget to kill any running servers with
killall nsd.
Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/os.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/os.xml,v
diff -u -r1.15.14.1 -r1.15.14.2
--- openacs-4/packages/acs-core-docs/www/xml/install-guide/os.xml 28 Sep 2015 07:54:30 -0000 1.15.14.1
+++ openacs-4/packages/acs-core-docs/www/xml/install-guide/os.xml 22 Apr 2017 17:18:48 -0000 1.15.14.2
@@ -29,7 +29,7 @@
- Note: Instructions for installing tDOM and threaded tcl are included with the AOLserver4 installation instructions,
+ Note: Instructions for installing tDOM and threaded Tcl are included with the AOLserver4 installation instructions,
if these are not yet installed.The following programs may be useful or required for some configurations. They are included in most distributions:
Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/other-software.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/other-software.xml,v
diff -u -r1.29.14.3 -r1.29.14.4
--- openacs-4/packages/acs-core-docs/www/xml/install-guide/other-software.xml 21 Apr 2017 15:07:53 -0000 1.29.14.3
+++ openacs-4/packages/acs-core-docs/www/xml/install-guide/other-software.xml 22 Apr 2017 17:18:48 -0000 1.29.14.4
@@ -497,7 +497,7 @@
installationIf you want full text search, and you are running PostgreSQL, install this module to support FTS. Do this step after you have installed both PostgreSQL and
- AOLserver. You will need the tseach2 module form PostgreSQL
+ AOLserver. You will need the tsearch2 module form PostgreSQL
contrib. This is included with the PostgreSQL full source
distribution. It is also available with the PostgreSQL contrib
package provided by most distribution packages. On debian it is
@@ -783,7 +783,7 @@
cd /usr/local/src/Search-OpenFTS-tcl-0.3.2/
./configure --with-aolserver-src=/usr/local/src/aolserver/aolserver --with-tcl=/usr/lib/
make
-cd aolserver
+cd AOLserver
make
cp nsfts.so /usr/local/aolserver/bin
@@ -852,7 +852,7 @@
Enable OpenFTS in config.tcl
- If you have installed OpenFTS, you can enable it for this service. Uncomment this line from config.tcl. (To uncomment a line in a tcl file, remove the # at the beginning of the line.)
+ If you have installed OpenFTS, you can enable it for this service. Uncomment this line from config.tcl. (To uncomment a line in a Tcl file, remove the # at the beginning of the line.)#ns_param nsfts ${bindir}/nsfts.so
@@ -1008,7 +1008,7 @@
This AOLserver module is required if you want people to connect to your site via
https. These commands compile nsopenssl and install it,
- along with a tcl helper script to handle https connections.
+ along with a Tcl helper script to handle https connections.
You will also need ssl certificates. Because those should
be different for each server service, you won't need those instructions until
Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/postgres.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/postgres.xml,v
diff -u -r1.35.14.1 -r1.35.14.2
--- openacs-4/packages/acs-core-docs/www/xml/install-guide/postgres.xml 21 Jun 2016 07:44:36 -0000 1.35.14.1
+++ openacs-4/packages/acs-core-docs/www/xml/install-guide/postgres.xml 22 Apr 2017 17:18:48 -0000 1.35.14.2
@@ -24,7 +24,7 @@
url="https://www.postgresql.org/download">www.postgresql.org/download/.
- Larger installations might want to tune the PostgresSQL
+ Larger installations might want to tune the PostgreSQL
installation with e.g. the utility pgtune, which is also
available via apt-get install pgtune or
Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/software.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/software.xml,v
diff -u -r1.26.2.2 -r1.26.2.3
--- openacs-4/packages/acs-core-docs/www/xml/install-guide/software.xml 3 Oct 2016 09:17:51 -0000 1.26.2.2
+++ openacs-4/packages/acs-core-docs/www/xml/install-guide/software.xml 22 Apr 2017 17:18:48 -0000 1.26.2.3
@@ -381,7 +381,7 @@
- The patch for aolserver 3.x that makes ns_uuencode
+ The patch for AOLserver 3.x that makes ns_uuencode
work for binary files is available at sourceforge.net
Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/upgrade.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/upgrade.xml,v
diff -u -r1.41.2.2 -r1.41.2.3
--- openacs-4/packages/acs-core-docs/www/xml/install-guide/upgrade.xml 3 Oct 2016 09:17:51 -0000 1.41.2.2
+++ openacs-4/packages/acs-core-docs/www/xml/install-guide/upgrade.xml 22 Apr 2017 17:18:49 -0000 1.41.2.3
@@ -460,7 +460,7 @@
[root root]# su - $OPENACS_SERVICE_NAME
[$OPENACS_SERVICE_NAME aolserver]$ cd /var/lib/aolserver/openacs-5-1
-[$OPENACS_SERVICE_NAME aolserver]$ cvs up -Pd ChangeLog *.txt bin etc tcl www packages/*
+[$OPENACS_SERVICE_NAME aolserver]$ cvs up -Pd ChangeLog *.txt bin etc Tcl www packages/*
@@ -616,7 +616,7 @@
- Build and install the new OpenFTS driver and supporting tcl procedures. (This section of shell code is not fully documented; please exercise care.)
+ Build and install the new OpenFTS driver and supporting Tcl procedures. (This section of shell code is not fully documented; please exercise care.)cd /usr/local/src/
tar xzf /var/tmp/Search-OpenFTS-tcl-0.3.2.tar.gz
chown -R root.root Search-OpenFTS-tcl-0.3.2/
Index: openacs-4/packages/acs-core-docs/www/xml/kernel/permissions-design.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/kernel/permissions-design.xml,v
diff -u -r1.7 -r1.7.2.1
--- openacs-4/packages/acs-core-docs/www/xml/kernel/permissions-design.xml 27 Oct 2014 16:39:32 -0000 1.7
+++ openacs-4/packages/acs-core-docs/www/xml/kernel/permissions-design.xml 22 Apr 2017 17:18:49 -0000 1.7.2.1
@@ -287,7 +287,7 @@
questions are commonly asked: First, and most commonly, "Can this party
perform this method on this object?" Two Tcl functions are provided to
answer this - one which returns a boolean, the other of which results in an
-error page. These tcl functions directly access the
+error page. These Tcl functions directly access the
acs_object_party_method_map.
The second most commonly asked question occurs when a list of objects is
@@ -360,7 +360,7 @@
Tcl Procedures
-Two tcl procedures provide a simple call for the query, "Can this
+Two Tcl procedures provide a simple call for the query, "Can this
user perform this method on this object?" One returns true or false, the
other presents an error page.
Index: openacs-4/packages/acs-core-docs/www/xml/kernel/rp-design.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/kernel/rp-design.xml,v
diff -u -r1.10.14.2 -r1.10.14.3
--- openacs-4/packages/acs-core-docs/www/xml/kernel/rp-design.xml 13 Feb 2017 07:33:16 -0000 1.10.14.2
+++ openacs-4/packages/acs-core-docs/www/xml/kernel/rp-design.xml 22 Apr 2017 17:18:49 -0000 1.10.14.3
@@ -173,7 +173,7 @@
If no file is found during the concrete file search, then the request
processor searches the filesystem for a virtual url handler
-(.vuh) file. This file contains normal tcl code, and is in
+(.vuh) file. This file contains normal Tcl code, and is in
fact handled by the same extension handling procedure that handles .tcl
files. The only way this file is treated differently is in how the request
processor searches for it. When a lookup fails, the request processor