[interchange-cvs] interchange - racke modified WHATSNEW

interchange-cvs at icdevgroup.org interchange-cvs at icdevgroup.org
Mon Oct 13 09:12:53 EDT 2003


User:      racke
Date:      2003-10-13 12:12:53 GMT
Modified:  .        WHATSNEW
Log:
update for modifications since Sep 11

Revision  Changes    Path
2.153     +58 -0     interchange/WHATSNEW


rev 2.153, prev_rev 2.152
Index: WHATSNEW
===================================================================
RCS file: /anon_cvs/repository/interchange/WHATSNEW,v
retrieving revision 2.152
retrieving revision 2.153
diff -u -r2.152 -r2.153
--- WHATSNEW	11 Sep 2003 01:00:51 -0000	2.152
+++ WHATSNEW	13 Oct 2003 12:12:53 -0000	2.153
@@ -247,6 +247,44 @@
 * Prevent autovivification of $CGI::values{mv_username}, and make CookieLogin
   slightly more efficient when already logged in.
 
+* Allow custom increment and decrement routines with inc-routine and
+  dec-routine options. They can be an inline code reference:
+
+	[counter
+		file=testcount
+		inc-routine=`sub { shift(@_) + 2 }`
+	]
+	[counter
+		file=testcount
+		decrement=1
+		dec-routine=`sub { shift(@_) - 2 }`
+	]
+
+  or a Sub or GlobalSub:
+
+	catalog.cfg:
+  	Sub three_steps_forward <<EOR
+	sub {
+		my $val = shift; $val += 3; return $val;
+	}
+	EOR
+
+  	Sub two_steps_back <<EOR
+	sub {
+		my $val = shift; $val -= 2; return $val;
+	}
+	EOR
+
+	[counter file=testcount inc-routine=three_steps_forward]
+	[counter file=testcount dec-routine=two_steps_back decrement=1]
+
+* Add [error auto=1] similar to [warnings auto=1].
+
+* Fix nested [elsif] problem.
+
+* Fix problem with alphabetic sorting of more lists where search results
+  appeared in the wrong group.
+
 Tables
 ------
 
@@ -400,6 +438,11 @@
 
 * Fix potential PreFork problems in AuthorizeNet module.
 
+* Add a "x_ADC_Delim_Character" (set to \037, which is ASCII US)
+  to replace the default field separator (,). A comma isn't a
+  very useful default, as people tend to use them in their address.
+  Problem reported, and fix tested, by John Young in IRC.
+
 Shipping
 --------
 
@@ -422,6 +465,8 @@
 * Add hide_error option to suppress error message when no shipping methods
   are found.
 
+* Allow comment lines in shipping.asc, with leading # mark.
+
 UI
 --
 
@@ -668,6 +713,8 @@
 
 * Don't allow user to change order number through order status page.
 
+* Ensure that you don't leave secure server through metaconfig link.
+
 Form
 ----
 
@@ -678,6 +725,8 @@
 * Add display type "labels" that is like "options" except it displays the
   labels instead of their codes.
 
+* option_format widget now uses passed filter.
+
 Menu
 ----
 
@@ -959,6 +1008,11 @@
 
 * Fix bashisms in interchange-cat-foundation's config script.
 
+* Don't throw an error if removal of the file 
+  /usr/lib/interchange/auto/Interchange/.packlist fails
+  (Closes: #215003, thanks to Daniel Schepler
+  <schepler at math.berkeley.edu> for the bug report)
+
 Miscellaneous
 -------------
 
@@ -1957,6 +2011,10 @@
   the Shadow database code to return the original database record.
 
 * Add stub for inc_field method.
+
+* Add stub for delete_record method.
+
+* Non-select queries are passed to underlying database immediately.
 
 Static Page Generation
 ----------------------








More information about the interchange-cvs mailing list