summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-07-2820-12/+86
|
* Merge pull request #10416 from nextcloud/bugfix/10414/fix-preview-urlRoeland Jago Douma2018-07-271-3/+3
|\ | | | | Use OC.generateUrl to properly prefix preview images
| * Use OC.generateUrl to properly prefix preview imagesJulius Härtl2018-07-261-3/+3
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | [tx-robot] updated from transifexNextcloud bot2018-07-2730-14/+106
|/
* Merge pull request #10406 from nextcloud/bugfix/10405/undefined-index-classesMorris Jobke2018-07-261-1/+1
|\ | | | | Not all sidebar entries have the "classes" attribute
| * Not all sidebar entries have the "classes" attributeMorris Jobke2018-07-261-1/+1
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Set the favorites to the empty array on failureRoeland Jago Douma2018-07-261-1/+1
|/ | | | | | Else it will start throwing errors because null is not iteratable. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2018-07-26174-130/+272
|
* Merge pull request #9222 from ↵Morris Jobke2018-07-258-48/+421
|\ | | | | | | | | nextcloud/feature/noid/search-for-files-by-comments Allow to search files by comments
| * Brighter comments iconMorris Jobke2018-07-251-1/+3
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
| * Add pagination supportJoas Schilling2018-07-251-17/+30
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * Allow to search by commentsJoas Schilling2018-07-257-1/+345
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * Correctly register everything via the Application classJoas Schilling2018-07-252-48/+62
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Limit small avatar rendering only to inline mentionsJulius Härtl2018-07-251-1/+5
|/ | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* [tx-robot] updated from transifexNextcloud bot2018-07-25126-490/+500
|
* Merge pull request #10310 from nextcloud/accessibility-headerMorris Jobke2018-07-253-13/+20
|\ | | | | Accessibility fixes for header and global elements
| * Trigger upload actions only for Enter & Space keysKevin Ndung'u2018-07-241-2/+4
| | | | | | | | Signed-off-by: Kevin Ndung'u <kevgathuku@gmail.com>
| * Trigger upload action also with keyboard navigation on enterJan-Christoph Borchardt2018-07-241-0/+5
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * Fix ability to open file or folder via keyboard, fix #10008Jan-Christoph Borchardt2018-07-242-12/+12
| | | | | | | | | | | | | | | | | | | | | | Before, the file or folder was opened when clicking on the name span, but not when clicking on the link that contains the name; clicking on the link highlighted the file and opened the sidebar, just like clicking on the file size or date. Now clicking on the link opens the file or folder, so the unit tests that tested clicks on the link were changed to test clicking on the file size instead. Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
| * Make Upload entry in +Menu focusableJan-Christoph Borchardt2018-07-201-1/+1
| | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* | Merge pull request #10378 from nextcloud/bugfix/noid/fix-icon-name-14Morris Jobke2018-07-253-3/+3
|\ \ | | | | | | Fix icon file names
| * | Add group iconJulius Härtl2018-07-241-1/+1
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | Replace contacts-dark icon with contactsJulius Härtl2018-07-242-2/+2
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Merge pull request #10238 from ↵Morris Jobke2018-07-246-38/+321
|\ \ \ | | | | | | | | | | | | | | | | nextcloud/add-support-for-sending-the-password-for-a-share-by-nextcloud-talk Add support for sending the password for a share by Nextcloud Talk
| * | | Add event to load additional scripts in the auth page for public sharesDaniel Calviño Sánchez2018-07-241-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before the public share authentication page is rendered now an event to load additional scripts is dispatched. Thanks to this any app can load its own scripts that, when run on the browser, adjust as needed the page generated by the server. Note, however, that during the handling of the event apps are only able to add scripts or styles to be loaded; they can not render arbitrary content on the page, or change how the content is rendered by the original template; all those changes have to be done by the scripts at run-time. This implies that the scripts of the apps can use only those parameters, like the token of the share, added to the page when it is generated by the "publicshareauth" template. Due to this, and given that the event is being introduced to be used by Talk to inject the UI needed to request the password for a share, the token of the share is now provided in the generated page, just like done in the public share page. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | Add support for sending the password by Talk to ShareAPIControllerDaniel Calviño Sánchez2018-07-243-33/+121
| | | | | | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | Honour "sendPasswordByTalk" property in mail sharesDaniel Calviño Sánchez2018-07-242-2/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a password was set for a mail share an e-mail was sent to the recipient with the password. Now the e-mail is no longer sent if the password is meant to be sent by Talk. However, before the e-mail was not sent when the share was updated but the password was not changed. Now an e-mail is sent in that case too if switching from a password sent by Talk to a password sent by mail. On the other hand, when switching from a password sent by mail to a password sent by Talk it is mandatory to change the password; otherwise the recipient would already have access to the share without having to call the sharer to verify her identity. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | Store "sendPasswordByTalk" property of mail shares in the databaseDaniel Calviño Sánchez2018-07-242-3/+12
| | | | | | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | | Fix transfering ownership of a share to user with same id as receiverDaniel Calviño Sánchez2018-07-241-1/+2
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | When the ownership of a user share is transfered to the receiver the share is removed, as the receiver now owns the original file. However, due to a missing condition, any share with a group, link or remote with the same id as the user was removed, not only the user shares. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #10353 from ↵Morris Jobke2018-07-244-25/+12
|\ \ \ | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/apps/updatenotification/webpack-4.16.2 Bump webpack from 4.16.0 to 4.16.2 in /apps/updatenotification
| * | | Rebuild updatenotificationsRoeland Jago Douma2018-07-243-8/+13
| | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | Bump webpack from 4.16.0 to 4.16.2 in /apps/updatenotificationdependabot[bot]2018-07-242-30/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.16.0 to 4.16.2. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.16.0...v4.16.2) Signed-off-by: dependabot[bot] <support@dependabot.com>
* | | | Merge pull request #10326 from nextcloud/svg-api-suf-fixesMorris Jobke2018-07-241-3/+2
|\ \ \ \ | | | | | | | | | | Fix regex of iconsCacher
| * | | | Fix header controls sticky positioningJohn Molakvoæ (skjnldsv)2018-07-241-3/+2
| | |/ / | |/| | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | Fixed comments designJohn Molakvoæ (skjnldsv)2018-07-241-24/+22
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | Focus the comment input on tab select/loadingJohn Molakvoæ (skjnldsv)2018-07-241-0/+3
|/ / / | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | Phpunit tests fixesJohn Molakvoæ (skjnldsv)2018-07-241-0/+63
| | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | Fixed scrolling containerJohn Molakvoæ (skjnldsv)2018-07-248-12/+0
| | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | Acceptance and mobile navigation fixesJohn Molakvoæ (skjnldsv)2018-07-241-1/+2
|/ / | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | Merge pull request #10331 from weeman1337/fix-10330-files-multi-select-headerMorris Jobke2018-07-241-1/+1
|\ \ | | | | | | Adjusts the files multi select header width
| * | Uses a variable for the multiselect header offsetMichael Weimann2018-07-231-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
| * | Adjusts the files multi select header widthMichael Weimann2018-07-221-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
* | | Merge pull request #10218 from nextcloud/share-commentsRoeland Jago Douma2018-07-2411-160/+371
|\ \ \ | | | | | | | | allow to add a personal note to a share
| * | | Design fixesJohn Molakvoæ (skjnldsv)2018-07-211-2/+4
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Design structure fixesJohn Molakvoæ (skjnldsv)2018-07-211-6/+0
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Tests fixes and design bumpJohn Molakvoæ (skjnldsv)2018-07-212-2/+23
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | move the note up, so that it is also visible in the file drop viewBjoern Schiessle2018-07-211-5/+6
| | | | | | | | | | | | | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
| * | | Public fixesJohn Molakvoæ (skjnldsv)2018-07-211-1/+45
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | Public shareJohn Molakvoæ (skjnldsv)2018-07-211-61/+54
| | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | fix unit testsBjoern Schiessle2018-07-211-5/+8
| | | | | | | | | | | | | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>