summaryrefslogtreecommitdiffstats
path: root/settings/controller
Commit message (Collapse)AuthorAgeFilesLines
* Use injected requestVincent Petry2015-10-091-1/+1
|
* fix IE8 user agent detectionMorris Jobke2015-10-091-1/+1
|
* Fix uploading avatar and root certs in IE8Vincent Petry2015-10-091-5/+14
|
* Don't perform checks for outdated TLS libs when no internet connectionLukas Reschke2015-10-081-2/+20
| | | | | | | | This change makes the check return a positive result when: - The instance has been configured to not use the internet AND/OR - S2S AND the appstore is disabled
* Fix comment syntaxLukas Reschke2015-10-081-2/+2
|
* Fix importing of certificatesLukas Reschke2015-10-061-2/+3
| | | | Fixes https://github.com/owncloud/core/issues/19601
* Merge pull request #19597 from owncloud/update-license-headersThomas Müller2015-10-063-0/+5
|\ | | | | update licence headers via script
| * deduplicate @xenopathicMorris Jobke2015-10-061-1/+1
| |
| * update licence headers via scriptMorris Jobke2015-10-053-0/+5
| |
* | [admin] check for correct PHP memcached moduleMorris Jobke2015-10-061-0/+18
|/
* Update isCertificateImportAllowed() check to new APIRobin McCorkell2015-09-101-2/+2
|
* use config.php value instead of version stringMorris Jobke2015-09-021-1/+1
|
* Add setup check for reverse proxy header configurationRobin McCorkell2015-08-101-1/+20
|
* Merge pull request #17919 from rullzer/php_supported_checkThomas Müller2015-08-101-0/+18
|\ | | | | Display warning in security & setup warnings if php version is EOL
| * Display warning in security & setup warnings if php version is EOLRoeland Jago Douma2015-07-291-0/+18
| |
* | also block certificate management in the back-end if external storages are ↵Bjoern Schiessle2015-08-041-1/+33
|/ | | | disabled for the user
* Merge pull request #17912 from owncloud/detect-old-openssl-versionsRobin McCorkell2015-07-281-1/+69
|\ | | | | Detect old NSS and OpenSSL versions
| * Detect old NSS and OpenSSL versionsLukas Reschke2015-07-281-1/+69
| | | | | | | | | | | | This will detect old NSS and OpenSSL versions and show appropriate errors in the admin interface. Fixes https://github.com/owncloud/core/issues/17901
* | Add unit testsLukas Reschke2015-07-281-13/+25
| |
* | set logger in constructorBjoern Schiessle2015-07-281-0/+1
|/
* don't move keys if the key where already moved in a previous migration runBjoern Schiessle2015-07-171-2/+8
|
* Merge pull request #17500 from owncloud/encryption_migration_improvementsThomas Müller2015-07-161-0/+2
|\ | | | | Only clean up if migration finished succesfully
| * only cleanUp the remaining keys if the migration really finished succesfullyBjoern Schiessle2015-07-081-0/+2
| |
* | Handle returned null value in app level codeMorris Jobke2015-07-131-2/+2
|/ | | | | | * getApplication on OCSClient can also return null this is now handled properly * fixes #17587
* Add missing version fieldLukas Reschke2015-06-291-2/+2
|
* Merge pull request #17222 from owncloud/issue-17101-send-oc-version-to-app-storeLukas Reschke2015-06-291-1/+1
|\ | | | | Send OC version to appstore so it can reply with the right links
| * Send OC version to appstore so it can reply with the right linksJoas Schilling2015-06-291-1/+1
| |
* | Merge pull request #17050 from owncloud/request-status-from-ocsLukas Reschke2015-06-291-0/+18
|\ \ | |/ |/| Request approved state for disabled apps with ocsid
| * Also load enabled appsLukas Reschke2015-06-291-0/+9
| |
| * Request approved state for disabled apps with ocsidLukas Reschke2015-06-191-0/+9
| | | | | | | | | | | | | | | | In case an application gets disabled the level is set to "experimental" if it does not contain a `shipped` tag. This can for example be reproduced by installing the documents app from the appstore and then disabling it. Or cloning an app from git. With this change the controller will now load the level of the application from the appstore if a valid OCSID has been provided. Fixes https://github.com/owncloud/core/issues/17003
* | update license headers and authorsMorris Jobke2015-06-254-0/+5
|/
* Merge pull request #16889 from owncloud/group-sorting-fixesJoas Schilling2015-06-191-4/+6
|\ | | | | Only sort by group name when LDAP is involved
| * Only sort by group name when LDAP is involvedJoas Schilling2015-06-161-4/+6
| |
* | Make "include update info" part of the cache keyJoas Schilling2015-06-151-3/+5
| |
* | Load the update information asyncroniously to fix the page load speedJoas Schilling2015-06-101-6/+10
|/
* Merge pull request #16402 from owncloud/issue-15956-slow-group-usercountThomas Müller2015-06-081-1/+1
|\ | | | | Sort user groups by group name and hide the user count
| * Sort user groups by group name and hide the user countJoas Schilling2015-05-181-1/+1
| |
* | only request encryption module for files which are not excludedBjoern Schiessle2015-05-271-3/+4
| |
* | Add check for availability of /dev/urandomLukas Reschke2015-05-261-0/+19
|/ | | | | | | | | | | | | | | Without /dev/urandom being available to read the medium RNG will rely only on the following components on a Linux system: 1. MicroTime: microtime() . memory_get_usage() as seed and then a garbage collected microtime for loop 2. MTRand: chr((mt_rand() ^ mt_rand()) % 256) 3. Rand: chr((rand() ^ rand()) % 256) 4. UniqId: Plain uniqid() An adversary with the possibility to predict the seed used by the PHP process may thus be able to predict future tokens which is an unwanted behaviour. One should note that this behaviour is documented in our documentation to ensure that users get aware of this even without reading our documentation this will add a post setup check to the administrative interface. Thanks to David Black from d1b.org for bringing this again to our attention.
* Merge pull request #15978 from owncloud/feature/fix-encryption-tooltipsThomas Müller2015-05-151-3/+3
|\ | | | | [enc2]fixing recovery tooltip
| * fixing recovery tooltipClark Tomlinson2015-05-041-3/+3
| |
* | Subadmin permissions are also not requiredLukas Reschke2015-05-121-0/+2
| |
* | Add NoAdminRequired annotationLukas Reschke2015-05-121-0/+4
| | | | | | | | Stupid mistake in master, fixes https://github.com/owncloud/core/issues/16288
* | Allow user to set an empty email addressMorris Jobke2015-05-051-1/+6
|/ | | | * fixes #16057
* Adjust tests and statuscodeLukas Reschke2015-04-201-1/+1
|
* Migrate personal certificate handling into AppFramework controllersLukas Reschke2015-04-201-0/+93
| | | | Also added unit-tests and better error-handling
* allow user to start migration in admin settings if no external user ↵Bjoern Schiessle2015-04-161-0/+122
| | | | back-ends are enabled
* Merge pull request #15314 from owncloud/app-categories-15274Lukas Reschke2015-04-091-17/+58
|\ | | | | Add different trust levels to AppStore interface
| * Add experimental applications switchLukas Reschke2015-04-031-17/+58
| | | | | | | | Allows administrators to disable or enabled experimental applications as well as show the trust level.
* | Remove hardcoded link to performance docsJoas Schilling2015-04-071-0/+7
|/