7d9f4a49ef5e163b5f38d09a20f72208ab859e65 |
|
20-Oct-2011 |
Ryan Grove <ryan@wonko.com> |
Use the new Test Console widget. |
896cd5258152d0ecaa16a66e122f4ae0a6542430 |
|
19-Apr-2011 |
Ryan Grove <ryan@wonko.com> |
Add allowRollup: false to tests. |
fd8cc25f4b45140335df27a04ce976b9251ea857 |
|
19-Apr-2011 |
Ryan Grove <ryan@wonko.com> |
Update unit test scaffolding to support "filter" query param.
The value of the param is passed to YUI's filter config, so filter=raw
loads raw files, filter=debug loads debug files, etc. If no filter is
specified, 'min' is used. |
9a6f8de55b7bf3c4de20b58603abf30145e7a7f9 |
|
18-Nov-2010 |
Ryan Grove <ryan@wonko.com> |
Even more unit tests! |
0a33c81444b4733a2ca07b957b89f7a0ad29ef80 |
|
16-Nov-2010 |
Ryan Grove <ryan@wonko.com> |
Move code for JSONP and YQL sources into a separate autocomplete-sources module.
The autocomplete-sources module is included in the autocomplete rollup,
but is no longer part of autocomplete-base, which results in a smaller
base module when the extra sources aren't needed. |
63b7fb6d8982a8aeec3b0de4fa10fe2be796ab26 |
|
12-Nov-2010 |
Ryan Grove <ryan@wonko.com> |
Refactor the way results are passed to filters, highlighters, and formatters. [Fixes #2529522]
Previously, result filters received an array of raw results,
highlighters received an array of text result strings, and formatters
received several arrays containing different result formats.
This commit changes this behavior: filters, highlighters, and formatters
now all receive a single array of result objects. Each object has
several properties (display, highlighted, raw, text) representing the
various formats of a given result.
Filters are expected to return an array of result objects. Highlighters
should return an array of highlighted result text strings. Formatters
should return an array of HTML strings or Node instances. |
b3b2ec1d995b702710dfb721aa7b363101d9ab85 |
|
06-Oct-2010 |
Ryan Grove <ryan@wonko.com> |
Add unit tests for autocomplete-base setters and validators. |
f52f254210947dd5e90ab38cc8293e89b62572cd |
|
15-Sep-2010 |
Ryan Grove <ryan@wonko.com> |
Expose results as an array of objects containing result metadata.
Each result, after being filtered, formatted, and highlighted, is now an
object with three parameters:
- display: Formatted result HTML string or Node suitable for display
to the user.
- raw: The raw, unformatted result in whatever form it was provided by
the DataSource.
- text: Plain text version of the result, suitable for insertion into
the value of a text input field or textarea. |
6d408e55d70c428d9bec98954a332ac92adad6ce |
|
13-Sep-2010 |
Ryan Grove <ryan@wonko.com> |
More AutoComplete namespace and dependency refactoring.
- Y.AutoComplete is now an instantiable widgetless implementation of
Y.AutoCompleteBase.
- Y.AutoCompleteList is the barebones list completion widget in
progress.
- The filter and highlighter modules now stand alone and don't depend
on any other part of AutoComplete. |
e6b1b9d89771ad8772d7e56a26e5a85656460e42 |
|
13-Sep-2010 |
Ryan Grove <ryan@wonko.com> |
Make AutoCompleteBase testable again. |
99ae4cf94b18f24d35db8c5ffed25fdf304accf4 |
|
09-Sep-2010 |
Ryan Grove <ryan@wonko.com> |
Promote autocomplete out of the sandbox. |