From dde131368dbab2cb85ac9f0efbc683382648ed71 Mon Sep 17 00:00:00 2001
From: Andrew Johnson
Date: Fri, 17 Nov 2006 23:22:56 +0000
Subject: [PATCH] Fixed dbLoadTemplates comments.
---
documentation/RELEASE_NOTES.html | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html
index 44da774bd..2f7d4c58c 100644
--- a/documentation/RELEASE_NOTES.html
+++ b/documentation/RELEASE_NOTES.html
@@ -21,7 +21,10 @@ that were accepted and discarded without warning before will now generate
errors. The quote characters at the two ends of a quoted string value must now
match, although either single or double quotes can be used. Escaped characters
inside a quoted string should pass safely through to the underlying
-dbLoadRecord() command.
+dbLoadRecord() command. The characters permitted in a bareword parameter (i.e. a
+filename or value that is not inside quotes) have been reduced from the overly
+wide set allowed before; the permitted characters now comprise: a-z A-Z 0-9
+_ - + : . / \ [ ] < > ;
Escaped characters in record fields
@@ -31,7 +34,7 @@ use C89-compatible escaped character codes such as \", \', \t, \n, \064 and
character in them as an error - if you want a newline in a field, use the \n
escaped version.
-libCom/test
+libCom/test and db/test
These test programs are no longer installed into the bin/arch
directory. Running all these programs on any host architecture should be as
@@ -39,10 +42,10 @@ simple as:
cd /path/to/base/src/libCom/test/O.arch
-make test
+make runtests
-The above make target uses Perl's Test::Harness module to execute all of the
+
The runtests target uses Perl's Test::Harness module to execute all of the
test programs and summarize the result. It is also possible to run individual
tests as desired; the output is designed to be comprehensible to humans.