summaryrefslogtreecommitdiffstats
path: root/settings/js/personal.js
Commit message (Collapse)AuthorAgeFilesLines
* 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
* 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
|
* Don't pollute the global namespaceThomas Müller2015-04-211-4/+6
|
* fix date variableMorris Jobke2015-04-201-1/+1
|
* Migrate personal certificate handling into AppFramework controllersLukas Reschke2015-04-201-9/+13
| | | | Also added unit-tests and better error-handling
* remove slow fade animation for remaining tipsy tooltipsJan-Christoph Borchardt2015-04-151-1/+1
|
* Merge pull request #14472 from owncloud/feature/wipencryptionappThomas Müller2015-04-071-75/+0
|\ | | | | encryption 2.0 app
| * Removing left overs from old encryption appThomas Müller2015-04-071-75/+0
| |
* | Revert "[WIP] Only show SSL table header if there are certificates"Morris Jobke2015-04-071-9/+0
|/
* Merge pull request #15345 from rullzer/fix_15263Jan-Christoph Borchardt2015-04-071-0/+9
|\ | | | | [WIP] Only show SSL table header if there are certificates
| * Only show SSL table header if there are certificatesRoeland Jago Douma2015-03-311-0/+9
| |
* | Fix JS reference error for personal password changingRobin McCorkell2015-03-311-1/+1
|/
* Don't use placeholder for password in IE8 & 9Morris Jobke2015-03-261-1/+7
| | | | | | | | | * the placeholder is in IE 8 and 9 just set as text and styled a bit grey. If the form is then serialized without typing something in the placeholder is sent as value * this fixes that behaviour for the password field and properly detects empyt passwords * fixes #14912
* Merge pull request #10599 from owncloud/move_passwordchange_textLukas Reschke2015-02-241-4/+9
|\ | | | | Make the password changed msg inline to fix #10242
| * Make the password changed msg inline to fix #10242kondou2015-02-111-4/+9
| |
* | Encode Requesttoken for avatarsLukas Reschke2015-02-171-2/+2
|/ | | | | | Fixes new avatar selection in master half, other half will work when https://github.com/owncloud/core/pull/14266 has get merged. Shocking to see how much places in our code do it wrong :gun:
* Fix js error in personal settings if there is no password fieldRobin Appelman2015-01-091-1/+3
|
* Merge pull request #12921 from owncloud/user-mail-user-managementThomas Müller2014-12-191-3/+14
|\ | | | | Mail address of users is now changable in the user management
| * Mail address of users is now changable in the user managementMorris Jobke2014-12-181-3/+14
| | | | | | | | | | | | | | | | | | | | | | * introduced new route settings/users/{id}/mailAddress * kept old responses * better error messages * dropped lostpassword.php from settings/ajax * cleaned up the UserList.add() and hand in user object instead of each attribute as another parameter * check for change permission of mail address * proper response messages
* | load showpassord.js conditionally in the template only if neededThomas Müller2014-12-161-0/+1
|/
* bower zxcvbnMorris Jobke2014-11-061-1/+1
|
* Add unit tests and fix rootcerts creation bugLukas Reschke2014-08-311-1/+1
|
* Cleanup routesRobin Appelman2014-08-311-2/+1
|
* Move certificate management interface from files_external to coreRobin Appelman2014-08-311-87/+128
|
* remove obsolete placeholder call, fix #8881Jan-Christoph Borchardt2014-06-041-2/+0
|
* add missing placeholder shim for change password fields in IE8/9Jan-Christoph Borchardt2014-06-031-0/+2
|
* prevent pageload if pressed enter on name email changeVolkan Gezer2014-05-301-1/+1
|
* fix typo encryptionVolkan Gezer2014-05-151-2/+2
|
* backup the encryption key after the encryption was disabled so that the userBjoern Schiessle2014-05-131-9/+52
| | | | can restore them if needed