Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/src
AgeCommit message (Collapse)Author
2020-09-07Move unified search to OCS apiJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-03Adjust acceptance tests to changes in @nextcloud/vue 2.6.3Daniel Calviño Sánchez
The menu button and the menu of a share are no longer direct childs of the actions of the share row. The menu button is now a child of a ".trigger" element, while the menu is a direct child of the body and has an id defined in the "aria-describedby" attribute of the ".trigger" element. In XPath 1.0 it does not seem possible to "backreference" a value or create variables, so when the share menu or one of its item is needed now the ".trigger" element is first found and then its XPath expression is used to compose its "aria-describedby" attribute in the XPath expression for the menu. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-09-03Bump @nextcloud/vue to v2.6.3John Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-09-03Fix search placeholder animation & dark theme compatibilityJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-09-03Allow unified search filteringJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-09-02Emit unified search queryRaimund Schlüßler
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-08-31Declare OCA.Search directly, not via a monkey patchChristoph Wurst
Apps could use OCA.Search very early on a page load without a problem prior to Nextcloud 20 (current master). Since the unified search work moved some code around, it now was added later, resulting in `TypeError: OCA.Search is not a constructor` errors if the apps did not wrap their calls in a `DOMLoaded` event handler. To ensure existing code continues to work without modification, this patch moves the declaration of the `OCA.Search` API to where we defined `OCA`, instead of monkey-patching it later on. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-08-26Make ellipsized unified search results visible on hoverChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-08-26Provide from on the search query tooJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-08-26Add the missing cursor parameter to unified search requestsChristoph Wurst
Otherwise paginated search does not work. Basically you always requested the first x items and then showed them again and again. The second or any other subsequent page was never requested. On a side note this also caused lots of Vue warning due to duplicate keys. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-08-21Fix dark-theme selectorJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-08-05Hand in the route and the parameters of the requestJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-08-05Make apps handle the order logicJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-08-04Show mime icon, bump bundles, make the SearchResultEntry class ↵John Molakvoæ (skjnldsv)
non-abstract, Fix header search icon, various fixes Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-08-04Remove outdated legacy search scriptsJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-08-03Fix unified searchJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-08-03Unified search UIJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-07-31Use `babel-loader-exclude-node-modules-except`John Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-07-31Bump @nextcloud/eslint-config and peersJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-07-31Bump compiled filesJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-07-22Do not double encode the userid in webauthn loginRoeland Jago Douma
* Else login fails with webauthn devices that send the userid - Like windows hello Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-07-20Use DOMContentLoaded and fix sharebymail loading issueJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-07-14Use generateUrl and imagePath instead of OC.*Joas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-07-14Use space instead of tab inside translationJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-07-10Up the limit for the header app menu, fix #21635Jan-Christoph Borchardt
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-07-09Fix parsing of language codeDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2020-07-09Set the moment locale even earlierChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-07-09Fix placeholder issues with multiplace spaces in the nameJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-06-30Make closing dialogs callback with falseGary Kim
Signed-off-by: Gary Kim <gary@garykim.dev>
2020-06-24Fix export for davclient.js legacy dependencyJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-06-16Darker background for dark modeJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-06-15Add darkmode support for the modal backgroundJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-06-15Make the confirm dialog modal by defaultJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-06-15Fix modal support for vue appsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-06-06Merge pull request #21254 from nextcloud/td/js/remove/_capabilitiesRoeland Jago Douma
Actually remove _capabilities
2020-06-05Fix linting on systemtags and use @nextcloud/routerRoeland Jago Douma
Makes the linter happy. And thus me a bit happy since it now is complaining less. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-06-05Actually remove _capabilitiesRoeland Jago Douma
Leftover from a previous PR. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-06-05Do not import the full OC since we don't need itRoeland Jago Douma
Import what we need. Saves off a bunch of bytes of the bundle (600 kilobytes to be exact) Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-06-05Move humanFileSize and OC.getCanonicalLocale to npm packagesChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-06-04OC.routing is just a @nextcloud/routing proxyRoeland Jago Douma
So lets kill the duplicate code! Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-06-02Fix some linter warningRoeland Jago Douma
Part of my ongoing battle against deprecation messages. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-05-29Move to @nextcloud/capabilities packageRoeland Jago Douma
And kill of oc_capabilities and _oc_capabilities globals Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-05-29Remove the escape-html globalRoeland Jago Douma
Already announced for 19 that it would go. So now it realy does go. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-05-28Move the systemtags to core/srcRoeland Jago Douma
* Move to the handlebar loader from webpack Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-05-27Make the translation sanitization optionalChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-05-25Update hub bundle and add proxy rule to htaccessJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-05-22Move core/js/files to webpackRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-05-22compress some images with tinypng.comRuben Barkow-Kuder
Signed-off-by: Ruben Barkow-Kuder <github@r.z11.de> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-05-15Deprectae OC.Util.formatDate and OC.Util.relativeModifiedDateRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-05-14Remove the long deprecated jQuery tipsyChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>