Index: openacs-4/packages/ajaxhelper/www/resources/yui/connection/README =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ajaxhelper/www/resources/yui/connection/README,v diff -u -r1.1 -r1.2 --- openacs-4/packages/ajaxhelper/www/resources/yui/connection/README 21 Oct 2006 06:14:56 -0000 1.1 +++ openacs-4/packages/ajaxhelper/www/resources/yui/connection/README 25 Dec 2006 16:40:01 -0000 1.2 @@ -1,5 +1,33 @@ Connection Manager Release Notes +*** version 0.12.1 *** + +* connection-debug.js corrected and synchronized with connection.js. Code +inconsistencies between the two files existed in 0.12.0. + +*** version 0.12.0 *** + +* When uploading files via setForm() and asyncRequest includes a POST data +argument, appendPostData() will create hidden input fields for each postData +label/value and append each field to the form object. + +* setForm() returns the assembled label/value string of the parsed HTML form +fields. + +* NOTE: Opera 9.02 does not allow for more than 12 concurrent Connection Manager +objects. + +The following example creates 12 requests in a loop: +for(var n=0; n<=12; i++){ + conn[n] = YAHOO.util.Connect.asyncRequest('GET', sUrl, callback); +} + +If n > 13, Opera 9.02 will crash. Connection manager objects count n must be <= +12 at all times. This condition was not present in Opera version 9.01. + +This condition does not apply to other A-Grade browsers ( +http://developer.yahoo.com/yui/articles/gbs/gbs_browser-chart.html) + *** version 0.11.3 *** * YUI Event dependency for file uploading is now optional. @@ -125,3 +153,5 @@ + +