|
0
|
1 |
|
|
|
2 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
|
3 |
<html> |
|
|
4 |
<head> |
|
|
5 |
<title>YUI Library Examples: IO: POST Transaction</title> |
|
|
6 |
<meta http-equiv="content-type" content="text/html; charset=utf-8"> |
|
|
7 |
<link rel="stylesheet" type="text/css" href="../../assets/yui.css" > |
|
|
8 |
|
|
|
9 |
<style> |
|
|
10 |
/*Supplemental CSS for the YUI distribution*/ |
|
|
11 |
#custom-doc { width: 95%; min-width: 950px; } |
|
|
12 |
#pagetitle {background-image: url(../../assets/bg_hd.gif);} |
|
|
13 |
/* #pagetitle h1 {background-image: url(../../assets/title_h_bg.gif);}*/ |
|
|
14 |
</style> |
|
|
15 |
|
|
|
16 |
<link rel="stylesheet" type="text/css" href="../../assets/dpSyntaxHighlighter.css"> |
|
|
17 |
<link type="text/css" rel="stylesheet" href="../../build/cssfonts/fonts-min.css" /> |
|
|
18 |
<script type="text/javascript" src="../../build/yui/yui-min.js"></script> |
|
|
19 |
<style type="text/css"> |
|
|
20 |
#container li {margin-left:2em;} |
|
|
21 |
#container { background-color:#FFFFFF; border:1px dotted #666666; padding:1em; margin-bottom:1em;} |
|
|
22 |
</style> |
|
|
23 |
|
|
|
24 |
|
|
|
25 |
</head> |
|
|
26 |
<body id="yahoo-com" class=" yui-skin-sam"> |
|
|
27 |
<div id="custom-doc" class="yui-t2"> |
|
|
28 |
<div id="hd"> |
|
|
29 |
<div id="ygunav"> |
|
|
30 |
<p> |
|
|
31 |
<em> |
|
|
32 |
<a href="http://developer.yahoo.com/yui/3/">YUI 3.x Home</a> <i> - </i> |
|
|
33 |
</em> |
|
|
34 |
</p> |
|
|
35 |
<form action="http://search.yahoo.com/search" id="sitesearchform"> |
|
|
36 |
<input name="vs" type="hidden" value="developer.yahoo.com"> |
|
|
37 |
<input name="vs" type="hidden" value="yuiblog.com"> |
|
|
38 |
<div id="sitesearch"> |
|
|
39 |
<label for="searchinput">Site Search (YDN & YUIBlog): </label> |
|
|
40 |
<input type="text" id="searchinput" name="p"> |
|
|
41 |
<input type="submit" value="Search" id="searchsubmit" class="ygbt"> |
|
|
42 |
</div> |
|
|
43 |
</form> |
|
|
44 |
</div> |
|
|
45 |
<div id="ygma"><a href="../../"><img src="../../assets/logo.gif" border="0" width="200" height="93"></a></div> |
|
|
46 |
<div id="pagetitle"><h1>YUI Library Examples: IO: POST Transaction</h1></div> |
|
|
47 |
</div> |
|
|
48 |
<div id="bd"> |
|
|
49 |
|
|
|
50 |
<div id="bar-note"><p><strong>Note:</strong> This is YUI 3.x. Looking for <a href="http://developer.yahoo.com/yui/">YUI 2.x</a>?</p></div> |
|
|
51 |
|
|
|
52 |
<div id="yui-main"> |
|
|
53 |
<div class="yui-b"> |
|
|
54 |
<div class="yui-ge"> |
|
|
55 |
<div class="yui-u first example" id="main"> |
|
|
56 |
|
|
|
57 |
<h2>IO: POST Transaction</h2> |
|
|
58 |
|
|
|
59 |
<div id="example" class="promo"> |
|
|
60 |
<p> |
|
|
61 |
<p>POSTing data to a server using YUI's IO utility is a simple process. Click "Send a POST Request" below to try it out, then read the description below to learn how it's done.</p> </p> |
|
|
62 |
|
|
|
63 |
<div class="module example-container "> |
|
|
64 |
<div class="hd exampleHd"> |
|
|
65 |
<p class="newWindowButton yui-skin-sam"> |
|
|
66 |
<a href="io-post_clean.html" target="_blank">View example in new window.</a> |
|
|
67 |
</p> |
|
|
68 |
</div> <div id="example-canvas" class="bd"> |
|
|
69 |
|
|
|
70 |
|
|
|
71 |
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== --> |
|
|
72 |
|
|
|
73 |
<div id="container"> |
|
|
74 |
<ul> |
|
|
75 |
<li>IO POST response data will appear here.</li> |
|
|
76 |
</ul> |
|
|
77 |
</div> |
|
|
78 |
<form><input type="button" id="requestButton" value="Send a POST Request"></form> |
|
|
79 |
|
|
|
80 |
<script> |
|
|
81 |
|
|
|
82 |
YUI({base:"../../build/", timeout: 10000}).use("io", |
|
|
83 |
|
|
|
84 |
function(Y) { |
|
|
85 |
|
|
|
86 |
//Get a reference to the Node that we are using |
|
|
87 |
//to report results: |
|
|
88 |
var div = Y.Node.get('#container ul'); |
|
|
89 |
|
|
|
90 |
//A function handler to use for successful requests: |
|
|
91 |
var handleSuccess = function(ioId, o){ |
|
|
92 |
Y.log(arguments); |
|
|
93 |
Y.log("The success handler was called. Id: " + ioId + ".", "info", "example"); |
|
|
94 |
|
|
|
95 |
if(o.responseText !== undefined){ |
|
|
96 |
var s = "<li>Transaction id: " + ioId + "</li>"; |
|
|
97 |
s += "<li>HTTP status: " + o.status + "</li>"; |
|
|
98 |
s += "<li>Status code message: " + o.statusText + "</li>"; |
|
|
99 |
s += "<li>HTTP headers received: <ul>" + o.getAllResponseHeaders() + "</ul></li>"; |
|
|
100 |
s += "<li>PHP response: " + o.responseText + "</li>"; |
|
|
101 |
div.set("innerHTML", s); |
|
|
102 |
} |
|
|
103 |
} |
|
|
104 |
|
|
|
105 |
//A function handler to use for failed requests: |
|
|
106 |
var handleFailure = function(ioId, o){ |
|
|
107 |
Y.log("The failure handler was called. Id: " + ioId + ".", "info", "example"); |
|
|
108 |
|
|
|
109 |
if(o.responseText !== undefined){ |
|
|
110 |
var s = "<li>Transaction id: " + ioId + "</li>"; |
|
|
111 |
s += "<li>HTTP status: " + o.status + "</li>"; |
|
|
112 |
s += "<li>Status code message: " + o.statusText + "</li>"; |
|
|
113 |
div.set("innerHTML", s); |
|
|
114 |
} |
|
|
115 |
} |
|
|
116 |
|
|
|
117 |
//Subscribe our handlers to IO's global custom events: |
|
|
118 |
Y.on('io:success', handleSuccess); |
|
|
119 |
Y.on('io:failure', handleFailure); |
|
|
120 |
|
|
|
121 |
|
|
|
122 |
/* Configuration object for POST transaction */ |
|
|
123 |
var cfg = { |
|
|
124 |
method: "POST", |
|
|
125 |
data: "user=YDN&password=API", |
|
|
126 |
headers: { 'X-Transaction': 'POST Example'} |
|
|
127 |
}; |
|
|
128 |
|
|
|
129 |
//The URL of the resource to which we're POSTing data: |
|
|
130 |
var sUrl = "assets/post.php"; |
|
|
131 |
|
|
|
132 |
//Handler to make our XHR request when the button is clicked: |
|
|
133 |
function makeRequest(){ |
|
|
134 |
|
|
|
135 |
div.set("innerHTML", "Loading data from new request..."); |
|
|
136 |
|
|
|
137 |
var request = Y.io(sUrl, cfg); |
|
|
138 |
Y.log("Initiating request; Id: " + request.id + ".", "info", "example"); |
|
|
139 |
|
|
|
140 |
} |
|
|
141 |
|
|
|
142 |
// Make a request when the button is clicked: |
|
|
143 |
Y.on("click", makeRequest, "#requestButton"); |
|
|
144 |
|
|
|
145 |
Y.log("As you interact with this example, relevant steps in the process will be logged here.", "info", "example"); |
|
|
146 |
} |
|
|
147 |
); |
|
|
148 |
</script> |
|
|
149 |
|
|
|
150 |
|
|
|
151 |
<!--END SOURCE CODE FOR EXAMPLE =============================== --> |
|
|
152 |
|
|
|
153 |
|
|
|
154 |
</div> |
|
|
155 |
</div> |
|
|
156 |
</div> |
|
|
157 |
|
|
|
158 |
<h2 class="first">Using IO to Post Data and Receive the Server Response via HTTP POST</h2> |
|
|
159 |
|
|
|
160 |
<h3>Create a YUI Instance</h3> |
|
|
161 |
<p>Create a YUI instance, using IO, for this example:</p> |
|
|
162 |
|
|
|
163 |
<textarea name="code" class="JScript" cols="60" rows="1"> |
|
|
164 |
//Create a YUI instance including support for IO: |
|
|
165 |
YUI({base:"../../build/", timeout: 10000}).use("io-base", function(Y) { |
|
|
166 |
// Y is the YUI instance. |
|
|
167 |
// The rest of the following code is encapsulated in this |
|
|
168 |
// anonymous function. |
|
|
169 |
} ); |
|
|
170 |
</textarea> |
|
|
171 |
|
|
|
172 |
<h3>Assemble a Configuration Object for a POST Transaction</h3> |
|
|
173 |
<p>The IO configuration object support allows you to designate the transaction method (<code>POST</code> in this case) and other information, including data that should be sent as the POST body:</p> |
|
|
174 |
|
|
|
175 |
<textarea name="code" class="JScript" cols="60" rows="1">/* Configuration object for POST transaction */ |
|
|
176 |
var cfg = { |
|
|
177 |
method: "POST", |
|
|
178 |
data: "user=YDN&password=API", |
|
|
179 |
headers: { 'X-Transaction': 'POST Example'}, |
|
|
180 |
};</textarea> |
|
|
181 |
|
|
|
182 |
<h3>Create Handlers to Process Successful and Unsuccessful Transactions</h3> |
|
|
183 |
|
|
|
184 |
<p>Our handlers for the events that fire on successful and unsuccessful responses will write out information about the transaction to the <code>innerHTML</code> of an element on the page:</p> |
|
|
185 |
|
|
|
186 |
<textarea name="code" class="JScript" cols="60" rows="1">//Get a reference to the Node that we are using |
|
|
187 |
//to report results: |
|
|
188 |
var div = Y.Node.get('#container'); |
|
|
189 |
|
|
|
190 |
//A function handler to use for successful requests: |
|
|
191 |
var handleSuccess = function(ioId, o){ |
|
|
192 |
Y.log(arguments); |
|
|
193 |
Y.log("The success handler was called. Id: " + ioId + ".", "info", "example"); |
|
|
194 |
|
|
|
195 |
if(o.responseText !== undefined){ |
|
|
196 |
var s = "<li>Transaction id: " + ioId + "</li>"; |
|
|
197 |
s += "<li>HTTP status: " + o.status + "</li>"; |
|
|
198 |
s += "<li>Status code message: " + o.statusText + "</li>"; |
|
|
199 |
s += "<li>HTTP headers received: <ul>" + o.getAllResponseHeaders() + "</ul></li>"; |
|
|
200 |
s += "<li>PHP response: " + o.responseText + "</li>"; |
|
|
201 |
div.set("innerHTML", s); |
|
|
202 |
} |
|
|
203 |
}; |
|
|
204 |
|
|
|
205 |
//A function handler to use for failed requests: |
|
|
206 |
var handleFailure = function(ioId, o){ |
|
|
207 |
Y.log("The failure handler was called. Id: " + ioId + ".", "info", "example"); |
|
|
208 |
|
|
|
209 |
if(o.responseText !== undefined){ |
|
|
210 |
var s = "<li>Transaction id: " + ioId + "</li>"; |
|
|
211 |
s += "<li>HTTP status: " + o.status + "</li>"; |
|
|
212 |
s += "<li>Status code message: " + o.statusText + "</li>"; |
|
|
213 |
div.set("innerHTML", s); |
|
|
214 |
} |
|
|
215 |
}; |
|
|
216 |
|
|
|
217 |
//Subscribe our handlers to IO's global custom events: |
|
|
218 |
Y.on('io:success', handleSuccess); |
|
|
219 |
Y.on('io:failure', handleFailure);</textarea> |
|
|
220 |
|
|
|
221 |
<h3>Initiate the POST Transaction</h3> |
|
|
222 |
<p> |
|
|
223 |
The final step in this example is to start the IO POST transaction when a button on the page is clicked. We have a button with an ID of <code>requestButton</code>; we wire that button to the IO request with the following code: |
|
|
224 |
</p> |
|
|
225 |
|
|
|
226 |
<textarea name="code" class="JScript" cols="60" rows="1">//Handler to make our XHR request when the button is clicked: |
|
|
227 |
function makeRequest(){ |
|
|
228 |
|
|
|
229 |
div.set("innerHTML", "Loading data from new request..."); |
|
|
230 |
|
|
|
231 |
var request = Y.io(sUrl, cfg); |
|
|
232 |
Y.log("Initiating request; Id: " + request.id + ".", "info", "example"); |
|
|
233 |
|
|
|
234 |
} |
|
|
235 |
|
|
|
236 |
// Make a request when the button is clicked: |
|
|
237 |
Y.on("click", makeRequest, "#requestButton");</textarea> |
|
|
238 |
|
|
|
239 |
<h3>Full Code</h3> |
|
|
240 |
|
|
|
241 |
<p>The full JavaScript code for this example follows:</p> |
|
|
242 |
|
|
|
243 |
<textarea name="code" class="JScript" cols="60" rows="1"> |
|
|
244 |
YUI({base:"../../build/", timeout: 10000}).use("io-base", |
|
|
245 |
|
|
|
246 |
function(Y) { |
|
|
247 |
|
|
|
248 |
//Get a reference to the Node that we are using |
|
|
249 |
//to report results: |
|
|
250 |
var div = Y.Node.get('#container'); |
|
|
251 |
|
|
|
252 |
//A function handler to use for successful requests: |
|
|
253 |
var handleSuccess = function(ioId, o){ |
|
|
254 |
Y.log(arguments); |
|
|
255 |
Y.log("The success handler was called. Id: " + ioId + ".", "info", "example"); |
|
|
256 |
|
|
|
257 |
if(o.responseText !== undefined){ |
|
|
258 |
var s = "<li>Transaction id: " + ioId + "</li>"; |
|
|
259 |
s += "<li>HTTP status: " + o.status + "</li>"; |
|
|
260 |
s += "<li>Status code message: " + o.statusText + "</li>"; |
|
|
261 |
s += "<li>HTTP headers received: <ul>" + o.getAllResponseHeaders() + "</ul></li>"; |
|
|
262 |
s += "<li>PHP response: " + o.responseText + "</li>"; |
|
|
263 |
div.set("innerHTML", s); |
|
|
264 |
} |
|
|
265 |
}; |
|
|
266 |
|
|
|
267 |
//A function handler to use for failed requests: |
|
|
268 |
var handleFailure = function(ioId, o){ |
|
|
269 |
Y.log("The failure handler was called. Id: " + ioId + ".", "info", "example"); |
|
|
270 |
|
|
|
271 |
if(o.responseText !== undefined){ |
|
|
272 |
var s = "<li>Transaction id: " + ioId + "</li>"; |
|
|
273 |
s += "<li>HTTP status: " + o.status + "</li>"; |
|
|
274 |
s += "<li>Status code message: " + o.statusText + "</li>"; |
|
|
275 |
div.set("innerHTML", s); |
|
|
276 |
} |
|
|
277 |
}; |
|
|
278 |
|
|
|
279 |
//Subscribe our handlers to IO's global custom events: |
|
|
280 |
Y.on('io:success', handleSuccess); |
|
|
281 |
Y.on('io:failure', handleFailure); |
|
|
282 |
|
|
|
283 |
|
|
|
284 |
/* Configuration object for POST transaction */ |
|
|
285 |
var cfg = { |
|
|
286 |
method: "POST", |
|
|
287 |
data: "user=YDN&password=API", |
|
|
288 |
headers: { 'X-Transaction': 'POST Example'}, |
|
|
289 |
}; |
|
|
290 |
|
|
|
291 |
//The URL of the resource to which we're POSTing data: |
|
|
292 |
var sUrl = "assets/post.php"; |
|
|
293 |
|
|
|
294 |
//Handler to make our XHR request when the button is clicked: |
|
|
295 |
function makeRequest(){ |
|
|
296 |
|
|
|
297 |
div.set("innerHTML", "Loading data from new request..."); |
|
|
298 |
|
|
|
299 |
var request = Y.io(sUrl, cfg); |
|
|
300 |
Y.log("Initiating request; Id: " + request.id + ".", "info", "example"); |
|
|
301 |
|
|
|
302 |
} |
|
|
303 |
|
|
|
304 |
// Make a request when the button is clicked: |
|
|
305 |
Y.on("click", makeRequest, "#requestButton"); |
|
|
306 |
|
|
|
307 |
Y.log("As you interact with this example, relevant steps in the process will be logged here.", "info", "example"); |
|
|
308 |
} |
|
|
309 |
);</textarea> </div> |
|
|
310 |
<div class="yui-u sidebar"> |
|
|
311 |
|
|
|
312 |
|
|
|
313 |
<div id="examples" class="mod box4"> |
|
|
314 |
<div class="hd"> |
|
|
315 |
<h4> |
|
|
316 |
IO Examples:</h4> |
|
|
317 |
</div> |
|
|
318 |
<div class="bd"> |
|
|
319 |
<ul> |
|
|
320 |
<li><a href='../io/io-get.html'>GET Transaction</a></li><li class='selected'><a href='../io/io-post.html'>POST Transaction</a></li><li><a href='../io/io-weather.html'>XML Transaction — Retrieving a Yahoo! Weather RSS (XML) Feed via a Server-Side Proxy</a></li><li><a href='../io/io-xdr.html'>Cross-Domain JSON Transaction — Retrieving a News Feed from Yahoo! Pipes</a></li><li><a href='../node-menunav/node-menunav-8.html'>Adding Submenus On The Fly (included with examples for MenuNav Node Plugin)</a></li><li><a href='../overlay/overlay-io-plugin.html'>IO Plugin (included with examples for Overlay)</a></li><li><a href='../dd/portal-drag.html'>Portal Style Example (included with examples for Drag & Drop)</a></li> </ul> |
|
|
321 |
</div> |
|
|
322 |
</div> |
|
|
323 |
|
|
|
324 |
<div class="mod box4"> |
|
|
325 |
<div class="hd"> |
|
|
326 |
<h4>More IO Resources:</h4> |
|
|
327 |
</div> |
|
|
328 |
<div class="bd"> |
|
|
329 |
<ul> |
|
|
330 |
<!-- <li><a href="http://developer.yahoo.com/yui/io/">User's Guide</a> (external)</li> --> |
|
|
331 |
<li><a href="../../api/module_io.html">API Documentation</a></li> |
|
|
332 |
</ul> |
|
|
333 |
</div> |
|
|
334 |
</div> |
|
|
335 |
</div> |
|
|
336 |
</div> |
|
|
337 |
|
|
|
338 |
</div> |
|
|
339 |
</div> |
|
|
340 |
|
|
|
341 |
|
|
|
342 |
<div class="yui-b toc3" id="tocWrapper"> |
|
|
343 |
<!-- TABLE OF CONTENTS --> |
|
|
344 |
<div id="toc"> |
|
|
345 |
|
|
|
346 |
<ul> |
|
|
347 |
<li class="sect first">YUI 3.x Project</li><li class="item"><a title="The Yahoo! User Interface (YUI) Library, 3.x Branch, " href="http://developer.yahoo.com/yui/3/">YUI 3 Web Site (external)</a></li><li class="item"><a title="Examples of every YUI utility and control in action" href="../../examples/">YUI 3 Examples</a></li><li class="item"><a title="Instantly searchable API documentation for the entire YUI library." href="../../api/">YUI 3 API Docs</a></li><li class="item"><a title="The YUI Library can be downloaded from SourceForge" href="http://sourceforge.net/projects/yui/">YUI 3 on Sourceforge (external)</a></li><li class="item"><a title="YUI is free and open, offered under a BSD license." href="http://developer.yahoo.com/yui/3/license.html">YUI License (external)</a></li><li class="sect">YUI 3 Core - Examples</li><li class="item"><a title="YUI (Global Prerequisite) - Functional Examples" href="../../examples/yui/index.html">YUI (Global Prerequisite)</a></li><li class="item"><a title="Event - Functional Examples" href="../../examples/event/index.html">Event</a></li><li class="item"><a title="Node - Functional Examples" href="../../examples/node/index.html">Node</a></li><li class="sect">YUI 3 Component Infrastructure - Examples</li><li class="item"><a title="Attribute - Functional Examples" href="../../examples/attribute/index.html">Attribute</a></li><li class="item"><a title="Plugin - Functional Examples" href="../../examples/plugin/index.html">Plugin</a></li><li class="item"><a title="Widget - Functional Examples" href="../../examples/widget/index.html">Widget</a></li><li class="sect">YUI 3 Utilities - Examples</li><li class="item"><a title="Animation - Functional Examples" href="../../examples/anim/index.html">Animation</a></li><li class="item"><a title="Cache - Functional Examples" href="../../examples/cache/index.html">Cache</a></li><li class="item"><a title="Cookie - Functional Examples" href="../../examples/cookie/index.html">Cookie</a></li><li class="item"><a title="DataSchema - Functional Examples" href="../../examples/dataschema/index.html">DataSchema</a></li><li class="item"><a title="DataSource - Functional Examples" href="../../examples/datasource/index.html">DataSource</a></li><li class="item"><a title="DataType - Functional Examples" href="../../examples/datatype/index.html">DataType</a></li><li class="item"><a title="Drag & Drop - Functional Examples" href="../../examples/dd/index.html">Drag & Drop</a></li><li class="item"><a title="Get - Functional Examples" href="../../examples/get/index.html">Get</a></li><li class="item"><a title="History - Functional Examples" href="../../examples/history/index.html">History</a></li><li class="item"><a title="ImageLoader - Functional Examples" href="../../examples/imageloader/index.html">ImageLoader</a></li><li class="selected "><a title="IO - Functional Examples" href="../../examples/io/index.html">IO</a></li><li class="item"><a title="JSON (JavaScript Object Notation) - Functional Examples" href="../../examples/json/index.html">JSON</a></li><li class="item"><a title="Queue - Functional Examples" href="../../examples/queue/index.html">Queue</a></li><li class="item"><a title="Stylesheet - Functional Examples" href="../../examples/stylesheet/index.html">Stylesheet</a></li><li class="sect">YUI 3 Widgets - Examples</li><li class="item"><a title="Overlay - Functional Examples" href="../../examples/overlay/index.html">Overlay</a></li><li class="item"><a title="Slider - Functional Examples" href="../../examples/slider/index.html">Slider</a></li><li class="sect">YUI 3 Node Plugins - Examples</li><li class="item"><a title="FocusManager Node Plugin - Functional Examples" href="../../examples/node-focusmanager/index.html">FocusManager Node Plugin</a></li><li class="item"><a title="MenuNav Node Plugin - Functional Examples" href="../../examples/node-menunav/index.html">MenuNav Node Plugin</a></li><li class="sect">YUI 3 CSS - Examples</li><li class="item"><a title="YUI CSS Reset - Functional Examples" href="../../examples/cssreset/index.html">CSS Reset</a></li><li class="item"><a title="YUI Fonts - Functional Examples" href="../../examples/cssfonts/index.html">CSS Fonts</a></li><li class="item"><a title="YUI Base - Functional Examples" href="../../examples/cssbase/index.html">CSS Base</a></li><li class="sect">YUI 3 Developer Tools - Examples</li><li class="item"><a title="Console - Functional Examples" href="../../examples/console/index.html">Console</a></li><li class="item"><a title="Profiler - Functional Examples" href="../../examples/profiler/index.html">Profiler</a></li><li class="item"><a title="Test - Functional Examples" href="../../examples/test/index.html">Test</a></li><li class="sect">The YUI Community</li><li class="item"><a title="The Yahoo! User Interface Blog" href="http://yuiblog.com">YUI Blog (external)</a></li><li class="item"><a title="The Yahoo! Group YDN-JavaScript hosts the YUI community forum" href="http://tech.groups.yahoo.com/group/ydn-javascript/">YUI Forum (external)</a></li><li class="item"><a title="The Yahoo! Group yui3 is dedicated to the 3.x branch of the Yahoo! User Interface (YUI) Library." href="http://tech.groups.yahoo.com/group/yui3/">YUI 3 Forum (external)</a></li><li class="item"><a title="YUI is used by Yahoo! and by hundreds of other sites, including many you know and love." href="/yui/poweredby/">YUI Sightings (external)</a></li><li class="item"><a title="Videos and podcasts from the YUI Team and from the Yahoo! frontend engineering community." href="http://developer.yahoo.com/yui/theater/">YUI Theater (external)</a></li><li class="sect">YUI Articles on the YUI Website</li><li class="item"><a title="Answers to Frequently Asked Questions about the YUI Library" href="http://developer.yahoo.com/yui/articles/faq/">YUI FAQ (external)</a></li><li class="item"><a title="Yahoo!'s philosophy of Graded Browser Support" href="http://developer.yahoo.com/yui/articles/gbs/">Graded Browser Support (external)</a></li><li class="item"><a title="Reporting Bugs and Making Feature Requests for YUI Components" href="http://developer.yahoo.com/yui/articles/reportingbugs/">Bug Reports/Feature Requests (external)</a></li><li class="item"><a title="Serve YUI source files from Yahoo! -- free, fast, and simple" href="http://developer.yahoo.com/yui/3/articles/hosting/">Serving YUI Files from Yahoo! (external)</a></li></ul> |
|
|
348 |
</div> |
|
|
349 |
</div> |
|
|
350 |
</div><!--closes bd--> |
|
|
351 |
|
|
|
352 |
<div id="ft"> |
|
|
353 |
<p class="first">Copyright © 2009 Yahoo! Inc. All rights reserved.</p> |
|
|
354 |
<p><a href="http://privacy.yahoo.com/privacy/us/devel/index.html">Privacy Policy</a> - |
|
|
355 |
<a href="http://docs.yahoo.com/info/terms/">Terms of Service</a> - |
|
|
356 |
<a href="http://docs.yahoo.com/info/copyright/copyright.html">Copyright Policy</a> - |
|
|
357 |
<a href="http://careers.yahoo.com/">Job Openings</a></p> |
|
|
358 |
</div> |
|
|
359 |
</div> |
|
|
360 |
<script src="../../assets/dpSyntaxHighlighter.js"></script> |
|
|
361 |
<script language="javascript"> |
|
|
362 |
dp.SyntaxHighlighter.HighlightAll('code'); |
|
|
363 |
</script> |
|
|
364 |
</body> |
|
|
365 |
</html> |