aboutsummaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8485 from sagorika1996/renameRoeland Jago Douma2018-02-261-1/+5
|\ | | | | Rename dialog closed when not active
| * rename dialog closed when not activeSagorika Das2018-02-211-1/+5
| | | | | | | | Signed-off-by: Sagorika Das <sagorika1996@gmail.com>
* | Merge pull request #7933 from nextcloud/update-notification-vuejsJoas Schilling2018-02-2614-178/+6614
|\ \ | | | | | | Migrate Update notifications to Vue.js
| * | Fix appnameMorris Jobke2018-02-261-1/+1
| | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
| * | Fix unit testsJoas Schilling2018-02-231-1/+21
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | Use mixin for translationsJoas Schilling2018-02-222-48/+22
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | Use VueSelect instead of select2Joas Schilling2018-02-226-14/+72
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | Move updatenotifications to webpack with .vue fileJoas Schilling2018-02-2211-10706/+6486
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | Migrate the app to Vue.jsJoas Schilling2018-02-228-163/+10767
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | Rename legacy notification so it's less confusingJoas Schilling2018-02-222-2/+2
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Merge pull request #8359 from nextcloud/swift-v3Morris Jobke2018-02-265-8/+71
|\ \ \ | | | | | | | | Support swift v3 authentication
| * | | adjust external storage config format to the one used in primary storageRobin Appelman2018-02-262-5/+9
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | add support for v3 swift authRobin Appelman2018-02-265-8/+67
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Merge pull request #8463 from kyrofa/bugfix/8462/theming_app_outside_rootMorris Jobke2018-02-262-5/+34
|\ \ \ \ | | | | | | | | | | theming: handle not being in the serverroot
| * | | | Remove null checkKyle Fazzari2018-02-251-7/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Kyle Fazzari <kyrofa@ubuntu.com>
| * | | | Add mock to setupKyle Fazzari2018-02-241-16/+4
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Kyle Fazzari <kyrofa@ubuntu.com>
| * | | | theming: handle not being in the serverrootKyle Fazzari2018-02-202-3/+49
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, the theming app assumes it's in the serverroot. However, with Nextcloud's flexibility regarding configurable app paths, this is not a safe assumption to make. If it happens to be an incorrect assumption, the theming app fails to work. Instead of relying on the serverroot, just use the path from the AppManager and utilize relative paths for assets from there. Fix #8462 Signed-off-by: Kyle Fazzari <kyrofa@ubuntu.com>
* | | | Merge pull request #8455 from nextcloud/proper_mount_type_externalMorris Jobke2018-02-262-3/+3
|\ \ \ \ | | | | | | | | | | Properly set the mount type for external storages
| * | | | Properly set the mount type for external storagesRoeland Jago Douma2018-02-202-3/+3
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | Merge pull request #8355 from nextcloud/fix-comments-num-indexMorris Jobke2018-02-263-3/+193
|\ \ \ \ \ | | | | | | | | | | | | Fix comments (and systemtags) when involving users with numerical ids
| * | | | | fix systemtags event with numeric user idsArthur Schiwon2018-02-141-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | | fix creating comments when file is accessible to users with numeric idsArthur Schiwon2018-02-141-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | | test creating comments with numeric user idsArthur Schiwon2018-02-141-0/+187
| | |_|_|/ | |/| | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | | Merge pull request #8203 from Cybso/split-move-copyMorris Jobke2018-02-265-11/+54
|\ \ \ \ \ | | | | | | | | | | | | Split move and copy operations
| * | | | | Split move and copy operationsRoland Tapken2018-02-155-11/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new 'Move and copy' operation from #6040 requires UPDATE permissions on the selected files. However, READ would be sufficient to create a copy of a file (if not viewed as a public share). For this reason this patch: - changes the permission of the 'MoveCopy' action to PERMISSION_READ - changes the label of the action depending on the permissions - changes the available buttons in the Move/Copy dialog depending on the permissions. The same changes are done to the filelist view for bulk actions. Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
* | | | | | Merge pull request #8511 from nextcloud/ext-storage-error-warning-fixMorris Jobke2018-02-263-2/+7
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | Ext storage error warning fix
| * | | | | Updated error messageJohn Molakvoæ (skjnldsv)2018-02-232-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | Fixed default urlsJohn Molakvoæ (skjnldsv)2018-02-222-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | Show error if no external storage configuredJohn Molakvoæ (skjnldsv)2018-02-222-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | | | Merge pull request #8026 from ↵Joas Schilling2018-02-261-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/feature/noid/allow-custom-html-in-html-emails Allow custom HTML in HTML Emails
| * | | | | | Fix existing usagesJoas Schilling2018-02-151-2/+2
| | |_|/ / / | |/| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | Merge pull request #8491 from nextcloud/strict_requestJoas Schilling2018-02-261-0/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Make Request strict
| * | | | | | Fix dav server testRoeland Jago Douma2018-02-221-0/+2
| | |/ / / / | |/| | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | | Merge pull request #8522 from nextcloud/fix-groupmembers-numidsMorris Jobke2018-02-262-8/+92
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix retrieval of group members with numerical uids from LDAP
| * | | | | | fix retrieving group members with numerical uids from LDAPArthur Schiwon2018-02-231-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | | | tests for retrieving group members with numerical uidsArthur Schiwon2018-02-231-2/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | | | | [tx-robot] updated from transifexNextcloud bot2018-02-2410-2/+102
| | | | | | |
* | | | | | | Merge pull request #8507 from nextcloud/fix-change-iconMorris Jobke2018-02-232-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Add some whitespace around change.svg icon
| * | | | | | Add some whitespace around change.svg iconMarin Treselj2018-02-222-1/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Marin Treselj <marin@pixelipo.com>
* | | | | | Merge pull request #8502 from nextcloud/properly-show-hints-in-ocsMorris Jobke2018-02-231-2/+10
|\ \ \ \ \ \ | | | | | | | | | | | | | | Show hint in OCS API for user creation
| * | | | | | Show hint in OCS API for user creationMorris Jobke2018-02-221-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * adds a 107 error code together with the hint of the exception * logs the exception as warning * fixes #7946 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | | | | | [tx-robot] updated from transifexNextcloud bot2018-02-236-4/+80
| | | | | | |
* | | | | | | Merge pull request #8499 from nextcloud/avoid-fruitless-login-attemptsMorris Jobke2018-02-222-3/+30
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | Avoid fruitless login attempts
| * | | | | | track the state of the bind resultArthur Schiwon2018-02-222-3/+30
| |/ / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* / / / / / 2nd parameter to t() must be arrayArthur Schiwon2018-02-224-5/+5
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | | Merge pull request #8490 from nextcloud/strict_systemtagsRoeland Jago Douma2018-02-221-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Make SystemTag strict
| * | | | | Properly castRoeland Jago Douma2018-02-211-1/+1
| | |_|_|/ | |/| | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* / | | | [tx-robot] updated from transifexNextcloud bot2018-02-2216-10/+148
|/ / / /
* | | / [tx-robot] updated from transifexNextcloud bot2018-02-2134-64/+154
| |_|/ |/| |
* | | [tx-robot] updated from transifexNextcloud bot2018-02-208-0/+8
| | |