aboutsummaryrefslogtreecommitdiffstats
path: root/search
Commit message (Collapse)AuthorAgeFilesLines
* move search folder into core/Morris Jobke2015-01-134-550/+0
|
* usage of const in JS is supported in IE11+Morris Jobke2015-01-131-1/+2
|
* Add CSRF check to searchLukas Reschke2015-01-101-1/+2
| | | | Doesn't hurt to have a check on this one as well.
* use cancelable timeout, on scroll only fetch next page if last query had any ↵Jörn Friedrich Dreyer2015-01-061-21/+25
| | | | results
* correctly clear searchbox when switching filelistsJörn Friedrich Dreyer2015-01-051-0/+8
|
* fix onScroll breaking search, fix keyboard navigation, fix filter for files ↵Jörn Friedrich Dreyer2015-01-051-2/+2
| | | | in other dirs
* search with endless scrollingJörn Friedrich Dreyer2015-01-052-5/+7
|
* filter trashbin and share viewsJörn Friedrich Dreyer2015-01-051-1/+1
|
* pluralize translationJörn Friedrich Dreyer2015-01-021-2/+6
|
* use correct spinnerJörn Friedrich Dreyer2015-01-021-1/+1
|
* clear search results when clicking the x in type=search input fieldJörn Friedrich Dreyer2015-01-021-0/+11
|
* do not hide search results when clicking, but hide on ESCJörn Friedrich Dreyer2015-01-022-14/+14
|
* correctly update search results when query is changed, show spinner when ↵Jörn Friedrich Dreyer2015-01-023-111/+114
| | | | searching
* show no files found messageJörn Friedrich Dreyer2015-01-021-18/+9
|
* fix countJörn Friedrich Dreyer2015-01-021-0/+3
|
* that -> self, add missing varJörn Friedrich Dreyer2015-01-021-19/+19
|
* hide, esc, and backspace fixesJörn Friedrich Dreyer2015-01-021-10/+11
|
* allow getting the last queryJörn Friedrich Dreyer2015-01-021-0/+4
|
* set empty filter when hiding results / escJörn Friedrich Dreyer2015-01-021-0/+3
|
* remove globe fallback iconJörn Friedrich Dreyer2015-01-021-1/+0
|
* hide header when no files in list matchJörn Friedrich Dreyer2015-01-021-1/+1
|
* filter new rowsJörn Friedrich Dreyer2015-01-021-3/+11
|
* adjust search result alignment depending on if the layout has favorites or notJan-Christoph Borchardt2015-01-021-11/+17
|
* first style fixes to search resultsJan-Christoph Borchardt2015-01-022-13/+12
|
* move search results below filelist, show hint when results are off screen, ↵Jörn Friedrich Dreyer2015-01-025-137/+141
| | | | use js plugin mechanism
* ajax paging, some js cleanupsJörn Friedrich Dreyer2015-01-025-242/+297
|
* add paged providerJörn Friedrich Dreyer2015-01-022-3/+19
|
* move code from js.js to search.js in the search appJörn Friedrich Dreyer2015-01-022-24/+141
|
* new OC.Search, add search result formatters and handlers, use full content ↵Jörn Friedrich Dreyer2015-01-023-128/+128
| | | | width for results
* full page search resultsJörn Friedrich Dreyer2015-01-023-28/+47
|
* introduce inApps[] filter for search via ajax query, make file results show ↵Jörn Friedrich Dreyer2014-12-101-3/+15
| | | | | | | | up in files app only use more flexible return type check array with !empty instead of count
* Merge pull request #11831 from owncloud/make-search-non-blockingLukas Reschke2014-10-291-0/+1
|\ | | | | Close session for search
| * Close session for searchLukas Reschke2014-10-291-0/+1
| | | | | | | | Make search non-blocking.
* | Include core translationsVincent Petry2014-10-291-1/+18
|/ | | | | | | | | | | | | Moved search result type translations to search.js Load JS translations earlier Translations need to be loaded earlier to make sure that some JS files like search.js get access to translations at this time. This requires the template initialization to be moved to after session initialization, because only after the session we have access to the current language.
* add / to url to match routeJörn Friedrich Dreyer2014-09-041-1/+1
|
* fix '' to '/' when determining parent for search resultJörn Friedrich Dreyer2014-07-031-0/+3
|
* allow apps to add translation for search result typeidJörn Friedrich Dreyer2014-06-061-1/+1
|
* use non static access to searchJörn Friedrich Dreyer2014-06-061-1/+1
|
* Simplify client-side result customizationAndrew Brown2014-06-051-28/+9
| | | | | | | | | | The issue was that search results from other providers (contacts, calendar, etc.) were unformatted, like 'event' or 'contact', while the built-in event types (folder, file, etc.) were being modified by custom result functions to something like 'Files' or 'Folders'. The fix is to capitalize and translate all result types by default. Custom formatting is still allowed (and example documentation has been added) but the built-in result formatters where now unnecessary and were removed.
* use path param to create scrollto urlJörn Friedrich Dreyer2014-06-051-11/+16
|
* fix minor typosJörn Friedrich Dreyer2014-06-051-0/+25
|
* search: fix color hex codeJan-Christoph Borchardt2014-04-151-1/+1
|
* search: change date color to grey for less distractionJan-Christoph Borchardt2014-04-091-0/+1
|
* increase height of result for better clickabilityJan-Christoph Borchardt2014-04-091-1/+1
|
* make search results work on mobile as wellJan-Christoph Borchardt2014-04-091-6/+9
|
* killing some more calls to OC_App::loadApps(); - because we load all apps in ↵Thomas Müller2014-03-251-1/+0
| | | | handleRequest()
* add fixmeJörn Friedrich Dreyer2013-09-171-1/+1
|
* make 'open in folder' action default for filesJörn Friedrich Dreyer2013-09-171-15/+22
|
* use correct doublequotes in template, remove containerJörn Friedrich Dreyer2013-09-171-7/+6
|
* initial scrollto implementation:Jörn Friedrich Dreyer2013-09-173-9/+54
| | | | | | | | | | use places/folder icon, move link construction to JS, only show icon on hover, use 'searchresult' as css class name, add filter/unfilter methods, highlight searched files in current filelist only filter when correct FileList is present