Imported Upstream version 4.8.10
This commit is contained in:
@@ -5,12 +5,55 @@
|
||||
<title>IPA: Identity Policy Audit</title>
|
||||
<script type="text/javascript" src="../ui/js/libs/loader.js"></script>
|
||||
<script type="text/javascript">
|
||||
var dojoConfig = {
|
||||
baseUrl: "../ui/js",
|
||||
has: {
|
||||
'dojo-firebug': false,
|
||||
'dojo-debug-messages': true
|
||||
},
|
||||
parseOnLoad: false,
|
||||
async: true,
|
||||
packages: [
|
||||
{
|
||||
name:'dojo',
|
||||
location:'dojo'
|
||||
},
|
||||
{
|
||||
name: 'freeipa',
|
||||
location: 'freeipa'
|
||||
}
|
||||
]
|
||||
};
|
||||
(function() {
|
||||
var icons = [
|
||||
'../ui/favicon.ico'
|
||||
];
|
||||
var styles = [
|
||||
'../ui/css/patternfly.css',
|
||||
'../ui/css/ipa.css'
|
||||
];
|
||||
var scripts = [
|
||||
'../ui/js/libs/jquery.js',
|
||||
'../ui/js/libs/jquery.ordered-map.js',
|
||||
'../ui/js/dojo/dojo.js'
|
||||
];
|
||||
|
||||
ipa_loader.scripts(scripts, function() {
|
||||
require([
|
||||
'dojo/dom',
|
||||
'freeipa/core',
|
||||
'dojo/domReady!'
|
||||
],
|
||||
function(dom) {
|
||||
var text = require('freeipa/text');
|
||||
var msg = text.get('@i18n:unauthorized-page');
|
||||
if (msg) {
|
||||
dom.byId('unauthorized-msg').innerHTML=msg;
|
||||
}
|
||||
});
|
||||
});
|
||||
ipa_loader.styles(styles);
|
||||
ipa_loader.icons(icons);
|
||||
})();
|
||||
</script>
|
||||
</head>
|
||||
@@ -26,6 +69,8 @@
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div id="unauthorized-msg">
|
||||
<noscript>
|
||||
|
||||
<h1>Unable to verify your Kerberos credentials</h1>
|
||||
<p>
|
||||
@@ -36,11 +81,11 @@
|
||||
|
||||
<div id="first-time">
|
||||
<p>
|
||||
If this is your first time, please <strong>configure your browser</strong>.
|
||||
Use <a href="browserconfig.html">Firefox configuration page</a> for Firefox
|
||||
or <a href="ssbrowser.html">manual configuration page</a> for other browsers.
|
||||
If this is your first time, please <a href="ssbrowser.html">configure your browser</a>.
|
||||
</p>
|
||||
</div>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user