summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-10-2730-26/+162
|
* Fix off-by-one bugsStefan Weil2018-10-261-2/+2
| | | | | | | | | This fixes warnings from LGTM: Off-by-one index comparison against length may lead to out-of-bounds read. Signed-off-by: Stefan Weil <sw@weilnetz.de>
* Merge pull request #12038 from nextcloud/assemblystream_sizeMorris Jobke2018-10-261-1/+3
|\ | | | | Implement the size of an assembly stream
| * Implement the size of an assembly streamRoeland Jago Douma2018-10-261-1/+3
| | | | | | | | | | | | | | This will make it possible to act propely on moves of future files if we need to know the size (like for max size virus scanning). Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #12053 from ↵Morris Jobke2018-10-267-42/+10
|\ \ | | | | | | | | | | | | nextcloud/enhancement/10923/remove-unncessary-check remove LDAP::hasPagedResultSupport() from PHP < 5.4 days
| * | functions that were checked for are present since PHP 5.4, supported is >=/Arthur Schiwon2018-10-257-42/+10
| | | | | | | | | | | | | | | | | | | | | * so the check from older days is really not necessary anymore * resolves #10923 Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | [tx-robot] updated from transifexNextcloud bot2018-10-2622-2/+38
|/ /
* | Merge pull request #12016 from nextcloud/wip/noid/icon-base64Morris Jobke2018-10-251-2/+2
|\ \ | | | | | | Directly embed icons into the icon-vars css file
| * | Keep list of icons in a separate file for use in the accessibility appJulius Härtl2018-10-251-2/+2
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Merge pull request #11988 from nextcloud/docs/jsdoc-buildMorris Jobke2018-10-254-6/+7
|\ \ \ | | | | | | | | JSdoc build fixes and move build script out of the root folder
| * | | Adjust some jsdocsJulius Härtl2018-10-241-0/+1
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | Fix jsdocs build on server repoJulius Härtl2018-10-243-6/+6
| | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | Set error expected by the DAV client for a failed moveDaniel Calviño Sánchez2018-10-251-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A revert triggers a move in the DAV client, and the DAV client expects a DAV error message to be provided by the server in case of failure; if no error message is given the client ends trying to get an attribute from an undefined object and "crashes". Besides that, if the revert fails the "done" callback of the promise (the first parameter of "then") is never called, so a "fail" callback should be used instead. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | | Wait for the promise to be fulfilled before running the next testDaniel Calviño Sánchez2018-10-251-4/+6
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Jasmine 2.5 the "it" function takes an optional parameter that should be called when the async work is completed (returning a promise was introduced in Jasmine 2.7, so it is not supported yet in the tests). If the parameter is not declared then the next test is executed without waiting for the asynchronous work in the previous one to finish, which could cause that asynchronous work to finish while a different test is being run. Note that if that happens the test could still work as expected if it relied only in local variables. However, in the case of the successful revert tests, the stubs being checked are not the ones created when that test was initialized, but the ones created when the next test, the failed revert test, was initialized and the previous variables were replaced (although the model itself calls the proper stubs, as they are set through parameters in function calls). Besides all that, the checks in the failed revert test were never executed due to a different problem which will be fixed in the next commit. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | [tx-robot] updated from transifexNextcloud bot2018-10-2528-0/+28
| | |
* | | Merge pull request #11889 from stweil/lgtmMorris Jobke2018-10-241-1/+1
|\ \ \ | |_|/ |/| | Remove replace call which does not replace anything
| * | Remove replace call which does not replace anythingStefan Weil2018-10-241-1/+1
| | | | | | | | | | | | | | | | | | The original code replaced / by /. Signed-off-by: Stefan Weil <sw@weilnetz.de>
* | | skip already encrypted files on encrypt all commandBjoern Schiessle2018-10-242-0/+39
| |/ |/| | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | Merge pull request #11573 from nextcloud/gridview-tableMorris Jobke2018-10-2422-24/+370
|\ \ | | | | | | Files grid view
| * | Fix FF performance and recals issuesJohn Molakvoæ (skjnldsv)2018-10-231-2/+0
| | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | Allow focus on input with keyboardJohn Molakvoæ (skjnldsv)2018-10-232-3/+5
| | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | Restore table headJohn Molakvoæ (skjnldsv)2018-10-231-0/+1
| | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | Merge branch 'master' of https://github.com/nextcloud/server into gridview-tableJohn Molakvoæ (skjnldsv)2018-10-2355-244/+473
| |\ \ | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Add filepicker toggleJohn Molakvoæ (skjnldsv)2018-10-232-0/+16
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Use preview-x & preview-y on public pagesJohn Molakvoæ (skjnldsv)2018-10-231-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Fix public background overrideJohn Molakvoæ (skjnldsv)2018-10-231-1/+0
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Public fixes, request & default to gridJohn Molakvoæ (skjnldsv)2018-10-232-3/+7
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Tooltip on hover onlyJohn Molakvoæ (skjnldsv)2018-10-231-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Fix grey background over thumbnailJohn Molakvoæ (skjnldsv)2018-10-231-1/+2
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Fix table hidden on empty folderJohn Molakvoæ (skjnldsv)2018-10-231-1/+2
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Revert "Remove negative z-index on thumbnail-wrapper, caused thumbnails to ↵Jan-Christoph Borchardt2018-10-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | not show" This reverts commit fb7fb1cebae5af129c4474a380e0f5e55f79569f. Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * | | Reduce bottom whitespace on share link pageJan-Christoph Borchardt2018-10-181-3/+9
| | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * | | More space for filename on public share page since there is no share iconJan-Christoph Borchardt2018-10-181-3/+10
| | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * | | In "Deleted files", do not show "Restore" text next to icon as there is no spaceJan-Christoph Borchardt2018-10-181-0/+7
| | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * | | Fix tabbability to view-toggle, action on Enter to be fixedJan-Christoph Borchardt2018-10-181-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * | | Adjustments for public share page, actions menu, view toggleJan-Christoph Borchardt2018-10-181-0/+14
| | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * | | Remove negative z-index on thumbnail-wrapper, caused thumbnails to not showJan-Christoph Borchardt2018-10-181-1/+0
| | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * | | If there is a comment, show it instead of the share iconJan-Christoph Borchardt2018-10-181-0/+5
| | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * | | If an avatar is present, show that instead of the iconJan-Christoph Borchardt2018-10-181-5/+16
| | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * | | Border radiusJohn Molakvoæ (skjnldsv)2018-10-181-0/+5
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Fix spacingJohn Molakvoæ (skjnldsv)2018-10-181-3/+3
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Default to gridJohn Molakvoæ (skjnldsv)2018-10-181-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Fix focus backgroundJohn Molakvoæ (skjnldsv)2018-10-181-2/+5
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Improve default visual and selection + default to file linkJohn Molakvoæ (skjnldsv)2018-10-181-13/+40
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | TooltipJohn Molakvoæ (skjnldsv)2018-10-183-2/+3
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Remember toggle and events handlerJohn Molakvoæ (skjnldsv)2018-10-185-6/+39
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Hidden footerJohn Molakvoæ (skjnldsv)2018-10-181-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Loading hidden fixJohn Molakvoæ (skjnldsv)2018-10-181-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Set grid variable and overall size adjustementJohn Molakvoæ (skjnldsv)2018-10-181-17/+43
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Fixed multiselect and headerJohn Molakvoæ (skjnldsv)2018-10-181-16/+25
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>