mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
The ipa_cmd() has been modified such that when an error occurs a dialog box will appear showing the error message with 2 buttons: Retry and Cancel. If Retry is clicked, it will attempt to execute the same operation again. If Cancel is clicked, the operation will be canceled and the control is returned to the caller. New unit tests have been added to test ipa_cmd() on successfull and unsuccessfull cases. The associate.js, details.js, entity.js, search.js, and webui.js have been modified to display the error message inside the page. This behavior can be changed in the future (e.g. redirect to error page). The navigation.js and webui.js have been modified to render only the visible tabs. This improves the performance and reduce hidden errors. The navigation unit test has been modified to reflect this behavior. Some variables/functions also have been renamed for consistency.
23 lines
796 B
HTML
23 lines
796 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Core Test Suite</title>
|
|
<link rel="stylesheet" href="qunit.css" type="text/css" media="screen">
|
|
<link rel="stylesheet" type="text/css" href="../jquery-ui.css" />
|
|
|
|
<script type="text/javascript" src="qunit.js"></script>
|
|
<script type="text/javascript" src="../jquery.js"></script>
|
|
<script type="text/javascript" src="../jquery-ui.js"></script>
|
|
<script type="text/javascript" src="../ipa.js"></script>
|
|
<script type="text/javascript" src="ipa_tests.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1 id="qunit-header">Core Test Suite</h1>
|
|
<h2 id="qunit-banner"></h2>
|
|
<div id="qunit-testrunner-toolbar"></div>
|
|
<h2 id="qunit-userAgent"></h2>
|
|
<ol id="qunit-tests"></ol>
|
|
<div id="qunit-fixture">test markup</div>
|
|
</body>
|
|
</html>
|