summaryrefslogtreecommitdiffstats
path: root/settings/js/personal.js
Commit message (Collapse)AuthorAgeFilesLines
* Always enable avatarsMorris Jobke2017-02-131-9/+7
| | | | | | | | | * we introduced this setting in the begining because our avatar support caused some performance issues, but we fixed them and should only provide one way how Nextcloud looks Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Fix #2473John Molakvoæ (skjnldsv)2016-12-061-26/+11
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* remove dead js code from personal settingsChristoph Wurst2016-12-051-55/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add federation scope to the user avatarChristoph Wurst2016-11-211-3/+3
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Add more personal information fields to the settings page for enhanced ↵Christoph Wurst2016-11-211-7/+16
| | | | | | | | | | federated sharing fix layout Add generic way of handling input change events Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fix error message displayingJoas Schilling2016-11-181-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix route and jsRoeland Jago Douma2016-11-061-6/+9
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Removed else statement preventing Success message from displaying causing ↵Henry Mohn2016-11-041-11/+10
| | | | | | bug #1875 Signed-off-by: Henry Mohn <hmohniii@gmail.com>
* Merge pull request #1828 from nextcloud/avatar-picker-improvementsMorris Jobke2016-10-241-11/+23
|\ | | | | Avatar picker improvements
| * use smaller cropper on small screensRobin Appelman2016-10-241-2/+2
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * set initial cropper to max sizeRobin Appelman2016-10-211-4/+6
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * show spinner while loading/cropping avatarRobin Appelman2016-10-201-2/+10
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * only show cropper dialog when the cropper is readyRobin Appelman2016-10-201-1/+2
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * float the avatar cropper over the pageRobin Appelman2016-10-201-4/+2
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * Prevent flashing the full sized image when cropping an avatarRobin Appelman2016-10-201-2/+5
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Fix personal pageRoeland Jago Douma2016-10-211-1/+1
|/ | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* The red box already makes clear it's an errorJoas Schilling2016-10-181-4/+4
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* remove old indicators for "saving started" and "saving successful"Morris Jobke2016-10-061-2/+0
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Removes spinner in case password is wrong as well.Raghu Nayyar2016-09-171-1/+1
|
* Removes tipsy when password verification is going onRaghu Nayyar2016-09-171-0/+2
|
* Removes the check mark after 5 second timeout.Raghu Nayyar2016-09-171-0/+12
|
* Adds a checkmark when the change is complete.Raghu Nayyar2016-09-171-0/+1
|
* Disables teh button when clicked change password.Raghu Nayyar2016-09-171-1/+2
|
* Cache avatars properlyRoeland Jago Douma2016-08-301-2/+11
| | | | | * Set proper caching headers for avatars (15 minutes) * For our own avatar use some extra logic to invalidate when we update
* verify user password on changeBjoern Schiessle2016-06-271-11/+19
|
* Merge remote-tracking branch 'upstream/master' into master-upstream-syncLukas Reschke2016-06-261-0/+11
|\
| * redirect to new login route (#25099)Christoph Wurst2016-06-211-0/+11
| | | | | | | | | | | | * redirect to new login route * encode anchor in url and restore it client-side
* | fix strengthify in personal settingsMorris Jobke2016-06-151-1/+2
|/
* list user's auth tokens on the personal settings pageChristoph Wurst2016-05-231-0/+7
|
* Merge pull request #22783 from patelfenil/bugfix-issue-17320Thomas Müller2016-04-251-2/+9
|\ | | | | Remove image now not coming when user changes fullname. Fixes #17320
| * Remove image now not coming when user changes fullname. Fixes #17320patelfenil2016-03-071-2/+9
| |
* | replace $.parseJSON() by JSON.parse()Christoph Wurst2016-04-191-3/+3
| |
* | Disable pastezone for jquery.fileuploadLukas Reschke2016-03-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | jquery.fileupload offers the [`pastezone`](https://github.com/blueimp/jQuery-File-Upload/wiki/Options#pastezone) functionality. This functionality is enabled by default and if somebody copy-pastes something into Chrome it will automatically trigger an upload of the content to any configured jquery.fileupload element embedded in the JS. This implementation triggers some problems: 1. The pastezone is defined globally by default (:see_no_evil:). So if there are multiple fileupload's on a page (such as in the personal settings) then stuff is going to be uploaded to all embedded uploads. 2. Our server code is not able to parse the data. For example for uploads in the files app we expect a file name which is not specified => Just an error is thrown. You can reproduce this by taking a file into your clipboard and in Chrome then pressing <kbd>CTRL + V</kbd>. 3. When copy-pasting some string from MS Office on the personal page a temporary avatar with said content is created. Considering that this is anyways was never working at all and causes bugs I've set the `pastezone` to `null`. This mens that upload via copy and paste will be disabled. Lesson learned: Third-party JS libraries can have some weird details.
* | Update avatar on username change if avatar is setMorris Jobke2016-03-171-1/+4
|/ | | | * fixes #20455
* Save display name and email address on paste operations - fixes #22245Thomas Müller2016-02-091-0/+8
|
* Hide the delete button, until we know its a custom avatarJoas Schilling2016-01-261-9/+8
|
* Allow admins to add system wide root certificatesRobin Appelman2016-01-121-67/+0
|
* fix overlap and functionality of cropperJan-Christoph Borchardt2015-12-281-1/+1
|
* improve layout of personal settings pageJan-Christoph Borchardt2015-12-281-1/+1
|
* Only load the big (128x128) avatar on the perosnal pageRoeland Jago Douma2015-12-171-0/+5
| | | | | Before the code was executed on every page if a user was logged in. Now only on the personal page. Thus saving a request on all other pages.
* Use .text instead of .htmlLukas Reschke2015-11-301-3/+3
| | | Makes some static source code analyzers happier.
* Moved changedisplayname to usercontrollerRoeland Jago Douma2015-11-201-1/+1
| | | | | Killed the old static route to change a users display name and moved it to a properly testable controller.
* Merge pull request #19625 from owncloud/passwordchange-hidestrengthifyThomas Müller2015-10-141-1/+1
|\ | | | | Properly hide strengthify after password change
| * Properly hide strengthify after password changeVincent Petry2015-10-071-1/+1
| |
* | Fix uploading avatar and root certs in IE8Vincent Petry2015-10-091-11/+35
|/
* Remove requesttoken for avatarsLukas Reschke2015-08-231-1/+1
| | | | First step for https://github.com/owncloud/core/issues/11915
* [avatar] add error handlers for avatar setupMorris Jobke2015-07-301-1/+33
| | | | | | | | | | | | add colon to translated string use placeholder in t() Adding a size limitation for avatar upload Unit test for file size Fix typo & display server side error message
* assign error message to correct objectmichag862015-07-221-2/+2
| | | fix for #17817
* Allow user to set an empty email addressMorris Jobke2015-05-051-4/+5
| | | | * fixes #16057
* Only show SSL table header if there are certificatesRoeland Jago Douma2015-05-041-0/+9
|