]> git.pond.sub.org Git - eow/blobdiff - static/dojo-release-1.1.1/dojox/rpc/demos/templates/yahoo.html
add Dojo 1.1.1
[eow] / static / dojo-release-1.1.1 / dojox / rpc / demos / templates / yahoo.html
diff --git a/static/dojo-release-1.1.1/dojox/rpc/demos/templates/yahoo.html b/static/dojo-release-1.1.1/dojox/rpc/demos/templates/yahoo.html
new file mode 100644 (file)
index 0000000..04339d2
--- /dev/null
@@ -0,0 +1,31 @@
+<div>
+       <input dojotAttachPoint="search" dojoAttachEvent="onkeyup: onSearch">
+       <ul>
+       {% for result in results.Result %}
+               <li><a href="{{ result.Url }}">{{ result.Title }}</a><br/>{{ result.Summary }}</li>
+       {% endfor %}
+       </ul>
+       <table>
+               {% if results.firstResultPosition %}
+               <tr>
+                       <th align="left">First Result</th>
+                       <td>{{ results.firstResultPosition }}</td>
+               </tr>
+               {% endif %}{% if results.totalResultsAvailable %}
+               <tr>
+                       <th align="left">Total Results Available</th>
+                       <td>{{ results.totalResultsAvailable }}</td>
+               </tr>
+               {% endif %}{% if results.totalResultsReturned %}
+               <tr>
+                       <th align="left">Results Returned</th>
+                       <td>{{ results.totalResultsReturned }}</td>
+               </tr>
+               {% endif %}{% if results.type %}
+               <tr>
+                       <th align="left">Type</th>
+                       <td>{{ results.type }}</td>
+               </tr>
+               {% endif %}
+       </table>
+</div>