Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | redirect to new login route (#25099) | Christoph Wurst | 2016-06-21 | 1 | -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 page | Christoph Wurst | 2016-05-23 | 1 | -0/+7 |
| | |||||
* | Merge pull request #22783 from patelfenil/bugfix-issue-17320 | Thomas Müller | 2016-04-25 | 1 | -2/+9 |
|\ | | | | | Remove image now not coming when user changes fullname. Fixes #17320 | ||||
| * | Remove image now not coming when user changes fullname. Fixes #17320 | patelfenil | 2016-03-07 | 1 | -2/+9 |
| | | |||||
* | | replace $.parseJSON() by JSON.parse() | Christoph Wurst | 2016-04-19 | 1 | -3/+3 |
| | | |||||
* | | Disable pastezone for jquery.fileupload | Lukas Reschke | 2016-03-22 | 1 | -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 set | Morris Jobke | 2016-03-17 | 1 | -1/+4 |
|/ | | | | * fixes #20455 | ||||
* | Save display name and email address on paste operations - fixes #22245 | Thomas Müller | 2016-02-09 | 1 | -0/+8 |
| | |||||
* | Hide the delete button, until we know its a custom avatar | Joas Schilling | 2016-01-26 | 1 | -9/+8 |
| | |||||
* | Allow admins to add system wide root certificates | Robin Appelman | 2016-01-12 | 1 | -67/+0 |
| | |||||
* | fix overlap and functionality of cropper | Jan-Christoph Borchardt | 2015-12-28 | 1 | -1/+1 |
| | |||||
* | improve layout of personal settings page | Jan-Christoph Borchardt | 2015-12-28 | 1 | -1/+1 |
| | |||||
* | Only load the big (128x128) avatar on the perosnal page | Roeland Jago Douma | 2015-12-17 | 1 | -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 .html | Lukas Reschke | 2015-11-30 | 1 | -3/+3 |
| | | | Makes some static source code analyzers happier. | ||||
* | Moved changedisplayname to usercontroller | Roeland Jago Douma | 2015-11-20 | 1 | -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-hidestrengthify | Thomas Müller | 2015-10-14 | 1 | -1/+1 |
|\ | | | | | Properly hide strengthify after password change | ||||
| * | Properly hide strengthify after password change | Vincent Petry | 2015-10-07 | 1 | -1/+1 |
| | | |||||
* | | Fix uploading avatar and root certs in IE8 | Vincent Petry | 2015-10-09 | 1 | -11/+35 |
|/ | |||||
* | Remove requesttoken for avatars | Lukas Reschke | 2015-08-23 | 1 | -1/+1 |
| | | | | First step for https://github.com/owncloud/core/issues/11915 | ||||
* | [avatar] add error handlers for avatar setup | Morris Jobke | 2015-07-30 | 1 | -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 object | michag86 | 2015-07-22 | 1 | -2/+2 |
| | | | fix for #17817 | ||||
* | Allow user to set an empty email address | Morris Jobke | 2015-05-05 | 1 | -4/+5 |
| | | | | * fixes #16057 | ||||
* | Only show SSL table header if there are certificates | Roeland Jago Douma | 2015-05-04 | 1 | -0/+9 |
| | |||||
* | Don't pollute the global namespace | Thomas Müller | 2015-04-21 | 1 | -4/+6 |
| | |||||
* | fix date variable | Morris Jobke | 2015-04-20 | 1 | -1/+1 |
| | |||||
* | Migrate personal certificate handling into AppFramework controllers | Lukas Reschke | 2015-04-20 | 1 | -9/+13 |
| | | | | Also added unit-tests and better error-handling | ||||
* | remove slow fade animation for remaining tipsy tooltips | Jan-Christoph Borchardt | 2015-04-15 | 1 | -1/+1 |
| | |||||
* | Merge pull request #14472 from owncloud/feature/wipencryptionapp | Thomas Müller | 2015-04-07 | 1 | -75/+0 |
|\ | | | | | encryption 2.0 app | ||||
| * | Removing left overs from old encryption app | Thomas Müller | 2015-04-07 | 1 | -75/+0 |
| | | |||||
* | | Revert "[WIP] Only show SSL table header if there are certificates" | Morris Jobke | 2015-04-07 | 1 | -9/+0 |
|/ | |||||
* | Merge pull request #15345 from rullzer/fix_15263 | Jan-Christoph Borchardt | 2015-04-07 | 1 | -0/+9 |
|\ | | | | | [WIP] Only show SSL table header if there are certificates | ||||
| * | Only show SSL table header if there are certificates | Roeland Jago Douma | 2015-03-31 | 1 | -0/+9 |
| | | |||||
* | | Fix JS reference error for personal password changing | Robin McCorkell | 2015-03-31 | 1 | -1/+1 |
|/ | |||||
* | Don't use placeholder for password in IE8 & 9 | Morris Jobke | 2015-03-26 | 1 | -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_text | Lukas Reschke | 2015-02-24 | 1 | -4/+9 |
|\ | | | | | Make the password changed msg inline to fix #10242 | ||||
| * | Make the password changed msg inline to fix #10242 | kondou | 2015-02-11 | 1 | -4/+9 |
| | | |||||
* | | Encode Requesttoken for avatars | Lukas Reschke | 2015-02-17 | 1 | -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 field | Robin Appelman | 2015-01-09 | 1 | -1/+3 |
| | |||||
* | Merge pull request #12921 from owncloud/user-mail-user-management | Thomas Müller | 2014-12-19 | 1 | -3/+14 |
|\ | | | | | Mail address of users is now changable in the user management | ||||
| * | Mail address of users is now changable in the user management | Morris Jobke | 2014-12-18 | 1 | -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 needed | Thomas Müller | 2014-12-16 | 1 | -0/+1 |
|/ | |||||
* | bower zxcvbn | Morris Jobke | 2014-11-06 | 1 | -1/+1 |
| | |||||
* | Add unit tests and fix rootcerts creation bug | Lukas Reschke | 2014-08-31 | 1 | -1/+1 |
| | |||||
* | Cleanup routes | Robin Appelman | 2014-08-31 | 1 | -2/+1 |
| | |||||
* | Move certificate management interface from files_external to core | Robin Appelman | 2014-08-31 | 1 | -87/+128 |
| | |||||
* | remove obsolete placeholder call, fix #8881 | Jan-Christoph Borchardt | 2014-06-04 | 1 | -2/+0 |
| | |||||
* | add missing placeholder shim for change password fields in IE8/9 | Jan-Christoph Borchardt | 2014-06-03 | 1 | -0/+2 |
| | |||||
* | prevent pageload if pressed enter on name email change | Volkan Gezer | 2014-05-30 | 1 | -1/+1 |
| | |||||
* | fix typo encryption | Volkan Gezer | 2014-05-15 | 1 | -2/+2 |
| | |||||
* | backup the encryption key after the encryption was disabled so that the user | Bjoern Schiessle | 2014-05-13 | 1 | -9/+52 |
| | | | | can restore them if needed |