Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / adapter / prototype / ext-prototype-adapter-debug.js
1 /*!
2  * Ext JS Library 3.0.3
3  * Copyright(c) 2006-2009 Ext JS, LLC
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 \r
8 // for old browsers\r
9 window.undefined = window.undefined;\r
10 \r
11 /**\r
12  * @class Ext\r
13  * Ext core utilities and functions.\r
14  * @singleton\r
15  */\r
16 \r
17 Ext = {\r
18     /**\r
19      * The version of the framework\r
20      * @type String\r
21      */\r
22     version : '3.0.3'\r
23 };\r
24 \r
25 /**\r
26  * Copies all the properties of config to obj.\r
27  * @param {Object} obj The receiver of the properties\r
28  * @param {Object} config The source of the properties\r
29  * @param {Object} defaults A different object that will also be applied for default values\r
30  * @return {Object} returns obj\r
31  * @member Ext apply\r
32  */\r
33 Ext.apply = function(o, c, defaults){\r
34     // no "this" reference for friendly out of scope calls\r
35     if(defaults){\r
36         Ext.apply(o, defaults);\r
37     }\r
38     if(o && c && typeof c == 'object'){\r
39         for(var p in c){\r
40             o[p] = c[p];\r
41         }\r
42     }\r
43     return o;\r
44 };\r
45 \r
46 (function(){\r
47     var idSeed = 0,\r
48         toString = Object.prototype.toString,\r
49         ua = navigator.userAgent.toLowerCase(),\r
50         check = function(r){\r
51             return r.test(ua);\r
52         },\r
53         DOC = document,\r
54         isStrict = DOC.compatMode == "CSS1Compat",\r
55         isOpera = check(/opera/),\r
56         isChrome = check(/chrome/),\r
57         isWebKit = check(/webkit/),\r
58         isSafari = !isChrome && check(/safari/),\r
59         isSafari2 = isSafari && check(/applewebkit\/4/), // unique to Safari 2\r
60         isSafari3 = isSafari && check(/version\/3/),\r
61         isSafari4 = isSafari && check(/version\/4/),\r
62         isIE = !isOpera && check(/msie/),\r
63         isIE7 = isIE && check(/msie 7/),\r
64         isIE8 = isIE && check(/msie 8/),\r
65         isIE6 = isIE && !isIE7 && !isIE8,\r
66         isGecko = !isWebKit && check(/gecko/),\r
67         isGecko2 = isGecko && check(/rv:1\.8/),\r
68         isGecko3 = isGecko && check(/rv:1\.9/),\r
69         isBorderBox = isIE && !isStrict,\r
70         isWindows = check(/windows|win32/),\r
71         isMac = check(/macintosh|mac os x/),\r
72         isAir = check(/adobeair/),\r
73         isLinux = check(/linux/),\r
74         isSecure = /^https/i.test(window.location.protocol);\r
75 \r
76     // remove css image flicker\r
77     if(isIE6){\r
78         try{\r
79             DOC.execCommand("BackgroundImageCache", false, true);\r
80         }catch(e){}\r
81     }\r
82 \r
83     Ext.apply(Ext, {\r
84         /**\r
85          * URL to a blank file used by Ext when in secure mode for iframe src and onReady src to prevent\r
86          * the IE insecure content warning (<tt>'about:blank'</tt>, except for IE in secure mode, which is <tt>'javascript:""'</tt>).\r
87          * @type String\r
88          */\r
89         SSL_SECURE_URL : isSecure && isIE ? 'javascript:""' : 'about:blank', \r
90         /**\r
91          * True if the browser is in strict (standards-compliant) mode, as opposed to quirks mode\r
92          * @type Boolean\r
93          */\r
94         isStrict : isStrict,\r
95         /**\r
96          * True if the page is running over SSL\r
97          * @type Boolean\r
98          */\r
99         isSecure : isSecure,\r
100         /**\r
101          * True when the document is fully initialized and ready for action\r
102          * @type Boolean\r
103          */\r
104         isReady : false,\r
105 \r
106         /**\r
107          * True if the {@link Ext.Fx} Class is available\r
108          * @type Boolean\r
109          * @property enableFx\r
110          */\r
111 \r
112         /**\r
113          * True to automatically uncache orphaned Ext.Elements periodically (defaults to true)\r
114          * @type Boolean\r
115          */\r
116         enableGarbageCollector : true,\r
117 \r
118         /**\r
119          * True to automatically purge event listeners after uncaching an element (defaults to false).\r
120          * Note: this only happens if {@link #enableGarbageCollector} is true.\r
121          * @type Boolean\r
122          */\r
123         enableListenerCollection : false,\r
124 \r
125         /**\r
126          * Indicates whether to use native browser parsing for JSON methods.\r
127          * This option is ignored if the browser does not support native JSON methods.\r
128          * <b>Note: Native JSON methods will not work with objects that have functions.\r
129          * Also, property names must be quoted, otherwise the data will not parse.</b> (Defaults to false)\r
130          * @type Boolean\r
131          */\r
132         USE_NATIVE_JSON : false,\r
133 \r
134         /**\r
135          * Copies all the properties of config to obj if they don't already exist.\r
136          * @param {Object} obj The receiver of the properties\r
137          * @param {Object} config The source of the properties\r
138          * @return {Object} returns obj\r
139          */\r
140         applyIf : function(o, c){\r
141             if(o){\r
142                 for(var p in c){\r
143                     if(!Ext.isDefined(o[p])){\r
144                         o[p] = c[p];\r
145                     }\r
146                 }\r
147             }\r
148             return o;\r
149         },\r
150 \r
151         /**\r
152          * Generates unique ids. If the element already has an id, it is unchanged\r
153          * @param {Mixed} el (optional) The element to generate an id for\r
154          * @param {String} prefix (optional) Id prefix (defaults "ext-gen")\r
155          * @return {String} The generated Id.\r
156          */\r
157         id : function(el, prefix){\r
158             return (el = Ext.getDom(el) || {}).id = el.id || (prefix || "ext-gen") + (++idSeed);\r
159         },\r
160 \r
161         /**\r
162          * <p>Extends one class to create a subclass and optionally overrides members with the passed literal. This method\r
163          * also adds the function "override()" to the subclass that can be used to override members of the class.</p>\r
164          * For example, to create a subclass of Ext GridPanel:\r
165          * <pre><code>\r
166 MyGridPanel = Ext.extend(Ext.grid.GridPanel, {\r
167     constructor: function(config) {\r
168 \r
169 //      Create configuration for this Grid.\r
170         var store = new Ext.data.Store({...});\r
171         var colModel = new Ext.grid.ColumnModel({...});\r
172 \r
173 //      Create a new config object containing our computed properties\r
174 //      *plus* whatever was in the config parameter.\r
175         config = Ext.apply({\r
176             store: store,\r
177             colModel: colModel\r
178         }, config);\r
179 \r
180         MyGridPanel.superclass.constructor.call(this, config);\r
181 \r
182 //      Your postprocessing here\r
183     },\r
184 \r
185     yourMethod: function() {\r
186         // etc.\r
187     }\r
188 });\r
189 </code></pre>\r
190          *\r
191          * <p>This function also supports a 3-argument call in which the subclass's constructor is\r
192          * passed as an argument. In this form, the parameters are as follows:</p>\r
193          * <div class="mdetail-params"><ul>\r
194          * <li><code>subclass</code> : Function <div class="sub-desc">The subclass constructor.</div></li>\r
195          * <li><code>superclass</code> : Function <div class="sub-desc">The constructor of class being extended</div></li>\r
196          * <li><code>overrides</code> : Object <div class="sub-desc">A literal with members which are copied into the subclass's\r
197          * prototype, and are therefore shared among all instances of the new class.</div></li>\r
198          * </ul></div>\r
199          *\r
200          * @param {Function} subclass The constructor of class being extended.\r
201          * @param {Object} overrides <p>A literal with members which are copied into the subclass's\r
202          * prototype, and are therefore shared between all instances of the new class.</p>\r
203          * <p>This may contain a special member named <tt><b>constructor</b></tt>. This is used\r
204          * to define the constructor of the new class, and is returned. If this property is\r
205          * <i>not</i> specified, a constructor is generated and returned which just calls the\r
206          * superclass's constructor passing on its parameters.</p>\r
207          * <p><b>It is essential that you call the superclass constructor in any provided constructor. See example code.</b></p>\r
208          * @return {Function} The subclass constructor.\r
209          */\r
210         extend : function(){\r
211             // inline overrides\r
212             var io = function(o){\r
213                 for(var m in o){\r
214                     this[m] = o[m];\r
215                 }\r
216             };\r
217             var oc = Object.prototype.constructor;\r
218 \r
219             return function(sb, sp, overrides){\r
220                 if(Ext.isObject(sp)){\r
221                     overrides = sp;\r
222                     sp = sb;\r
223                     sb = overrides.constructor != oc ? overrides.constructor : function(){sp.apply(this, arguments);};\r
224                 }\r
225                 var F = function(){},\r
226                     sbp,\r
227                     spp = sp.prototype;\r
228 \r
229                 F.prototype = spp;\r
230                 sbp = sb.prototype = new F();\r
231                 sbp.constructor=sb;\r
232                 sb.superclass=spp;\r
233                 if(spp.constructor == oc){\r
234                     spp.constructor=sp;\r
235                 }\r
236                 sb.override = function(o){\r
237                     Ext.override(sb, o);\r
238                 };\r
239                 sbp.superclass = sbp.supr = (function(){\r
240                     return spp;\r
241                 });\r
242                 sbp.override = io;\r
243                 Ext.override(sb, overrides);\r
244                 sb.extend = function(o){return Ext.extend(sb, o);};\r
245                 return sb;\r
246             };\r
247         }(),\r
248 \r
249         /**\r
250          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.\r
251          * Usage:<pre><code>\r
252 Ext.override(MyClass, {\r
253     newMethod1: function(){\r
254         // etc.\r
255     },\r
256     newMethod2: function(foo){\r
257         // etc.\r
258     }\r
259 });\r
260 </code></pre>\r
261          * @param {Object} origclass The class to override\r
262          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal\r
263          * containing one or more methods.\r
264          * @method override\r
265          */\r
266         override : function(origclass, overrides){\r
267             if(overrides){\r
268                 var p = origclass.prototype;\r
269                 Ext.apply(p, overrides);\r
270                 if(Ext.isIE && overrides.toString != origclass.toString){\r
271                     p.toString = overrides.toString;\r
272                 }\r
273             }\r
274         },\r
275 \r
276         /**\r
277          * Creates namespaces to be used for scoping variables and classes so that they are not global.\r
278          * Specifying the last node of a namespace implicitly creates all other nodes. Usage:\r
279          * <pre><code>\r
280 Ext.namespace('Company', 'Company.data');\r
281 Ext.namespace('Company.data'); // equivalent and preferable to above syntax\r
282 Company.Widget = function() { ... }\r
283 Company.data.CustomStore = function(config) { ... }\r
284 </code></pre>\r
285          * @param {String} namespace1\r
286          * @param {String} namespace2\r
287          * @param {String} etc\r
288          * @return {Object} The namespace object. (If multiple arguments are passed, this will be the last namespace created)\r
289          * @method namespace\r
290          */\r
291         namespace : function(){\r
292             var o, d;\r
293             Ext.each(arguments, function(v) {\r
294                 d = v.split(".");\r
295                 o = window[d[0]] = window[d[0]] || {};\r
296                 Ext.each(d.slice(1), function(v2){\r
297                     o = o[v2] = o[v2] || {};\r
298                 });\r
299             });\r
300             return o;\r
301         },\r
302 \r
303         /**\r
304          * Takes an object and converts it to an encoded URL. e.g. Ext.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.\r
305          * @param {Object} o\r
306          * @param {String} pre (optional) A prefix to add to the url encoded string\r
307          * @return {String}\r
308          */\r
309         urlEncode : function(o, pre){\r
310             var empty,\r
311                 buf = [],\r
312                 e = encodeURIComponent;\r
313 \r
314             Ext.iterate(o, function(key, item){\r
315                 empty = Ext.isEmpty(item);\r
316                 Ext.each(empty ? key : item, function(val){\r
317                     buf.push('&', e(key), '=', (!Ext.isEmpty(val) && (val != key || !empty)) ? (Ext.isDate(val) ? Ext.encode(val).replace(/"/g, '') : e(val)) : '');\r
318                 });\r
319             });\r
320             if(!pre){\r
321                 buf.shift();\r
322                 pre = '';\r
323             }\r
324             return pre + buf.join('');\r
325         },\r
326 \r
327         /**\r
328          * Takes an encoded URL and and converts it to an object. Example: <pre><code>\r
329 Ext.urlDecode("foo=1&bar=2"); // returns {foo: "1", bar: "2"}\r
330 Ext.urlDecode("foo=1&bar=2&bar=3&bar=4", false); // returns {foo: "1", bar: ["2", "3", "4"]}\r
331 </code></pre>\r
332          * @param {String} string\r
333          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).\r
334          * @return {Object} A literal with members\r
335          */\r
336         urlDecode : function(string, overwrite){\r
337             if(Ext.isEmpty(string)){\r
338                 return {};\r
339             }\r
340             var obj = {},\r
341                 pairs = string.split('&'),\r
342                 d = decodeURIComponent,\r
343                 name,\r
344                 value;\r
345             Ext.each(pairs, function(pair) {\r
346                 pair = pair.split('=');\r
347                 name = d(pair[0]);\r
348                 value = d(pair[1]);\r
349                 obj[name] = overwrite || !obj[name] ? value :\r
350                             [].concat(obj[name]).concat(value);\r
351             });\r
352             return obj;\r
353         },\r
354 \r
355         /**\r
356          * Appends content to the query string of a URL, handling logic for whether to place\r
357          * a question mark or ampersand.\r
358          * @param {String} url The URL to append to.\r
359          * @param {String} s The content to append to the URL.\r
360          * @return (String) The resulting URL\r
361          */\r
362         urlAppend : function(url, s){\r
363             if(!Ext.isEmpty(s)){\r
364                 return url + (url.indexOf('?') === -1 ? '?' : '&') + s;\r
365             }\r
366             return url;\r
367         },\r
368 \r
369         /**\r
370          * Converts any iterable (numeric indices and a length property) into a true array\r
371          * Don't use this on strings. IE doesn't support "abc"[0] which this implementation depends on.\r
372          * For strings, use this instead: "abc".match(/./g) => [a,b,c];\r
373          * @param {Iterable} the iterable object to be turned into a true Array.\r
374          * @return (Array) array\r
375          */\r
376         toArray : function(){\r
377             return isIE ?\r
378                 function(a, i, j, res){\r
379                     res = [];\r
380                     Ext.each(a, function(v) {\r
381                         res.push(v);\r
382                     });\r
383                     return res.slice(i || 0, j || res.length);\r
384                 } :\r
385                 function(a, i, j){\r
386                     return Array.prototype.slice.call(a, i || 0, j || a.length);\r
387                 }\r
388         }(),\r
389 \r
390         isIterable : function(v){\r
391             //check for array or arguments\r
392             if(Ext.isArray(v) || v.callee){\r
393                 return true;\r
394             }\r
395             //check for node list type\r
396             if(/NodeList|HTMLCollection/.test(toString.call(v))){\r
397                 return true;\r
398             }\r
399             //NodeList has an item and length property\r
400             //IXMLDOMNodeList has nextNode method, needs to be checked first.\r
401             return ((v.nextNode || v.item) && Ext.isNumber(v.length));\r
402         },\r
403 \r
404         /**\r
405          * Iterates an array calling the supplied function.\r
406          * @param {Array/NodeList/Mixed} array The array to be iterated. If this\r
407          * argument is not really an array, the supplied function is called once.\r
408          * @param {Function} fn The function to be called with each item. If the\r
409          * supplied function returns false, iteration stops and this method returns\r
410          * the current <code>index</code>. This function is called with\r
411          * the following arguments:\r
412          * <div class="mdetail-params"><ul>\r
413          * <li><code>item</code> : <i>Mixed</i>\r
414          * <div class="sub-desc">The item at the current <code>index</code>\r
415          * in the passed <code>array</code></div></li>\r
416          * <li><code>index</code> : <i>Number</i>\r
417          * <div class="sub-desc">The current index within the array</div></li>\r
418          * <li><code>allItems</code> : <i>Array</i>\r
419          * <div class="sub-desc">The <code>array</code> passed as the first\r
420          * argument to <code>Ext.each</code>.</div></li>\r
421          * </ul></div>\r
422          * @param {Object} scope The scope (<code>this</code> reference) in which the specified function is executed.\r
423          * Defaults to the <code>item</code> at the current <code>index</code>\r
424          * within the passed <code>array</code>.\r
425          * @return See description for the fn parameter.\r
426          */\r
427         each : function(array, fn, scope){\r
428             if(Ext.isEmpty(array, true)){\r
429                 return;\r
430             }\r
431             if(!Ext.isIterable(array) || Ext.isPrimitive(array)){\r
432                 array = [array];\r
433             }\r
434             for(var i = 0, len = array.length; i < len; i++){\r
435                 if(fn.call(scope || array[i], array[i], i, array) === false){\r
436                     return i;\r
437                 };\r
438             }\r
439         },\r
440 \r
441         /**\r
442          * Iterates either the elements in an array, or each of the properties in an object.\r
443          * <b>Note</b>: If you are only iterating arrays, it is better to call {@link #each}.\r
444          * @param {Object/Array} object The object or array to be iterated\r
445          * @param {Function} fn The function to be called for each iteration.\r
446          * The iteration will stop if the supplied function returns false, or\r
447          * all array elements / object properties have been covered. The signature\r
448          * varies depending on the type of object being interated:\r
449          * <div class="mdetail-params"><ul>\r
450          * <li>Arrays : <tt>(Object item, Number index, Array allItems)</tt>\r
451          * <div class="sub-desc">\r
452          * When iterating an array, the supplied function is called with each item.</div></li>\r
453          * <li>Objects : <tt>(String key, Object value)</tt>\r
454          * <div class="sub-desc">\r
455          * When iterating an object, the supplied function is called with each key-value pair in\r
456          * the object.</div></li>\r
457          * </ul></div>\r
458          * @param {Object} scope The scope (<code>this</code> reference) in which the specified function is executed. Defaults to\r
459          * the <code>object</code> being iterated.\r
460          */\r
461         iterate : function(obj, fn, scope){\r
462             if(Ext.isEmpty(obj)){\r
463                 return;\r
464             }\r
465             if(Ext.isIterable(obj)){\r
466                 Ext.each(obj, fn, scope);\r
467                 return;\r
468             }else if(Ext.isObject(obj)){\r
469                 for(var prop in obj){\r
470                     if(obj.hasOwnProperty(prop)){\r
471                         if(fn.call(scope || obj, prop, obj[prop]) === false){\r
472                             return;\r
473                         };\r
474                     }\r
475                 }\r
476             }\r
477         },\r
478 \r
479         /**\r
480          * Return the dom node for the passed String (id), dom node, or Ext.Element.\r
481          * Here are some examples:\r
482          * <pre><code>\r
483 // gets dom node based on id\r
484 var elDom = Ext.getDom('elId');\r
485 // gets dom node based on the dom node\r
486 var elDom1 = Ext.getDom(elDom);\r
487 \r
488 // If we don&#39;t know if we are working with an\r
489 // Ext.Element or a dom node use Ext.getDom\r
490 function(el){\r
491     var dom = Ext.getDom(el);\r
492     // do something with the dom node\r
493 }\r
494          * </code></pre>\r
495          * <b>Note</b>: the dom node to be found actually needs to exist (be rendered, etc)\r
496          * when this method is called to be successful.\r
497          * @param {Mixed} el\r
498          * @return HTMLElement\r
499          */\r
500         getDom : function(el){\r
501             if(!el || !DOC){\r
502                 return null;\r
503             }\r
504             return el.dom ? el.dom : (Ext.isString(el) ? DOC.getElementById(el) : el);\r
505         },\r
506 \r
507         /**\r
508          * Returns the current document body as an {@link Ext.Element}.\r
509          * @return Ext.Element The document body\r
510          */\r
511         getBody : function(){\r
512             return Ext.get(DOC.body || DOC.documentElement);\r
513         },\r
514 \r
515         /**\r
516          * Removes a DOM node from the document.  The body node will be ignored if passed in.\r
517          * @param {HTMLElement} node The node to remove\r
518          */\r
519         removeNode : isIE ? function(){\r
520             var d;\r
521             return function(n){\r
522                 if(n && n.tagName != 'BODY'){\r
523                     d = d || DOC.createElement('div');\r
524                     d.appendChild(n);\r
525                     d.innerHTML = '';\r
526                 }\r
527             }\r
528         }() : function(n){\r
529             if(n && n.parentNode && n.tagName != 'BODY'){\r
530                 n.parentNode.removeChild(n);\r
531             }\r
532         },\r
533 \r
534         /**\r
535          * <p>Returns true if the passed value is empty.</p>\r
536          * <p>The value is deemed to be empty if it is<div class="mdetail-params"><ul>\r
537          * <li>null</li>\r
538          * <li>undefined</li>\r
539          * <li>an empty array</li>\r
540          * <li>a zero length string (Unless the <tt>allowBlank</tt> parameter is <tt>true</tt>)</li>\r
541          * </ul></div>\r
542          * @param {Mixed} value The value to test\r
543          * @param {Boolean} allowBlank (optional) true to allow empty strings (defaults to false)\r
544          * @return {Boolean}\r
545          */\r
546         isEmpty : function(v, allowBlank){\r
547             return v === null || v === undefined || ((Ext.isArray(v) && !v.length)) || (!allowBlank ? v === '' : false);\r
548         },\r
549 \r
550         /**\r
551          * Returns true if the passed value is a JavaScript array, otherwise false.\r
552          * @param {Mixed} value The value to test\r
553          * @return {Boolean}\r
554          */\r
555         isArray : function(v){\r
556             return toString.apply(v) === '[object Array]';\r
557         },\r
558 \r
559         /**\r
560          * Returns true if the passed object is a JavaScript date object, otherwise false.\r
561          * @param {Object} object The object to test\r
562          * @return {Boolean}\r
563          */\r
564         isDate : function(v){\r
565             return toString.apply(v) === '[object Date]';\r
566         },\r
567 \r
568         /**\r
569          * Returns true if the passed value is a JavaScript Object, otherwise false.\r
570          * @param {Mixed} value The value to test\r
571          * @return {Boolean}\r
572          */\r
573         isObject : function(v){\r
574             return v && typeof v == "object";\r
575         },\r
576 \r
577         /**\r
578          * Returns true if the passed value is a JavaScript 'primitive', a string, number or boolean.\r
579          * @param {Mixed} value The value to test\r
580          * @return {Boolean}\r
581          */\r
582         isPrimitive : function(v){\r
583             return Ext.isString(v) || Ext.isNumber(v) || Ext.isBoolean(v);\r
584         },\r
585 \r
586         /**\r
587          * Returns true if the passed value is a JavaScript Function, otherwise false.\r
588          * @param {Mixed} value The value to test\r
589          * @return {Boolean}\r
590          */\r
591         isFunction : function(v){\r
592             return toString.apply(v) === '[object Function]';\r
593         },\r
594 \r
595         /**\r
596          * Returns true if the passed value is a number. Returns false for non-finite numbers.\r
597          * @param {Mixed} value The value to test\r
598          * @return {Boolean}\r
599          */\r
600         isNumber : function(v){\r
601             return typeof v === 'number' && isFinite(v);\r
602         },\r
603 \r
604         /**\r
605          * Returns true if the passed value is a string.\r
606          * @param {Mixed} value The value to test\r
607          * @return {Boolean}\r
608          */\r
609         isString : function(v){\r
610             return typeof v === 'string';\r
611         },\r
612 \r
613         /**\r
614          * Returns true if the passed value is a boolean.\r
615          * @param {Mixed} value The value to test\r
616          * @return {Boolean}\r
617          */\r
618         isBoolean : function(v){\r
619             return typeof v === 'boolean';\r
620         },\r
621 \r
622         /**\r
623          * Returns true if the passed value is not undefined.\r
624          * @param {Mixed} value The value to test\r
625          * @return {Boolean}\r
626          */\r
627         isDefined : function(v){\r
628             return typeof v !== 'undefined';\r
629         },\r
630 \r
631         /**\r
632          * True if the detected browser is Opera.\r
633          * @type Boolean\r
634          */\r
635         isOpera : isOpera,\r
636         /**\r
637          * True if the detected browser uses WebKit.\r
638          * @type Boolean\r
639          */\r
640         isWebKit : isWebKit,\r
641         /**\r
642          * True if the detected browser is Chrome.\r
643          * @type Boolean\r
644          */\r
645         isChrome : isChrome,\r
646         /**\r
647          * True if the detected browser is Safari.\r
648          * @type Boolean\r
649          */\r
650         isSafari : isSafari,\r
651         /**\r
652          * True if the detected browser is Safari 3.x.\r
653          * @type Boolean\r
654          */\r
655         isSafari3 : isSafari3,\r
656         /**\r
657          * True if the detected browser is Safari 4.x.\r
658          * @type Boolean\r
659          */\r
660         isSafari4 : isSafari4,\r
661         /**\r
662          * True if the detected browser is Safari 2.x.\r
663          * @type Boolean\r
664          */\r
665         isSafari2 : isSafari2,\r
666         /**\r
667          * True if the detected browser is Internet Explorer.\r
668          * @type Boolean\r
669          */\r
670         isIE : isIE,\r
671         /**\r
672          * True if the detected browser is Internet Explorer 6.x.\r
673          * @type Boolean\r
674          */\r
675         isIE6 : isIE6,\r
676         /**\r
677          * True if the detected browser is Internet Explorer 7.x.\r
678          * @type Boolean\r
679          */\r
680         isIE7 : isIE7,\r
681         /**\r
682          * True if the detected browser is Internet Explorer 8.x.\r
683          * @type Boolean\r
684          */\r
685         isIE8 : isIE8,\r
686         /**\r
687          * True if the detected browser uses the Gecko layout engine (e.g. Mozilla, Firefox).\r
688          * @type Boolean\r
689          */\r
690         isGecko : isGecko,\r
691         /**\r
692          * True if the detected browser uses a pre-Gecko 1.9 layout engine (e.g. Firefox 2.x).\r
693          * @type Boolean\r
694          */\r
695         isGecko2 : isGecko2,\r
696         /**\r
697          * True if the detected browser uses a Gecko 1.9+ layout engine (e.g. Firefox 3.x).\r
698          * @type Boolean\r
699          */\r
700         isGecko3 : isGecko3,\r
701         /**\r
702          * True if the detected browser is Internet Explorer running in non-strict mode.\r
703          * @type Boolean\r
704          */\r
705         isBorderBox : isBorderBox,\r
706         /**\r
707          * True if the detected platform is Linux.\r
708          * @type Boolean\r
709          */\r
710         isLinux : isLinux,\r
711         /**\r
712          * True if the detected platform is Windows.\r
713          * @type Boolean\r
714          */\r
715         isWindows : isWindows,\r
716         /**\r
717          * True if the detected platform is Mac OS.\r
718          * @type Boolean\r
719          */\r
720         isMac : isMac,\r
721         /**\r
722          * True if the detected platform is Adobe Air.\r
723          * @type Boolean\r
724          */\r
725         isAir : isAir\r
726     });\r
727 \r
728     /**\r
729      * Creates namespaces to be used for scoping variables and classes so that they are not global.\r
730      * Specifying the last node of a namespace implicitly creates all other nodes. Usage:\r
731      * <pre><code>\r
732 Ext.namespace('Company', 'Company.data');\r
733 Ext.namespace('Company.data'); // equivalent and preferable to above syntax\r
734 Company.Widget = function() { ... }\r
735 Company.data.CustomStore = function(config) { ... }\r
736 </code></pre>\r
737      * @param {String} namespace1\r
738      * @param {String} namespace2\r
739      * @param {String} etc\r
740      * @return {Object} The namespace object. (If multiple arguments are passed, this will be the last namespace created)\r
741      * @method ns\r
742      */\r
743     Ext.ns = Ext.namespace;\r
744 })();\r
745 \r
746 Ext.ns("Ext", "Ext.util", "Ext.lib", "Ext.data");\r
747 \r
748 \r
749 /**\r
750  * @class Function\r
751  * These functions are available on every Function object (any JavaScript function).\r
752  */\r
753 Ext.apply(Function.prototype, {\r
754      /**\r
755      * Creates an interceptor function. The passed function is called before the original one. If it returns false,\r
756      * the original one is not called. The resulting function returns the results of the original function.\r
757      * The passed function is called with the parameters of the original function. Example usage:\r
758      * <pre><code>\r
759 var sayHi = function(name){\r
760     alert('Hi, ' + name);\r
761 }\r
762 \r
763 sayHi('Fred'); // alerts "Hi, Fred"\r
764 \r
765 // create a new function that validates input without\r
766 // directly modifying the original function:\r
767 var sayHiToFriend = sayHi.createInterceptor(function(name){\r
768     return name == 'Brian';\r
769 });\r
770 \r
771 sayHiToFriend('Fred');  // no alert\r
772 sayHiToFriend('Brian'); // alerts "Hi, Brian"\r
773 </code></pre>\r
774      * @param {Function} fcn The function to call before the original\r
775      * @param {Object} scope (optional) The scope (<code><b>this</b></code> reference) in which the passed function is executed.\r
776      * <b>If omitted, defaults to the scope in which the original function is called or the browser window.</b>\r
777      * @return {Function} The new function\r
778      */\r
779     createInterceptor : function(fcn, scope){\r
780         var method = this;\r
781         return !Ext.isFunction(fcn) ?\r
782                 this :\r
783                 function() {\r
784                     var me = this,\r
785                         args = arguments;\r
786                     fcn.target = me;\r
787                     fcn.method = method;\r
788                     return (fcn.apply(scope || me || window, args) !== false) ?\r
789                             method.apply(me || window, args) :\r
790                             null;\r
791                 };\r
792     },\r
793 \r
794      /**\r
795      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...\r
796      * Call directly on any function. Example: <code>myFunction.createCallback(arg1, arg2)</code>\r
797      * Will create a function that is bound to those 2 args. <b>If a specific scope is required in the\r
798      * callback, use {@link #createDelegate} instead.</b> The function returned by createCallback always\r
799      * executes in the window scope.\r
800      * <p>This method is required when you want to pass arguments to a callback function.  If no arguments\r
801      * are needed, you can simply pass a reference to the function as a callback (e.g., callback: myFn).\r
802      * However, if you tried to pass a function with arguments (e.g., callback: myFn(arg1, arg2)) the function\r
803      * would simply execute immediately when the code is parsed. Example usage:\r
804      * <pre><code>\r
805 var sayHi = function(name){\r
806     alert('Hi, ' + name);\r
807 }\r
808 \r
809 // clicking the button alerts "Hi, Fred"\r
810 new Ext.Button({\r
811     text: 'Say Hi',\r
812     renderTo: Ext.getBody(),\r
813     handler: sayHi.createCallback('Fred')\r
814 });\r
815 </code></pre>\r
816      * @return {Function} The new function\r
817     */\r
818     createCallback : function(/*args...*/){\r
819         // make args available, in function below\r
820         var args = arguments,\r
821             method = this;\r
822         return function() {\r
823             return method.apply(window, args);\r
824         };\r
825     },\r
826 \r
827     /**\r
828      * Creates a delegate (callback) that sets the scope to obj.\r
829      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this, [arg1, arg2])</code>\r
830      * Will create a function that is automatically scoped to obj so that the <tt>this</tt> variable inside the\r
831      * callback points to obj. Example usage:\r
832      * <pre><code>\r
833 var sayHi = function(name){\r
834     // Note this use of "this.text" here.  This function expects to\r
835     // execute within a scope that contains a text property.  In this\r
836     // example, the "this" variable is pointing to the btn object that\r
837     // was passed in createDelegate below.\r
838     alert('Hi, ' + name + '. You clicked the "' + this.text + '" button.');\r
839 }\r
840 \r
841 var btn = new Ext.Button({\r
842     text: 'Say Hi',\r
843     renderTo: Ext.getBody()\r
844 });\r
845 \r
846 // This callback will execute in the scope of the\r
847 // button instance. Clicking the button alerts\r
848 // "Hi, Fred. You clicked the "Say Hi" button."\r
849 btn.on('click', sayHi.createDelegate(btn, ['Fred']));\r
850 </code></pre>\r
851      * @param {Object} scope (optional) The scope (<code><b>this</b></code> reference) in which the function is executed.\r
852      * <b>If omitted, defaults to the browser window.</b>\r
853      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)\r
854      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,\r
855      * if a number the args are inserted at the specified position\r
856      * @return {Function} The new function\r
857      */\r
858     createDelegate : function(obj, args, appendArgs){\r
859         var method = this;\r
860         return function() {\r
861             var callArgs = args || arguments;\r
862             if (appendArgs === true){\r
863                 callArgs = Array.prototype.slice.call(arguments, 0);\r
864                 callArgs = callArgs.concat(args);\r
865             }else if (Ext.isNumber(appendArgs)){\r
866                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first\r
867                 var applyArgs = [appendArgs, 0].concat(args); // create method call params\r
868                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in\r
869             }\r
870             return method.apply(obj || window, callArgs);\r
871         };\r
872     },\r
873 \r
874     /**\r
875      * Calls this function after the number of millseconds specified, optionally in a specific scope. Example usage:\r
876      * <pre><code>\r
877 var sayHi = function(name){\r
878     alert('Hi, ' + name);\r
879 }\r
880 \r
881 // executes immediately:\r
882 sayHi('Fred');\r
883 \r
884 // executes after 2 seconds:\r
885 sayHi.defer(2000, this, ['Fred']);\r
886 \r
887 // this syntax is sometimes useful for deferring\r
888 // execution of an anonymous function:\r
889 (function(){\r
890     alert('Anonymous');\r
891 }).defer(100);\r
892 </code></pre>\r
893      * @param {Number} millis The number of milliseconds for the setTimeout call (if less than or equal to 0 the function is executed immediately)\r
894      * @param {Object} scope (optional) The scope (<code><b>this</b></code> reference) in which the function is executed.\r
895      * <b>If omitted, defaults to the browser window.</b>\r
896      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)\r
897      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,\r
898      * if a number the args are inserted at the specified position\r
899      * @return {Number} The timeout id that can be used with clearTimeout\r
900      */\r
901     defer : function(millis, obj, args, appendArgs){\r
902         var fn = this.createDelegate(obj, args, appendArgs);\r
903         if(millis > 0){\r
904             return setTimeout(fn, millis);\r
905         }\r
906         fn();\r
907         return 0;\r
908     }\r
909 });\r
910 \r
911 /**\r
912  * @class String\r
913  * These functions are available on every String object.\r
914  */\r
915 Ext.applyIf(String, {\r
916     /**\r
917      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each\r
918      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:\r
919      * <pre><code>\r
920 var cls = 'my-class', text = 'Some text';\r
921 var s = String.format('&lt;div class="{0}">{1}&lt;/div>', cls, text);\r
922 // s now contains the string: '&lt;div class="my-class">Some text&lt;/div>'\r
923      * </code></pre>\r
924      * @param {String} string The tokenized string to be formatted\r
925      * @param {String} value1 The value to replace token {0}\r
926      * @param {String} value2 Etc...\r
927      * @return {String} The formatted string\r
928      * @static\r
929      */\r
930     format : function(format){\r
931         var args = Ext.toArray(arguments, 1);\r
932         return format.replace(/\{(\d+)\}/g, function(m, i){\r
933             return args[i];\r
934         });\r
935     }\r
936 });\r
937 \r
938 /**\r
939  * @class Array\r
940  */\r
941 Ext.applyIf(Array.prototype, {\r
942     /**\r
943      * Checks whether or not the specified object exists in the array.\r
944      * @param {Object} o The object to check for\r
945      * @param {Number} from (Optional) The index at which to begin the search\r
946      * @return {Number} The index of o in the array (or -1 if it is not found)\r
947      */\r
948     indexOf : function(o, from){\r
949         var len = this.length;\r
950         from = from || 0;\r
951         from += (from < 0) ? len : 0;\r
952         for (; from < len; ++from){\r
953             if(this[from] === o){\r
954                 return from;\r
955             }\r
956         }\r
957         return -1;\r
958     },\r
959 \r
960     /**\r
961      * Removes the specified object from the array.  If the object is not found nothing happens.\r
962      * @param {Object} o The object to remove\r
963      * @return {Array} this array\r
964      */\r
965     remove : function(o){\r
966         var index = this.indexOf(o);\r
967         if(index != -1){\r
968             this.splice(index, 1);\r
969         }\r
970         return this;\r
971     }\r
972 });\r
973 /**
974  * @class Ext
975  */
976
977 Ext.ns("Ext.grid", "Ext.dd", "Ext.tree", "Ext.form", "Ext.menu",
978        "Ext.state", "Ext.layout", "Ext.app", "Ext.ux", "Ext.chart", "Ext.direct");
979     /**
980      * Namespace alloted for extensions to the framework.
981      * @property ux
982      * @type Object
983      */
984
985 Ext.apply(Ext, function(){
986     var E = Ext, 
987         idSeed = 0,
988         scrollWidth = null;
989
990     return {
991         /**
992         * A reusable empty function
993         * @property
994         * @type Function
995         */
996         emptyFn : function(){},
997
998         /**
999          * URL to a 1x1 transparent gif image used by Ext to create inline icons with CSS background images. 
1000          * In older versions of IE, this defaults to "http://extjs.com/s.gif" and you should change this to a URL on your server.
1001          * For other browsers it uses an inline data URL.
1002          * @type String
1003          */
1004         BLANK_IMAGE_URL : Ext.isIE6 || Ext.isIE7 || Ext.isAir ?
1005                             'http:/' + '/extjs.com/s.gif' :
1006                             'data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==',
1007
1008         extendX : function(supr, fn){
1009             return Ext.extend(supr, fn(supr.prototype));
1010         },
1011
1012         /**
1013          * Returns the current HTML document object as an {@link Ext.Element}.
1014          * @return Ext.Element The document
1015          */
1016         getDoc : function(){
1017             return Ext.get(document);
1018         },
1019
1020         /**
1021          * Utility method for validating that a value is numeric, returning the specified default value if it is not.
1022          * @param {Mixed} value Should be a number, but any type will be handled appropriately
1023          * @param {Number} defaultValue The value to return if the original value is non-numeric
1024          * @return {Number} Value, if numeric, else defaultValue
1025          */
1026         num : function(v, defaultValue){
1027             v = Number(Ext.isEmpty(v) || Ext.isBoolean(v) ? NaN : v);
1028             return isNaN(v)? defaultValue : v;
1029         },
1030
1031         /**
1032          * <p>Utility method for returning a default value if the passed value is empty.</p>
1033          * <p>The value is deemed to be empty if it is<div class="mdetail-params"><ul>
1034          * <li>null</li>
1035          * <li>undefined</li>
1036          * <li>an empty array</li>
1037          * <li>a zero length string (Unless the <tt>allowBlank</tt> parameter is <tt>true</tt>)</li>
1038          * </ul></div>
1039          * @param {Mixed} value The value to test
1040          * @param {Mixed} defaultValue The value to return if the original value is empty
1041          * @param {Boolean} allowBlank (optional) true to allow zero length strings to qualify as non-empty (defaults to false)
1042          * @return {Mixed} value, if non-empty, else defaultValue
1043          */
1044         value : function(v, defaultValue, allowBlank){
1045             return Ext.isEmpty(v, allowBlank) ? defaultValue : v;
1046         },
1047
1048         /**
1049          * Escapes the passed string for use in a regular expression
1050          * @param {String} str
1051          * @return {String}
1052          */
1053         escapeRe : function(s) {
1054             return s.replace(/([-.*+?^${}()|[\]\/\\])/g, "\\$1");
1055         },
1056
1057         sequence : function(o, name, fn, scope){
1058             o[name] = o[name].createSequence(fn, scope);
1059         },
1060
1061         /**
1062          * Applies event listeners to elements by selectors when the document is ready.
1063          * The event name is specified with an <tt>&#64;</tt> suffix.
1064          * <pre><code>
1065 Ext.addBehaviors({
1066     // add a listener for click on all anchors in element with id foo
1067     '#foo a&#64;click' : function(e, t){
1068         // do something
1069     },
1070     
1071     // add the same listener to multiple selectors (separated by comma BEFORE the &#64;)
1072     '#foo a, #bar span.some-class&#64;mouseover' : function(){
1073         // do something
1074     }
1075 });
1076          * </code></pre> 
1077          * @param {Object} obj The list of behaviors to apply
1078          */
1079         addBehaviors : function(o){
1080             if(!Ext.isReady){
1081                 Ext.onReady(function(){
1082                     Ext.addBehaviors(o);
1083                 });
1084             } else {
1085                 var cache = {}, // simple cache for applying multiple behaviors to same selector does query multiple times
1086                     parts,
1087                     b,
1088                     s;
1089                 for (b in o) {
1090                     if ((parts = b.split('@'))[1]) { // for Object prototype breakers
1091                         s = parts[0];
1092                         if(!cache[s]){
1093                             cache[s] = Ext.select(s);
1094                         }
1095                         cache[s].on(parts[1], o[b]);
1096                     }
1097                 }
1098                 cache = null;
1099             }
1100         },
1101         
1102         /**
1103          * Utility method for getting the width of the browser scrollbar. This can differ depending on
1104          * operating system settings, such as the theme or font size.
1105          * @param {Boolean} force (optional) true to force a recalculation of the value.
1106          * @return {Number} The width of the scrollbar.
1107          */
1108         getScrollBarWidth: function(force){
1109             if(!Ext.isReady){
1110                 return 0;
1111             }
1112             
1113             if(force === true || scrollWidth === null){
1114                     // Append our div, do our calculation and then remove it
1115                 var div = Ext.getBody().createChild('<div class="x-hide-offsets" style="width:100px;height:50px;overflow:hidden;"><div style="height:200px;"></div></div>'),
1116                     child = div.child('div', true);
1117                 var w1 = child.offsetWidth;
1118                 div.setStyle('overflow', (Ext.isWebKit || Ext.isGecko) ? 'auto' : 'scroll');
1119                 var w2 = child.offsetWidth;
1120                 div.remove();
1121                 // Need to add 2 to ensure we leave enough space
1122                 scrollWidth = w1 - w2 + 2;
1123             }
1124             return scrollWidth;
1125         },
1126
1127
1128         // deprecated
1129         combine : function(){
1130             var as = arguments, l = as.length, r = [];
1131             for(var i = 0; i < l; i++){
1132                 var a = as[i];
1133                 if(Ext.isArray(a)){
1134                     r = r.concat(a);
1135                 }else if(a.length !== undefined && !a.substr){
1136                     r = r.concat(Array.prototype.slice.call(a, 0));
1137                 }else{
1138                     r.push(a);
1139                 }
1140             }
1141             return r;
1142         },
1143
1144         /**
1145          * Copies a set of named properties fom the source object to the destination object.
1146          * <p>example:<pre><code>
1147 ImageComponent = Ext.extend(Ext.BoxComponent, {
1148     initComponent: function() {
1149         this.autoEl = { tag: 'img' };
1150         MyComponent.superclass.initComponent.apply(this, arguments);
1151         this.initialBox = Ext.copyTo({}, this.initialConfig, 'x,y,width,height');
1152     }
1153 });
1154          * </code></pre> 
1155          * @param {Object} The destination object.
1156          * @param {Object} The source object.
1157          * @param {Array/String} Either an Array of property names, or a comma-delimited list
1158          * of property names to copy.
1159          * @return {Object} The modified object.
1160         */
1161         copyTo : function(dest, source, names){
1162             if(Ext.isString(names)){
1163                 names = names.split(/[,;\s]/);
1164             }
1165             Ext.each(names, function(name){
1166                 if(source.hasOwnProperty(name)){
1167                     dest[name] = source[name];
1168                 }
1169             }, this);
1170             return dest;
1171         },
1172
1173         /**
1174          * Attempts to destroy any objects passed to it by removing all event listeners, removing them from the
1175          * DOM (if applicable) and calling their destroy functions (if available).  This method is primarily
1176          * intended for arguments of type {@link Ext.Element} and {@link Ext.Component}, but any subclass of
1177          * {@link Ext.util.Observable} can be passed in.  Any number of elements and/or components can be
1178          * passed into this function in a single call as separate arguments.
1179          * @param {Mixed} arg1 An {@link Ext.Element}, {@link Ext.Component}, or an Array of either of these to destroy
1180          * @param {Mixed} arg2 (optional)
1181          * @param {Mixed} etc... (optional)
1182          */
1183         destroy : function(){
1184             Ext.each(arguments, function(arg){
1185                 if(arg){
1186                     if(Ext.isArray(arg)){
1187                         this.destroy.apply(this, arg);
1188                     }else if(Ext.isFunction(arg.destroy)){
1189                         arg.destroy();
1190                     }else if(arg.dom){
1191                         arg.remove();
1192                     }    
1193                 }
1194             }, this);
1195         },
1196
1197         /**
1198          * Attempts to destroy and then remove a set of named properties of the passed object.
1199          * @param {Object} o The object (most likely a Component) who's properties you wish to destroy.
1200          * @param {Mixed} arg1 The name of the property to destroy and remove from the object.
1201          * @param {Mixed} etc... More property names to destroy and remove.
1202          */
1203         destroyMembers : function(o, arg1, arg2, etc){
1204             for(var i = 1, a = arguments, len = a.length; i < len; i++) {
1205                 Ext.destroy(o[a[i]]);
1206                 delete o[a[i]];
1207             }
1208         },
1209
1210         /**
1211          * Creates a copy of the passed Array with falsy values removed.
1212          * @param {Array/NodeList} arr The Array from which to remove falsy values.
1213          * @return {Array} The new, compressed Array.
1214          */
1215         clean : function(arr){
1216             var ret = [];
1217             Ext.each(arr, function(v){
1218                 if(!!v){
1219                     ret.push(v);
1220                 }
1221             });
1222             return ret;
1223         },
1224
1225         /**
1226          * Creates a copy of the passed Array, filtered to contain only unique values.
1227          * @param {Array} arr The Array to filter
1228          * @return {Array} The new Array containing unique values.
1229          */
1230         unique : function(arr){
1231             var ret = [],
1232                 collect = {};
1233
1234             Ext.each(arr, function(v) {
1235                 if(!collect[v]){
1236                     ret.push(v);
1237                 }
1238                 collect[v] = true;
1239             });
1240             return ret;
1241         },
1242
1243         /**
1244          * Recursively flattens into 1-d Array. Injects Arrays inline.
1245          * @param {Array} arr The array to flatten
1246          * @return {Array} The new, flattened array.
1247          */
1248         flatten : function(arr){
1249             var worker = [];
1250             function rFlatten(a) {
1251                 Ext.each(a, function(v) {
1252                     if(Ext.isArray(v)){
1253                         rFlatten(v);
1254                     }else{
1255                         worker.push(v);
1256                     }
1257                 });
1258                 return worker;
1259             }
1260             return rFlatten(arr);
1261         },
1262
1263         /**
1264          * Returns the minimum value in the Array.
1265          * @param {Array|NodeList} arr The Array from which to select the minimum value.
1266          * @param {Function} comp (optional) a function to perform the comparision which determines minimization.
1267          *                   If omitted the "<" operator will be used. Note: gt = 1; eq = 0; lt = -1
1268          * @return {Object} The minimum value in the Array.
1269          */
1270         min : function(arr, comp){
1271             var ret = arr[0];
1272             comp = comp || function(a,b){ return a < b ? -1 : 1; };
1273             Ext.each(arr, function(v) {
1274                 ret = comp(ret, v) == -1 ? ret : v;
1275             });
1276             return ret;
1277         },
1278
1279         /**
1280          * Returns the maximum value in the Array
1281          * @param {Array|NodeList} arr The Array from which to select the maximum value.
1282          * @param {Function} comp (optional) a function to perform the comparision which determines maximization.
1283          *                   If omitted the ">" operator will be used. Note: gt = 1; eq = 0; lt = -1
1284          * @return {Object} The maximum value in the Array.
1285          */
1286         max : function(arr, comp){
1287             var ret = arr[0];
1288             comp = comp || function(a,b){ return a > b ? 1 : -1; };
1289             Ext.each(arr, function(v) {
1290                 ret = comp(ret, v) == 1 ? ret : v;
1291             });
1292             return ret;
1293         },
1294
1295         /**
1296          * Calculates the mean of the Array
1297          * @param {Array} arr The Array to calculate the mean value of.
1298          * @return {Number} The mean.
1299          */
1300         mean : function(arr){
1301            return Ext.sum(arr) / arr.length;
1302         },
1303
1304         /**
1305          * Calculates the sum of the Array
1306          * @param {Array} arr The Array to calculate the sum value of.
1307          * @return {Number} The sum.
1308          */
1309         sum : function(arr){
1310            var ret = 0;
1311            Ext.each(arr, function(v) {
1312                ret += v;
1313            });
1314            return ret;
1315         },
1316
1317         /**
1318          * Partitions the set into two sets: a true set and a false set.
1319          * Example: 
1320          * Example2: 
1321          * <pre><code>
1322 // Example 1:
1323 Ext.partition([true, false, true, true, false]); // [[true, true, true], [false, false]]
1324
1325 // Example 2:
1326 Ext.partition(
1327     Ext.query("p"),
1328     function(val){
1329         return val.className == "class1"
1330     }
1331 );
1332 // true are those paragraph elements with a className of "class1",
1333 // false set are those that do not have that className.
1334          * </code></pre>
1335          * @param {Array|NodeList} arr The array to partition
1336          * @param {Function} truth (optional) a function to determine truth.  If this is omitted the element
1337          *                   itself must be able to be evaluated for its truthfulness.
1338          * @return {Array} [true<Array>,false<Array>]
1339          */
1340         partition : function(arr, truth){
1341             var ret = [[],[]];
1342             Ext.each(arr, function(v, i, a) {
1343                 ret[ (truth && truth(v, i, a)) || (!truth && v) ? 0 : 1].push(v);
1344             });
1345             return ret;
1346         },
1347
1348         /**
1349          * Invokes a method on each item in an Array.
1350          * <pre><code>
1351 // Example:
1352 Ext.invoke(Ext.query("p"), "getAttribute", "id");
1353 // [el1.getAttribute("id"), el2.getAttribute("id"), ..., elN.getAttribute("id")]
1354          * </code></pre>
1355          * @param {Array|NodeList} arr The Array of items to invoke the method on.
1356          * @param {String} methodName The method name to invoke.
1357          * @param {Anything} ... Arguments to send into the method invocation.
1358          * @return {Array} The results of invoking the method on each item in the array.
1359          */
1360         invoke : function(arr, methodName){
1361             var ret = [],
1362                 args = Array.prototype.slice.call(arguments, 2);
1363             Ext.each(arr, function(v,i) {
1364                 if (v && Ext.isFunction(v[methodName])) {
1365                     ret.push(v[methodName].apply(v, args));
1366                 } else {
1367                     ret.push(undefined);
1368                 }
1369             });
1370             return ret;
1371         },
1372
1373         /**
1374          * Plucks the value of a property from each item in the Array
1375          * <pre><code>
1376 // Example:
1377 Ext.pluck(Ext.query("p"), "className"); // [el1.className, el2.className, ..., elN.className]
1378          * </code></pre>
1379          * @param {Array|NodeList} arr The Array of items to pluck the value from.
1380          * @param {String} prop The property name to pluck from each element.
1381          * @return {Array} The value from each item in the Array.
1382          */
1383         pluck : function(arr, prop){
1384             var ret = [];
1385             Ext.each(arr, function(v) {
1386                 ret.push( v[prop] );
1387             });
1388             return ret;
1389         },
1390
1391         /**
1392          * <p>Zips N sets together.</p>
1393          * <pre><code>
1394 // Example 1:
1395 Ext.zip([1,2,3],[4,5,6]); // [[1,4],[2,5],[3,6]]
1396 // Example 2:
1397 Ext.zip(
1398     [ "+", "-", "+"],
1399     [  12,  10,  22],
1400     [  43,  15,  96],
1401     function(a, b, c){
1402         return "$" + a + "" + b + "." + c
1403     }
1404 ); // ["$+12.43", "$-10.15", "$+22.96"]
1405          * </code></pre>
1406          * @param {Arrays|NodeLists} arr This argument may be repeated. Array(s) to contribute values.
1407          * @param {Function} zipper (optional) The last item in the argument list. This will drive how the items are zipped together.
1408          * @return {Array} The zipped set.
1409          */
1410         zip : function(){
1411             var parts = Ext.partition(arguments, function( val ){ return !Ext.isFunction(val); }),
1412                 arrs = parts[0],
1413                 fn = parts[1][0],
1414                 len = Ext.max(Ext.pluck(arrs, "length")),
1415                 ret = [];
1416
1417             for (var i = 0; i < len; i++) {
1418                 ret[i] = [];
1419                 if(fn){
1420                     ret[i] = fn.apply(fn, Ext.pluck(arrs, i));
1421                 }else{
1422                     for (var j = 0, aLen = arrs.length; j < aLen; j++){
1423                         ret[i].push( arrs[j][i] );
1424                     }
1425                 }
1426             }
1427             return ret;
1428         },
1429
1430         /**
1431          * This is shorthand reference to {@link Ext.ComponentMgr#get}.
1432          * Looks up an existing {@link Ext.Component Component} by {@link Ext.Component#id id}
1433          * @param {String} id The component {@link Ext.Component#id id}
1434          * @return Ext.Component The Component, <tt>undefined</tt> if not found, or <tt>null</tt> if a
1435          * Class was found.
1436         */
1437         getCmp : function(id){
1438             return Ext.ComponentMgr.get(id);
1439         },
1440
1441         /**
1442          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
1443          * you may want to set this to true.
1444          * @type Boolean
1445          */
1446         useShims: E.isIE6 || (E.isMac && E.isGecko2),
1447
1448         // inpired by a similar function in mootools library
1449         /**
1450          * Returns the type of object that is passed in. If the object passed in is null or undefined it
1451          * return false otherwise it returns one of the following values:<div class="mdetail-params"><ul>
1452          * <li><b>string</b>: If the object passed is a string</li>
1453          * <li><b>number</b>: If the object passed is a number</li>
1454          * <li><b>boolean</b>: If the object passed is a boolean value</li>
1455          * <li><b>date</b>: If the object passed is a Date object</li>
1456          * <li><b>function</b>: If the object passed is a function reference</li>
1457          * <li><b>object</b>: If the object passed is an object</li>
1458          * <li><b>array</b>: If the object passed is an array</li>
1459          * <li><b>regexp</b>: If the object passed is a regular expression</li>
1460          * <li><b>element</b>: If the object passed is a DOM Element</li>
1461          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
1462          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
1463          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
1464          * </ul></div>
1465          * @param {Mixed} object
1466          * @return {String}
1467          */
1468         type : function(o){
1469             if(o === undefined || o === null){
1470                 return false;
1471             }
1472             if(o.htmlElement){
1473                 return 'element';
1474             }
1475             var t = typeof o;
1476             if(t == 'object' && o.nodeName) {
1477                 switch(o.nodeType) {
1478                     case 1: return 'element';
1479                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
1480                 }
1481             }
1482             if(t == 'object' || t == 'function') {
1483                 switch(o.constructor) {
1484                     case Array: return 'array';
1485                     case RegExp: return 'regexp';
1486                     case Date: return 'date';
1487                 }
1488                 if(Ext.isNumber(o.length) && Ext.isFunction(o.item)) {
1489                     return 'nodelist';
1490                 }
1491             }
1492             return t;
1493         },
1494
1495         intercept : function(o, name, fn, scope){
1496             o[name] = o[name].createInterceptor(fn, scope);
1497         },
1498
1499         // internal
1500         callback : function(cb, scope, args, delay){
1501             if(Ext.isFunction(cb)){
1502                 if(delay){
1503                     cb.defer(delay, scope, args || []);
1504                 }else{
1505                     cb.apply(scope, args || []);
1506                 }
1507             }
1508         }
1509     };
1510 }());
1511
1512 /**
1513  * @class Function
1514  * These functions are available on every Function object (any JavaScript function).
1515  */
1516 Ext.apply(Function.prototype, {
1517     /**
1518      * Create a combined function call sequence of the original function + the passed function.
1519      * The resulting function returns the results of the original function.
1520      * The passed fcn is called with the parameters of the original function. Example usage:
1521      * <pre><code>
1522 var sayHi = function(name){
1523     alert('Hi, ' + name);
1524 }
1525
1526 sayHi('Fred'); // alerts "Hi, Fred"
1527
1528 var sayGoodbye = sayHi.createSequence(function(name){
1529     alert('Bye, ' + name);
1530 });
1531
1532 sayGoodbye('Fred'); // both alerts show
1533 </code></pre>
1534      * @param {Function} fcn The function to sequence
1535      * @param {Object} scope (optional) The scope (<code><b>this</b></code> reference) in which the passed function is executed.
1536      * <b>If omitted, defaults to the scope in which the original function is called or the browser window.</b>
1537      * @return {Function} The new function
1538      */
1539     createSequence : function(fcn, scope){
1540         var method = this;
1541         return !Ext.isFunction(fcn) ?
1542                 this :
1543                 function(){
1544                     var retval = method.apply(this || window, arguments);
1545                     fcn.apply(scope || this || window, arguments);
1546                     return retval;
1547                 };
1548     }
1549 });
1550
1551
1552 /**
1553  * @class String
1554  * These functions are available as static methods on the JavaScript String object.
1555  */
1556 Ext.applyIf(String, {
1557
1558     /**
1559      * Escapes the passed string for ' and \
1560      * @param {String} string The string to escape
1561      * @return {String} The escaped string
1562      * @static
1563      */
1564     escape : function(string) {
1565         return string.replace(/('|\\)/g, "\\$1");
1566     },
1567
1568     /**
1569      * Pads the left side of a string with a specified character.  This is especially useful
1570      * for normalizing number and date strings.  Example usage:
1571      * <pre><code>
1572 var s = String.leftPad('123', 5, '0');
1573 // s now contains the string: '00123'
1574      * </code></pre>
1575      * @param {String} string The original string
1576      * @param {Number} size The total length of the output string
1577      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
1578      * @return {String} The padded string
1579      * @static
1580      */
1581     leftPad : function (val, size, ch) {
1582         var result = String(val);
1583         if(!ch) {
1584             ch = " ";
1585         }
1586         while (result.length < size) {
1587             result = ch + result;
1588         }
1589         return result;
1590     }
1591 });
1592
1593 /**
1594  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
1595  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
1596  * they are already different, the first value passed in is returned.  Note that this method returns the new value
1597  * but does not change the current string.
1598  * <pre><code>
1599 // alternate sort directions
1600 sort = sort.toggle('ASC', 'DESC');
1601
1602 // instead of conditional logic:
1603 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
1604 </code></pre>
1605  * @param {String} value The value to compare to the current string
1606  * @param {String} other The new value to use if the string already equals the first value passed in
1607  * @return {String} The new value
1608  */
1609 String.prototype.toggle = function(value, other){
1610     return this == value ? other : value;
1611 };
1612
1613 /**
1614  * Trims whitespace from either end of a string, leaving spaces within the string intact.  Example:
1615  * <pre><code>
1616 var s = '  foo bar  ';
1617 alert('-' + s + '-');         //alerts "- foo bar -"
1618 alert('-' + s.trim() + '-');  //alerts "-foo bar-"
1619 </code></pre>
1620  * @return {String} The trimmed string
1621  */
1622 String.prototype.trim = function(){
1623     var re = /^\s+|\s+$/g;
1624     return function(){ return this.replace(re, ""); };
1625 }();
1626
1627 // here to prevent dependency on Date.js
1628 /**
1629  Returns the number of milliseconds between this date and date
1630  @param {Date} date (optional) Defaults to now
1631  @return {Number} The diff in milliseconds
1632  @member Date getElapsed
1633  */
1634 Date.prototype.getElapsed = function(date) {
1635     return Math.abs((date || new Date()).getTime()-this.getTime());
1636 };
1637
1638
1639 /**
1640  * @class Number
1641  */
1642 Ext.applyIf(Number.prototype, {
1643     /**
1644      * Checks whether or not the current number is within a desired range.  If the number is already within the
1645      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
1646      * exceeded.  Note that this method returns the constrained value but does not change the current number.
1647      * @param {Number} min The minimum number in the range
1648      * @param {Number} max The maximum number in the range
1649      * @return {Number} The constrained value if outside the range, otherwise the current value
1650      */
1651     constrain : function(min, max){
1652         return Math.min(Math.max(this, min), max);
1653     }
1654 });
1655 /**
1656  * @class Ext.util.TaskRunner
1657  * Provides the ability to execute one or more arbitrary tasks in a multithreaded
1658  * manner.  Generally, you can use the singleton {@link Ext.TaskMgr} instead, but
1659  * if needed, you can create separate instances of TaskRunner.  Any number of
1660  * separate tasks can be started at any time and will run independently of each
1661  * other. Example usage:
1662  * <pre><code>
1663 // Start a simple clock task that updates a div once per second
1664 var updateClock = function(){
1665     Ext.fly('clock').update(new Date().format('g:i:s A'));
1666
1667 var task = {
1668     run: updateClock,
1669     interval: 1000 //1 second
1670 }
1671 var runner = new Ext.util.TaskRunner();
1672 runner.start(task);
1673
1674 // equivalent using TaskMgr
1675 Ext.TaskMgr.start({
1676     run: updateClock,
1677     interval: 1000
1678 });
1679
1680  * </code></pre>
1681  * Also see {@link Ext.util.DelayedTask}. 
1682  * 
1683  * @constructor
1684  * @param {Number} interval (optional) The minimum precision in milliseconds supported by this TaskRunner instance
1685  * (defaults to 10)
1686  */
1687 Ext.util.TaskRunner = function(interval){
1688     interval = interval || 10;
1689     var tasks = [], 
1690         removeQueue = [],
1691         id = 0,
1692         running = false,
1693
1694         // private
1695         stopThread = function(){
1696                 running = false;
1697                 clearInterval(id);
1698                 id = 0;
1699             },
1700
1701         // private
1702         startThread = function(){
1703                 if(!running){
1704                     running = true;
1705                     id = setInterval(runTasks, interval);
1706                 }
1707             },
1708
1709         // private
1710         removeTask = function(t){
1711                 removeQueue.push(t);
1712                 if(t.onStop){
1713                     t.onStop.apply(t.scope || t);
1714                 }
1715             },
1716             
1717         // private
1718         runTasks = function(){
1719                 var rqLen = removeQueue.length,
1720                         now = new Date().getTime();                                             
1721             
1722                 if(rqLen > 0){
1723                     for(var i = 0; i < rqLen; i++){
1724                         tasks.remove(removeQueue[i]);
1725                     }
1726                     removeQueue = [];
1727                     if(tasks.length < 1){
1728                         stopThread();
1729                         return;
1730                     }
1731                 }               
1732                 for(var i = 0, t, itime, rt, len = tasks.length; i < len; ++i){
1733                     t = tasks[i];
1734                     itime = now - t.taskRunTime;
1735                     if(t.interval <= itime){
1736                         rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
1737                         t.taskRunTime = now;
1738                         if(rt === false || t.taskRunCount === t.repeat){
1739                             removeTask(t);
1740                             return;
1741                         }
1742                     }
1743                     if(t.duration && t.duration <= (now - t.taskStartTime)){
1744                         removeTask(t);
1745                     }
1746                 }
1747             };
1748
1749     /**
1750      * Starts a new task.
1751      * @method start
1752      * @param {Object} task A config object that supports the following properties:<ul>
1753      * <li><code>run</code> : Function<div class="sub-desc">The function to execute each time the task is run. The
1754      * function will be called at each interval and passed the <code>args</code> argument if specified.  If a
1755      * particular scope is required, be sure to specify it using the <code>scope</code> argument.</div></li>
1756      * <li><code>interval</code> : Number<div class="sub-desc">The frequency in milliseconds with which the task
1757      * should be executed.</div></li>
1758      * <li><code>args</code> : Array<div class="sub-desc">(optional) An array of arguments to be passed to the function
1759      * specified by <code>run</code>.</div></li>
1760      * <li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (<tt>this</tt> reference) in which to execute the
1761      * <code>run</code> function. Defaults to the task config object.</div></li>
1762      * <li><code>duration</code> : Number<div class="sub-desc">(optional) The length of time in milliseconds to execute
1763      * the task before stopping automatically (defaults to indefinite).</div></li>
1764      * <li><code>repeat</code> : Number<div class="sub-desc">(optional) The number of times to execute the task before
1765      * stopping automatically (defaults to indefinite).</div></li>
1766      * </ul>
1767      * @return {Object} The task
1768      */
1769     this.start = function(task){
1770         tasks.push(task);
1771         task.taskStartTime = new Date().getTime();
1772         task.taskRunTime = 0;
1773         task.taskRunCount = 0;
1774         startThread();
1775         return task;
1776     };
1777
1778     /**
1779      * Stops an existing running task.
1780      * @method stop
1781      * @param {Object} task The task to stop
1782      * @return {Object} The task
1783      */
1784     this.stop = function(task){
1785         removeTask(task);
1786         return task;
1787     };
1788
1789     /**
1790      * Stops all tasks that are currently running.
1791      * @method stopAll
1792      */
1793     this.stopAll = function(){
1794         stopThread();
1795         for(var i = 0, len = tasks.length; i < len; i++){
1796             if(tasks[i].onStop){
1797                 tasks[i].onStop();
1798             }
1799         }
1800         tasks = [];
1801         removeQueue = [];
1802     };
1803 };
1804
1805 /**
1806  * @class Ext.TaskMgr
1807  * @extends Ext.util.TaskRunner
1808  * A static {@link Ext.util.TaskRunner} instance that can be used to start and stop arbitrary tasks.  See
1809  * {@link Ext.util.TaskRunner} for supported methods and task config properties.
1810  * <pre><code>
1811 // Start a simple clock task that updates a div once per second
1812 var task = {
1813     run: function(){
1814         Ext.fly('clock').update(new Date().format('g:i:s A'));
1815     },
1816     interval: 1000 //1 second
1817 }
1818 Ext.TaskMgr.start(task);
1819 </code></pre>
1820  * @singleton
1821  */
1822 Ext.TaskMgr = new Ext.util.TaskRunner();(function(){
1823
1824 var libFlyweight,
1825     version = Prototype.Version.split('.'),
1826     mouseEnterSupported = (parseInt(version[0]) >= 2) || (parseInt(version[1]) >= 7) || (parseInt(version[2]) >= 1),
1827     mouseCache = {},
1828     elContains = function(parent, child) {
1829        if(parent && parent.firstChild){  
1830          while(child) {
1831             if(child === parent) {
1832                 return true;
1833             }
1834             child = child.parentNode;               
1835             if(child && (child.nodeType != 1)) {
1836                 child = null;
1837             }
1838           }
1839         }
1840         return false;
1841     },
1842     checkRelatedTarget = function(e) {
1843         return !elContains(e.currentTarget, pub.getRelatedTarget(e));
1844     };
1845
1846 Ext.lib.Dom = {
1847     getViewWidth : function(full){
1848         return full ? this.getDocumentWidth() : this.getViewportWidth();
1849     },
1850
1851     getViewHeight : function(full){
1852         return full ? this.getDocumentHeight() : this.getViewportHeight();
1853     },
1854
1855     getDocumentHeight: function() { // missing from prototype?
1856         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1857         return Math.max(scrollHeight, this.getViewportHeight());
1858     },
1859
1860     getDocumentWidth: function() { // missing from prototype?
1861         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1862         return Math.max(scrollWidth, this.getViewportWidth());
1863     },
1864
1865     getViewportHeight: function() { // missing from prototype?
1866         var height = self.innerHeight;
1867         var mode = document.compatMode;
1868
1869         if ( (mode || Ext.isIE) && !Ext.isOpera ) {
1870             height = (mode == "CSS1Compat") ?
1871                     document.documentElement.clientHeight : // Standards
1872                     document.body.clientHeight; // Quirks
1873         }
1874
1875         return height;
1876     },
1877
1878     getViewportWidth: function() { // missing from prototype?
1879         var width = self.innerWidth;  // Safari
1880         var mode = document.compatMode;
1881
1882         if (mode || Ext.isIE) { // IE, Gecko, Opera
1883             width = (mode == "CSS1Compat") ?
1884                     document.documentElement.clientWidth : // Standards
1885                     document.body.clientWidth; // Quirks
1886         }
1887         return width;
1888     },
1889
1890     isAncestor : function(p, c){ // missing from prototype?
1891         var ret = false;
1892             
1893         p = Ext.getDom(p);
1894         c = Ext.getDom(c);
1895         if (p && c) {
1896             if (p.contains) {
1897                 return p.contains(c);
1898             } else if (p.compareDocumentPosition) {
1899                 return !!(p.compareDocumentPosition(c) & 16);
1900             } else {
1901                 while (c = c.parentNode) {
1902                     ret = c == p || ret;                        
1903                 }
1904             }               
1905         }   
1906         return ret;
1907     },
1908
1909     getRegion : function(el){
1910         return Ext.lib.Region.getRegion(el);
1911     },
1912
1913     getY : function(el){
1914         return this.getXY(el)[1];
1915     },
1916
1917     getX : function(el){
1918         return this.getXY(el)[0];
1919     },
1920
1921     getXY : function(el){ // this initially used Position.cumulativeOffset but it is not accurate enough
1922         var p, pe, b, scroll, bd = (document.body || document.documentElement);
1923         el = Ext.getDom(el);
1924
1925         if(el == bd){
1926             return [0, 0];
1927         }
1928
1929         if (el.getBoundingClientRect) {
1930             b = el.getBoundingClientRect();
1931             scroll = fly(document).getScroll();
1932             return [Math.round(b.left + scroll.left), Math.round(b.top + scroll.top)];
1933         }
1934         var x = 0, y = 0;
1935
1936         p = el;
1937
1938         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1939
1940         while (p) {
1941
1942             x += p.offsetLeft;
1943             y += p.offsetTop;
1944
1945             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1946                 hasAbsolute = true;
1947             }
1948
1949             if (Ext.isGecko) {
1950                 pe = fly(p);
1951
1952                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1953                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1954
1955
1956                 x += bl;
1957                 y += bt;
1958
1959
1960                 if (p != el && pe.getStyle('overflow') != 'visible') {
1961                     x += bl;
1962                     y += bt;
1963                 }
1964             }
1965             p = p.offsetParent;
1966         }
1967
1968         if (Ext.isSafari && hasAbsolute) {
1969             x -= bd.offsetLeft;
1970             y -= bd.offsetTop;
1971         }
1972
1973         if (Ext.isGecko && !hasAbsolute) {
1974             var dbd = fly(bd);
1975             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
1976             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
1977         }
1978
1979         p = el.parentNode;
1980         while (p && p != bd) {
1981             if (!Ext.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
1982                 x -= p.scrollLeft;
1983                 y -= p.scrollTop;
1984             }
1985             p = p.parentNode;
1986         }
1987         return [x, y];
1988     },
1989
1990     setXY : function(el, xy){ // this initially used Position.cumulativeOffset but it is not accurate enough
1991         el = Ext.fly(el, '_setXY');
1992         el.position();
1993         var pts = el.translatePoints(xy);
1994         if(xy[0] !== false){
1995             el.dom.style.left = pts.left + "px";
1996         }
1997         if(xy[1] !== false){
1998             el.dom.style.top = pts.top + "px";
1999         }
2000     },
2001
2002     setX : function(el, x){
2003         this.setXY(el, [x, false]);
2004     },
2005
2006     setY : function(el, y){
2007         this.setXY(el, [false, y]);
2008     }
2009 };
2010
2011 Ext.lib.Event = {
2012     getPageX : function(e){
2013         return Event.pointerX(e.browserEvent || e);
2014     },
2015
2016     getPageY : function(e){
2017         return Event.pointerY(e.browserEvent || e);
2018     },
2019
2020     getXY : function(e){
2021         e = e.browserEvent || e;
2022         return [Event.pointerX(e), Event.pointerY(e)];
2023     },
2024
2025     getTarget : function(e){
2026         return Event.element(e.browserEvent || e);
2027     },
2028
2029     resolveTextNode: Ext.isGecko ? function(node){
2030         if(!node){
2031             return;
2032         }
2033         var s = HTMLElement.prototype.toString.call(node);
2034         if(s == '[xpconnect wrapped native prototype]' || s == '[object XULElement]'){
2035             return;
2036         }
2037         return node.nodeType == 3 ? node.parentNode : node;
2038     } : function(node){
2039         return node && node.nodeType == 3 ? node.parentNode : node;
2040     },
2041
2042     getRelatedTarget: function(ev) { // missing from prototype?
2043         ev = ev.browserEvent || ev;
2044         var t = ev.relatedTarget;
2045         if (!t) {
2046             if (ev.type == "mouseout") {
2047                 t = ev.toElement;
2048             } else if (ev.type == "mouseover") {
2049                 t = ev.fromElement;
2050             }
2051         }
2052
2053         return this.resolveTextNode(t);
2054     },
2055
2056     on : function(el, eventName, fn){
2057         if((eventName == 'mouseenter' || eventName == 'mouseleave') && !mouseEnterSupported){
2058             var item = mouseCache[el.id] || (mouseCache[el.id] = {});
2059             item[eventName] = fn;
2060             fn = fn.createInterceptor(checkRelatedTarget);
2061             eventName = (eventName == 'mouseenter') ? 'mouseover' : 'mouseout';
2062         }
2063         Event.observe(el, eventName, fn, false);
2064     },
2065
2066     un : function(el, eventName, fn){
2067         if((eventName == 'mouseenter' || eventName == 'mouseleave') && !mouseEnterSupported){
2068             var item = mouseCache[el.id], 
2069                 ev = item && item[eventName];
2070
2071             if(ev){
2072                 fn = ev.fn;
2073                 delete item[eventName];
2074                 eventName = (eventName == 'mouseenter') ? 'mouseover' : 'mouseout';
2075             }
2076         }
2077         Event.stopObserving(el, eventName, fn, false);
2078     },
2079
2080     purgeElement : function(el){
2081         // no equiv?
2082     },
2083
2084     preventDefault : function(e){   // missing from prototype?
2085         e = e.browserEvent || e;
2086         if(e.preventDefault) {
2087             e.preventDefault();
2088         } else {
2089             e.returnValue = false;
2090         }
2091     },
2092
2093     stopPropagation : function(e){   // missing from prototype?
2094         e = e.browserEvent || e;
2095         if(e.stopPropagation) {
2096             e.stopPropagation();
2097         } else {
2098             e.cancelBubble = true;
2099         }
2100     },
2101
2102     stopEvent : function(e){
2103         Event.stop(e.browserEvent || e);
2104     },
2105
2106     onAvailable : function(id, fn, scope){  // no equiv
2107         var start = new Date(), iid;
2108         var f = function(){
2109             if(start.getElapsed() > 10000){
2110                 clearInterval(iid);
2111             }
2112             var el = document.getElementById(id);
2113             if(el){
2114                 clearInterval(iid);
2115                 fn.call(scope||window, el);
2116             }
2117         };
2118         iid = setInterval(f, 50);
2119     }
2120 };
2121
2122 Ext.lib.Ajax = function(){
2123     var createSuccess = function(cb){
2124          return cb.success ? function(xhr){
2125             cb.success.call(cb.scope||window, createResponse(cb, xhr));
2126          } : Ext.emptyFn;
2127     };
2128     var createFailure = function(cb){
2129          return cb.failure ? function(xhr){
2130             cb.failure.call(cb.scope||window, createResponse(cb, xhr));
2131          } : Ext.emptyFn;
2132     };
2133     var createResponse = function(cb, xhr){
2134         var headerObj = {},
2135             headerStr,              
2136             t,
2137             s;
2138
2139         try {
2140             headerStr = xhr.getAllResponseHeaders();   
2141             Ext.each(headerStr.replace(/\r\n/g, '\n').split('\n'), function(v){
2142                 t = v.indexOf(':');
2143                 if(t >= 0){
2144                     s = v.substr(0, t).toLowerCase();
2145                     if(v.charAt(t + 1) == ' '){
2146                         ++t;
2147                     }
2148                     headerObj[s] = v.substr(t + 1);
2149                 }
2150             });
2151         } catch(e) {}
2152         
2153         return {
2154             responseText: xhr.responseText,
2155             responseXML : xhr.responseXML,
2156             argument: cb.argument,
2157             status: xhr.status,
2158             statusText: xhr.statusText,
2159             getResponseHeader : function(header){return headerObj[header.toLowerCase()];},
2160             getAllResponseHeaders : function(){return headerStr}
2161         };
2162     };
2163     return {
2164         request : function(method, uri, cb, data, options){
2165             var o = {
2166                 method: method,
2167                 parameters: data || '',
2168                 timeout: cb.timeout,
2169                 onSuccess: createSuccess(cb),
2170                 onFailure: createFailure(cb)
2171             };
2172             if(options){
2173                 var hs = options.headers;
2174                 if(hs){
2175                     o.requestHeaders = hs;
2176                 }
2177                 if(options.xmlData){
2178                     method = (method ? method : (options.method ? options.method : 'POST'));
2179                     if (!hs || !hs['Content-Type']){
2180                         o.contentType = 'text/xml';
2181                     }
2182                     o.postBody = options.xmlData;
2183                     delete o.parameters;
2184                 }
2185                 if(options.jsonData){
2186                     method = (method ? method : (options.method ? options.method : 'POST'));
2187                     if (!hs || !hs['Content-Type']){
2188                         o.contentType = 'application/json';
2189                     }
2190                     o.postBody = typeof options.jsonData == 'object' ? Ext.encode(options.jsonData) : options.jsonData;
2191                     delete o.parameters;
2192                 }
2193             }
2194             new Ajax.Request(uri, o);
2195         },
2196
2197         formRequest : function(form, uri, cb, data, isUpload, sslUri){
2198             new Ajax.Request(uri, {
2199                 method: Ext.getDom(form).method ||'POST',
2200                 parameters: Form.serialize(form)+(data?'&'+data:''),
2201                 timeout: cb.timeout,
2202                 onSuccess: createSuccess(cb),
2203                 onFailure: createFailure(cb)
2204             });
2205         },
2206
2207         isCallInProgress : function(trans){
2208             return false;
2209         },
2210
2211         abort : function(trans){
2212             return false;
2213         },
2214         
2215         serializeForm : function(form){
2216             return Form.serialize(form.dom||form);
2217         }
2218     };
2219 }();
2220
2221
2222 Ext.lib.Anim = function(){
2223     
2224     var easings = {
2225         easeOut: function(pos) {
2226             return 1-Math.pow(1-pos,2);
2227         },
2228         easeIn: function(pos) {
2229             return 1-Math.pow(1-pos,2);
2230         }
2231     };
2232     var createAnim = function(cb, scope){
2233         return {
2234             stop : function(skipToLast){
2235                 this.effect.cancel();
2236             },
2237
2238             isAnimated : function(){
2239                 return this.effect.state == 'running';
2240             },
2241
2242             proxyCallback : function(){
2243                 Ext.callback(cb, scope);
2244             }
2245         };
2246     };
2247     return {
2248         scroll : function(el, args, duration, easing, cb, scope){
2249             // not supported so scroll immediately?
2250             var anim = createAnim(cb, scope);
2251             el = Ext.getDom(el);
2252             if(typeof args.scroll.to[0] == 'number'){
2253                 el.scrollLeft = args.scroll.to[0];
2254             }
2255             if(typeof args.scroll.to[1] == 'number'){
2256                 el.scrollTop = args.scroll.to[1];
2257             }
2258             anim.proxyCallback();
2259             return anim;
2260         },
2261
2262         motion : function(el, args, duration, easing, cb, scope){
2263             return this.run(el, args, duration, easing, cb, scope);
2264         },
2265
2266         color : function(el, args, duration, easing, cb, scope){
2267             return this.run(el, args, duration, easing, cb, scope);
2268         },
2269
2270         run : function(el, args, duration, easing, cb, scope, type){
2271             var o = {};
2272             for(var k in args){
2273                 switch(k){   // scriptaculous doesn't support, so convert these
2274                     case 'points':
2275                         var by, pts, e = Ext.fly(el, '_animrun');
2276                         e.position();
2277                         if(by = args.points.by){
2278                             var xy = e.getXY();
2279                             pts = e.translatePoints([xy[0]+by[0], xy[1]+by[1]]);
2280                         }else{
2281                             pts = e.translatePoints(args.points.to);
2282                         }
2283                         o.left = pts.left+'px';
2284                         o.top = pts.top+'px';
2285                     break;
2286                     case 'width':
2287                         o.width = args.width.to+'px';
2288                     break;
2289                     case 'height':
2290                         o.height = args.height.to+'px';
2291                     break;
2292                     case 'opacity':
2293                         o.opacity = String(args.opacity.to);
2294                     break;
2295                     default:
2296                         o[k] = String(args[k].to);
2297                     break;
2298                 }
2299             }
2300             var anim = createAnim(cb, scope);
2301             anim.effect = new Effect.Morph(Ext.id(el), {
2302                 duration: duration,
2303                 afterFinish: anim.proxyCallback,
2304                 transition: easings[easing] || Effect.Transitions.linear,
2305                 style: o
2306             });
2307             return anim;
2308         }
2309     };
2310 }();
2311
2312
2313 // all lib flyweight calls use their own flyweight to prevent collisions with developer flyweights
2314 function fly(el){
2315     if(!libFlyweight){
2316         libFlyweight = new Ext.Element.Flyweight();
2317     }
2318     libFlyweight.dom = el;
2319     return libFlyweight;
2320 }
2321     
2322 Ext.lib.Region = function(t, r, b, l) {
2323     this.top = t;
2324     this[1] = t;
2325     this.right = r;
2326     this.bottom = b;
2327     this.left = l;
2328     this[0] = l;
2329 };
2330
2331 Ext.lib.Region.prototype = {
2332     contains : function(region) {
2333         return ( region.left   >= this.left   &&
2334                  region.right  <= this.right  &&
2335                  region.top    >= this.top    &&
2336                  region.bottom <= this.bottom    );
2337
2338     },
2339
2340     getArea : function() {
2341         return ( (this.bottom - this.top) * (this.right - this.left) );
2342     },
2343
2344     intersect : function(region) {
2345         var t = Math.max( this.top,    region.top    );
2346         var r = Math.min( this.right,  region.right  );
2347         var b = Math.min( this.bottom, region.bottom );
2348         var l = Math.max( this.left,   region.left   );
2349
2350         if (b >= t && r >= l) {
2351             return new Ext.lib.Region(t, r, b, l);
2352         } else {
2353             return null;
2354         }
2355     },
2356     union : function(region) {
2357         var t = Math.min( this.top,    region.top    );
2358         var r = Math.max( this.right,  region.right  );
2359         var b = Math.max( this.bottom, region.bottom );
2360         var l = Math.min( this.left,   region.left   );
2361
2362         return new Ext.lib.Region(t, r, b, l);
2363     },
2364
2365     constrainTo : function(r) {
2366             this.top = this.top.constrain(r.top, r.bottom);
2367             this.bottom = this.bottom.constrain(r.top, r.bottom);
2368             this.left = this.left.constrain(r.left, r.right);
2369             this.right = this.right.constrain(r.left, r.right);
2370             return this;
2371     },
2372
2373     adjust : function(t, l, b, r){
2374         this.top += t;
2375         this.left += l;
2376         this.right += r;
2377         this.bottom += b;
2378         return this;
2379     }
2380 };
2381
2382 Ext.lib.Region.getRegion = function(el) {
2383     var p = Ext.lib.Dom.getXY(el);
2384
2385     var t = p[1];
2386     var r = p[0] + el.offsetWidth;
2387     var b = p[1] + el.offsetHeight;
2388     var l = p[0];
2389
2390     return new Ext.lib.Region(t, r, b, l);
2391 };
2392
2393 Ext.lib.Point = function(x, y) {
2394    if (Ext.isArray(x)) {
2395       y = x[1];
2396       x = x[0];
2397    }
2398     this.x = this.right = this.left = this[0] = x;
2399     this.y = this.top = this.bottom = this[1] = y;
2400 };
2401
2402 Ext.lib.Point.prototype = new Ext.lib.Region();
2403
2404
2405 // prevent IE leaks
2406 if(Ext.isIE) {
2407     function fnCleanUp() {
2408         var p = Function.prototype;
2409         delete p.createSequence;
2410         delete p.defer;
2411         delete p.createDelegate;
2412         delete p.createCallback;
2413         delete p.createInterceptor;
2414
2415         window.detachEvent("onunload", fnCleanUp);
2416     }
2417     window.attachEvent("onunload", fnCleanUp);
2418 }
2419 })();