diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-08-15 17:18:46 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-08-31 10:47:50 +0200 |
commit | c1b11571ea53748d57241598dec71750637416cd (patch) | |
tree | c823c19b77fe4aa62142299ffe5df6b6421be63a /settings/templates/personal.php | |
parent | 298011bf296a4eda62b787bb7c8fbfe30644d488 (diff) | |
download | nextcloud-server-c1b11571ea53748d57241598dec71750637416cd.tar.gz nextcloud-server-c1b11571ea53748d57241598dec71750637416cd.zip |
Move certificate management interface from files_external to core
Diffstat (limited to 'settings/templates/personal.php')
-rw-r--r-- | settings/templates/personal.php | 41 |
1 files changed, 38 insertions, 3 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index c1fb20dce05..6d07b899544 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -150,6 +150,44 @@ if($_['passwordChangeSupported']) { print_unescaped($form); };?> +<div class="section"> + <h2><?php p($l->t('SSL root certificates')); ?></h2> + <table id="sslCertificate" class="grid"> + <thead> + <th><?php p($l->t('Common Name')); ?></th> + <th><?php p($l->t('Valid until')); ?></th> + <th><?php p($l->t('Issued By')); ?></th> + <th/> + </thead> + <tbody> + <?php foreach ($_['certs'] as $rootCert): /**@var \OCP\ICertificate $rootCert*/?> + <tr class="<?php echo ($rootCert->isExpired()) ? 'expired' : 'valid' ?>" data-name="<?php p($rootCert->getName()) ?>"> + <td class="rootCert" title="<?php p($rootCert->getOrganization())?>"> + <?php p($rootCert->getCommonName()) ?> + </td> + <td title="<?php p($l->t('Valid from %s', $l->l('date', $rootCert->getExpireDate()))) ?>"> + <?php echo $l->l('date', $rootCert->getExpireDate()) ?> + </td> + <td title="<?php p($rootCert->getIssuerOrganization()) ?>"> + <?php p($rootCert->getIssuerName()) ?> + </td> + <td <?php if ($rootCert != ''): ?>class="remove" + <?php else: ?>style="visibility:hidden;" + <?php endif; ?>><img alt="<?php p($l->t('Delete')); ?>" + title="<?php p($l->t('Delete')); ?>" + class="svg action" + src="<?php print_unescaped(image_path('core', 'actions/delete.svg')); ?>"/> + </td> + </tr> + <?php endforeach; ?> + </tbody> + </table> + <form class="uploadButton" method="post" action="<?php p(\OC_Helper::linkToRoute('core_cert_post')); ?>" target="certUploadFrame"> + <input type="file" id="rootcert_import" name="rootcert_import" class="hidden"> + <input type="button" id="rootcert_import_button" value="<?php p($l->t('Import Root Certificate')); ?>"/> + </form> +</div> + <?php if($_['enableDecryptAll']): ?> <div class="section"> @@ -177,11 +215,8 @@ if($_['passwordChangeSupported']) { </p> <br /> </div> - <?php endif; ?> - - <div id="restoreBackupKeys" <?php $_['backupKeysExists'] ? '' : print_unescaped("class='hidden'") ?>> <?php p($l->t( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." )); ?> |