Roeland Jago Douma
050b9135d5
Merge pull request #13883 from nextcloud/fix-dropping-a-folder-on-a-folder-row
...
Fix dropping a folder on a folder row
2019-01-29 15:44:21 +01:00
Morris Jobke
754932c756
Merge pull request #13865 from nextcloud/fix/noid/ldap-pagedsearch-multiplebases
...
fix paged search with multiple bases (LDAP)
2019-01-29 14:22:33 +01:00
Daniel Calviño Sánchez
038e665db9
Fix dropping a folder on a folder row
...
When the uploaded files have a relative path (that is, when a folder is
uploaded) it is first ensured that all the parent folders exist, which
is done by trying to create them. When a folder is created in the
currently opened folder the file list is updated and a row for the new
folder is added. However, this was done too when the folder already
existed, which caused the previous row to be removed and a new one added
to replace it.
For security reasons, some special headers need to be set in requests;
this is done automatically for jQuery by handling the "ajaxSend" event
in the document. In the case of DAV requests, if the headers are not set
the server rejects the request with "CSRF check not passed".
When a file or folder is dropped on a folder row the jQuery upload
events are chained from the initial drop event, which has the row as its
target. In order to upload the file jQuery performs a request, which
triggers the "ajaxSend" event in the row; this event then bubbles up to
the document, which is then handled by adding the special headers to the
request.
However, when a folder was dropped on a folder row that folder row was
removed when ensuring that the folder exists. The jQuery upload events
were still triggered on the row, but as it had been removed it had no
parent nodes, and thus the events did not bubble up. Due to this the
"ajaxSend" event never reached the document when triggered on the
removed row, the headers were not set, and the upload failed.
All this is simply fixed by not removing the folder row when trying to
create it if it existed already.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-01-29 13:04:19 +01:00
Morris Jobke
d9b2b3e3c8
Merge pull request #13843 from nextcloud/bugfix/11852-add-icon-caldav
...
Add ico as avatar
2019-01-29 12:22:41 +01:00
Christoph Wurst
8fcb9fcfdc
Merge pull request #13855 from tomasz-grobelny/faster_file_upload
...
Throttle getstoragestats.php calls and allow simultaneous uploads
2019-01-29 08:51:38 +01:00
Arthur Schiwon
c868892d2d
iterate over bases instead of doing parallel search
...
parallel search is not compatible with paged search, but the letter is
usually always applied.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2019-01-28 23:00:59 +01:00
Daniel Kesselberg
2764173d09
Use proper mime type for ico
...
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2019-01-28 21:41:26 +01:00
Daniel Kesselberg
4dbef1210c
Add ico as avatar
...
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2019-01-28 21:41:26 +01:00
Morris Jobke
554c78c9b1
Merge pull request #5881 from nextcloud/command-move-calendar
...
Add command to move a calendar from an user to another
2019-01-28 17:35:13 +01:00
Morris Jobke
b5b8a17222
Merge pull request #13675 from imsolost/master
...
Fixed some LGTM alerts
2019-01-28 14:46:01 +01:00
dependabot[bot]
9d3892025a
Bump vue-loader from 15.6.0 to 15.6.2 in /apps/oauth2
...
Bumps [vue-loader](https://github.com/vuejs/vue-loader ) from 15.6.0 to 15.6.2.
- [Release notes](https://github.com/vuejs/vue-loader/releases )
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vuejs/vue-loader/commits )
Signed-off-by: dependabot[bot] <support@dependabot.com>
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-01-28 09:50:50 +01:00
Tomasz Grobelny
f99ce0d546
Throttle getstoragestats.php calls and allow simultaneous uploads
...
Signed-off-by: Tomasz Grobelny <tomasz@grobelny.net>
2019-01-27 22:59:14 +01:00
dependabot[bot]
5179cd5db9
Bump vue-loader from 15.6.0 to 15.6.1 in /apps/updatenotification
...
Bumps [vue-loader](https://github.com/vuejs/vue-loader ) from 15.6.0 to 15.6.1.
- [Release notes](https://github.com/vuejs/vue-loader/releases )
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vuejs/vue-loader/commits )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-26 20:35:10 +00:00
dependabot[bot]
0ac37a7c78
Bump vue-loader from 15.6.0 to 15.6.1 in /apps/accessibility
...
Bumps [vue-loader](https://github.com/vuejs/vue-loader ) from 15.6.0 to 15.6.1.
- [Release notes](https://github.com/vuejs/vue-loader/releases )
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vuejs/vue-loader/commits )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-26 02:12:55 +00:00
Nextcloud bot
4611ad5a9c
[tx-robot] updated from transifex
2019-01-26 01:12:19 +00:00
imsolost
5742ec79ab
changed case on variable to match initial case
...
Signed-off-by: imsolost <imsolost@gmail.com>
2019-01-25 11:16:37 -08:00
imsolost
3e37620cc2
fixed replacement functions to catch all instances of parenthesis
...
Signed-off-by: imsolost <imsolost@gmail.com>
2019-01-25 11:16:37 -08:00
Roeland Jago Douma
daed830abd
Merge pull request #13815 from nextcloud/dependabot/npm_and_yarn/apps/accessibility/webpack-4.29.0
...
Bump webpack from 4.28.4 to 4.29.0 in /apps/accessibility
2019-01-25 19:25:58 +01:00
Roeland Jago Douma
55d4b9e5a6
Merge pull request #13814 from nextcloud/dependabot/npm_and_yarn/apps/accessibility/@babel/preset-env-7.3.1
...
Bump @babel/preset-env from 7.2.3 to 7.3.1 in /apps/accessibility
2019-01-25 18:58:04 +01:00
Morris Jobke
db00b210a3
Merge pull request #13801 from nextcloud/design/highcontrast-fix
...
Fix for high contrast theme
2019-01-25 14:08:19 +01:00
dependabot[bot]
5de03c3290
Bump webpack from 4.28.4 to 4.29.0 in /apps/accessibility
...
Bumps [webpack](https://github.com/webpack/webpack ) from 4.28.4 to 4.29.0.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Commits](https://github.com/webpack/webpack/compare/v4.28.4...v4.29.0 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-25 10:43:46 +00:00
dependabot[bot]
0ec7313eeb
Bump @babel/preset-env from 7.2.3 to 7.3.1 in /apps/accessibility
...
Bumps [@babel/preset-env](https://github.com/babel/babel ) from 7.2.3 to 7.3.1.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/compare/v7.2.3...v7.3.1 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-25 09:13:41 +00:00
dependabot[bot]
6b0fc2a561
Bump vue-loader from 15.5.1 to 15.6.0 in /apps/accessibility
...
Bumps [vue-loader](https://github.com/vuejs/vue-loader ) from 15.5.1 to 15.6.0.
- [Release notes](https://github.com/vuejs/vue-loader/releases )
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vuejs/vue-loader/compare/v15.5.1...v15.6.0 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-25 09:12:47 +00:00
Joas Schilling
ec12353f47
Merge the str_replacements
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-24 20:35:55 +01:00
Joas Schilling
8e48140c86
Fix linear-gradient for long comments on dark-theme
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-24 20:35:14 +01:00
Jan-Christoph Borchardt
a05219d24d
Accessibility: Fix header icon opacity with high contrast theme
...
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
2019-01-24 19:10:37 +01:00
Roeland Jago Douma
82b5828e37
Merge pull request #13778 from nextcloud/dependabot/npm_and_yarn/apps/updatenotification/@babel/preset-env-7.3.1
...
Bump @babel/preset-env from 7.2.3 to 7.3.1 in /apps/updatenotification
2019-01-24 15:02:44 +01:00
Roeland Jago Douma
b17a4afaa1
Merge pull request #13777 from nextcloud/dependabot/npm_and_yarn/apps/updatenotification/vue-loader-15.6.0
...
Bump vue-loader from 15.5.1 to 15.6.0 in /apps/updatenotification
2019-01-24 15:00:16 +01:00
Morris Jobke
cea530d221
Merge pull request #13742 from nextcloud/bugfix/noid/add-icon-to-restore-activity
...
Add icon to restore activity
2019-01-24 14:46:15 +01:00
Morris Jobke
3ab7ee59a0
Merge pull request #13786 from nextcloud/bugfix/noid/accessibility-rewrite-url
...
Remove .css fileending from accessibility user css route
2019-01-24 14:44:16 +01:00
Morris Jobke
6cdb392ec5
Merge pull request #13644 from nextcloud/fix/12991/catch-nouserexception-groupusersdetails
...
ignore non existing users when retrieving details of group members
2019-01-24 14:23:46 +01:00
dependabot[bot]
b708ebbf0c
Bump vue-loader from 15.5.1 to 15.6.0 in /apps/updatenotification
...
Bumps [vue-loader](https://github.com/vuejs/vue-loader ) from 15.5.1 to 15.6.0.
- [Release notes](https://github.com/vuejs/vue-loader/releases )
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vuejs/vue-loader/compare/v15.5.1...v15.6.0 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-01-24 13:57:56 +01:00
dependabot[bot]
c849948e5b
Bump webpack from 4.28.4 to 4.29.0 in /apps/updatenotification
...
Bumps [webpack](https://github.com/webpack/webpack ) from 4.28.4 to 4.29.0.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Commits](https://github.com/webpack/webpack/compare/v4.28.4...v4.29.0 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-01-24 11:11:10 +01:00
Julius Härtl
5b96166507
Remove .css fileending from accessibility user css route
...
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-01-24 09:57:36 +01:00
Roeland Jago Douma
3c6d3ae5e0
Merge pull request #13775 from nextcloud/dependabot/npm_and_yarn/apps/oauth2/webpack-4.29.0
...
Bump webpack from 4.28.4 to 4.29.0 in /apps/oauth2
2019-01-24 08:50:48 +01:00
dependabot[bot]
b547027450
Bump @babel/preset-env from 7.2.3 to 7.3.1 in /apps/updatenotification
...
Bumps [@babel/preset-env](https://github.com/babel/babel ) from 7.2.3 to 7.3.1.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/compare/v7.2.3...v7.3.1 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-24 07:30:47 +00:00
dependabot[bot]
efe8d486a8
Bump webpack from 4.28.4 to 4.29.0 in /apps/oauth2
...
Bumps [webpack](https://github.com/webpack/webpack ) from 4.28.4 to 4.29.0.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Commits](https://github.com/webpack/webpack/compare/v4.28.4...v4.29.0 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-24 07:27:54 +00:00
dependabot[bot]
78162aef09
Bump vue-loader from 15.5.1 to 15.6.0 in /apps/oauth2
...
Bumps [vue-loader](https://github.com/vuejs/vue-loader ) from 15.5.1 to 15.6.0.
- [Release notes](https://github.com/vuejs/vue-loader/releases )
- [Changelog](https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vuejs/vue-loader/compare/v15.5.1...v15.6.0 )
Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-01-24 07:27:16 +00:00
Nextcloud bot
2277c21f3e
[tx-robot] updated from transifex
2019-01-24 01:12:02 +00:00
Jan-Christoph Borchardt
f0ea6961f9
Merge pull request #13652 from nextcloud/bugfix/noid/darktheme-black-icon-on-empty-content
...
Fix empty content icons in header on darktheme
2019-01-23 23:44:46 +01:00
John Molakvoæ
31335f983c
Merge pull request #13734 from nextcloud/bugfix/noid/link-share-breadcrumb
...
Call proper function when fetching link shares in the breadcrumb view
2019-01-23 19:14:41 +01:00
Joas Schilling
71e394d9cf
Fix empty content icons on darktheme
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-23 12:55:19 +01:00
Nextcloud bot
2ba75ac9b0
[tx-robot] updated from transifex
2019-01-23 01:12:05 +00:00
Jan-Christoph Borchardt
ccc35d5566
Merge pull request #13648 from nextcloud/darktheme-fix
...
🕶 Dark theme fixes
2019-01-22 16:30:14 +01:00
Joas Schilling
0ba9e3b8bd
Make the yellow favorite icon non-monochrome
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-22 16:13:29 +01:00
Julius Härtl
e5445ccbba
Call proper function when fetching link shares in the breadcrumb view
...
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-01-22 15:56:42 +01:00
Joas Schilling
55cd351324
Add icon to restore activity
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-01-22 15:37:07 +01:00
John Molakvoæ
b1d4c3f50b
Merge pull request #13642 from nextcloud/contacts-menu-url-fix
...
Allow access to addressbook unique uri
2019-01-22 13:00:07 +01:00
John Molakvoæ (skjnldsv)
22112bf71d
Allow access to addressbook unique uri
...
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Co-Authored-By: Joas Schilling <coding@schilljs.com>
2019-01-22 10:03:56 +01:00
Roeland Jago Douma
03290df8d4
Merge pull request #13723 from kofemann/patch-1
...
apps: file-upload: fix typo in comments
2019-01-22 09:26:40 +01:00