File: WHATSNEW-5.3

package info (click to toggle)
interchange 5.7.6-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 11,524 kB
  • ctags: 2,202
  • sloc: perl: 65,378; ansic: 1,458; sh: 804; xml: 437; makefile: 126; sql: 26
file content (354 lines) | stat: -rw-r--r-- 11,134 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
------------------------------------------------------------------------------

                  What's new in each version of Interchange
                       (since the version 5.2 branch)

------------------------------------------------------------------------------


Interchange 5.3.2 released on 2005-11-10.


Core
----

* Implement new AccumulateCode and TagRepository directives. The rationale
  is:

    -- There is a huge base of Interchange code, much of which is not
       needed in even the standard catalog with full UI. This causes a
       larger memory profile than necessary.

    -- It is difficult to determine from the page code what code is
       needed, especially when a [tag] can call a $Tag can call
       a filter can call some sort of Action.

    -- A feature is needed to allow building catalogs with a more
       nearly optimal set of code than just "everything".

  If AccumulateCode is no, operation is exactly as before. There have
  been some code initialization changes and routine calling changes,
  but the data structures are identical and no difference in operation
  should be seen.

  If you set AccumulateCode to "Yes" and specify a TagRepository that
  contains all known UserTag, ActionMap, Filter, Widget, etc. etc.
  code, Interchange starts accumulating and compiling these as
  needed.

  The code is sent to the master process for compilation and
  incorporation, so that the next iteration of a page after HouseKeeping
  seconds will find the code already compiled and ready to go.

  Over time, as you access pages and routines, a full set of tags
  will be developed and you can turn AccumulateCode to "No".

* Add HouseKeepingCron capability with cron-style execution of
  Jobs, reconfig, restart, and other arbitrary tasks (using GlobalSub).

  Uses Set::CronTab and a modified crontab format that includes
  seconds.

* Add more file tests than -f for [if file].

    [if file-s catalog.cfg > 10000]
        catalog.cfg size is greater than 10000
    [else]
        catalog.cfg size is not greater than 10000
    [/else]
    [/if]

    [if file-w catalog.cfg]
        catalog.cfg can be written
    [/if]

    [if file-T catalog.cfg]
        catalog.cfg is a text file
    [/if]

    [if file-B catalog.cfg]
        catalog.cfg is a binary file
    [/if]

    etc.

  The tests are standard Perl tests, supported are:

    A B d e f g l M r s T u w x

* Add MIME support for [email ..] usertag, which allows you to easily
  attach files or create HTML email.

  [email
    from="Me@me.com"
    to="You@you.com"
    subject=Test
    attach="foo.pdf"
  ]Here is the pdf.[/email]

* Improved Net::SMTP support.

* Add Discount spaces, which allows you to create switchable discount
  spaces similar to the existing values-space functionality. The [discount-
  space] usertag can be used to change the current discount namespace,
  causing all subsequent discount-related tags and calculations to
  operate from that particular

* Add CartTrigger, which allows for specification of any number of
  subroutines (global or catalog subs, specified by name) to execute
  whenever the contents of a shopping cart are changed via the standard
  means available through CGI variable space.

* Add new "Feature" facility which allows easy installation of new
  capabilities to Interchange.

* Add a directive alias feature to Vend::Config, with the following
  defaults:

        DataDir           == ProductDir
        DefaultDataTables == ProductFiles

* Add ErrorDestination directive which allows you to route error
  messages to different files. For example:

    ErrorDestination  "search error: %s" logs/search_errors.log

* Improved coverage for AutoModifier, allowing it to map arbitrary
  item paramters/modifiers to arbitrary tables and columns.

* Add support for uploaded files in IC-in-mod_perl server mode,
  supplied by Spencer Christensen <schristensen@backcountry.com>.

* Add serialization of arbitrary values in UserDB on login/logout/save.
  This allows adding extra form-initialization values for a user
  (like mv_same_billing) without having to always create a new DB field.

* Make AutoLoad and AutoEnd accept multiple routines in different
  configuration lines.

* Add "Help" option for display widgets, allowing tooltips on hovering
  over an option.

* "Permanent more" facility allows you to create pageable searches
  that are shared between people and are cacheable by search engines.

* Add DispatchRoutines code to allow inserting initialization code based
  on directive/feature set. Previously, you would have to add a test
  or branch in Vend::Dispatch -- now you can just push your routine on a
  stack if appropriate.

  CookieLogin, Autoload, DiscountSpaces, and Locale use this.
  
* Many minor changes to improve XHTML support.

* Add $Row object for accessing the current list row in embedded Perl.

* Add Vend::External mechanism for communication with PHP, Python, or Ruby.

* Fix bug in Glimpse search that caused mv_substring_match never to work. 
  Glimpse only allows setting substring or full word matches per search, 
  not per word, so if any word is flagged as a substring match, the whole 
  search is. Otherwise, it's a full word match.

* Levies fixes to allow conditional exclusives and return of false
  values containing whitespace.

* Additional credit card types recognized, settable "Other" value
  for default card. SpecialSub guess_cc_type allows custom card
  recognition on a per-catalog basis.

