summaryrefslogtreecommitdiffstats
path: root/settings/templates
Commit message (Collapse)AuthorAgeFilesLines
* Let users configure security headers in their WebserverLukas Reschke2015-03-021-59/+0
| | | | | | | | | | Doing this in the PHP code is not the right approach for multiple reasons: 1. A bug in the PHP code prevents them from being added to the response. 2. They are only added when something is served via PHP and not in other cases (that makes for example the newest IE UXSS which is not yet patched by Microsoft exploitable on ownCloud) 3. Some headers such as the Strict-Transport-Security might require custom modifications by administrators. This was not possible before and lead to buggy situations. This pull request moves those headers out of the PHP code and adds a security check to the admin settings performed via JS.
* Merge pull request #14593 from owncloud/fix/13994Morris Jobke2015-03-021-0/+22
|\ | | | | Add detection for invalid CLI configuration for settings page
| * Add detection for invalid CLI configuration for settings pageLukas Reschke2015-02-271-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This change will log all failures that prevent the CLI cronjob from happening to the database and display a warning to administrators when an error happened. To test: 1. Configure some invalid CLI php.ini settings 2. Enable the CLI cronjob and run php cron.php 3. See the errors printed and also in the admin page 4. Configure the CLI settings correctly 5. Errors should be gone. Fixes https://github.com/owncloud/core/issues/13994
* | Improve language on backgroundjob admin pageJakob Sack2015-03-011-2/+2
| |
* | Rename $human_time to $relative_time in cron settingsJakob Sack2015-02-281-3/+3
| |
* | Add absolute time of last cronjob as hover tipJakob Sack2015-02-281-4/+9
| |
* | Use relative time for cron statusJakob Sack2015-02-281-3/+3
|/
* Merge pull request #14527 from owncloud/clarify-linkMorris Jobke2015-02-261-1/+1
|\ | | | | clarify link on apps management to the dev documentation
| * clarify link on apps management to the dev documentationMorris Jobke2015-02-261-1/+1
| |
* | Move UTF-8 check to setupLukas Reschke2015-02-241-14/+0
|/ | | | | | | | Nobody reads the warnings anyways and so we should enforce it at installation time... Also allows us to get rid of some duplicated code. To test change the `default_charset` to something other than `utf-8` or `UTF-8`, both should work fine with that change here. An error should then get shown. We already set those default charsets in the shipped .user.ini and .htaccess
* Merge pull request #10599 from owncloud/move_passwordchange_textLukas Reschke2015-02-241-3/+4
|\ | | | | Make the password changed msg inline to fix #10242
| * Make the password changed msg inline to fix #10242kondou2015-02-111-3/+4
| |
* | Use APCu only if available in version 4.0.6 and higherLukas Reschke2015-02-171-0/+15
| | | | | | | | | | | | | | | | APCu before 4.0.6 is unbelievable buggy and tend to segfault the PHP process (i.e. the whole webserver) This potentially fixes https://github.com/owncloud/core/issues/14175 Requires a backport to stable8
* | Merge pull request #13890 from owncloud/add-no-referrerLukas Reschke2015-02-164-15/+28
|\ \ | | | | | | Add `rel="noreferrer"` where possible and switch to HTTPS
| * | Deduplicate template code and do not translate the linksJoas Schilling2015-02-093-8/+21
| | |
| * | Add `rel="noreferrer"` where possible and switch to HTTPSLukas Reschke2015-02-043-9/+9
| | | | | | | | | | | | Just to follow good practise and prevent some automated scanners to complain about "Cross-domain Referer leakage".
* | | Merge pull request #13913 from rullzer/showusergroupsLukas Reschke2015-02-121-0/+8
|\ \ \ | | | | | | | | Added overview of groups a user is member of
| * | | Added overview of groups a user is a member ofRoeland Jago Douma2015-02-121-0/+8
| | |/ | |/|
* | | Merge pull request #14135 from cmeh/masterMorris Jobke2015-02-121-1/+1
|\ \ \ | |/ / |/| | Clean-up of messages (orthography, format)
| * | Adding a missing space between value and unitcmeh2015-02-121-1/+1
| | | | | | | | | Added the missing space between value and unit, as it is formatted in all other places across ownCloud.
* | | Merge pull request #13895 from owncloud/disable-autocomplete-1Lukas Reschke2015-02-081-1/+1
|\ \ \ | | | | | | | | Disable autocomplete for SMTP Password
| * | | Disable autocomplete for SMTP PasswordLukas Reschke2015-02-041-1/+1
| | |/ | |/| | | | | | | While really nearly no modern browser cares about it anymore too much it's still not wrong to have it here (and also stops some automated scanners reporting this...)
* | | Coherent use of "SQLite" in lines 119 and 124cmeh2015-02-061-1/+1
| |/ |/| | | Just a cosmetic detail, but very obvious when working on localisations.
* | Don't highly discourageThomas Müller2015-02-051-1/+1
| |
* | enhance sqlite warning on admin page as well as during setup - fixes #13906Thomas Müller2015-02-041-2/+12
| |
* | Revert "Disable autocomplete for SMTP Password"Clark Tomlinson2015-02-041-1/+1
| |
* | Disable autocomplete for SMTP PasswordLukas Reschke2015-02-041-1/+1
|/ | | | While really nearly no modern browser cares about it anymore too much it's still not wrong to have it here (and also stops some automated scanners reporting this...)
* use title instead of nameMorris Jobke2015-01-211-1/+1
|
* Merge pull request #13494 from owncloud/windows_warningMorris Jobke2015-01-201-5/+16
|\ | | | | add a Windows warning
| * add a Windows warningFrank Karlitschek2015-01-201-5/+16
| |
* | also show message for empty display name if change of it isn't allowedMorris Jobke2015-01-191-2/+2
|/
* Show mail address & display name if it is read onlyMorris Jobke2015-01-151-0/+14
| | | | | | | * gives the user the chance to verify it's mail address and display name * ref #12823 * fixes #13393
* Merge pull request #12988 from owncloud/logfile_downloadMorris Jobke2015-01-091-1/+11
|\ | | | | Logfile download
| * add Download logfile button to admin settingsGeorg Ehrke2015-01-071-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add logSettingsController add download logfile button move getEntries to LogSettingsController move set log level to logsettingscontroller.php add warning if logfile is bigger than 100MB add unit test for set log level fix typecasting, add new line at EoF show log and logfile download only if log_type is set to owncloud add unit test for getFilenameForDownload
* | Fix incorrect warning about setting the overwrite.cli.urlJoas Schilling2015-01-071-2/+2
| |
* | fixing wrong usage of license vs licenceThomas Müller2015-01-061-2/+2
|/
* Link to HTTPS pageLukas Reschke2014-12-191-2/+2
| | | | Those domains are now accessible via HTTPS
* Merge pull request #12921 from owncloud/user-mail-user-managementThomas Müller2014-12-192-1/+12
|\ | | | | Mail address of users is now changable in the user management
| * Mail address of users is now changable in the user managementMorris Jobke2014-12-182-1/+12
| | | | | | | | | | | | | | | | | | | | | | * 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
* | Merge pull request #12941 from owncloud/wave-accessibility-complianceMorris Jobke2014-12-191-6/+15
|\ \ | | | | | | Wave accessibility compliance
| * | more alt text and label fixes in Personal settingsJan-Christoph Borchardt2014-12-181-6/+15
| | |
* | | Merge pull request #12759 from owncloud/core-reduce-js-and-cssJörn Friedrich Dreyer2014-12-181-0/+1
|\ \ \ | |_|/ |/| | make sure styles and scripts are only loaded once
| * | load showpassord.js conditionally in the template only if neededThomas Müller2014-12-161-0/+1
| |/
* / Send mail for new usersMorris Jobke2014-12-164-0/+55
|/ | | | | | * supply mail address * send mail with username and URL to that mail address * option to temporary enable this feature
* Merge pull request #12625 from owncloud/app-dependencies-libs-and-commandsBernhard Posselt2014-12-151-4/+4
|\ | | | | adding dependencies for command line tools and php libraries
| * adjust styling of missing dependencies in apps managementThomas Müller2014-12-111-4/+4
| |
* | Show user backend in user managementMorris Jobke2014-12-122-8/+20
| | | | | | | | | | | | | | * add switch to settings to show user backend * user classes for headers and rows to unify the show/hide statement * add user backend to response of user create request * proper markup in settings area
* | move loading of JS and CSS to templateMorris Jobke2014-12-121-0/+13
| |
* | remove PHP generated user list and move all to the existing JS partMorris Jobke2014-12-121-70/+16
|/
* Add an option to disallow sending sharing emails to non-owncloud usersJoas Schilling2014-12-091-1/+6
| | | | Fix #10836