Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/spinoffs/prototype/tags/rel_1-6-0_rc0/CHANGELOG

Revision 7312, 41.3 kB (checked in by sam, 2 years ago)

prototype: Fix readAttribute-related failure in form.html in IE.

Line 
1 *SVN*
2
3 * Fix readAttribute-related failure in form.html in IE.  [sam, Andrew Dupont]
4
5 * Fix failing dom.html and selector.html tests in IE.  [Tobie Langel, Andrew Dupont]
6
7 * Make sure the WebKit redefinition of Element#cumulativeOffset uses Element._returnOffset.  Closes #9245.  [mdaines]
8
9 * Make sure Element#observe and Element#stopObserving are always chainable.  [sam]
10
11 * Event.fire/Element#fire now returns the newly-fired event instead of the event's target element.  [sam]
12
13 * Restrict Event.DOMEvents to include only events that can be supported in all browsers.  [sam]
14
15 * Fix a failing test in base.html in Safari 2.  [Tobie Langel]
16
17 * Fix Element#positionedOffset and Element#getOffsetParent for static elements on IE.  [Thomas Fuchs]
18
19 * Make sure event handlers and their wrappers are removed from the cache by Event.stopObserving.  [sam, Severin Heiniger]
20
21 * Add line numbers to failures when unit testing in Firefox.  Closes #9231.  [John Resig]
22
23 * Fix Function#argumentNames for Opera and IE.  [Thomas Fuchs]
24
25 * Add Object.isString, Object.isNumber, and Object.isUndefined, and clean up the source to make use of Object.isXXX where possible.  [sam]
26
27 * Add the document.viewport object for querying dimensions and scroll offsets of the browser viewport.  [Andrew Dupont, Thomas Fuchs, sam]
28   Example:
29     document.viewport.getDimensions()     // { width: 1149, height: 923 }
30     document.viewport.getWidth()          // 1149
31     document.viewport.getHeight()         // 923
32     document.viewport.getScrollOffsets()  // { left: 0, top: 1592 }
33
34 * Add support for brackets in quoted attribute value selectors.  Closes #9157.  [Ken Snyder]
35
36 * Add some missing semicolons to the source tree.  Closes #9140.  [jdalton]
37
38 * Fix event extensions and custom events firing for Safari 2.0.  [Thomas Fuchs]
39
40 * Add RegExp.escape for escaping regular expression strings.  Closes #9094.  [Ken Snyder]
41
42 * Make the eventName and handler arguments to Event.stopObserving optional.  If no handler is specified, all handlers for the given event are unregistered.  If no event name is specified, all observed events on the element are unregistered.  [sam]
43
44 * Add cross-support for the DOMContentLoaded event through a Prototype custom event on document called "contentloaded".  The DOMContentLoaded event fires before window.load, when the entire HTML document, but not necessarily its images, stylesheets or other assets, has loaded.  Based on [6596].  [sam, Mislav Marohnić]
45   Example:
46     document.observe("contentloaded", function() {
47       $$("a").invoke("identify"); // give all <a> tags an ID
48     });
49
50 * Add Event.fire and Element.Methods.fire for firing custom events.  Prototype custom events piggyback on a real DOM event ("ondataavailable"), so they bubble and cancel.  You can fire custom events from any element, or fire global events on the document object.  Observe custom events just as you'd observe a regular DOM event.  [sam, Seth Dillingham]
51
52 * Extend the event object with methods from Event.Methods and normalize it in IE.  [sam, Mislav Marohnić]
53
54 * Remove support for observing the capturing phase of DOM events, since we can't support it in all browsers.  [sam]
55
56 * Add Ajax.Response object which supports the following methods: responseJSON, headerJSON, getHeader, getAllHeaders and handles browser discrepancies in the other response methods. Add sanitizeJSON, evalJS and evalJSON to Ajax.Request. Closes #8122, #8006, #7295. [Tobie Langel]
57
58 * Add an isRunningFromRake property to unit tests. [Tobie Langel]
59
60 * Add support for Opera browser in jstest.rb. [Tobie Langel]
61
62 * Inheritance branch merged to trunk; robust inheritance support for Class.create. Closes #5459. [Dean Edwards, Alex Arnell, Andrew Dupont, Mislav Mahronic]
63  - To access a method's superclass method, add "$super" as the first argument. (The naming is significant.) Works like Function#wrap.
64  - Class.create now takes two optional arguments. The first is an existing class to subclass; the second is an object literal defining the instance properties/methods. Either can be omitted. Backwards-compatible with old Class.create.
65  - Added Class.extend for dynamically adding methods to existing classes (while preserving inheritance chain). Can also be used for mixins.
66  - The 'constructor' property of a class instance always points back to the proper class. Class objects themselves have two special properties: 'superclass' and 'subclasses' (which default to 'null' and '[]', respectively). Allows for powerful introspection.
67  - Added Object.isFunction [sam]
68  
69 * Add Function#argumentNames, which returns an ordered array of the function's named arguments.  [sam]
70
71 * Prevent a crash in Safari 1.3 on String#stripScripts and String#extractScripts. Closes #8332. [grant, Tobie Langel]
72
73 * Add Prototype.Browser.MobileSafari which evaluates to true on the iPhone's browser.  [sam]
74
75 * Optimize Selector#match and Element#match for simple selectors.  Closes #9082.  [Andrew Dupont]
76
77 * Remove the dependency on Element.ClassNames from Element#addClassName/removeClassName/toggleClassName, and deprecate Element.ClassNames. Closes #9073. [Tobie Langel]
78
79 * Make Element#wrap accept a second argument for setting attributes on the wrapper. Allow wrapping elements which are not part of the document. Closes #9071. [Tobie Langel]
80
81 * Improvements for Element#replace, Element#update and Element#insert.  Closes #7429, #9060.  [Tobie Langel]
82   - Element#replace/update/insert uses the argument's toElement or toHTML method if present (toElement has precedence if both are present).
83   - Element#replace and Element#update now also accept DOM elements.
84   - Element#replace better handles table-related elements in IE and Opera.
85  
86 * Add Object.isArray and Object.isElement (returns true if the object is a DOM node of type 1). [Tobie Langel]
87
88 * Add Object.toHTML (uses the object's toHTML method if present or else passes the object to String.interpret). [Tobie Langel]
89
90 * Make Element#setStyle accept a string argument of CSS rules. Deprecate uncamelized style property names when setting styles using an object (for performance reasons).  Closes #9059.  [Tobie Langel]
91   Examples:
92     $('id').setStyle('font-size: 12px; float: left; opacity: 0.5');
93     $('id').setStyle({fontSize: '12px', cssFloat: 'left', opacity: 0.5});
94
95   !! BACKWARDS COMPATIBILITY CHANGE !!
96  
97   If you have code that looks like this:
98     $('id').setStyle({'font-size': '12px'});
99   You need to replace it with either of the following:
100     $('id').setStyle({fontSize: '12px'});
101     $('id').setStyle('font-size: 12px;');
102
103 * Add Element#identify, which returns the element's ID if it exists, or sets and returns a unique, auto-generated ID (of the form "anonymous_element_" + auto-incremented digit) otherwise.  Use this when you need to ensure an element has an ID.  Closes #9012.  [Jeff Watkins, sam, Tobie Langel]
104
105 * Make Element#readAttribute work for cloned elements in IE. Closes #8481. [chem, Tobie Langel]
106
107 * Template enhancements.  Closes #8166.  [Christophe Porteneuve]
108   - Added String#interpolate as a shortcut for new Template(...).evaluate(...).
109   - If you pass String#interpolate or Template#evaluate an object with a toTemplateReplacements() method, the return value of that method will be used as the replacement object.
110   - You can now substitute properties of template replacement values in template strings, using dot or bracket notation (or both).  Example:
111     "#{name.last}, #{name.first[0]}. (#{location})".interpolate({
112       name: { first: "Christophe", last: "Porteneuve" }, location: "Paris"
113     }) // "Porteneuve, C. (Paris)"
114
115 * Extended grep semantics.  The first argument to Enumerable#grep is now a "filter" (an object with a match() method) so you can now e.g. filter an array of DOM nodes by CSS selector.  RegExp#match is now an alias to RegExp#test, so grep can still be used to filter an array of strings with a regular expression.  Closes #7596.  [Christophe Porteneuve, sam]
116
117 * Make String#scan explicitly return a string. This prevents possible issues with methods expecting input data that is typeof == 'string'. Closes #6350. [AndrewRev, Tobie Langel]
118
119 * Add Array#intersect for set intersection. Returns a new array containing all items common to the array and the argument, with duplicates removed (clone of the Ruby & method).   [Thomas Fuchs]
120   Example:
121     [1,1,3,5].intersect([1,2,3]) -> [1,3]
122
123 * Rename Element#getElementsBySelector to Element#select and add alias for Element#getElementsBySelector.  [Thomas Fuchs]
124
125 * Add Element#adjacent as a shortcut to selecting all adjacent nodes (and their children) that match a CSS selector.  [Thomas Fuchs]
126
127 * Enhance the Enumerable and Array APIs to more closely match those of JavaScript 1.6 as implemented in Firefox 1.5.  Closes #6650, #8409.  [Mislav Marohnić, Sylvain Zimmer]
128   - Add Array#lastIndexOf, and change Array#indexOf not to overwrite the native method.
129   - Make Enumerable use Array.prototype.forEach instead of _each when possible (slight speed increase).
130   - Add "filter", "entries", "every", and "some" Array aliases.
131   - All Enumerable methods now have an additional parameter, "context", which, if present, specifies the object to which the iterators' "this" is bound.
132   - Function#bind and #curry now return the receiving function if the binding object is undefined.
133
134 * Temporary workaround for Prototype.BrowserFeatures.SpecificElementExtensions incorrectly evaluating to true on iPhone. (needs further investigation)  [sam]
135
136 * The action for Form#request defaults to the current URL if the "action" attribute is empty. (This is what most of the major browsers do.) Fixes #8483. [Tomas, Mislav Marohnić]
137
138 * In form serialization, change the way submit buttons are handled. Previously all submit buttons were serialized; now Prototype serializes only the first one. Change Form#serialize and Form.serializeElements to accept a params hash. With the "hash: false" option, a serialized string is returned instead of the hash data object. With the "submit: 'foo'" option, only the submit button with the name "foo" is serialized.  References #5031.  [Mislav Marohnić]
139   Examples:
140     $('form').serialize({ submit: 'delete' })
141     $('form').serialize({ hash: false }) //-> equivalent to $('form').serialize()
142
143 * Form#findFirstElement respects HTML tabindexes.  Closes #7595.  [Christophe Porteneuve]
144
145 * Added Form.Element#setValue method for setting values on various form controls. Checkboxes and radio buttons respond to a boolean and multiple select boxes expect an array of values.  Closes #5902.  [Jonathan Viney, Mislav Marohnić]
146   Examples:
147     $('text_input').setValue('hello world!')
148     $('remember_me').setValue(true)
149     $('attend_classes').setValue(['cheese rolling', 'evil chemistry'])
150
151 * Make document.getElementsByClassName match a subset of the WHATWG Web Applications 1.0 specification which was adopted in Firefox 3 (http://www.whatwg.org/specs/web-apps/current-work/#getelementsbyclassname). It now supports multiple class names given as a whitespace-separated list in a string. Array argument is not supported. The method will only return the nodes that match all the class names. In browsers that implement the method natively it will not be overwritten.  Closes #8401.  [Mislav Marohnić]
152   Example:
153     document.getElementsByClassName('foo bar')
154
155 * Fix a Safari rendering issue when floating elements could temporarily disappear when opacity was set to 1.  Closes #7063.  References #3044, #3813, #6706.  [Thomas Fuchs, davidjrice]
156
157 * Prevent a crash in Safari when calling String#evalJSON(true) on very large strings. Add String#isJSON.  Closes #7834.  [Tobie Langel]
158
159 * Prevent a crash in Safari 1.3 on String#stripScripts and String#extractScripts.  Closes #8332.  [grant, Tobie Langel]
160
161 * Allow JSON data to contain line breaks.  Closes #8271.  [pijyster, Tobie Langel]
162
163 * Add Hash.prototype.index which returns the first found property that has a specific value.  Closes #8528.  [Thomas Fuchs, slusarz, Mislav Marohnić]
164   Examples:
165     var hash = $H({a:1,b:'2'});
166     hash.index(1)   // -> 'a'
167     hash.index('1') // -> undefined
168
169 * Ensure HTMLElement exists before creating Element.extend.  [Tobie Langel]
170
171 * Add Number.prototype.round/ceil/floor/abs as an aliases to the respective methods in Math. Refactor to seperate number extensions from base.js.  [Thomas Fuchs]
172
173 * Make Element#absolutize and Element#relativize properly use Element#getStyle.  Closes #8580.  [Christophe Porteneuve]
174
175 * Test library fixes: make rake dist work on Windows, only teardown if a browser is supported.  Closes #8463, #8498.  [Mislav Marohnić, grant]
176
177 * Change Element.insert syntax to allow multiple positions.  [Thomas Fuchs]
178   Examples:
179     Element.insert('foo', {top:'bar', bottom:'baz'});
180     $('foo').insert({after: new Element('p').update('bar')});
181     Element.insert('foo', new Element('p').update('bar')); // defaults to bottom
182     Element.insert('foo', 'bar'); // defaults to bottom
183
184 * String.prototype.truncate now explicitly converts its return value into a string if no truncation takes place. This prevents possible issues with methods expecting input data that is typeof == 'string'.  [Thomas Fuchs, Tobie Langel, Sam Stephenson]
185
186 * Event.findElement behaves as expected when the element passed matches the given selector.  Closes #8395.  [Mislav Marohnić, Tobie Langel]
187
188 * Element.setOpacity now calls removeAttribute on the filter style on IE if no more filters remain, which makes Cleartype work properly.  Closes #8376.  [alexdemi, Thomas Fuchs]
189
190 * Event.findElement now uses Element#up (and as a result can take a CSS selector instead of just a tag name).  [Tobie Langel]
191
192 * Minor cleanup of the position methods  [sam]
193
194 * Fix Element#clonePosition to call viewportOffset.  Closes #8372.  [graemenelson, Christophe Porteneuve]
195
196 * Prevent an error being thrown by $$ when #id does not exist in $$("div #id").  Closes #8325.  [Tobie Langel, ecke]
197
198 * Make Prototype.ScriptFragment behave when including Prototype inline.  [Christophe Porteneuve]
199
200 * Deprecate Position (kept for backwards compatibility). Add Element#cumulativeOffset, Element#positionedOffset, Element#absolutize, Element#relativize, Element#cumulativeScrollOffset, Element#getOffsetParent, Element#viewportOffset and Element#clonePosition. [Christophe Porteneuve]
201
202 * Make Element#update and Element#insert work for SELECT tags in IE and Opera. [Tobie Langel]
203
204 * Make Element#insert and Element#update better handle TABLE related elements in IE and Opera. Closes #7776, #8040, #7550, #7776, #7938. [Tobie Langel]
205
206 * Make Element#readAttribute('title') work in Opera. [Tobie Langel]
207
208 * Make Element#replace work with form elements in Firefox and Safari. Closes #8010, #7989. [dsl239, Tobie Langel]
209
210 * Add Element#wrap which wraps the element inside a new one. Closes #5732. [P. Vande, Tobie Langel]
211
212 * Make Element into a constructor: new Element(tagName, attributes). Add Element#writeAttribute which accepts a hash of attributes or a name/value pair. Closes #7476. [Mislav Marohnić, haraldmartin, Tobie Langel]
213
214 * Insertion overhaul: Add Element.insert(content[, position = 'bottom']). Deprecate Insertion (kept for backwards compatibility). Make Ajax.Updater option.insertion accept both Insertion.Top or the now preferred 'top'. Closes #7907. [Tobie Langel]
215
216 * Refactor Element.extend and eliminate Element.extend.cache.  [sam]
217
218 * Add Function#curry, Function#delay, Function#defer, and Function#wrap.  Closes #8134.  [Andrew Dupont, Tobie Langel, sam]
219
220 *1.5.1* (May 1, 2007)
221
222 * Don't duplicate the event argument in Function#bindAsEventListener.  Closes #6497.  [wiktor]
223
224 * Fix Selector :not-clause chaining.  [Andrew Dupont]
225
226 *1.5.1_rc4* (April 27, 2007)
227
228 * Fix $F breakage from [6598].  [sam]
229
230 * Set window.$continue to an Error with a helpful message for anyone who may still be using "throw $continue".  [sam]
231
232 * Fix jstest.rb IE support so you don't have to close the IE window after each test (yay!).  Closes #8207.  [Ryan Schuft]
233
234 * Fix jstest.rb Konqueror support.  Closes #7140.  [Christophe Porteneuve]
235
236 * Fix regression in which no-argument calls to Element.addMethods() would not add the methods defined in Form.Methods and Form.Element.Methods.  Closes #8206.  [Tobie Langel, fwittekind]
237
238 * Fix Element#readAttribute to work with the 'type' attribute in IE.  Closes #8160.  [Tobie Langel, Wiktor Ihárosi]
239
240 *1.5.1_rc3* (April 24, 2007)
241
242 * Add Element#childElements as an alias for Element#immediateDescendants.  [Tobie Langel]
243
244 * Optimize DOM navigation methods (Element#up, Element#down, Element#previous, Element#next) for no-argument calls.  Closes #7848.  [haraldmartin, sam]
245
246 * Add Element#firstDescendant to retrieve the first non-text child node of an element.  [sam]
247
248 * Element.addMethods should add methods to Element as well as Element.Methods.  Closes #7888.  [Andrew Dupont]
249
250 * Add support for per-request onCreate callbacks to Ajax.Request.  Closes #8011.  [Andrew Dupont]
251
252 * Don't call evalResponse() when an Ajax response has no Content-type header.  Closes #7827.  [Tobie Langel]
253
254 * Automatically strip security delimiter comments from JSON strings before evaling them.  The default delimiter is '/*-secure- ... */' or you can specify your own with the Prototype.JSONFilter regular expression.  If you wrap your JSON response bodies in this delimiter on the server side, rogue external sites can't hijack potentially sensitive data via <script> tags.  Closes #7910.  [Tobie Langel]
255   For more details on potential security problems, see: http://www.fortifysoftware.com/servlet/downloads/public/JavaScript_Hijacking.pdf
256
257 * Add extra spacing so Array#toJSON and Hash#toJSON generate YAML-loadable JSON.  Closes #7883.  [Andrew Dupont]
258
259 * Fix Form.request for forms containing an input element with name="action".  Closes #8063.  [Thomas Fuchs, Mislav Marohnić]
260
261 * Make Event.element extend the returned element.  Closes #7870.  [Thomas Fuchs]
262
263 * Prevent a crash on Safari on String.prototype.stripScripts and extractScripts with large <script> tags.  [Thomas Fuchs]
264
265 * Prevent linefeed normalisation in String.prototype.escapeHTML and unescapeHTML on IE for consistency with other browsers. Speed optimizations for Safari and IE.  [Thomas Fuchs]
266
267 * Make Hash.toQueryString serialize undefined values. Ensure consistency with String.prototype.toQueryParams.  Closes #7806.  [Mislav Marohnić]
268   Examples:
269     $H({a:'b',c:undefined}).toQueryString()      -> 'a=b&c'
270     $H({a:'b',c:null}).toQueryString()           -> 'a=b&c='
271     $H('a=b&c'.toQueryParams()).toQueryString()  -> 'a=b&c'
272     $H('a=b&c='.toQueryParams()).toQueryString() -> 'a=b&c='
273    
274 * Fix issues with Selector an+b logic, :not support, attribute selector double quotes, plus performance improvements.  Closes #7873, #7901.  [Andrew Dupont]
275
276 * Fix Form.disable to work again on non-form elements.  Closes #6887.  [Mislav Marohnić]
277
278 * Fix an issue with String.prototype.endsWith.  Closes #7822.  [altblue]
279
280 *1.5.1_rc2* (March 12, 2007)
281
282 * Add a tab character via innerHTML to the selector whitespace test.  [Christophe Porteneuve]
283
284 * Add an attribution to YUI-Ext's DomQuery in selector.js.
285
286 * Make Element.extend work on IE for Nodes with the same ID that where discarded.  Closes #7497.  [Mislav Marohnić, Thomas Fuchs]
287
288 * Make Selector correctly extend the first element it returns on IE.  [Thomas Fuchs]
289
290 * Prevent a crash in Safari when using $A() on NodeList objects that contain text nodes.  [Thomas Fuchs]
291
292 * Fix Element.Methods.descendants() to properly extend elements on IE.  [Thomas Fuchs]
293
294 *1.5.1_rc1* (March 9, 2007)
295
296 * Fix readAttribute for IE7. [Andrew Dupont]
297
298 *1.5.1_rc0* (March 8, 2007)
299
300 * Merge the selector branch into trunk, bringing vast performance improvements, bug fixes, and near-complete CSS3 compliance to $$ and Selector.  Closes #7568.  [Andrew Dupont]
301   Selector speed test: http://andrewdupont.net/test/double-dollar/
302
303 * Add support for JSON encoding and decoding.  Closes #7427.  [Tobie Langel]
304
305 * Fix double escaping of query parameters in Hash.prototype.toQueryString, and prevent Safari from iterating over shadowed properties when creating hashes.  Closes #7421.  [Tobie Langel, Mislav Marohnić]
306
307 * Fix simulated attribute reading for IE for "href", "src" and boolean attributes.  [Mislav Marohnić, Thomas Fuchs]
308
309 * Form.Element.disable() will now call blur(), removed blur() call from Form.Element.enable().  Closes #6034.  [tdd]
310
311 * Optimize document.getElementsByClassName and finalize DOM performance optimization refactoring.  Closes #6696.  [Mislav Marohnić]
312
313 * Fix an issue with serializing empty array inputs.  Closes #7516.  [stakadush, Mislav Marohnić]
314
315 * Add optional third parameter "camelized" to Element.setStyle, for optimized performance if style names are known to be camelCased.  [Thomas Fuchs]
316
317 * Fix a bug in the simulated hasAttribute for IE due to getAttributeNode sometimes returning null.  [sam]
318
319 * Optimize Element.getStyle and add new Element.getOpacity method. Special case IE and Opera getStyle methods.  Closes #7648.  [Tobie Langel, Thomas Fuchs]
320
321 * Optimize Element.setStyle and add new Element.setOpacity method, special case IE and Gecko opacity methods.  Closes #7585.  [savetheclocktower]
322
323 * Add unified Browser detection by providing Prototype.Browser.(IE|Gecko|WebKit|Opera) booleans.  Closes #6800.  [savetheclocktower]
324
325 * Add String.prototype.empty and String.prototype.blank (tests if empty or whitespace-only).  Closes #7016.  [Jonathan Viney, Thomas Fuchs]
326
327 * Update README to reflect new URLs, update LICENSE copyright years.  Closes #7426.  [Tobie Langel]
328
329 * Array.prototype.uniq optimization.  Closes #7417.  [Christophe Porteneuve]
330
331 * String.prototype.endsWith should not fail on multiple occurrences.  Closes #7416.  [Christophe Porteneuve]
332
333 * Add Form.Methods.request as a convenience method for serializing and submitting a form via Ajax.Request to the URL in the form's action attribute.  [sam]
334
335   Options passed to request() are intelligently merged with the underlying Ajax.Request options:
336   - If the form has a method attribute, its value is used for the Ajax.Request method option.  If a method option is passed to request(), it takes precedence over the form's method attribute.  If neither is specified, method defaults to "post".
337   - Key/value pairs specified in the parameters option (either as a query string or as a hash) will be merged with (and take precedence over) the serialized form parameters.
338
339 * Fix $(form).serialize() in Safari and add support for extending specific tags to Element.addMethods.  Closes #7358.  [Andrew Dupont]
340
341 * Add String.prototype.startsWith, String.prototype.endsWith, and String.prototype.include.  Closes #7075.  [Tobie Langel]
342
343 * Improve performance of String.prototype.escapeHTML by using a cached div and text node.  Closes #6937.  [altblue]
344
345 * Make setStyle() with opacity: 0 in Internet Explorer work correctly.  [Thomas Fuchs]
346
347 * Form.Element.activate shouldn't raise an exception when the form or field is hidden.  [sam]
348
349 * Remove support for "throw $continue" in Enumerable.  Use "return" instead.  [sam]
350
351 * Update HEADER to reflect new URL.  [sam]
352
353 *1.5.0* (January 18, 2007)
354
355 * Add test to ensure Content-type header is set for simulated verbs.  [sam]
356
357 * Fix Content-Type header for HTTP methods simulated with POST not defaulting to application/x-www-form-urlencoded.  [Thomas Fuchs]
358
359 * Simplify form serialization and add support for fields with the same name as Hash methods.  Closes #6649.  [Mislav Marohnić]
360
361 * Fix attribute selectors for IE.  Closes #5170.  [Tobie Langel, Andrew Dupont]
362
363 * A slew of dom.js improvements.  Closes #4217, #6589, #7001.  [Tobie]
364   - Fix Element.getDimensions() for hidden elements, make Element.getHeight() use .getDimensions()
365   - Add Element.getWidth()
366   - Make Element.replace() call .toString() on the html argument (alike .update())
367   - Fix an issue with Element.get/setStyle() and Safari with 'float'
368   - Add a bunch of missing unit tests
369
370 * Fix an issue with Element.setStyle({opacity:''}) setting the opacity to 0 instead of removing the set inline opacity style.  [Thomas Fuchs]
371
372 * Ensure Ajax.Request's evalResponse is called before onComplete so that onComplete can reference any elements created during the response.  Closes #6727.  [jonathan]
373
374 * Ensure the WEBrick test runner sets the correct Content-Type for tests and fixtures. [sam]
375
376 * Form.serialize once again works with non-form elements.  This is a temporary change to prevent the Rails link_to_remote regression described in #6898.  Prototype 1.5.1 will introduce an API for working with collections of arbitrary form elements.  References #6887.  Closes #6898.  [sam]
377
378 * Make selectors match forms that have an element with name="id" correctly, fixes #5759 [mislav]
379
380 * Remove support for HTTP authorization in Ajax calls introduced with #6366.  Closes #6638 [jmecham]
381
382 * Add Enumerable.size() to count elements in an enumerable and the corresponding Array.size() method, fixes #6710 [ZenCocoon]
383
384 * Add String.succ() method to allow for String ranges, fixes #6037 [Cory Hudson, mislav]
385   Examples:
386     'abcd'.succ();                                   -> 'abce'
387     $R('a','d').map(function(char){ return char; }); -> ['a','b','c','d']
388
389 * Make Element.scrollTo() correctly consider offsets of parent DOM nodes, fixes #6625 [ohader, savetheclocktower]
390
391 * Fix Enumerable.inGroupsOf() to correctly work with fill values that evaluate to false, fixes #6782 [hawk]
392
393 * Remove/cleanup redundant $() calls in dom.js, fixes #6817 [Tobie]
394
395 * Don't cache files in automatic unit tests, fixes #6218 [voidlock]
396
397 * Add $w() to easily create arrays from strings like Ruby's %w, fixes #5682 [glazedginger, brendon.aaron]
398
399 * Add Element.toggleClassName() to toggle CSS classes on elements, fixes #6759 [Tobie]
400
401 * Make Form.getInputs always return an array for consistency, fixes #6475 [Justin Gehtland, savetheclocktower]
402
403 * Make TimedObserver work correctly for SELECT MULTIPLE elements, fixes #6593 [clemos, tdd]
404
405 * Fix Template.prototype.evaluate to correctly interpret 0 and false values, add String.interpret() for safely interpreting and converting values to strings, fixes #6675 [hawk]
406
407 * Make Element.getStyle() work with camelCased argument, fixes #6686 [Tobie]
408
409 * Fix a redundant check in Array.prototype.compact, fixes #4739 [wlodarcz, mislav]
410
411 * Fix $() to correctly pass back the results of document.getElementById(), notably returning "null" on elements not found, fixes #6582 [adsmart]
412
413 * Change/add assertNull, assertUndefined, assertNullOrUndefined and not-* variants in unittest.js, fixes #6582 [adsmart]
414
415 * Cleanup String.prototype.camelize, fix an issue with String.prototype.underscore, fixes #4714, #6685 [Tobie, Thomas Fuchs]
416
417 * Add String.prototype.capitalize, which returns a string with the first character in upper case, fixes #6666 [Tobie]
418
419 * Make Element.getStyle() and Element.setStyle() handle the CSS 'opacity' property transparently in IE, fixes #6093 [brandon.aaron, Tobie]
420
421 * Fix handling of CSS 'float' property for Element.getStyle() and Element.setStyle(), fixes #4160 [Thomas Fuchs, ericf]
422
423 * Fix that onComplete would be called twice with synchronous Ajax requests on Safari (provides units tests for #5756) [Thomas Fuchs]
424
425 * Fix Form.Field.activate to not select text on buttons in IE, fixes #2653 [sutch, mislav, Thomas Fuchs]
426
427 * Fix String.unescapeHTML() on Firefox for strings that are longer than 2048 bytes, fixes #5789 [Paul Moers, Thomas Fuchs]
428
429 * Redefine Array.prototype.concat for Opera, as the native implemenation doesn't work correctly [Thomas Fuchs]
430
431 * Add unit tests for Function.prototype.bind() [Thomas Fuchs]
432
433 * Add String.prototype.underscore and String.prototype.dasherize [Thomas Fuchs]
434   Examples:
435     'Hello_World'.dasherize()                    -> 'Hello-World'
436     'borderBottomWidth'.underscore()             -> 'border_bottom_width'
437     'borderBottomWidth'.underscore().dasherize() -> 'border-bottom-width'
438
439 *1.5.0_rc2* (November 11, 2006)
440
441 * Ensure that existing DOM properties take precedence over extended element methods in all browsers.  Closes #5115.  [Sean Kleinjung, sam]
442
443 * Add Element.Methods.readAttribute as a simple wrapper around getAttribute (which isn't a "real" function and doesn't have .apply or .call in Safari and IE).  Useful in conjunction with Enumerable.invoke for extracting the values of a custom attribute from a collection of elements.  [sam]
444   Example:
445     <div id="widgets">
446       <div class="widget" widget_id="7">...</div>
447       <div class="widget" widget_id="8">...</div>
448       <div class="widget" widget_id="9">...</div>
449     </div>
450    
451     $$('div.widget').invoke('readAttribute', 'widget_id')
452     // ["7", "8", "9"]
453
454 * Add Element.Methods.immediateDescendants, like $A($(element).childNodes) but without text nodes.  [sam]
455
456 * More consistency.  Closes #6573.  [Bob Silva]
457
458 * String.prototype.toQueryParams and Hash.prototype.toQueryString now properly serialize arrays as multiple values.  Closes #4436.  [mislav, altblue, L`OcuS]
459
460 * Fix Form.serialize for options with empty values.  Closes #5033. [tdd, Thomas Fuchs, sam]
461
462 * Add Element.Methods.Simulated for simulating HTMLElement methods in lesser browsers.  Add hasAttribute as the first simulated method.  [tdd, Thomas Fuchs, sam]
463
464 * Add a "retry with throw" button for test error messages. [sam]
465
466 * rake test now runs test/unit/*.html by default.  Additionally, you can specify individual tests to run with the TESTS environment variable, and you can restrict the tests to particular browsers using the BROWSERS environment variable. [sam]
467
468   Examples:
469     % BROWSERS=safari,firefox rake test
470     % TESTS=dom rake test
471
472 * Element.hasClassName now bypasses the Element.ClassNames API for performance.  [sam]
473
474 * Pick some low-hanging performance and DRYness fruit.  [sam]
475   - Inline length property accesses in for loops
476   - Enumerable-ize for loops where it makes sense
477   - Make better use of Element.Methods and Form.Methods/Form.Element.Methods
478
479 * A slew of Ajax improvements.  Closes #6366.  [mislav, sam]
480  
481   Public-facing changes include:
482   - HTTP method can be specified in either lowercase or uppercase, and uppercase is always used when opening the XHR connection
483   - Added 'encoding' option (for POST) with a default of 'UTF-8'
484   - Ajax.Request now recognizes all the JavaScript MIME types we're aware of
485   - PUT body support with the 'postBody' option
486   - HTTP authentication support with the 'username' and 'password' options
487   - Query parameters can be passed as a string or as a hash
488   - Fixed both String.toQueryParams and Hash.toQueryString when handling empty values
489   - Request headers can now be specified as a hash with the 'requestHeaders' option
490
491 * Improve performance of the common case where $ is called with a single argument. Closes #6347. [sam, rvermillion, mislav]
492
493 * Fix Object.inspect to correctly distinguish between null and undefined, fixes #5941 [tdd, mislav]
494
495 * Don't serialize disabled form elements, fixes #4586 [tdd]
496
497 * Make HTML element classes extension mechanism for Safari not throw errors on WebKit beta versions [Thomas Fuchs]
498
499 * Add support for using Element.update() with no or a non-string parameter [Thomas Fuchs]
500
501   Example:
502     $('empty_me').update()          -> clears the element
503     $('easy_as').update(123)        -> set element content to '123'
504
505 * Add unit tests for hashes, fixes #6344 [Tobie Langel]
506
507 * Add clone() method to arrays, fixes #6338 [Tobie Langel]
508
509 * Backing out of [5194] (Element.clear) because of issues with IE on certain elements, #6051
510
511 * Add Element.clear for easily emptying out elements, fixes #6051 [brandon.aaron@gmail.com]
512
513 * Enumerable.each now returns the enumerable to allow for method chaining, fixes #6250 [eventualbuddha]
514
515 * Make makeClipping and undoClipping always return their element to stay chainable
516
517 * Fix an issue with certain Element chain calls not correctly extending elements with Prototype element methods on IE [Thomas Fuchs]
518
519 * Add Enumerable.eachSlice and Enumerable.inGroupsOf, fixes #6046 [rails@tddsworld.com, Thomas Fuchs]
520
521   Example:
522     [1,2,3,4,5].inGroupsOf(3)       -> [[1,2,3],[4,5,null]]
523     [1,2,3].inGroupsOf(4,'x')       -> [[1,2,3,'x']]
524
525 * Complete unit tests for array.js and string.js [Thomas Fuchs]
526
527 * Performance improvements for document.getElementsByClassName, including querying with XPath in supported browsers. [Andrew Dupont]
528
529 * Make Form.getElements() return elements in the correct order, fix broken Form.serialize return, fixes #4249, #6172 [lars@pinds.com, Thomas Fuchs, john]
530
531 * Add various DOM unit tests, fixes #6176, #6177 [tdd]
532
533 * Split Form.serialize into Form.serialize and Form.serializeElements. The latter can be used stand-alone to serialize an array of elements you pass in, instead of the entire form [DHH]
534
535 * Form.Element.disable() and .enable() will now work correctly, fixes #6034 [dresselm@businesslogic.com]
536
537 * Fix IE and Safari issues with Position.positionedOffset, add position.html unit tests, fixes #5621 [renggli@iam.unibe.ch]
538
539 * Fix an issue with Element.undoClipping and IE [Thomas Fuchs]
540
541 * Element.cleanWhitespace now correctly removes consecutive empty text nodes, fixes #3209 [livier.duroselle@gmail.com]
542
543 * Element.extend now does not try to extend text nodes, fixes #4642 [siegfried.puchbauer@gmail.com]
544
545 *1.5.0_rc1* (September 4, 2006)
546
547 * bindAsEventListener now passes along any provided arguments after the event argument.  Closes #5508.  [todd.fisher@revolution.com]
548
549 * Fix makeClipping and undoClipping with local overflow style values other than visible and hidden, fixes #3672  [Thomas Fuchs]
550
551 * Add Element.up, Element.down, Element.previous, and Element.next for easily traversing the DOM.  (Inspired by Thomas Fuchs' original implementation of Element.up: http://pastie.caboo.se/7702) [sam]
552
553   Examples:
554     <div id="sidebar">                  -> $('nav').up() or $('menu').up('div')
555       <ul id="nav">                     -> $('sidebar').down()  or $('sidebar').down('ul') or $('menu').previous()
556         <li>...</li>                    -> $('sidebar').down(1) or $('sidebar').down('li')
557         <li>...</li>                    -> $('sidebar').down(2) or $('sidebar').down('li', 2) or $('sidebar').down('li').next('li')
558         <li class="selected">...</li>   -> $('sidebar').down('li.selected')
559       </ul>                             
560       <ul id="menu">                    -> $('sidebar').down('ul').next()
561         ...
562
563 * Refactor $$ and Element.getElementsBySelector into Selector.findChildElements. [sam]
564
565 * Add Element.match, which takes a single CSS selector expression and returns true if it matches the element. [sam]
566
567 * Add Element.ancestors, Element.descendants, Element.previousSiblings, Element.nextSiblings, and Element.siblings. [sam]
568
569 * Add Element.inspect for better DOM debugging. [sam]
570
571 * Add an optional boolean argument to String.prototype.inspect which, when true, makes the string double-quoted instead of single-quoted. [sam]
572
573 * Add the uniq() method to Arrays, which returns a new Array with duplicates removed, fixes #3810 [secondlife]
574
575 * Add stop() method to PeriodicalExecutor, fixes #4801 [Jon Evans]
576
577 * Fix issues with Enumerable.any, ObjectRange.toArray, added unit tests, fixes #4419 [miyamuko, Thomas Fuchs]
578
579 * Fix two instances of unneccesarily redeclared variables, fixes #5229 [Thomas Fuchs]
580
581 * Fix a loop in Element.extend to properly use local variable, fixes #5128 [arrix]
582
583 * Add constants for additional keys in Event, fixes #5411, #5795 [simone_b]
584
585 * Workaround a DOM API bug in Opera in Position.page(), fixes #2407, #5848 [Thomas Fuchs]
586
587 * Remove duplicate definition of Position.clone(), fixes #3765 [Thomas Fuchs]
588
589 * Make destructive Element, Form, and Form.Element methods return their first argument, so that multiple calls can be chained together. [sam]
590
591   ex. $("sidebar").addClassName("selected").show();
592
593   The following methods now return their first argument: Element.toggle, Element.hide, Element.show, Element.remove, Element.update, Element.replace, Element.addClassName, Element.removeClassName, Element.observe, Element.stopObserving, Element.cleanWhitespace, Element.scrollTo, Element.setStyle, Element.makePositioned, Element.undoPositioned, Element.makeClipping, Element.undoClipping, Form.reset, Form.disable, Form.enable, Form.focusFirstElement, Form.Element.focus, Form.Element.select, Form.Element.clear, Form.Element.activate, Form.Element.disable, Form.Element.enable.
594
595 * For consistency, Element.toggle, Element.show, Element.hide, Field.clear, and Field.present no longer take an arbitrary number of arguments. [sam]
596  
597   !! BACKWARDS COMPATIBILITY CHANGE !!
598  
599   If you have code that looks like this:
600     Element.show('page', 'sidebar', 'content');
601   You need to replace it with code like this:
602     ['page', 'sidebar', 'content'].each(Element.show);
603
604 * Mix in Form and Form.Element methods to forms and form field elements with $() and $$(). Closes #4448. [Dan Webb, sam]
605
606 * Add Object.clone [sam]
607
608 * Add Form.Element.disable and Form.Element.enable. Closes #4943. [jan@prima.de]
609
610 * Field is now simply an alias for Form.Element. [sam]
611
612 * Add Element.Methods.getElementsByClassName and Element.Methods.getElementsBySelector. Closes #4669. [Andrew Dupont, DHH, sam]
613
614 * Avoid race condition when stopping an Ajax.PeriodicalUpdater. Closes #4809. [e98cuenc@gmail.com]
615
616 * Improve support for synchronous requests. Closes #5916. [sam, jthrom@gmail.com]
617
618 * Add serialization and observation support for input type=search. Closes #4096. [rpnielsen@gmail.com]
619
620 * Properly decode query components in String.prototype.toQueryParams. Closes #3487. [sam]
621
622 * Add Array.prototype.reduce [sam]:
623   [1, 2].reduce()   // [1, 2]
624   [1].reduce()      // 1
625   [].reduce()       // undefined
626
627 * Add Object.keys and Object.values [sam]
628
629 * Simulate non-GET/POST requests by POSTing with a _method parameter set to the actual verb [DHH]
630
631 * Make Element.update() handle TABLE-related elements with the DOM API because of IE's missing .innerHTML property on them [Thomas Fuchs, thx to Rick Olson]
632
633 * Sync to script.aculo.us unittest.js library as of 2006/08/29 [Thomas Fuchs]
634
635 * Add additional unit tests to test/unit/dom.html for testing Element.update and $().update in various enviroments [Thomas Fuchs]
636
637 * Prevent possible exceptions on unloading the page in IE [Thomas Fuchs]
638
639 *1.5.0_rc0* (April 5, 2006)
640
641 * Modify HTMLElement.prototype and short-circuit Element.extend where possible. Closes #4477. [Thomas Fuchs]
642
643 * Only observe window.onunload in IE for Mozilla bfcache support. Closes #3726. [Mike A. Owens]
644
645 * Don't redefine Array.prototype.shift. Closes #4138. [leeo]
646
647 * Prevent redefining Array.prototype.reverse more than once. Closes #3951. [brettdgibson@gmail.com]
648
649 * Fix Enumerable.min/Enumerable.max to recognize the value 0. Closes #3847, #4190. [rubyonrails@brainsick.com, Martin Bialasinski]
650
651 * Change Ajax.getTransport to prefer XMLHttpRequest in anticipation of IE 7. Closes #3688. [jschrab@malicstower.org, sam]
652
653 * Make Array.prototype.flatten more robust. Closes #3453. [Martin Bialasinski, sam]
654
655 * Fix evalScripts from crashing Firefox if script includes 'var'. Closes #3288, #4165. [rahul@ntag.com, sam]
656
657 * Scope iterators locally. Closes #4589. [sam]
658
659 * Support Insertion.Before/Insertion.After for <tr> elements in IE. Closes #3925. [rails-venkatp@sneakemail.com]
660
661 * Add a contentType option for overriding application/x-www-form-urlencoded in Ajax.Request. Closes #3564. [avif@arc90.com, sam]
662
663 * Surround values in the X-JSON header in parenthesis for better compatibility with Firefox. Closes #4118. [bigsmoke@gmail.com]
664
665 * Fix Form.serialize to properly encode option values in multiple selects in IE. Closes #3291. [rubyonrails@brainsick.com]
666
667 * Cache methods added to DOM elements with Element.extend to prevent memory leaks in IE. Closes #4465. [jaen@laborint.com, sam]
668
669 * 1.5.0_pre1* (March 26, 2006)
670
671 * Add attribute selector support for Selector (and $$). Closes #4368. [devslashnull@gmail.com]
672   Example:
673     $$('form#foo input[type=text]').each(function(input) {
674       input.setStyle({color: 'red'});
675     });
676  
677 * Send Accept header containing 'text/javascript, text/html, application/xml, text/xml */*'' to inform Rails that we prefer RJS, but we'll take HTML or XML or whatever if you can't deliver the goods [DHH]
678
679 * Make $$ work in IE. Closes #3715. [rubyonrails@brainsick.com]
680
681 * Add test/browser.html, which provides a simple object browser for the Prototype source (Firefox/Safari only). [sam]
682
683 * Add Element.extend, which mixes Element methods into a single HTML element.  This means you can now write $('foo').show() instead of Element.show('foo').  $, $$ and document.getElementsByClassName automatically call Element.extend on any returned elements. [sam]
684
685 * Add Element.replace as a cross-browser implementation of the "outerHTML" property. References #3246. [tom@craz8.com]
686
687 * Fix Enumerable.zip iterator behavior. [Marcin Kaszynski, sam]
688
689 *1.5.0_pre0* (January 18, 2006)
690
691 * Add String.prototype.truncate to complement the Action View truncate helper. [sam]
692
693 * Add String.prototype.gsub, String.prototype.sub, and String.prototype.scan, all of which take a pattern and an iterator (or a pattern and a replacement template string in the case of gsub and sub). [sam]
694
695 * Add a Template class for interpolating named keys from an object in a string. [sam]
696
697 * Add the $$ function for finding DOM elements by simple CSS selector strings. [sam]
698   Example: Find all <img> elements inside <p> elements with class "summary", all inside
699            the <div> with id "page". Hide each matched <img> tag.
700              $$('div#page p.summary img').each(Element.hide)
701      
702 * Add a Selector class for matching elements by single CSS selector tokens. [sam]
703
704 * Add Test.Unit.Assertions.assertEnumEqual for comparing Enumerables in tests. [sam]
705
706 * Add Element.childOf(element, ancestor) which returns true when element is a child of ancestor. [sam]
707
708 * Fix escaping in String.prototype.inspect. [sam]
709
710 * Add String.prototype.strip to remove leading and trailing whitespace from a string. [sam]
711
712 * Move Prototype to Rails SVN. [sam]
713   http://dev.rubyonrails.org/svn/rails/spinoffs/prototype/
714  
715 * Make the console nicer. [sam]
716
717 * Prune the source tree. [sam]
Note: See TracBrowser for help on using the browser.