src/cm/media/js/lib/yui/yui_3.10.3/docs/autocomplete/ac-datasource.html
changeset 525 89ef5ed3c48b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui_3.10.3/docs/autocomplete/ac-datasource.html	Tue Jul 16 14:29:46 2013 +0200
@@ -0,0 +1,288 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="utf-8">
+    <title>Example: Remote Data via DataSource</title>
+    <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic">
+    <link rel="stylesheet" href="../../build/cssgrids/cssgrids-min.css">
+    <link rel="stylesheet" href="../assets/css/main.css">
+    <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
+    <link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
+    <script src="../../build/yui/yui-min.js"></script>
+    
+</head>
+<body>
+<!--
+<a href="https://github.com/yui/yui3"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
+-->
+<div id="doc">
+    <div id="hd">
+        <h1><img src="http://yuilibrary.com/img/yui-logo.png"></h1>
+    </div>
+    
+
+            <h1>Example: Remote Data via DataSource</h1>
+    <div class="yui3-g">
+        <div class="yui3-u-3-4">
+            <div id="main">
+                <div class="content"><style scoped>
+#ac-input { width: 250px; }
+</style>
+
+<div class="intro">
+<p>
+This example demonstrates how to provide autocomplete suggestions using a <a href="../datasource/index.html">DataSource</a> instance. While AutoComplete supports a variety of result sources without requiring a DataSource, using a DataSource can give you more control over how results are retrieved and processed, and also allows you to share data with other DataSource-based widgets on the page.
+</p>
+
+<p>
+Type in the name of a city in the US to see the suggestions. Ex. New York, Chicago, etc.
+</p>
+</div>
+
+<div class="example">
+    <div id="demo" class="yui3-skin-sam"> <!-- You need this skin class -->
+  <label for="ac-input">US city:</label><br>
+  <input id="ac-input" type="text">
+</div>
+
+<script>
+YUI().use('autocomplete', 'autocomplete-highlighters', 'datasource-get', function (Y) {
+  // Create a DataSource instance.
+  var ds = new Y.DataSource.Get({
+    source: 'http://query.yahooapis.com/v1/public/yql?format=json'
+  });
+
+  Y.one('#ac-input').plug(Y.Plugin.AutoComplete, {
+    maxResults: 10,
+    resultHighlighter: 'phraseMatch',
+    resultTextLocator: function (result) {
+      return result.name + ', ' + result.admin1.content + ', ' + result.country.content;
+    },
+
+    // Use the DataSource instance as the result source.
+    source: ds,
+
+    // YQL query to use for each request. This will be appended to the URL 
+    // that was supplied to the DataSource's "source" config above.
+    requestTemplate: '&q=select * from geo.places where text="{query}" and placeTypeName.content="Town" and country.content="United States"',
+
+    // Custom result list locator to parse the results out of the YQL response.
+    // This is necessary because YQL sometimes returns an array of results, and
+    // sometimes just a single result that isn't in an array.
+    resultListLocator: function (response) {
+      var results = response[0].query.results &&
+            response[0].query.results.place;
+
+      if (results && !Y.Lang.isArray(results)) {
+        results = [results];
+      }
+
+      return results || [];
+    }
+  });
+});
+</script>
+
+</div>
+
+<h2>HTML</h2>
+<p>
+<strong>Note:</strong> be sure to add the <code>yui3-skin-sam</code> classname to the
+page's <code>&lt;body&gt;</code> element or to a parent element of the widget in order to apply
+the default CSS skin. See <a href="http://yuilibrary.com/yui/docs/tutorials/skins/">Understanding Skinning</a>.
+</p>
+<pre class="code prettyprint">&lt;div id=&quot;demo&quot; class=&quot;yui3-skin-sam&quot;&gt; &lt;!-- You need this skin class --&gt;
+  &lt;label for=&quot;ac-input&quot;&gt;US city:&lt;&#x2F;label&gt;&lt;br&gt;
+  &lt;input id=&quot;ac-input&quot; type=&quot;text&quot;&gt;
+&lt;&#x2F;div&gt;</pre>
+
+
+<h2>JavaScript</h2>
+
+<pre class="code prettyprint">YUI().use(&#x27;autocomplete&#x27;, &#x27;autocomplete-highlighters&#x27;, &#x27;datasource-get&#x27;, function (Y) {
+  &#x2F;&#x2F; Create a DataSource instance.
+  var ds = new Y.DataSource.Get({
+    source: &#x27;http:&#x2F;&#x2F;query.yahooapis.com&#x2F;v1&#x2F;public&#x2F;yql?format=json&#x27;
+  });
+
+  Y.one(&#x27;#ac-input&#x27;).plug(Y.Plugin.AutoComplete, {
+    maxResults: 10,
+    resultHighlighter: &#x27;phraseMatch&#x27;,
+    resultTextLocator: function (result) {
+      return result.name + &#x27;, &#x27; + result.admin1.content + &#x27;, &#x27; + result.country.content;
+    },
+
+    &#x2F;&#x2F; Use the DataSource instance as the result source.
+    source: ds,
+
+    &#x2F;&#x2F; YQL query to use for each request. This will be appended to the URL 
+    &#x2F;&#x2F; that was supplied to the DataSource&#x27;s &quot;source&quot; config above.
+    requestTemplate: &#x27;&amp;q=select * from geo.places where text=&quot;{query}&quot; and placeTypeName.content=&quot;Town&quot; and country.content=&quot;United States&quot;&#x27;,
+
+    &#x2F;&#x2F; Custom result list locator to parse the results out of the YQL response.
+    &#x2F;&#x2F; This is necessary because YQL sometimes returns an array of results, and
+    &#x2F;&#x2F; sometimes just a single result that isn&#x27;t in an array.
+    resultListLocator: function (response) {
+      var results = response[0].query.results &amp;&amp;
+            response[0].query.results.place;
+
+      if (results &amp;&amp; !Y.Lang.isArray(results)) {
+        results = [results];
+      }
+
+      return results || [];
+    }
+  });
+});</pre>
+
+
+<h2>Complete Example Source</h2>
+
+<pre class="code prettyprint">&lt;div id=&quot;demo&quot; class=&quot;yui3-skin-sam&quot;&gt; &lt;!-- You need this skin class --&gt;
+  &lt;label for=&quot;ac-input&quot;&gt;US city:&lt;&#x2F;label&gt;&lt;br&gt;
+  &lt;input id=&quot;ac-input&quot; type=&quot;text&quot;&gt;
+&lt;&#x2F;div&gt;
+
+&lt;script&gt;
+YUI().use(&#x27;autocomplete&#x27;, &#x27;autocomplete-highlighters&#x27;, &#x27;datasource-get&#x27;, function (Y) {
+  &#x2F;&#x2F; Create a DataSource instance.
+  var ds = new Y.DataSource.Get({
+    source: &#x27;http:&#x2F;&#x2F;query.yahooapis.com&#x2F;v1&#x2F;public&#x2F;yql?format=json&#x27;
+  });
+
+  Y.one(&#x27;#ac-input&#x27;).plug(Y.Plugin.AutoComplete, {
+    maxResults: 10,
+    resultHighlighter: &#x27;phraseMatch&#x27;,
+    resultTextLocator: function (result) {
+      return result.name + &#x27;, &#x27; + result.admin1.content + &#x27;, &#x27; + result.country.content;
+    },
+
+    &#x2F;&#x2F; Use the DataSource instance as the result source.
+    source: ds,
+
+    &#x2F;&#x2F; YQL query to use for each request. This will be appended to the URL 
+    &#x2F;&#x2F; that was supplied to the DataSource&#x27;s &quot;source&quot; config above.
+    requestTemplate: &#x27;&amp;q=select * from geo.places where text=&quot;{query}&quot; and placeTypeName.content=&quot;Town&quot; and country.content=&quot;United States&quot;&#x27;,
+
+    &#x2F;&#x2F; Custom result list locator to parse the results out of the YQL response.
+    &#x2F;&#x2F; This is necessary because YQL sometimes returns an array of results, and
+    &#x2F;&#x2F; sometimes just a single result that isn&#x27;t in an array.
+    resultListLocator: function (response) {
+      var results = response[0].query.results &amp;&amp;
+            response[0].query.results.place;
+
+      if (results &amp;&amp; !Y.Lang.isArray(results)) {
+        results = [results];
+      }
+
+      return results || [];
+    }
+  });
+});
+&lt;&#x2F;script&gt;</pre>
+
+</div>
+            </div>
+        </div>
+
+        <div class="yui3-u-1-4">
+            <div class="sidebar">
+                
+
+                
+                    <div class="sidebox">
+                        <div class="hd">
+                            <h2 class="no-toc">Examples</h2>
+                        </div>
+
+                        <div class="bd">
+                            <ul class="examples">
+                                
+                                    
+                                        <li data-description="How to provide autocomplete suggestions from a local array.">
+                                            <a href="ac-local.html">Basic Local Data</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to provide autocomplete suggestions using a remote JSONP source.">
+                                            <a href="ac-jsonp.html">Remote Data via JSONP</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to provide autocomplete suggestions using a YQL query source.">
+                                            <a href="ac-yql.html">Remote Data via YQL</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to provide autocomplete suggestions using a DataSource instance.">
+                                            <a href="ac-datasource.html">Remote Data via DataSource</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to implement delimited tag completion.">
+                                            <a href="ac-tagging.html">Tag Completion Using Query Delimiters</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to find and select Flickr photos using a YQL source and a custom autocomplete result formatter.">
+                                            <a href="ac-flickr.html">Find Photos on Flickr (Custom Formatting, YQL Source)</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to use autocomplete-base to filter a set of existing items on a page.">
+                                            <a href="ac-filter.html">Filter a Set of Existing Items on a Page</a>
+                                        </li>
+                                    
+                                
+                                    
+                                        <li data-description="How to find an address using a YQL source calling Google&#x27;s Geocoding Service">
+                                            <a href="ac-geocode.html">Address Completion on Google&#x27;s Geocoding Service</a>
+                                        </li>
+                                    
+                                
+                            </ul>
+                        </div>
+                    </div>
+                
+
+                
+            </div>
+        </div>
+    </div>
+</div>
+
+<script src="../assets/vendor/prettify/prettify-min.js"></script>
+<script>prettyPrint();</script>
+
+<script>
+YUI.Env.Tests = {
+    examples: [],
+    project: '../assets',
+    assets: '../assets/autocomplete',
+    name: 'ac-datasource',
+    title: 'Remote Data via DataSource',
+    newWindow: '',
+    auto:  false 
+};
+YUI.Env.Tests.examples.push('ac-local');
+YUI.Env.Tests.examples.push('ac-jsonp');
+YUI.Env.Tests.examples.push('ac-yql');
+YUI.Env.Tests.examples.push('ac-datasource');
+YUI.Env.Tests.examples.push('ac-tagging');
+YUI.Env.Tests.examples.push('ac-flickr');
+YUI.Env.Tests.examples.push('ac-filter');
+YUI.Env.Tests.examples.push('ac-geocode');
+
+</script>
+<script src="../assets/yui/test-runner.js"></script>
+
+
+
+</body>
+</html>