* Add no_default_reparse to make the default Reparse setting false,
  which can be (as always) overridden by the tag's Reparse setting, and
  finally by the reparse=X tag attribute.

* Add more ability for DatabaseAuto to process Postgres definitions
  and prevent addition of global schemas while possibly allowing 
  addition of views.

* Improve large-table performance on SQL databases that don't
  support LIMIT (i.e. Oracle).

* Fix bug that prevented multiple-field searches from working, e.g.
  sf=15:16:17:18.

* Add table to [import] error message.

* Controlling Interchange (add,remove,jobs) doesn't stop despite of a 
  stale PID file and kills the script it runs from (Debian bug #256093)

* Fix bug that prevented the use of "<filename" to slurp configuration contents
  from a file.
  
* Various performance and reliability optimizations to the [menu ...]
  tag and Menu.pm.

* Changes to remove some warnings and make it easier to run with
  -w flag.

* Break most all Widget, Filter, and OrderCheck function definitions
  into individual files in the ICROOT/code tree. Remove the corresponding
  fixed functions from Vend::Form, Vend::Interpolate, and Vend::Order.

* Fix X-Track headers so that they will always be canonical.

* Fixed bug that prevented catalog-level Sub definitions from being
  recognized in CodeDef Routine directives.


Widgets
-------

* country_select and state_select widgets allow dynamic linkage of
  a state/province widget with the country, based on a database.

* Add Description to most widgets.

* Create public and non-public visibility distinction allowing
  you to build a list of widgets for selection.

UI
--

* Escape HTML tags within ITL test code output.

* Customer Mailing added to edit permissions page.

* Fix the long-standing "page [cgi mv_data_table] not found" error on
  return from meta_editor.

* Display "New item" in the HTML title of the item editor for new items.

* New page editor style, with possibility to add your own custom layout.

* User merge facility to allow order admins to merge customer accounts when
  they order with additional IDs.

* Added several new display styles for the table editor.

* Change admin/miscfunction to have an editable links menu as well as
  an editable Miscellaneous function menu.

* Add "Save Link" function that can help build a menu in the
  admin/miscfunction page.

* Many minor table editor enhancements -- improved meta editing, views,
  and customization.

* Fix [write-shipping] to support the changeable location of
  shipping.asc.

* Fix references to [modifier-name] and [quantity-name] which would
  cause problems when editing pages with an [item-list].

Menu
----

* Allow "Create menu from HTML" option to recognize <OPTION value=URL>Anchor
  lists.

UserTag
-------

* Deprecate [sql] tag from MiniVend 3. Planned for removal in next major
  Interchange version.

* Make secure image directory be set to something even if no
  separate secure image directory within [image] UserTag.

* [jsq]/[jsqn] returns now the string '' if an empty string is the argument
  in order to avoid JavaScript errors (found by John Rennie)

* Changes related to the makesize= parameter of [image] UserTag:

  - Added resize= and geometry= aliases

  - Expanded a regex, which only accepted an AxB size specification,
    to permit complete format that mogrify supports:

    AxB, A or xB, followed by up to two +-number offsets, followed by
    none or one of @!%><.

    URLs have the "%" character encoded: % = %25

Standard Demo
-------------

* Added new "Standard" demo based on the former contributed "mike" demo.

* New standard demo adds multi-page checkout.

Foundation
----------

* Removed foundation catalog, replaced with "standard" demo.

Payment
-------

* New Ezic module supplied by Mark Lipscombe <markl@gasupnow.com>.

* New Business::OnlinePayment interface contributed by Ivan Kohler. See
  http://420.am/business-onlinepayment/ for available modules.

* use_wget option in Vend::Payment allows using the wget program
  for fetching payment results. This may improve reliability of
  some payment modules that use HTTPS.

  Requires wget to be linked with an SSL library, of course.

* Add support for CVV (AuthorizeNet) and AVS (Echo) for some modules.

* Fix Linkpoint module so it nominally operates.

* Updated Vend::Payment::PRI code from Marty Tennison.

* Vend::Signio: Allow cert_path relative to IC root for PayFlow Pro
  (akin to other default path attempts in $ICROOT and $ICROOT/lib).


i18n
----

* Continued translation of UI.

* Update of Italian UI translation thanks to Marco Mescoli.

* Added Vietnamese, Czech, and Greek UI translations thanks to 
  Clytie Siddall, Martin Sin and Gert van der Spoel.

Link
----

* Add Interchange::Link (mod_perl 1.99/2.0 link program) by Mike Heins, which
  optionally can replace vlink and tlink. It includes many features found in
  mod_interchange and also a mechanism to deliver static files outside of
  Interchange.

* Clean up vlink/tlink program code to remove cruft and make consistent.

* Bug fixes to Interchange::Link (mod_perl2 link module).

Debian
------

* Added te editor for tab-delimited files (Closes: #132757)

* Let demo catalog removal always succeed (Closes: #256093)

RPM
---

* Install te editor for tab-delimited files into /usr/bin.

... and many other changes.


------------------------------------------------------------------------------


Interchange 5.3.0 and 5.3.1 released only in nightly builds and via CVS.


------------------------------------------------------------------------------

(end)