mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
6518a600b4
In order to simplify the build process between upstream FreeIPA and downstream builds (such as CentOS Stream) we are changing some file references from FreeIPA to IPA (and Identity Management). https://pagure.io/freeipa/issue/8669 Signed-off-by: Rob Crittenden <rcritten@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
75 lines
2.1 KiB
HTML
75 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Identity Management</title>
|
|
|
|
<!--[if IE]>
|
|
<meta id="ie-detector">
|
|
<![endif]-->
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script type="text/javascript" src="js/libs/loader.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
var dojoConfig = {
|
|
baseUrl: "js",
|
|
has: {
|
|
'dojo-firebug': false,
|
|
'dojo-debug-messages': true
|
|
},
|
|
parseOnLoad: false,
|
|
async: true,
|
|
packages: [
|
|
{
|
|
name: 'libs',
|
|
location: 'libs'
|
|
},
|
|
{
|
|
name:'dojo',
|
|
location:'dojo'
|
|
},
|
|
{
|
|
name: 'freeipa',
|
|
location: 'freeipa'
|
|
}
|
|
],
|
|
cacheBust: ipa_loader.num_version || ""
|
|
};
|
|
|
|
(function() {
|
|
var ie = !!document.getElementById('ie-detector');
|
|
var styles = [
|
|
'css/patternfly.css',
|
|
'css/bootstrap-datepicker3.min.css',
|
|
'css/ipa.css',
|
|
'ipa.css'
|
|
];
|
|
if (ie) styles.push('ie.css');
|
|
var icons = ['favicon.ico'];
|
|
var scripts = [
|
|
'js/libs/json2.js',
|
|
'js/libs/jquery.js',
|
|
'js/libs/bootstrap.js',
|
|
'js/libs/bootstrap-datepicker.js',
|
|
'js/libs/patternfly.js',
|
|
'js/libs/jquery.ordered-map.js',
|
|
'js/libs/browser.js',
|
|
'js/dojo/dojo.js',
|
|
'js/libs/qrcode.js'
|
|
];
|
|
ipa_loader.scripts(scripts, function() {
|
|
require(['freeipa/app'], function(app){ app.run(); });
|
|
});
|
|
ipa_loader.styles(styles);
|
|
ipa_loader.icons(icons);
|
|
|
|
})();
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<noscript>This application requires JavaScript enabled.</noscript>
|
|
</body>
|
|
|
|
</html> |