1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-05 18:45:01 +01:00
Files
atomic/tests/atomicClient.html
AmartC 14f613eb23 DBus API to retrieve images data and vulnerability information
images now either print to tty or return json data via dbus

Make encoding and decoding work properly for both Python2 and Python3

Create Cockpit JavaScript test client that will call the DBus API
and receive information.

Closes: #494
Approved by: rhatdan
2016-07-29 19:08:27 +00:00

29 lines
906 B
HTML

<head>
<title>Atomic Client</title>
<meta charset="utf-8">
<link href="../base1/cockpit.css" type="text/css" rel="stylesheet">
<script src="../base1/jquery.js"></script>
<script src="../base1/cockpit.js"></script>
<script src="../base1/bundle.js"></script>
<script src = "atomic-client.js"></script>
</head>
<body hidden>
<div id="ui" class="container-fluid" style='max-width: 400px'>
<table class="cockpit-form-table">
<tr>
<td><label class="control-label">Atomic</label></td>
<td><span id="current"></span></td>
</tr>
<tr>
<td><button class="btn btn-default btn-primary" id="Run">Run</button></td>
<td><span id="failure"></span></td>
</tr>
</table>
</div>
<div id="curtain" hidden>
Atomic D-Bus API not available.
</div>
</body>
</html>