summaryrefslogtreecommitdiffstats
path: root/settings/js/admin.js
Commit message (Collapse)AuthorAgeFilesLines
* Add warning state to setup checksJulius Härtl2018-06-061-1/+5
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Add visual indicator for setup checksJulius Härtl2018-06-061-3/+6
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Show a link to the docs instead of a button on the untrusted domain pageMorris Jobke2018-04-171-25/+0
| | | | | | | | Before there was a button to "quickly" add the untrusted domain to the config. This button often didn't worked, because the generated URL was often untrusted as well. Thus removing it and providing proper docs seems to be the better approach to handle this rare case. Also the log should not be spammed by messages for the untrusted domain accesses, because they are user related and not necessarily an administrative issue. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* add share permissions to settings pageBjoern Schiessle2018-02-271-0/+22
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Don't send the test mail twiceJoas Schilling2017-04-241-4/+0
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Don't put the SMTP password into the HTML codeJoas Schilling2017-04-181-9/+27
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Remove the double password confirmation on changing cronJoas Schilling2017-03-131-3/+6
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Require confirmation when changing the email settingsJoas Schilling2016-11-181-10/+37
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Color the trusted domain to alert the admin a bit moreJoas Schilling2016-10-311-2/+7
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Switch to public APIJoas Schilling2016-10-211-5/+5
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Make AppConfig part of the public APIJoas Schilling2016-10-211-20/+11
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Adding a optional disclaimer to the anonymous upload pageMorris Jobke2016-09-081-1/+40
|
* Use tooltip for background job execution timeMorris Jobke2016-07-131-1/+1
|
* replace $().attr('checked') by $().prop('checked', state) or $().is(':checked')Christoph Wurst2016-04-191-2/+2
|
* Add `allow sharing with groups` checkbox to admin pageRoeland Jago Douma2016-03-221-0/+4
|
* Move data protection check to javascriptVincent Chan2016-02-011-3/+4
| | | | fixes #20199
* Add config switch to disable the .well-known URL checkMorris Jobke2016-01-121-2/+2
|
* Concat also the other resultsLukas Reschke2016-01-101-2/+2
| | | | Otherwise this will ignore the two last checks :speak_no_evil:
* Add check for .well-known URL in the root of the webservers URLMorris Jobke2016-01-081-0/+2
| | | | * fixes #20012
* Properly detect setup check messages set in the HTML templateRobin McCorkell2015-11-081-28/+36
|
* save excluded groups in json format - fixes #10983Thomas Müller2015-10-011-5/+1
|
* Merge pull request #18395 from owncloud/hide-empty-security-warningRobin McCorkell2015-08-211-0/+4
|\ | | | | [admin settings] Show success message if security warnings are empty
| * add success messageMorris Jobke2015-08-211-1/+1
| |
| * [admin settings] hide security warnings if emptyMorris Jobke2015-08-181-0/+4
| | | | | | | | * fixes #15257
* | Clear cron errors on change of background job modeMorris Jobke2015-08-201-0/+2
|/ | | | * fixes #18454
* Merge pull request #17975 from owncloud/settings_admin_warning_levelsJan-Christoph Borchardt2015-08-181-7/+26
|\ | | | | Settings admin warning levels
| * All setup messages are now properly typesRoeland Jago Douma2015-07-301-14/+10
| |
| * Allow setupchecks to specify a warning levelRoeland Jago Douma2015-07-301-7/+30
| |
* | Do not allow invalid default expire daysRoeland Jago Douma2015-07-041-0/+7
|/ | | | | | | | | Currently it is possible to set a negative number of days in which a public share expires. This results in public sharing not working and it undesired. Weird thing is that the API still lets you create shares and gives back an URL. However the id is "unkown" and the URL invalid.
* adjust wording and add button to confirm encryptionBjoern Schiessle2015-05-051-12/+6
|
* don't let the the user disable encryption once it was activatedBjoern Schiessle2015-05-041-0/+1
|
* Merge pull request #15445 from owncloud/enc2_migrationClark Tomlinson2015-04-161-1/+21
|\ | | | | add migration script from old encryption to new one
| * allow user to start migration in admin settings if no external user ↵Bjoern Schiessle2015-04-161-1/+21
| | | | | | | | back-ends are enabled
* | remove slow fade animation for remaining tipsy tooltipsJan-Christoph Borchardt2015-04-151-1/+1
|/
* Move federated cloud sharing, files externals and updater to special positionsJoas Schilling2015-03-271-2/+2
|
* Merge pull request #15234 from owncloud/encryption2_coreThomas Müller2015-03-261-0/+16
|\ | | | | core part of encryption 2.0
| * implement basic encryption functionallity in core to enable multiple ↵Bjoern Schiessle2015-03-261-0/+16
| | | | | | | | encryption modules
* | only show connection checks results if there are errors, fix #11476Jan-Christoph Borchardt2015-03-251-2/+1
|/
* adjust list of errors, more compact and readableJan-Christoph Borchardt2015-03-061-1/+1
|
* Let users configure security headers in their WebserverLukas Reschke2015-03-021-29/+4
| | | | | | | | | | 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.
* Add absolute time of last cronjob as hover tipJakob Sack2015-02-281-0/+2
|
* fix trusted domain localizationVolkan Gezer2015-02-011-2/+2
|
* add Download logfile button to admin settingsGeorg Ehrke2015-01-071-1/+1
| | | | | | | | | | | | | | | | | | | | 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
* Migrate "setsecurity.php" to the AppFrameworkLukas Reschke2014-11-031-4/+26
| | | | | | | | | | | | Add switch to enforce SSL for subdomains Add unit tests Add test for boolean values Camel-case Fix ugly JS
* fix loading of more log entriesThomas Müller2014-10-301-5/+5
|
* Refactor MailSettings controllerLukas Reschke2014-10-141-2/+10
| | | | | | | | | - Do not store the password (fixes https://github.com/owncloud/core/issues/11385) - Refactor to AppFramework - Add unit tests Conflicts: settings/admin/controller.php
* Moved WebDAV and internet checks to client side JSVincent Petry2014-09-231-0/+21
| | | | | | | - Added setup checks in JavaScript - Moved isWebDAVWorking to JS using SetupChecks - Moved internet connection checks to an ajax call that goes through the server
* Fixed select2 for admin and apps pageVincent Petry2014-09-101-1/+10
| | | | | | Added explicit escaping. Now internally using a pipe symbol as separator for select2, to make it possible to use group names containing commas.
* Added select2 on the apps pageVincent Petry2014-09-091-62/+1
| | | | | | | Moved setupGroupsSelect() from admin.js to a common settings.js as OC.Settings.setupGoupsSelect(). Now using select2 as well on the apps page.
* Now using select2 for the groups excluded from sharingVincent Petry2014-09-091-34/+56
|