Skip to content
Extraits de code Groupes Projets

Work done on the instance side of Amadeus

Fusionnées Kubat a demandé de fusionner dev-kubat vers master
2 fichiers
+ 28
5
Comparer les modifications
  • Côte à côte
  • En ligne
Fichiers
2
+ 0
163
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Amadeus</title>
<script>
window.$ = window.jQuery = require('../style/jquery/jquery-3.5.1.js');
</script>
<script src="../style/bootstrap-4.5.2-dist/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="../style/bootstrap-4.5.2-dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="../style/css/instance.css" />
<link rel="stylesheet" href="../style/fontawesome-free-5.15.1-web/css/all.min.css" />
<script src="./main.js"></script>
<script></script>
</head>
<body>
<div id="modal-settings" class="modal bd-example-modal-lg" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h2 class="modal-title">Amadeus settings</h2>
<button type="button" class="btn btn-outline-primary btn-lg modal-close" aria-label="Close">
<i class="fas fa-window-close"></i>
</button>
</div>
<div class="modal-body">
<form>
<h3>Lektord settings</h3>
<p>Configure which lektord to use or if 'attach' mode is enabled.</p>
<div class="form-group row">
<label for="inputHost" class="col-sm-2 col-form-label">Host</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputHost" placeholder="Host..." />
</div>
</div>
<div class="form-group row">
<label for="inputPort" class="col-sm-2 col-form-label">Port</label>
<div class="col-sm-10">
<input type="int" class="form-control" id="inputPort" placeholder="6600" />
</div>
</div>
<div class="form-group row">
<div class="col-sm-2">Attach mode</div>
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="inputAttachMode" />
<label class="form-check-label" for="inputAttachMode">
Enable attach mode
</label>
</div>
</div>
</div>
<hr />
<h3>Database settings</h3>
<p>Which database to use, and other options.</p>
<div class="form-group row">
<label for="inputDbPath" class="col-sm-2 col-form-label">Host</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputDbPath" placeholder="kara.db..." />
</div>
</div>
<hr />
<h3>Log settings</h3>
<p>Log options, this is a developper section.</p>
<fieldset class="form-group">
<div class="row">
<legend class="col-form-label col-sm-2 pt-0">Log level</legend>
<div class="col-sm-10" id="inputLogLevel">
<div class="form-check">
<input
class="form-check-input"
type="radio"
name="gridRadios"
id="logERROR"
value="ERROR"
checked
/>
<label class="form-check-label" for="logERROR">Error</label>
</div>
<div class="form-check">
<input
class="form-check-input"
type="radio"
name="gridRadios"
id="logWARNING"
value="WARNING"
/>
<label class="form-check-label" for="logWARNING">Warning</label>
</div>
<div class="form-check">
<input
class="form-check-input"
type="radio"
name="gridRadios"
id="logINFO"
value="INFO"
/>
<label class="form-check-label" for="logINFO">Info</label>
</div>
<div class="form-check">
<input
class="form-check-input"
type="radio"
name="gridRadios"
id="logDEBUG"
value="DEBUG"
/>
<label class="form-check-label" for="logDEBUG">Debug</label>
</div>
</div>
</div>
</fieldset>
<div class="form-group row">
<div class="col-sm-2">Lektord logs</div>
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="inputLogLektord" />
<label class="form-check-label" for="inputLogLektord">
Enable lektord logs when possible
</label>
</div>
</div>
</div>
</form>
</div>
<div class="modal-footer"> For changes to be applied you need to restart Amadeus. </div>
</div>
</div>
</div>
<div id="mainFrame" class="container-fluid">
<div
id="buttonPanelListLeft"
class="d-flex flex-row bd-highlight mb-3 row card"
style="-webkit-app-region: drag"
></div>
<div id="panelWrapper" class="row">
<ul id="panelLeft" class="col panel d-flex flex-column bd-highlight mb-3"></ul>
<ul id="panelRight" class="col panel d-flex flex-column bd-highlight mb-3"></ul>
</div>
<div
id="progress"
class="progress"
style="z-index: 666; position: fixed !important; right: 0; left: 0; bottom: 0"
>
<div
class="progress-bar"
id="progressBar"
role="progressbar"
style="
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
"
></div>
</div>
</div>
</body>
</html>
Chargement en cours