mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-04 13:17:15 -06:00
2c5f3cfd60
The service certificate management UI has been generalized and moved into certificate.js. The host details page is now using the same code to manage certificates. The host.py has been modified to return host certificate info. The Get/Revoke/View buttons behavior has been modified such that they are visible only if there is a valid certificate. The Get dialog box has been fixed to show the correct certificate header and footer. The ipa.css has been modified to store the style of the status bullets. New unit tests for certificate has been added. The test data has been modified to include sample host certificate.
43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>IPA Test Suite</title>
|
|
<link rel="stylesheet" href="qunit.css" type="text/css" media="screen">
|
|
<style type="text/css">
|
|
#content {
|
|
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
|
|
font-size: smaller;
|
|
|
|
border-bottom: 1px solid #fff;
|
|
padding: 0.5em 0.5em 0.5em 2.5em;
|
|
|
|
color: #2b81af;
|
|
background-color: #D2E0E6;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 id="qunit-header">IPA Test Suite</h1>
|
|
|
|
<h2 id="qunit-banner" class="qunit-pass"></h2>
|
|
|
|
<div id="content">
|
|
<a href="all_tests.html">Complete Test Suite</a>
|
|
<ul>
|
|
<li><a href="ipa_tests.html">Core Test Suite</a>
|
|
<li><a href="entity_tests.html">Entity Test Suite</a>
|
|
<li><a href="details_tests.html">Details Test Suite</a>
|
|
<li><a href="association_tests.html">Association Test Suite</a>
|
|
<li><a href="navigation_tests.html">Navigation Test Suite</a>
|
|
<li><a href="certificate_tests.html">Certificate Test Suite</a>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
<div id="qunit-testresult">
|
|
<br>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|