summaryrefslogtreecommitdiffstats
path: root/settings
Commit message (Collapse)AuthorAgeFilesLines
* Users page lazy multiselect group dropdownsVincent Petry2016-08-246-96/+114
| | | | | | | | | | Instead of pre-rendering all multiselects with lots of group entries, the current groups are now displayed as simple labels. Behind the labels there is a pencil icon like for other fields. When clicking the pencil icon, the dropdown will be spawned and will open itself. Upon closing of the dropdown, the label comes back with the updated selection and the dropdown is destroyed.
* [stable9] Set content type when downloading log file to force download in ↵Thomas Müller2016-07-071-0/+1
| | | | some browsers (#25382) (#25398)
* decrease initial users to load to 50Jörn Friedrich Dreyer2016-06-141-1/+1
| | | | Prevents timeouts on the initial loading of users. proper fix will be in https://github.com/owncloud/core/pull/10994 Workaround for https://github.com/owncloud/core/issues/24734
* Merge pull request #25054 from ↵Vincent Petry2016-06-101-2/+3
|\ | | | | | | | | owncloud/issue-24536-language-name-reused-for-fallback-languages-stable9 [stable9] Do not use the language name, when it's not the one from the language…
| * Do not use the language name, when it's not the one from the language we wantJoas Schilling2016-06-101-2/+3
| |
* | Use temporary htaccesstest.txt for data dir security checkVincent Petry2016-06-091-0/+4
| |
* | Add a warning when the transaction isolation level is not READ_COMMITED (#24915)Joas Schilling2016-05-312-0/+22
| |
* | Merge pull request #24530 from ↵Vincent Petry2016-05-132-2/+6
|\ \ | |/ |/| | | | | owncloud/backport-24526-forward-user-manager-error-messages-to-ui [9.0] Pass on the error message from the user manager to the UI
| * Pass on the error message from the user manager to the UIJoas Schilling2016-05-112-2/+6
| |
* | Yo-ho-oh - Murder all band 'o pirates - backport of #24550Thomas Müller2016-05-112-10/+0
| |
* | Fixed 'Help Translate' linkPau2016-05-101-1/+1
|/
* Disable pastezone for jquery.fileuploadLukas Reschke2016-04-262-0/+2
| | | | | | | | | | | | | | 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.
* Add `allow sharing with groups` checkbox to admin pageRoeland Jago Douma2016-03-223-0/+10
|
* Update avatar on username change if avatar is setMorris Jobke2016-03-181-1/+4
| | | | * fixes #20455
* Update author informationLukas Reschke2016-03-017-0/+7
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Merge pull request #17451 from owncloud/apps-disablebrokenappafterenableThomas Müller2016-03-011-26/+60
|\ | | | | Disable app that bricks the server after enabling
| * Disable app that bricks the server after enablingVincent Petry2016-02-291-26/+60
| | | | | | | | | | | | If an app is getting enabled in the web UI, an ajax call is now made to make sure the server still works. If it doesn't, it sends an emergency app disabling call to disable the breaking app.
* | Merge pull request #22613 from owncloud/quota-changedavreturnvaluewhennoquotasetThomas Müller2016-03-011-2/+7
|\ \ | | | | | | Don't return quota when none set
| * | Return -3 for unlimited quotaVincent Petry2016-02-291-2/+7
| | | | | | | | | | | | | | | Returns -3 for unlimited quota in Webdav response. Also adjusted personal page to show unlimited quota when set.
* | | Merge pull request #22722 from owncloud/fix-personal-pageThomas Müller2016-03-012-2/+4
|\ \ \ | | | | | | | | fix personal page layout for LDAP users, fix #22272
| * | | fix personal page layout for LDAP users, fix #22272Jan-Christoph Borchardt2016-02-292-2/+4
| |/ /
* / / [tx-robot] updated from transifexJenkins for ownCloud2016-03-012-0/+8
|/ /
* | [tx-robot] updated from transifexJenkins for ownCloud2016-02-292-0/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-02-288-12/+376
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-02-2710-0/+44
| |
* | Email endpoint is controlled by the username setting, not passwordJoas Schilling2016-02-261-1/+1
| |
* | Correctly indent uneditable email/display name fieldsJoas Schilling2016-02-261-2/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2016-02-2618-32/+116
|/
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-25112-262/+246
|
* Merge pull request #22549 from ↵Thomas Müller2016-02-242-16/+18
|\ | | | | | | | | owncloud/issue-20470-yellow-warning-for-user-and-group-errors Use the notification instead of the disruptive popup for settings/users errors
| * Use the notification instead of the disruptive popupJoas Schilling2016-02-222-16/+18
| |
* | Merge pull request #22551 from owncloud/make-exceptions-easier-to-debugThomas Müller2016-02-231-4/+10
|\ \ | | | | | | Throw normal exceptions instead of eating them
| * | Throw normal exceptions instead of eating themLukas Reschke2016-02-221-4/+10
| |/ | | | | | | | | | | Partially addresses https://github.com/owncloud/core/issues/22550 Replaces https://github.com/owncloud/core/pull/20185
* / We should check for exceptions when trying to get the avatarRoeland Jago Douma2016-02-221-1/+5
|/ | | | | | | Fixes #22550 * Updated phpdoc of avatatmanager * Add unit test
* Fix error ins source language stringsThomas Müller2016-02-191-1/+1
| | | | | https://www.transifex.com/owncloud-org/owncloud/translate/#en_GB/core/50786279 https://www.transifex.com/owncloud-org/owncloud/translate/#en_GB/settings-1/50555028
* Make app updates better visibleJoas Schilling2016-02-182-1/+12
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-172-0/+2
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-162-0/+22
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-154-2/+20
|
* Add note if integrity check is disabledLukas Reschke2016-02-121-0/+4
| | | | | | | | Our issue template states that users should post the output of `/index.php/settings/integrity/failed`, at the moment it displays that all passes have been passed if the integrity checker has been disabled. This is however a wrong approach considering that some distributions are gonna package Frankenstein releases and makes it harder for us to detect such issues. Thus if the integrity code checker is disabled (using the config switch) it displays now: `Appcode checker has been disabled. Integrity cannot be verified.` This is not displayed anywhere else in the UI except these URL used for us for debugging purposes.
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-106-0/+16
|
* sign all encrypted blocks and check signature on decryptBjörn Schießle2016-02-091-1/+2
|
* Merge pull request #22249 from owncloud/fix-22245Thomas Müller2016-02-091-0/+8
|\ | | | | Save display name and email address on paste operations
| * Save display name and email address on paste operations - fixes #22245Thomas Müller2016-02-091-0/+8
| |
* | Consolidate getQuota and setQuota methods in User instanceArthur Schiwon2016-02-092-2/+2
|/
* fixes #22221Thomas Müller2016-02-091-3/+0
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-094-2/+6
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-02-072-0/+2
|
* update google play and apple badgeHendrik Leppelsack2016-02-052-1/+5
|
* Use SVG for desktop app buttonLukas Reschke2016-02-051-1/+1
| | | | For the other ones we unfortunately don't have that. Partially addresses https://github.com/owncloud/core/issues/22154