| changeset 0 | 40c8f766c9b8 |
| -1:000000000000 | 0:40c8f766c9b8 |
|---|---|
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
2 <html xmlns:yui="http://yuilibrary.com/rdf/1.0/yui.rdf#"> |
|
3 <head> |
|
4 <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |
|
5 <title>API: yui yui-lang.js (YUI Library)</title> |
|
6 |
|
7 <link rel="stylesheet" type="text/css" href="assets/reset-fonts-grids-min.css" /> |
|
8 <link rel="stylesheet" type="text/css" href="assets/api.css" /> |
|
9 |
|
10 <script type="text/javascript" src="assets/api-js"></script> |
|
11 <script type="text/javascript" src="assets/ac-js"></script> |
|
12 </head> |
|
13 |
|
14 <body id="yahoo-com"> |
|
15 |
|
16 <div id="doc3" class="yui-t2"> |
|
17 <div id="hd"> |
|
18 <h1><a href="http://developer.yahoo.com/yui/" title="Yahoo! UI Library">Yahoo! UI Library</a></h1> |
|
19 <h3>yui <span class="subtitle">3.0.0b1</span></h3> |
|
20 <a href="./index.html" title="Yahoo! UI Library">Yahoo! UI Library</a> |
|
21 > <a href="./module_yui.html" title="yui">yui</a> |
|
22 |
|
23 > yui-lang.js (source view) |
|
24 <form onsubmit="return false"> |
|
25 <div id="propertysearch"> |
|
26 Search: <input autocomplete="off" id="searchinput" /> |
|
27 <div id="searchresults"> |
|
28 |
|
29 </div> |
|
30 </div> |
|
31 </form> |
|
32 </div> |
|
33 |
|
34 <div id="bd"> |
|
35 <div id="yui-main"> |
|
36 <div class="yui-b"> |
|
37 <form action="#" name="yui-classopts-form" method="get" id="yui-classopts-form"> |
|
38 <fieldset> |
|
39 <legend>Filters</legend> |
|
40 <span class="classopts"><input type="checkbox" name="show_private" id="show_private" /> <label for="show_private">Show Private</label></span> |
|
41 <span class="classopts"><input type="checkbox" name="show_protected" id="show_protected" /> <label for="show_protected">Show Protected</label></span> |
|
42 <span class="classopts"><input type="checkbox" name="show_deprecated" id="show_deprecated" /> <label for="show_deprecated">Show Deprecated</label></span> |
|
43 </fieldset> |
|
44 </form> |
|
45 |
|
46 <div id="srcout"> |
|
47 <style> |
|
48 #doc3 .classopts { display:none; } |
|
49 </style> |
|
50 <div class="highlight" ><pre><span class="o">(</span><span class="k">function</span><span class="o">()</span> <span class="o">{</span> |
|
51 <span class="c">/**</span> |
|
52 <span class="c"> * Provides the language utilites and extensions used by the library</span> |
|
53 <span class="c"> * @class Lang</span> |
|
54 <span class="c"> * @static</span> |
|
55 <span class="c"> */</span> |
|
56 <span class="nx">Y</span><span class="o">.</span><span class="nx">Lang</span> <span class="o">=</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">Lang</span> <span class="o">||</span> <span class="o">{};</span> |
|
57 |
|
58 <span class="k">var</span> <span class="nx">L</span> <span class="o">=</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">Lang</span><span class="o">,</span> |
|
59 |
|
60 <span class="nx">ARRAY</span> <span class="o">=</span> <span class="s1">'array'</span><span class="o">,</span> |
|
61 <span class="nx">BOOLEAN</span> <span class="o">=</span> <span class="s1">'boolean'</span><span class="o">,</span> |
|
62 <span class="nx">DATE</span> <span class="o">=</span> <span class="s1">'date'</span><span class="o">,</span> |
|
63 <span class="nx">ERROR</span> <span class="o">=</span> <span class="s1">'error'</span><span class="o">,</span> |
|
64 <span class="nx">FUNCTION</span> <span class="o">=</span> <span class="s1">'function'</span><span class="o">,</span> |
|
65 <span class="nx">NUMBER</span> <span class="o">=</span> <span class="s1">'number'</span><span class="o">,</span> |
|
66 <span class="nx">NULL</span> <span class="o">=</span> <span class="s1">'null'</span><span class="o">,</span> |
|
67 <span class="nx">OBJECT</span> <span class="o">=</span> <span class="s1">'object'</span><span class="o">,</span> |
|
68 <span class="nx">REGEX</span> <span class="o">=</span> <span class="s1">'regexp'</span><span class="o">,</span> |
|
69 <span class="nx">STRING</span> <span class="o">=</span> <span class="s1">'string'</span><span class="o">,</span> |
|
70 <span class="nx">TOSTRING</span> <span class="o">=</span> <span class="nb">Object</span><span class="o">.</span><span class="nx">prototype</span><span class="o">.</span><span class="nx">toString</span><span class="o">,</span> |
|
71 <span class="nx">UNDEFINED</span> <span class="o">=</span> <span class="s1">'undefined'</span><span class="o">,</span> |
|
72 |
|
73 <span class="nx">TYPES</span> <span class="o">=</span> <span class="o">{</span> |
|
74 <span class="s1">'undefined'</span> <span class="o">:</span> <span class="nx">UNDEFINED</span><span class="o">,</span> |
|
75 <span class="s1">'number'</span> <span class="o">:</span> <span class="nx">NUMBER</span><span class="o">,</span> |
|
76 <span class="s1">'boolean'</span> <span class="o">:</span> <span class="nx">BOOLEAN</span><span class="o">,</span> |
|
77 <span class="s1">'string'</span> <span class="o">:</span> <span class="nx">STRING</span><span class="o">,</span> |
|
78 <span class="s1">'[object Function]'</span> <span class="o">:</span> <span class="nx">FUNCTION</span><span class="o">,</span> |
|
79 <span class="s1">'[object RegExp]'</span> <span class="o">:</span> <span class="nx">REGEX</span><span class="o">,</span> |
|
80 <span class="s1">'[object Array]'</span> <span class="o">:</span> <span class="nx">ARRAY</span><span class="o">,</span> |
|
81 <span class="s1">'[object Date]'</span> <span class="o">:</span> <span class="nx">DATE</span><span class="o">,</span> |
|
82 <span class="s1">'[object Error]'</span> <span class="o">:</span> <span class="nx">ERROR</span> |
|
83 <span class="o">},</span> |
|
84 |
|
85 <span class="nx">TRIMREGEX</span> <span class="o">=</span> <span class="sr">/^\s+|\s+$/g</span><span class="o">,</span> |
|
86 <span class="nx">EMPTYSTRING</span> <span class="o">=</span> <span class="s1">''</span><span class="o">;</span> |
|
87 |
|
88 <span class="c">/**</span> |
|
89 <span class="c"> * Determines whether or not the provided item is an array.</span> |
|
90 <span class="c"> * Returns false for array-like collections such as the</span> |
|
91 <span class="c"> * function arguments collection or HTMLElement collection</span> |
|
92 <span class="c"> * will return false. You can use @see Array.test if you </span> |
|
93 <span class="c"> * want to</span> |
|
94 <span class="c"> * @method isArray</span> |
|
95 <span class="c"> * @static</span> |
|
96 <span class="c"> * @param o The object to test</span> |
|
97 <span class="c"> * @return {boolean} true if o is an array</span> |
|
98 <span class="c"> */</span> |
|
99 <span class="nx">L</span><span class="o">.</span><span class="nx">isArray</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
100 <span class="k">return</span> <span class="nx">L</span><span class="o">.</span><span class="nx">type</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">===</span> <span class="nx">ARRAY</span><span class="o">;</span> |
|
101 <span class="o">};</span> |
|
102 |
|
103 <span class="c">/**</span> |
|
104 <span class="c"> * Determines whether or not the provided item is a boolean</span> |
|
105 <span class="c"> * @method isBoolean</span> |
|
106 <span class="c"> * @static</span> |
|
107 <span class="c"> * @param o The object to test</span> |
|
108 <span class="c"> * @return {boolean} true if o is a boolean</span> |
|
109 <span class="c"> */</span> |
|
110 <span class="nx">L</span><span class="o">.</span><span class="nx">isBoolean</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
111 <span class="k">return</span> <span class="k">typeof</span> <span class="nx">o</span> <span class="o">===</span> <span class="nx">BOOLEAN</span><span class="o">;</span> |
|
112 <span class="o">};</span> |
|
113 |
|
114 <span class="c">/**</span> |
|
115 <span class="c"> * Determines whether or not the provided item is a function</span> |
|
116 <span class="c"> * Note: Internet Explorer thinks certain functions are objects:</span> |
|
117 <span class="c"> *</span> |
|
118 <span class="c"> * var obj = document.createElement("object");</span> |
|
119 <span class="c"> * Y.Lang.isFunction(obj.getAttribute) // reports false in IE</span> |
|
120 <span class="c"> *</span> |
|
121 <span class="c"> * var input = document.createElement("input"); // append to body</span> |
|
122 <span class="c"> * Y.Lang.isFunction(input.focus) // reports false in IE</span> |
|
123 <span class="c"> *</span> |
|
124 <span class="c"> * You will have to implement additional tests if these functions</span> |
|
125 <span class="c"> * matter to you.</span> |
|
126 <span class="c"> *</span> |
|
127 <span class="c"> * @method isFunction</span> |
|
128 <span class="c"> * @static</span> |
|
129 <span class="c"> * @param o The object to test</span> |
|
130 <span class="c"> * @return {boolean} true if o is a function</span> |
|
131 <span class="c"> */</span> |
|
132 <span class="nx">L</span><span class="o">.</span><span class="nx">isFunction</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
133 <span class="k">return</span> <span class="nx">L</span><span class="o">.</span><span class="nx">type</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">===</span> <span class="nx">FUNCTION</span><span class="o">;</span> |
|
134 <span class="o">};</span> |
|
135 |
|
136 <span class="c">/**</span> |
|
137 <span class="c"> * Determines whether or not the supplied item is a date instance</span> |
|
138 <span class="c"> * @method isDate</span> |
|
139 <span class="c"> * @static</span> |
|
140 <span class="c"> * @param o The object to test</span> |
|
141 <span class="c"> * @return {boolean} true if o is a date</span> |
|
142 <span class="c"> */</span> |
|
143 <span class="nx">L</span><span class="o">.</span><span class="nx">isDate</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
144 <span class="c">// return o instanceof Date;</span> |
|
145 <span class="c"></span> <span class="k">return</span> <span class="nx">L</span><span class="o">.</span><span class="nx">type</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">===</span> <span class="nx">DATE</span><span class="o">;</span> |
|
146 <span class="o">};</span> |
|
147 |
|
148 <span class="c">/**</span> |
|
149 <span class="c"> * Determines whether or not the provided item is null</span> |
|
150 <span class="c"> * @method isNull</span> |
|
151 <span class="c"> * @static</span> |
|
152 <span class="c"> * @param o The object to test</span> |
|
153 <span class="c"> * @return {boolean} true if o is null</span> |
|
154 <span class="c"> */</span> |
|
155 <span class="nx">L</span><span class="o">.</span><span class="nx">isNull</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
156 <span class="k">return</span> <span class="nx">o</span> <span class="o">===</span> <span class="kc">null</span><span class="o">;</span> |
|
157 <span class="o">};</span> |
|
158 |
|
159 <span class="c">/**</span> |
|
160 <span class="c"> * Determines whether or not the provided item is a legal number</span> |
|
161 <span class="c"> * @method isNumber</span> |
|
162 <span class="c"> * @static</span> |
|
163 <span class="c"> * @param o The object to test</span> |
|
164 <span class="c"> * @return {boolean} true if o is a number</span> |
|
165 <span class="c"> */</span> |
|
166 <span class="nx">L</span><span class="o">.</span><span class="nx">isNumber</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
167 <span class="k">return</span> <span class="k">typeof</span> <span class="nx">o</span> <span class="o">===</span> <span class="nx">NUMBER</span> <span class="o">&&</span> <span class="nb">isFinite</span><span class="o">(</span><span class="nx">o</span><span class="o">);</span> |
|
168 <span class="o">};</span> |
|
169 |
|
170 <span class="c">/**</span> |
|
171 <span class="c"> * Determines whether or not the provided item is of type object</span> |
|
172 <span class="c"> * or function</span> |
|
173 <span class="c"> * @method isObject</span> |
|
174 <span class="c"> * @static</span> |
|
175 <span class="c"> * @param o The object to test</span> |
|
176 <span class="c"> * @param failfn {boolean} fail if the input is a function</span> |
|
177 <span class="c"> * @return {boolean} true if o is an object</span> |
|
178 <span class="c"> */</span> |
|
179 <span class="nx">L</span><span class="o">.</span><span class="nx">isObject</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">,</span> <span class="nx">failfn</span><span class="o">)</span> <span class="o">{</span> |
|
180 <span class="k">return</span> <span class="o">(</span><span class="nx">o</span> <span class="o">&&</span> <span class="o">(</span><span class="k">typeof</span> <span class="nx">o</span> <span class="o">===</span> <span class="nx">OBJECT</span> <span class="o">||</span> <span class="o">(!</span><span class="nx">failfn</span> <span class="o">&&</span> <span class="nx">L</span><span class="o">.</span><span class="nx">isFunction</span><span class="o">(</span><span class="nx">o</span><span class="o">))))</span> <span class="o">||</span> <span class="kc">false</span><span class="o">;</span> |
|
181 <span class="o">};</span> |
|
182 |
|
183 <span class="c">/**</span> |
|
184 <span class="c"> * Determines whether or not the provided item is a string</span> |
|
185 <span class="c"> * @method isString</span> |
|
186 <span class="c"> * @static</span> |
|
187 <span class="c"> * @param o The object to test</span> |
|
188 <span class="c"> * @return {boolean} true if o is a string</span> |
|
189 <span class="c"> */</span> |
|
190 <span class="nx">L</span><span class="o">.</span><span class="nx">isString</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
191 <span class="k">return</span> <span class="k">typeof</span> <span class="nx">o</span> <span class="o">===</span> <span class="nx">STRING</span><span class="o">;</span> |
|
192 <span class="o">};</span> |
|
193 |
|
194 <span class="c">/**</span> |
|
195 <span class="c"> * Determines whether or not the provided item is undefined</span> |
|
196 <span class="c"> * @method isUndefined</span> |
|
197 <span class="c"> * @static</span> |
|
198 <span class="c"> * @param o The object to test</span> |
|
199 <span class="c"> * @return {boolean} true if o is undefined</span> |
|
200 <span class="c"> */</span> |
|
201 <span class="nx">L</span><span class="o">.</span><span class="nx">isUndefined</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
202 <span class="k">return</span> <span class="k">typeof</span> <span class="nx">o</span> <span class="o">===</span> <span class="nx">UNDEFINED</span><span class="o">;</span> |
|
203 <span class="o">};</span> |
|
204 |
|
205 <span class="c">/**</span> |
|
206 <span class="c"> * Returns a string without any leading or trailing whitespace. If </span> |
|
207 <span class="c"> * the input is not a string, the input will be returned untouched.</span> |
|
208 <span class="c"> * @method trim</span> |
|
209 <span class="c"> * @static</span> |
|
210 <span class="c"> * @param s {string} the string to trim</span> |
|
211 <span class="c"> * @return {string} the trimmed string</span> |
|
212 <span class="c"> */</span> |
|
213 <span class="nx">L</span><span class="o">.</span><span class="nx">trim</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">s</span><span class="o">){</span> |
|
214 <span class="k">try</span> <span class="o">{</span> |
|
215 <span class="k">return</span> <span class="nx">s</span><span class="o">.</span><span class="nx">replace</span><span class="o">(</span><span class="nx">TRIMREGEX</span><span class="o">,</span> <span class="nx">EMPTYSTRING</span><span class="o">);</span> |
|
216 <span class="o">}</span> <span class="k">catch</span><span class="o">(</span><span class="nx">e</span><span class="o">)</span> <span class="o">{</span> |
|
217 <span class="k">return</span> <span class="nx">s</span><span class="o">;</span> |
|
218 <span class="o">}</span> |
|
219 <span class="o">};</span> |
|
220 |
|
221 <span class="c">/**</span> |
|
222 <span class="c"> * A convenience method for detecting a legitimate non-null value.</span> |
|
223 <span class="c"> * Returns false for null/undefined/NaN, true for other values, </span> |
|
224 <span class="c"> * including 0/false/''</span> |
|
225 <span class="c"> * @method isValue</span> |
|
226 <span class="c"> * @static</span> |
|
227 <span class="c"> * @param o The item to test</span> |
|
228 <span class="c"> * @return {boolean} true if it is not null/undefined/NaN || false</span> |
|
229 <span class="c"> */</span> |
|
230 <span class="nx">L</span><span class="o">.</span><span class="nx">isValue</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
231 <span class="k">var</span> <span class="nx">t</span> <span class="o">=</span> <span class="nx">L</span><span class="o">.</span><span class="nx">type</span><span class="o">(</span><span class="nx">o</span><span class="o">);</span> |
|
232 <span class="nx">switch</span> <span class="o">(</span><span class="nx">t</span><span class="o">)</span> <span class="o">{</span> |
|
233 <span class="nx">case</span> <span class="nx">NUMBER</span><span class="o">:</span> |
|
234 <span class="k">return</span> <span class="nb">isFinite</span><span class="o">(</span><span class="nx">o</span><span class="o">);</span> |
|
235 <span class="nx">case</span> <span class="nx">NULL</span><span class="o">:</span> |
|
236 <span class="nx">case</span> <span class="nx">UNDEFINED</span><span class="o">:</span> |
|
237 <span class="k">return</span> <span class="kc">false</span><span class="o">;</span> |
|
238 <span class="nx">default</span><span class="o">:</span> |
|
239 <span class="k">return</span> <span class="o">!!(</span><span class="nx">t</span><span class="o">);</span> |
|
240 <span class="o">}</span> |
|
241 <span class="o">};</span> |
|
242 |
|
243 <span class="c">/**</span> |
|
244 <span class="c"> * Returns a string representing the type of the item passed in.</span> |
|
245 <span class="c"> * @method type</span> |
|
246 <span class="c"> * @param o the item to test</span> |
|
247 <span class="c"> * @return {string} the detected type</span> |
|
248 <span class="c"> */</span> |
|
249 <span class="nx">L</span><span class="o">.</span><span class="nx">type</span> <span class="o">=</span> <span class="k">function</span> <span class="o">(</span><span class="nx">o</span><span class="o">)</span> <span class="o">{</span> |
|
250 <span class="k">return</span> <span class="nx">TYPES</span><span class="o">[</span><span class="k">typeof</span> <span class="nx">o</span><span class="o">]</span> <span class="o">||</span> <span class="nx">TYPES</span><span class="o">[</span><span class="nx">TOSTRING</span><span class="o">.</span><span class="nx">call</span><span class="o">(</span><span class="nx">o</span><span class="o">)]</span> <span class="o">||</span> <span class="o">(</span><span class="nx">o</span> <span class="o">?</span> <span class="nx">OBJECT</span> <span class="o">:</span> <span class="nx">NULL</span><span class="o">);</span> |
|
251 <span class="o">};</span> |
|
252 |
|
253 <span class="o">})();</span> |
|
254 </pre></div> |
|
255 </div> |
|
256 </div> |
|
257 </div> |
|
258 <div class="yui-b"> |
|
259 <div class="nav"> |
|
260 |
|
261 <div id="moduleList" class="module"> |
|
262 <h4>Modules</h4> |
|
263 <ul class="content"> |
|
264 <li class=""><a href="module_anim.html" title="anim">anim</a></li> |
|
265 <li class=""><a href="module_attribute.html" title="attribute">attribute</a></li> |
|
266 <li class=""><a href="module_base.html" title="base">base</a></li> |
|
267 <li class=""><a href="module_cache.html" title="cache">cache</a></li> |
|
268 <li class=""><a href="module_classnamemanager.html" title="classnamemanager">classnamemanager</a></li> |
|
269 <li class=""><a href="module_collection.html" title="collection">collection</a></li> |
|
270 <li class=""><a href="module_console.html" title="console">console</a></li> |
|
271 <li class=""><a href="module_console-filters.html" title="console-filters">console-filters</a></li> |
|
272 <li class=""><a href="module_cookie.html" title="cookie">cookie</a></li> |
|
273 <li class=""><a href="module_dataschema.html" title="dataschema">dataschema</a></li> |
|
274 <li class=""><a href="module_datasource.html" title="datasource">datasource</a></li> |
|
275 <li class=""><a href="module_datatype.html" title="datatype">datatype</a></li> |
|
276 <li class=""><a href="module_dd.html" title="dd">dd</a></li> |
|
277 <li class=""><a href="module_dom.html" title="dom">dom</a></li> |
|
278 <li class=""><a href="module_dump.html" title="dump">dump</a></li> |
|
279 <li class=""><a href="module_event.html" title="event">event</a></li> |
|
280 <li class=""><a href="module_event-custom.html" title="event-custom">event-custom</a></li> |
|
281 <li class=""><a href="module_event-simulate.html" title="event-simulate">event-simulate</a></li> |
|
282 <li class=""><a href="module_history.html" title="history">history</a></li> |
|
283 <li class=""><a href="module_imageloader.html" title="imageloader">imageloader</a></li> |
|
284 <li class=""><a href="module_io.html" title="io">io</a></li> |
|
285 <li class=""><a href="module_json.html" title="json">json</a></li> |
|
286 <li class=""><a href="module_node.html" title="node">node</a></li> |
|
287 <li class=""><a href="module_node-focusmanager.html" title="node-focusmanager">node-focusmanager</a></li> |
|
288 <li class=""><a href="module_node-menunav.html" title="node-menunav">node-menunav</a></li> |
|
289 <li class=""><a href="module_oop.html" title="oop">oop</a></li> |
|
290 <li class=""><a href="module_overlay.html" title="overlay">overlay</a></li> |
|
291 <li class=""><a href="module_plugin.html" title="plugin">plugin</a></li> |
|
292 <li class=""><a href="module_profiler.html" title="profiler">profiler</a></li> |
|
293 <li class=""><a href="module_queue.html" title="queue">queue</a></li> |
|
294 <li class=""><a href="module_slider.html" title="slider">slider</a></li> |
|
295 <li class=""><a href="module_stylesheet.html" title="stylesheet">stylesheet</a></li> |
|
296 <li class=""><a href="module_substitute.html" title="substitute">substitute</a></li> |
|
297 <li class=""><a href="module_test.html" title="test">test</a></li> |
|
298 <li class=""><a href="module_widget.html" title="widget">widget</a></li> |
|
299 <li class=""><a href="module_widget-position.html" title="widget-position">widget-position</a></li> |
|
300 <li class=""><a href="module_widget-position-ext.html" title="widget-position-ext">widget-position-ext</a></li> |
|
301 <li class=""><a href="module_widget-stack.html" title="widget-stack">widget-stack</a></li> |
|
302 <li class=""><a href="module_widget-stdmod.html" title="widget-stdmod">widget-stdmod</a></li> |
|
303 <li class="selected"><a href="module_yui.html" title="yui">yui</a></li> |
|
304 </ul> |
|
305 </div> |
|
306 |
|
307 <div id="classList" class="module"> |
|
308 <h4>Classes</h4> |
|
309 <ul class="content"> |
|
310 <li class=""><a href="Array.html" title="Array">Array</a></li> |
|
311 <li class=""><a href="config.html" title="config">config</a></li> |
|
312 <li class=""><a href="Get.html" title="Get">Get</a></li> |
|
313 <li class=""><a href="Lang.html" title="Lang">Lang</a></li> |
|
314 <li class=""><a href="Loader.html" title="Loader">Loader</a></li> |
|
315 <li class=""><a href="Object.html" title="Object">Object</a></li> |
|
316 <li class=""><a href="UA.html" title="UA">UA</a></li> |
|
317 <li class=""><a href="YUI.html" title="YUI">YUI</a></li> |
|
318 </ul> |
|
319 </div> |
|
320 |
|
321 <div id="fileList" class="module"> |
|
322 <h4>Files</h4> |
|
323 <ul class="content"> |
|
324 <li class=""><a href="_module.js.html" title="_module.js">_module.js</a></li> |
|
325 <li class=""><a href="get.js.html" title="get.js">get.js</a></li> |
|
326 <li class=""><a href="loader.js.html" title="loader.js">loader.js</a></li> |
|
327 <li class=""><a href="yui-array.js.html" title="yui-array.js">yui-array.js</a></li> |
|
328 <li class=""><a href="yui-base.js.html" title="yui-base.js">yui-base.js</a></li> |
|
329 <li class=""><a href="yui-core.js.html" title="yui-core.js">yui-core.js</a></li> |
|
330 <li class=""><a href="yui-init.js.html" title="yui-init.js">yui-init.js</a></li> |
|
331 <li class="selected"><a href="yui-lang.js.html" title="yui-lang.js">yui-lang.js</a></li> |
|
332 <li class=""><a href="yui-later.js.html" title="yui-later.js">yui-later.js</a></li> |
|
333 <li class=""><a href="yui-log.js.html" title="yui-log.js">yui-log.js</a></li> |
|
334 <li class=""><a href="yui-object.js.html" title="yui-object.js">yui-object.js</a></li> |
|
335 <li class=""><a href="yui-ua.js.html" title="yui-ua.js">yui-ua.js</a></li> |
|
336 <li class=""><a href="yui.js.html" title="yui.js">yui.js</a></li> |
|
337 </ul> |
|
338 </div> |
|
339 |
|
340 |
|
341 |
|
342 |
|
343 |
|
344 </div> |
|
345 </div> |
|
346 </div> |
|
347 <div id="ft"> |
|
348 <hr /> |
|
349 Copyright © 2009 Yahoo! Inc. All rights reserved. |
|
350 </div> |
|
351 </div> |
|
352 <script type="text/javascript"> |
|
353 ALL_YUI_PROPS = [{"access": "", "host": "Object", "name": "()", "url": "Object.html#method_()", "type": "method"}, {"access": "", "host": "Array", "name": "()", "url": "Array.html#method_()", "type": "method"}, {"access": "", "host": "Get", "name": "abort", "url": "Get.html#method_abort", "type": "method"}, {"access": "", "host": "YUI", "name": "add", "url": "YUI.html#method_add", "type": "method"}, {"access": "", "host": "Loader", "name": "addModule", "url": "Loader.html#method_addModule", "type": "method"}, {"access": "private", "host": "Loader", "name": "_addSkin", "url": "Loader.html#method__addSkin", "type": "method"}, {"access": "", "host": "UA", "name": "air", "url": "UA.html#property_air", "type": "property"}, {"access": "", "host": "Loader", "name": "allowRollup", "url": "Loader.html#property_allowRollup", "type": "property"}, {"access": "", "host": "YUI", "name": "applyTo", "url": "YUI.html#method_applyTo", "type": "method"}, {"access": "", "host": "Loader", "name": "attaching", "url": "Loader.html#property_attaching", "type": "property"}, {"access": "private", "host": "Get", "name": "_autoPurge", "url": "Get.html#method__autoPurge", "type": "method"}, {"access": "", "host": "YUI", "name": "available", "url": "YUI.html#event_available", "type": "event"}, {"access": "", "host": "config", "name": "base", "url": "config.html#property_base", "type": "property"}, {"access": "", "host": "Loader", "name": "base", "url": "Loader.html#property_base", "type": "property"}, {"access": "", "host": "YUI", "name": "blur", "url": "YUI.html#event_blur", "type": "event"}, {"access": "", "host": "YUI", "name": "cached", "url": "YUI.html#method_cached", "type": "method"}, {"access": "", "host": "UA", "name": "caja", "url": "UA.html#property_caja", "type": "property"}, {"access": "", "host": "Loader", "name": "calculate", "url": "Loader.html#method_calculate", "type": "method"}, {"access": "", "host": "config", "name": "charset", "url": "config.html#property_charset", "type": "property"}, {"access": "", "host": "Loader", "name": "charset", "url": "Loader.html#property_charset", "type": "property"}, {"access": "", "host": "config", "name": "combine", "url": "config.html#property_combine", "type": "property"}, {"access": "", "host": "Loader", "name": "combine", "url": "Loader.html#property_combine", "type": "property"}, {"access": "", "host": "config", "name": "comboBase", "url": "config.html#property_comboBase", "type": "property"}, {"access": "", "host": "Loader", "name": "comboBase", "url": "Loader.html#property_comboBase", "type": "property"}, {"access": "", "host": "YUI", "name": "contentready", "url": "YUI.html#event_contentready", "type": "event"}, {"access": "", "host": "Loader", "name": "context", "url": "Loader.html#property_context", "type": "property"}, {"access": "", "host": "config", "name": "core", "url": "config.html#property_core", "type": "property"}, {"access": "", "host": "Get", "name": "css", "url": "Get.html#method_css", "type": "method"}, {"access": "", "host": "config", "name": "cssAttributes", "url": "config.html#property_cssAttributes", "type": "property"}, {"access": "", "host": "Loader", "name": "cssAttributes", "url": "Loader.html#property_cssAttributes", "type": "property"}, {"access": "", "host": "Loader", "name": "data", "url": "Loader.html#property_data", "type": "property"}, {"access": "", "host": "config", "name": "dateFormat", "url": "config.html#property_dateFormat", "type": "property"}, {"access": "", "host": "config", "name": "debug", "url": "config.html#property_debug", "type": "property"}, {"access": "", "host": "YUI", "name": "delegate", "url": "YUI.html#event_delegate", "type": "event"}, {"access": "", "host": "Loader", "name": "dirty", "url": "Loader.html#property_dirty", "type": "property"}, {"access": "", "host": "config", "name": "doc", "url": "config.html#property_doc", "type": "property"}, {"access": "", "host": "YUI", "name": "domready", "url": "YUI.html#event_domready", "type": "event"}, {"access": "", "host": "Object", "name": "each", "url": "Object.html#method_each", "type": "method"}, {"access": "", "host": "Array", "name": "each", "url": "Array.html#method_each", "type": "method"}, {"access": "private", "host": "Get", "name": "_end", "url": "Get.html#method__end", "type": "method"}, {"access": "", "host": "YUI", "name": "error", "url": "YUI.html#method_error", "type": "method"}, {"access": "", "host": "YUI", "name": "event:ready", "url": "YUI.html#event_event:ready", "type": "event"}, {"access": "private", "host": "Loader", "name": "_explode", "url": "Loader.html#method__explode", "type": "method"}, {"access": "private", "host": "Object", "name": "_extract", "url": "Object.html#method__extract", "type": "method"}, {"access": "", "host": "config", "name": "filter", "url": "config.html#property_filter", "type": "property"}, {"access": "", "host": "Loader", "name": "filter", "url": "Loader.html#property_filter", "type": "property"}, {"access": "private", "host": "Loader", "name": "_filter", "url": "Loader.html#method__filter", "type": "method"}, {"access": "", "host": "config", "name": "filters", "url": "config.html#property_filters", "type": "property"}, {"access": "", "host": "Loader", "name": "filters", "url": "Loader.html#property_filters", "type": "property"}, {"access": "private", "host": "Get", "name": "_finalize", "url": "Get.html#method__finalize", "type": "method"}, {"access": "private", "host": "Get", "name": "_finish", "url": "Get.html#method__finish", "type": "method"}, {"access": "", "host": "YUI", "name": "focus", "url": "YUI.html#event_focus", "type": "event"}, {"access": "", "host": "config", "name": "force", "url": "config.html#property_force", "type": "property"}, {"access": "", "host": "Loader", "name": "force", "url": "Loader.html#property_force", "type": "property"}, {"access": "", "host": "Loader", "name": "formatSkin", "url": "Loader.html#method_formatSkin", "type": "method"}, {"access": "", "host": "UA", "name": "gecko", "url": "UA.html#property_gecko", "type": "property"}, {"access": "", "host": "Loader", "name": "getProvides", "url": "Loader.html#method_getProvides", "type": "method"}, {"access": "", "host": "Loader", "name": "getRequires", "url": "Loader.html#method_getRequires", "type": "method"}, {"access": "", "host": "Object", "name": "getValue", "url": "Object.html#method_getValue", "type": "method"}, {"access": "", "host": "YUI", "name": "Global", "url": "YUI.html#property_Global", "type": "property"}, {"access": "", "host": "YUI", "name": "guid", "url": "YUI.html#method_guid", "type": "method"}, {"access": "", "host": "Array", "name": "hash", "url": "Array.html#method_hash", "type": "method"}, {"access": "", "host": "Object", "name": "hasKey", "url": "Object.html#method_hasKey", "type": "method"}, {"access": "", "host": "Object", "name": "hasValue", "url": "Object.html#method_hasValue", "type": "method"}, {"access": "", "host": "UA", "name": "ie", "url": "UA.html#property_ie", "type": "property"}, {"access": "", "host": "config", "name": "ignore", "url": "config.html#property_ignore", "type": "property"}, {"access": "", "host": "Loader", "name": "ignore", "url": "Loader.html#property_ignore", "type": "property"}, {"access": "", "host": "Loader", "name": "ignoreRegistered", "url": "Loader.html#property_ignoreRegistered", "type": "property"}, {"access": "", "host": "Array", "name": "indexOf", "url": "Array.html#method_indexOf", "type": "method"}, {"access": "private", "host": "YUI", "name": "_init", "url": "YUI.html#method__init", "type": "method"}, {"access": "", "host": "config", "name": "injected", "url": "config.html#property_injected", "type": "property"}, {"access": "", "host": "Loader", "name": "insert", "url": "Loader.html#method_insert", "type": "method"}, {"access": "", "host": "config", "name": "insertBefore", "url": "config.html#property_insertBefore", "type": "property"}, {"access": "", "host": "Loader", "name": "insertBefore", "url": "Loader.html#property_insertBefore", "type": "property"}, {"access": "", "host": "Loader", "name": "inserted", "url": "Loader.html#property_inserted", "type": "property"}, {"access": "private", "host": "Loader", "name": "_internalCallback", "url": "Loader.html#property__internalCallback", "type": "property"}, {"access": "", "host": "Lang", "name": "isArray", "url": "Lang.html#method_isArray", "type": "method"}, {"access": "", "host": "Lang", "name": "isBoolean", "url": "Lang.html#method_isBoolean", "type": "method"}, {"access": "", "host": "Lang", "name": "isDate", "url": "Lang.html#method_isDate", "type": "method"}, {"access": "", "host": "Lang", "name": "isFunction", "url": "Lang.html#method_isFunction", "type": "method"}, {"access": "", "host": "Lang", "name": "isNull", "url": "Lang.html#method_isNull", "type": "method"}, {"access": "", "host": "Lang", "name": "isNumber", "url": "Lang.html#method_isNumber", "type": "method"}, {"access": "", "host": "Lang", "name": "isObject", "url": "Lang.html#method_isObject", "type": "method"}, {"access": "", "host": "Lang", "name": "isString", "url": "Lang.html#method_isString", "type": "method"}, {"access": "", "host": "Lang", "name": "isUndefined", "url": "Lang.html#method_isUndefined", "type": "method"}, {"access": "", "host": "Lang", "name": "isValue", "url": "Lang.html#method_isValue", "type": "method"}, {"access": "", "host": "config", "name": "jsAttributes", "url": "config.html#property_jsAttributes", "type": "property"}, {"access": "", "host": "Loader", "name": "jsAttributes", "url": "Loader.html#property_jsAttributes", "type": "property"}, {"access": "", "host": "YUI", "name": "key", "url": "YUI.html#event_key", "type": "event"}, {"access": "", "host": "Object", "name": "keys", "url": "Object.html#method_keys", "type": "method"}, {"access": "", "host": "YUI", "name": "later", "url": "YUI.html#method_later", "type": "method"}, {"access": "private", "host": "Get", "name": "_linkNode", "url": "Get.html#method__linkNode", "type": "method"}, {"access": "", "host": "Loader", "name": "loaded", "url": "Loader.html#property_loaded", "type": "property"}, {"access": "", "host": "Loader", "name": "loadNext", "url": "Loader.html#method_loadNext", "type": "method"}, {"access": "", "host": "Loader", "name": "loadOptional", "url": "Loader.html#property_loadOptional", "type": "property"}, {"access": "", "host": "config", "name": "locale", "url": "config.html#property_locale", "type": "property"}, {"access": "", "host": "YUI", "name": "log", "url": "YUI.html#method_log", "type": "method"}, {"access": "", "host": "config", "name": "logExclude", "url": "config.html#property_logExclude", "type": "property"}, {"access": "", "host": "config", "name": "logInclude", "url": "config.html#property_logInclude", "type": "property"}, {"access": "", "host": "YUI", "name": "merge", "url": "YUI.html#method_merge", "type": "method"}, {"access": "", "host": "YUI", "name": "message", "url": "YUI.html#method_message", "type": "method"}, {"access": "", "host": "YUI", "name": "mix", "url": "YUI.html#method_mix", "type": "method"}, {"access": "", "host": "UA", "name": "mobile", "url": "UA.html#property_mobile", "type": "property"}, {"access": "", "host": "Loader", "name": "moduleInfo", "url": "Loader.html#property_moduleInfo", "type": "property"}, {"access": "", "host": "config", "name": "modules", "url": "config.html#property_modules", "type": "property"}, {"access": "", "host": "YUI", "name": "mouseenter", "url": "YUI.html#event_mouseenter", "type": "event"}, {"access": "", "host": "YUI", "name": "mouseleave", "url": "YUI.html#event_mouseleave", "type": "event"}, {"access": "", "host": "YUI", "name": "namespace", "url": "YUI.html#method_namespace", "type": "method"}, {"access": "private", "host": "Get", "name": "_next", "url": "Get.html#method__next", "type": "method"}, {"access": "private", "host": "Get", "name": "_node", "url": "Get.html#method__node", "type": "method"}, {"access": "", "host": "Array", "name": "numericSort", "url": "Array.html#method_numericSort", "type": "method"}, {"access": "", "host": "config", "name": "onCSS", "url": "config.html#property_onCSS", "type": "property"}, {"access": "", "host": "Loader", "name": "onCSS", "url": "Loader.html#method_onCSS", "type": "method"}, {"access": "", "host": "Loader", "name": "onFailure", "url": "Loader.html#method_onFailure", "type": "method"}, {"access": "", "host": "Loader", "name": "onProgress", "url": "Loader.html#method_onProgress", "type": "method"}, {"access": "", "host": "Loader", "name": "onSuccess", "url": "Loader.html#method_onSuccess", "type": "method"}, {"access": "", "host": "Loader", "name": "onTimeout", "url": "Loader.html#method_onTimeout", "type": "method"}, {"access": "", "host": "UA", "name": "opera", "url": "UA.html#property_opera", "type": "property"}, {"access": "", "host": "UA", "name": "os", "url": "UA.html#property_os", "type": "property"}, {"access": "", "host": "Object", "name": "owns", "url": "Object.html#method_owns", "type": "method"}, {"access": "", "host": "config", "name": "pollInterval", "url": "config.html#property_pollInterval", "type": "property"}, {"access": "private", "host": "Get", "name": "_purge", "url": "Get.html#method__purge", "type": "method"}, {"access": "private", "host": "Get", "name": "PURGE_THRESH", "url": "Get.html#property_PURGE_THRESH", "type": "property"}, {"access": "", "host": "config", "name": "purgethreshold", "url": "config.html#property_purgethreshold", "type": "property"}, {"access": "private", "host": "Get", "name": "purging", "url": "Get.html#property_purging", "type": "property"}, {"access": "private", "host": "Get", "name": "qidx", "url": "Get.html#property_qidx", "type": "property"}, {"access": "private", "host": "Get", "name": "queue", "url": "Get.html#method_queue", "type": "method"}, {"access": "private", "host": "Get", "name": "queues", "url": "Get.html#property_queues", "type": "property"}, {"access": "private", "host": "Loader", "name": "_reduce", "url": "Loader.html#method__reduce", "type": "method"}, {"access": "", "host": "Loader", "name": "require", "url": "Loader.html#method_require", "type": "method"}, {"access": "", "host": "Loader", "name": "required", "url": "Loader.html#property_required", "type": "property"}, {"access": "private", "host": "Get", "name": "_returnData", "url": "Get.html#method__returnData", "type": "method"}, {"access": "private", "host": "Loader", "name": "_rollup", "url": "Loader.html#method__rollup", "type": "method"}, {"access": "", "host": "Loader", "name": "rollups", "url": "Loader.html#property_rollups", "type": "property"}, {"access": "", "host": "config", "name": "root", "url": "config.html#property_root", "type": "property"}, {"access": "", "host": "Loader", "name": "root", "url": "Loader.html#property_root", "type": "property"}, {"access": "", "host": "Get", "name": "script", "url": "Get.html#method_script", "type": "method"}, {"access": "private", "host": "Get", "name": "_scriptNode", "url": "Get.html#method__scriptNode", "type": "method"}, {"access": "", "host": "UA", "name": "secure", "url": "UA.html#property_secure", "type": "property"}, {"access": "", "host": "config", "name": "secureBase", "url": "config.html#property_secureBase", "type": "property"}, {"access": "private", "host": "YUI", "name": "_setup", "url": "YUI.html#method__setup", "type": "method"}, {"access": "private", "host": "Loader", "name": "_setup", "url": "Loader.html#method__setup", "type": "method"}, {"access": "", "host": "Object", "name": "setValue", "url": "Object.html#method_setValue", "type": "method"}, {"access": "", "host": "YUI", "name": "simulate", "url": "YUI.html#method_simulate", "type": "method"}, {"access": "", "host": "Object", "name": "size", "url": "Object.html#method_size", "type": "method"}, {"access": "", "host": "Loader", "name": "skin", "url": "Loader.html#property_skin", "type": "property"}, {"access": "", "host": "Loader", "name": "skipped", "url": "Loader.html#property_skipped", "type": "property"}, {"access": "", "host": "Array", "name": "some", "url": "Array.html#method_some", "type": "method"}, {"access": "private", "host": "Loader", "name": "_sort", "url": "Loader.html#method__sort", "type": "method"}, {"access": "", "host": "Loader", "name": "sorted", "url": "Loader.html#property_sorted", "type": "property"}, {"access": "", "host": "YUI", "name": "stamp", "url": "YUI.html#method_stamp", "type": "method"}, {"access": "", "host": "Array", "name": "test", "url": "Array.html#method_test", "type": "method"}, {"access": "", "host": "config", "name": "throwFail", "url": "config.html#property_throwFail", "type": "property"}, {"access": "", "host": "config", "name": "timeout", "url": "config.html#property_timeout", "type": "property"}, {"access": "private", "host": "Get", "name": "_timeout", "url": "Get.html#method__timeout", "type": "method"}, {"access": "", "host": "Loader", "name": "timeout", "url": "Loader.html#property_timeout", "type": "property"}, {"access": "private", "host": "Get", "name": "_track", "url": "Get.html#method__track", "type": "method"}, {"access": "", "host": "Lang", "name": "trim", "url": "Lang.html#method_trim", "type": "method"}, {"access": "", "host": "Lang", "name": "type", "url": "Lang.html#method_type", "type": "method"}, {"access": "private", "host": "Loader", "name": "_url", "url": "Loader.html#method__url", "type": "method"}, {"access": "", "host": "YUI", "name": "use", "url": "YUI.html#method_use", "type": "method"}, {"access": "", "host": "config", "name": "useBrowserConsole", "url": "config.html#property_useBrowserConsole", "type": "property"}, {"access": "private", "host": "Loader", "name": "_useYahooListener", "url": "Loader.html#property__useYahooListener", "type": "property"}, {"access": "", "host": "Object", "name": "values", "url": "Object.html#method_values", "type": "method"}, {"access": "", "host": "UA", "name": "webkit", "url": "UA.html#property_webkit", "type": "property"}, {"access": "", "host": "config", "name": "win", "url": "config.html#property_win", "type": "property"}, {"access": "", "host": "YUI", "name": "windowresize", "url": "YUI.html#event_windowresize", "type": "event"}, {"access": "", "host": "config", "name": "windowResizeDelay", "url": "config.html#property_windowResizeDelay", "type": "property"}]; |
|
354 </script> |
|
355 </body> |
|
356 </html> |