summaryrefslogtreecommitdiffstats
path: root/settings
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8135 from coliff/patch-3Morris Jobke2018-02-052-2/+2
|\ | | | | Use correct input type for website url
| * Update settings.scssChristian Oliff2018-02-021-1/+1
| |
| * Use correct input type for website urlChristian Oliff2018-02-011-1/+1
| | | | | | type="url"
* | [tx-robot] updated from transifexNextcloud bot2018-02-044-6/+34
| |
* | [tx-robot] updated from transifexNextcloud bot2018-02-0316-50/+562
| |
* | [tx-robot] updated from transifexNextcloud bot2018-02-026-6/+200
| |
* | [tx-robot] updated from transifexNextcloud bot2018-02-01164-8748/+164
|/
* Remove OC_App::removeAppJulius Härtl2018-01-311-1/+4
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Use ::class statement instead of stringMorris Jobke2018-01-292-2/+3
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2018-01-292-46/+46
|
* Remove unneeded semicolon and parenthesesMorris Jobke2018-01-267-7/+7
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Simplify ternary operator statementsMorris Jobke2018-01-261-1/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Return value immediately instead of assigning to a one-time variableMorris Jobke2018-01-261-3/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Properly catch InvalidTokenException for better error responseMorris Jobke2018-01-241-2/+10
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #7918 from nextcloud/properly-log-exceptionsRoeland Jago Douma2018-01-232-2/+9
|\ | | | | Properly log the full exception instead of only the message
| * Properly log the full exception instead of only the messageMorris Jobke2018-01-232-2/+9
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | [tx-robot] updated from transifexNextcloud bot2018-01-232-0/+14
|/
* Remove IAppConfig::setValueRoeland Jago Douma2018-01-171-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #7884 from nextcloud/cleanup-oc_userMorris Jobke2018-01-171-3/+8
|\ | | | | Cleanup OC_User and OCP\User
| * Cleanup OC_User and OCP\UserMorris Jobke2018-01-161-3/+8
| | | | | | | | | | | | * mainly removes deprecated methods and old static code Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | [tx-robot] updated from transifexNextcloud bot2018-01-172-0/+12
|/
* [tx-robot] updated from transifexNextcloud bot2018-01-156-6/+20
|
* [tx-robot] updated from transifexNextcloud bot2018-01-142-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-01-122-0/+8
|
* 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>
* | Fix popover and styling in user managementJulius Härtl2018-01-113-49/+35
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | [tx-robot] updated from transifexNextcloud bot2018-01-102-0/+12
| |
* | [tx-robot] updated from transifexNextcloud bot2018-01-096-0/+30
| |
* | [tx-robot] updated from transifexNextcloud bot2018-01-072-0/+12
| |
* | [tx-robot] updated from transifexNextcloud bot2018-01-0610-8/+162
|/
* [tx-robot] updated from transifexNextcloud bot2018-01-0518-0/+108
|
* [tx-robot] updated from transifexNextcloud bot2018-01-04146-716/+1642
|
* Fix height of table rows in apps management on IE11Julius Härtl2018-01-031-0/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix icon rendering in apps management for IE11Julius Härtl2018-01-032-6/+4
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Invert app icons on IE11 as wellJulius Härtl2018-01-031-18/+23
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Close menu on "mouseup" instead of on "click" events in the documentDaniel Calviño Sánchez2018-01-031-1/+1
| | | | | | | | | | | | | | | | "click" events are handled by several elements in user settings, and some of them (like the edit icon in the user name) stop the propagation of the event. Due to this the event never reaches the document and thus the menu was not closed in those cases. "click" events are always preceded by "mouseup" events (as "click" events are generated when "mousedown" and "mouseup" events occur in the same element), so now the menu is closed when a "mouseup" is received in the document. The described problem would happen too if an element stopped the propagation of the "mouseup" event; currently no element does that in the user settings, so now the menu is always closed as expected. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Fix popover menu not closing in user settingsDaniel Calviño Sánchez2018-01-031-0/+1
| | | | | | | | | | | A popover menu is displayed when its element has the "open" CSS class. That class is added when clicking on the menu toggle, but it was removed only when clicking again on the toggle, so the popover menu in user settings could be closed only by clicking again on the menu toggle. Now the "open" CSS class is removed too when clicking on the body, either directly or through event propagation. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Merge pull request #7583 from nextcloud/comradekingu-patch-1Morris Jobke2018-01-021-6/+6
|\ | | | | Spelling: No ...., upgrades and email.
| * Fix mail attributeRoeland Jago Douma2018-01-021-2/+2
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * Spelling: No ...., upgrades and email.Allan Nordhøy2018-01-021-8/+8
| |
* | Get correct translations for SecurityProviderRoeland Jago Douma2018-01-021-1/+1
|/ | | | | | Fixes #7657 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Hide delete button if the avatar is a generated oneJulius Härtl2017-12-191-2/+4
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Update avatar on displayname changeRoeland Jago Douma2017-12-191-1/+7
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Also replace all other occurencesMorris Jobke2017-12-181-2/+2
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Add warning regarding freetype supportRoeland Jago Douma2017-12-131-0/+9
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2017-12-114-114/+298
|
* [tx-robot] updated from transifexNextcloud bot2017-12-102-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2017-12-092-10/+228
|
* Merge pull request #7390 from nextcloud/update-php-infoMorris Jobke2017-12-081-1/+1
|\ | | | | Show hint that PHP 5.6 will not be supported in Nextcloud 14 anymore