summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Remove deprecated \OCP\ConfigRoeland Jago Douma2018-01-133-3/+3
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update composerMorris Jobke2018-01-1238-190/+266
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Make sure the arrays are arraysJoas Schilling2018-01-121-3/+3
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* [tx-robot] updated from transifexNextcloud bot2018-01-124-16/+38
|
* Merge pull request #7796 from nextcloud/ldap-sync-fixesMorris Jobke2018-01-113-12/+11
|\ | | | | LDAP Sync fixes: revert recursion resolution, fixed handling of pagingsize of 0
| * revert resolving of recursion (3628d4d65d67d12afc93d969de61cb06a33179fd)Arthur Schiwon2018-01-111-5/+2
| | | | | | | | | | | | | | | | without recursion we have issues with internal states. paged search status are set to false, cookies are not being set. In the end we have endless requests which pile up enormously with a high initial offset. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * fix return value when ldapPagingSize returns nullArthur Schiwon2018-01-112-3/+4
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * enrich log message with backtrace, but level it down to DEBUGArthur Schiwon2018-01-111-3/+3
| | | | | | | | | | | | | | The message is not helpful anyway for an admin, and oftentimes is just valid (e.g. when searching with an offset beyond users in LDAP). Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * when paged results are turned off, all (max possible) users are returnedArthur Schiwon2018-01-112-2/+3
| | | | | | | | | | | | thus hasMoreResult should return false Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Merge pull request #7709 from ↵Morris Jobke2018-01-111-0/+1
|\ \ | | | | | | | | | | | | nextcloud/fix-password-displayed-as-username-in-password-manager Fix password displayed as username in Firefox password manager dialog
| * | Add strengthify bar after plain text input clone of password inputDaniel Calviño Sánchez2018-01-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To show the password in plain text "showPassword" adds a text input after the password input and swaps their visibility depending on whether the password has to be shown in plain text or not. In a similar way, "strengthify" by default adds the strength bar after the input element it was called on. Due to this, if "showPassword" is called before "strengthify" on the same password input then the strength bar ends between the password input and the text input, and when the text input is shown it appears below the strength bar. To fix this now the strength bar is added after the text input in those places in which "strengthify" was called after "showPassword" on the same element. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #7776 from nextcloud/theming-capabilties-enhancementsMorris Jobke2018-01-116-53/+99
|\ \ \ | | | | | | | | More detailed theming capabilities
| * | | More detailed theming capabilitiesJulius Härtl2018-01-106-53/+99
| | | | | | | | | | | | | | | | | | | | | | | | This will allow clients to easily check if a custom background is used Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | Merge pull request #7791 from nextcloud/bugfix/noid/fix-update-notificationMorris Jobke2018-01-111-6/+1
|\ \ \ \ | | | | | | | | | | Fix displaying of the HTML update notification
| * | | | Fix displaying of the HTML notificationJoas Schilling2018-01-111-6/+1
| |/ / / | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #7783 from ↵Julius Härtl2018-01-112-14/+37
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | nextcloud/fix-empty-details-view-after-renaming-a-file Fix empty details view after renaming a file
| * | | | Fix empty details view after renaming a fileDaniel Calviño Sánchez2018-01-112-1/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "FileList._updateDetailsView" expects either a file name (as a string) or a file model (as an "OCA.File.FileInfoModel"), but when called through "updateInList" an "OC.Files.FileInfo" object was given instead. As the given attribute was not a model "_updateDetailsView" treated it as a file name and tried to get the model for that file, which failed and caused the details view to be emptied. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | Move adding test files to "beforeEach()"Daniel Calviño Sánchez2018-01-111-13/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All the tests in the "Renaming files" section added the test files, although those calling "doRename()" added them by setting a path for the file too. However, the path is ignored in the other tests, so adding the files can be unified and moved to "beforeEach()". This would be needed, for example, to show the details view for a file before calling "doRename()". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | | | Merge pull request #7785 from nextcloud/mount-type-federated-sharesRoeland Jago Douma2018-01-111-0/+10
|\ \ \ \ \ | |_|_|_|/ |/| | | | return correct mount type for federated shares
| * | | | return correct mount type for federated sharesBjoern Schiessle2018-01-111-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix https://github.com/nextcloud/server/issues/6584 Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | | | | [tx-robot] updated from transifexNextcloud bot2018-01-112-0/+4
| |/ / / |/| | |
* | | | Merge pull request #7765 from nextcloud/fix_5574Morris Jobke2018-01-102-8/+9
|\ \ \ \ | |/ / / |/| | | Don't encode paths that will be passed to the davclient
| * | | Don't encode paths passed to the OC.Files.ClientRoeland Jago Douma2018-01-101-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is handled already in the client. So double encoding breaks things in some situations. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | Return proper principal on the uploads collection listingRoeland Jago Douma2018-01-101-1/+2
| | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | Merge pull request #7773 from nextcloud/add-events-for-favoritesMorris Jobke2018-01-103-4/+25
|\ \ \ \ | |_|/ / |/| | | Add events for favorites
| * | | Add events for favoritesJoas Schilling2018-01-103-4/+25
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Fix appmenu svg double invertJulius Härtl2018-01-101-6/+10
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | This fixes a regression caused by 9b668d0, where the css filters to preview color inversion of the app menu was applied by default. This commit makes the css filters sensitive on what the current state of the app menu is. Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | [tx-robot] updated from transifexNextcloud bot2018-01-104-0/+8
| | |
* | | Merge pull request #7705 from nextcloud/theming-calc-adjustMorris Jobke2018-01-093-18/+61
|\ \ \ | |/ / |/| | Adjust theming color calculations using sRGB luma
| * | Add colors to testsJulius Härtl2018-01-081-7/+13
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | Fix preview when theming changes invertion of iconsJulius Härtl2018-01-081-0/+9
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | Adjust theming color calculations using sRGB lumaJulius Härtl2018-01-082-11/+39
| | | | | | | | | | | | | | | | | | based on https://robots.thoughtbot.com/closer-look-color-lightness Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Merge pull request #7713 from nextcloud/fix-sync-offsetMorris Jobke2018-01-096-7/+358
|\ \ \ | | | | | | | | Fix LDAP Background Sync does not reset offset
| * | | extend test for rotating prefixesArthur Schiwon2018-01-081-1/+10
| | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | fix changing to next cycleArthur Schiwon2018-01-081-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | add tests for whole run commandArthur Schiwon2018-01-081-0/+104
| | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | add unit test for qualifies to runArthur Schiwon2018-01-082-5/+21
| | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | add unit test for determining next cycleArthur Schiwon2018-01-081-0/+41
| | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | fix offset is never being resetArthur Schiwon2018-01-051-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | create failing test for this caseArthur Schiwon2018-01-056-2/+183
| | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | Fix SCSS processing when undoing theming valuesJulius Härtl2018-01-091-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | [tx-robot] updated from transifexNextcloud bot2018-01-0912-0/+22
| | | |
* | | | Merge pull request #7716 from ↵Morris Jobke2018-01-082-0/+38
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | nextcloud/hide-favourite-icon-in-details-view-if-favourite-action-is-not-available Hide favourite icon in details view if favourite action is not available
| * | | Hide favourite icon in details view if favourite action is not availableDaniel Calviño Sánchez2018-01-052-0/+38
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the favourite icon in the details view is clicked the "Favorite" action is triggered. However, if the action name given to "triggerAction" is not found then the "Download" action is triggered instead. As the "Favorite" action is not available in some file lists (like "Recents") the "Download" action was executed instead in those cases, which was a strange behaviour. Now the favourite icon is hidden if its action is not available. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | [tx-robot] updated from transifexNextcloud bot2018-01-082-0/+2
| | |
* | | [tx-robot] updated from transifexNextcloud bot2018-01-076-0/+10
| | |
* | | [tx-robot] updated from transifexNextcloud bot2018-01-0622-134/+214
|/ /
* / Fix faulty path in theming scss generationJulius Härtl2018-01-051-1/+1
|/ | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* [tx-robot] updated from transifexNextcloud bot2018-01-0518-0/+94
|
* Composer updatedRoeland Jago Douma2018-01-0438-304/+228
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>