aboutsummaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-08-1120-0/+36
|
* Merge pull request #10642 from nextcloud/bump/autoloadersRoeland Jago Douma2018-08-1019-19/+19
|\ | | | | Bump autoloaders
| * Bump autoloadersRoeland Jago Douma2018-08-1019-19/+19
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #10615 from nextcloud/fix-trashbin-actionsRoeland Jago Douma2018-08-101-2/+0
|\ \ | |/ |/| Fix trashbin file actions
| * Fix trashbin file actionsRobin Appelman2018-08-091-2/+0
| | | | | | | | | | | | Fixes #10491 Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #10543 from nextcloud/ignore-deactivated-usersRoeland Jago Douma2018-08-102-14/+35
|\ \ | | | | | | Do not show deactivated users in sharees and contacts
| * | Test sync service when user is deactivatedThomas Citharel2018-08-061-5/+21
| | | | | | | | | | | | | | | | | | I feel like this could probably be handled better :/ Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * | Remove users from system addressbook when user deactivatedThomas Citharel2018-08-062-10/+15
| | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | | [tx-robot] updated from transifexNextcloud bot2018-08-10108-108/+108
| | |
* | | Merge pull request #10626 from nextcloud/bugfix/noid/quickaccess-spacesRoeland Jago Douma2018-08-091-2/+2
|\ \ \ | | | | | | | | Fix quickaccess active indicator for folders with spaces
| * | | Fix quickaccess active indicator for folders with spacesJulius Härtl2018-08-091-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | Merge pull request #10255 from nextcloud/add-support-for-room-sharesBjörn Schießle2018-08-0914-23/+680
|\ \ \ \ | | | | | | | | | | Add support for room shares
| * | | | Suppress Phan warnings about calling undeclared class methodsDaniel Calviño Sánchez2018-08-082-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The DeletedShareAPIController and ShareAPIController helpers for room shares are defined in Talk, so the classes do not exist when Talk is not installed. Due to this when the object returned by "getRoomShareHelper" is used Phan complains that the class is not declared. This is not a problem, though, because when the class is not available "getRoomShareHelper" throws an exception, which is then caught where that method was called. Therefore now those warnings from Phan are suppressed (it would be better to use "@phan-suppress-next-line" instead, but it is not yet available in our Phan version). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | Log sharing and unsharing with a room in the auditing appDaniel Calviño Sánchez2018-08-081-0/+25
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | Transfer room shares too with the "files:transfer-ownership" commandDaniel Calviño Sánchez2018-08-081-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | Add room shares to DAV and recent files "share-types" propertyDaniel Calviño Sánchez2018-08-085-1/+26
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | Add support for room shares to the share owner updaterDaniel Calviño Sánchez2018-08-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A user can move her own shares into a received share. When that happens she is effectively handing over the ownership of the file, so the share needs to be updated to reflect the new owner. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | Add room shares to the MountProvider for sharesDaniel Calviño Sánchez2018-08-082-1/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The MountProvider for shares creates mount points for the files shared with the user, which makes possible to use the received shared files and folders as regular files and folders. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | Add support for room shares to DeletedShareAPIControllerDaniel Calviño Sánchez2018-08-081-5/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In some cases, the DeletedShareAPIController requires explicit handling of each type of share (for example, to format a share for a DataResponse). Room shares are implemented in an external app (Nextcloud Talk), so in order to keep the controller as isolated as possible from room share specifics all that explicit handling is done in a helper class provided by the Talk app. In other cases it is just enough to call the share manager specifying a room share type; note that the share manager is guarded against share types for which there is no provider, so it is not necessary to explicitly check that before passing room shares to the share manager. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | Add support for room shares to ShareAPIControllerDaniel Calviño Sánchez2018-08-083-15/+547
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In some cases, the ShareAPIController requires explicit handling of each type of share (for example, to format a share for a DataResponse). Room shares are implemented in an external app (Nextcloud Talk), so in order to keep the controller as isolated as possible from room share specifics all that explicit handling is done in a helper class provided by the Talk app. In other cases it is just enough to call the share manager specifying a room share type; note that the share manager is guarded against share types for which there is no provider, so it is not necessary to explicitly check that before passing room shares to the share manager. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | | | Merge pull request #10537 from MartB/mselect_fixRoeland Jago Douma2018-08-092-1/+19
|\ \ \ \ \ | | | | | | | | | | | | Fix multiSelectMenu for public shares #10536
| * | | | | Fix multiSelectMenu for public shares #10536MartB2018-08-062-1/+19
| | |_|/ / | |/| | | | | | | | | | | | | Signed-off-by: Martin Böh (MartB) <mart.b@outlook.de>
* | | | | Merge pull request #8690 from ↵Roeland Jago Douma2018-08-091-9/+10
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | nextcloud/feature/8565/make-thunderbird-and-outlook-addons-identifyable [Part2] Make thunderbird and outlook addons identifyable
| * | | | Add an option for mail addonsJoas Schilling2018-04-191-1/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | Fix code errorsJoas Schilling2018-04-191-8/+8
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | Merge pull request #10548 from nextcloud/fix/10430/update_icewind_streamsRoeland Jago Douma2018-08-089-39/+136
|\ \ \ \ \ | |_|_|_|/ |/| | | | Update icewind/streams
| * | | | Update icewind/streamsRoeland Jago Douma2018-08-069-39/+136
| | |/ / | |/| | | | | | | | | | | | | | | | | | Fixes #10430 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | Merge pull request #10397 from nextcloud/encryption-s3-fixBjörn Schießle2018-08-081-1/+0
|\ \ \ \ | |_|_|/ |/| | | make file cache updates more robust
| * | | make file cache updates more robustBjoern Schiessle2018-07-311-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | only update the encrypted version after the write operation is finished and the stream is closed Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | | | js fixJohn Molakvoæ (skjnldsv)2018-08-081-3/+6
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | Cleanup of leftover-sorting-code from quickaccess-feature #9714 #9720fnuesse2018-08-083-279/+2
| | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | [tx-robot] updated from transifexNextcloud bot2018-08-0810-0/+12
| | | |
* | | | Merge pull request #10558 from nextcloud/fix/noid/failing_sync_job_is_no_errorBjörn Schießle2018-08-071-1/+1
|\ \ \ \ | | | | | | | | | | A failing federation sync job is not an error
| * | | | A failing federation sync job is not an errorRoeland Jago Douma2018-08-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an INFO warning at best. Else it spams the logs continiously. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | [tx-robot] updated from transifexNextcloud bot2018-08-076-4/+10
|/ / / /
* | | | Merge pull request #10523 from janLo/fix-8825blizzz2018-08-062-3/+79
|\ \ \ \ | |_|/ / |/| | | Adding test for table schedulingobjects and fixing postgres LOB
| * | | Adding test for table schedulingobjects and fixing postgres LOBThomas Müller2018-08-062-3/+79
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit afd4ebf0404e8bcd7cba0bec2dce177e97632f8a) Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de>
* | | | [tx-robot] updated from transifexNextcloud bot2018-08-0610-18/+40
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2018-08-0516-0/+32
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2018-08-0424-0/+36
| | | |
* | | | Always call render to replace the app-sidebar if the detail view is updatedJulius Härtl2018-08-032-3/+6
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | Fix return value of change directoryJulius Härtl2018-08-031-1/+1
|/ / / | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | [tx-robot] updated from transifexNextcloud bot2018-08-03200-290/+290
| | |
* | | Merge pull request #10480 from nextcloud/bugfix/10420/settingsRoeland Jago Douma2018-08-028-25/+47
|\ \ \ | | | | | | | | Settings design polishing
| * | | files_external: Fix jsunit testsJulius Härtl2018-08-021-10/+7
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | Fix encryption admin section testsJulius Härtl2018-08-021-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | systemtags: Submit input on enterJulius Härtl2018-08-011-0/+6
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | Move encryption settings to securityJulius Härtl2018-08-011-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | files_external: Add description to settingsJulius Härtl2018-08-011-0/+2
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | files_external: Move delete option to 3-dots menuJulius Härtl2018-08-013-10/+27
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>