[interchange-cvs] interchange - racke modified WHATSNEW

interchange-core@icdevgroup.org interchange-core@icdevgroup.org
Fri Dec 13 17:16:01 2002


User:      racke
Date:      2002-12-13 22:15:47 GMT
Modified:  .        WHATSNEW
Log:
documented latest changes from Mike and Jon

Revision  Changes    Path
2.70      +28 -0     interchange/WHATSNEW


rev 2.70, prev_rev 2.69
Index: WHATSNEW
===================================================================
RCS file: /var/cvs/interchange/WHATSNEW,v
retrieving revision 2.69
retrieving revision 2.70
diff -u -r2.69 -r2.70
--- WHATSNEW	13 Dec 2002 15:26:25 -0000	2.69
+++ WHATSNEW	13 Dec 2002 22:15:47 -0000	2.70
@@ -33,6 +33,34 @@
 * Fix whitespace transform and tolerate leading whitespace on HTTP
   header lines.
 
+* Avoid persistent storage to make [summary] safe in prefork mode.
+
+* Allow a database to spring into existence without a .txt file. TO
+  do this, you define the field names in the NAME paramter.
+
+      Database will_be_there  will_be_there.txt  __SQLDSN__
+      Database will_be_there  NAME   code  field1 field2
+      Database will_be_there  CREATE_EMPTY_TXT  1
+
+  All it does is create the .txt file (or whatever the name is) from
+  the value of NAME array. It does take delimiters into account.
+
+  You must be just a bit careful, since if you then remove the .txt
+  file it will of course recreate the table. Of course you should
+  take that into account when setting this non-default parameter.
+
+  This will allow some one-file configurations to be added to the
+  system.
+
+* Allow autonumber for the linked-table behavior of update_data. Before,
+  you couldn't autonumber because the determination of whether the data
+  would be set was whether the key value is present. This allows
+  you to set mv_data_qual=fieldname and have a non-empty value in
+  that field determine whether to insert or not.
+
+* Minor cleanup in Data.pm, including ensuring $obj->{DELIMITER} 
+  and $obj->{delimiter} match.
+
 Content Management
 ------------------