mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-19 12:42:58 -06:00
64f273a40d
The add.js has been modified to support adding new entry with dynamically generated pkey. The index.xhtml has been modified to include service.js. The service.js has been modified to use the new API to define the search, add, and details fields. Callbacks are used to add quick links and generate pkey dynamically. The webui.js has been modified to add the Services tab.
51 lines
2.0 KiB
HTML
51 lines
2.0 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
|
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title>IPA: Identity Policy Audit</title>
|
|
|
|
<script type="text/javascript" src="json2.js"></script>
|
|
<script type="text/javascript" src="jquery.js"></script>
|
|
<script type="text/javascript" src="jquery.cookie.js"></script>
|
|
<script type="text/javascript" src="jquery-ui.js"></script>
|
|
<script type="text/javascript" src="jquery.ba-bbq.js"></script>
|
|
|
|
<script type="text/javascript" src="ipa.js"></script>
|
|
<script type="text/javascript" src="search.js"></script>
|
|
<script type="text/javascript" src="details.js"></script>
|
|
<script type="text/javascript" src="add.js"></script>
|
|
<script type="text/javascript" src="associate.js"></script>
|
|
<script type="text/javascript" src="entity.js"></script>
|
|
<script type="text/javascript" src="navigation.js"></script>
|
|
|
|
<script type="text/javascript" src="user.js"></script>
|
|
<script type="text/javascript" src="group.js"></script>
|
|
<script type="text/javascript" src="host.js"></script>
|
|
<script type="text/javascript" src="hostgroup.js"></script>
|
|
<script type="text/javascript" src="netgroup.js"></script>
|
|
<script type="text/javascript" src="service.js"></script>
|
|
|
|
<script type="text/javascript" src="develop.js"></script>
|
|
<script type="text/javascript" src="webui.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="jquery-ui.css" />
|
|
<link rel="stylesheet" type="text/css" href="ipa.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="header" >
|
|
<span class="header-logo">
|
|
<img src="ipalogo.png" />
|
|
</span>
|
|
<span id="loggedinas" class="header-loggedinas">
|
|
<a>Logged in as <strong>hardcoded@FREEIP.ORG</strong></a>
|
|
</span>
|
|
</div>
|
|
|
|
<div id="navigation" class="tabs"></div>
|
|
</body>
|
|
|
|
</html>
|
|
|