2020-04-09 10:34:16 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Ardour Web Surfaces</title>
|
2020-04-19 06:42:13 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2020-04-11 03:37:00 -04:00
|
|
|
<link rel="stylesheet" type="text/css" href="index/main.css">
|
2020-04-09 10:34:16 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="top-bar">
|
2020-04-11 03:37:00 -04:00
|
|
|
<img id="logo" src="index/logo.png">
|
2020-04-09 10:34:16 -04:00
|
|
|
</div>
|
|
|
|
<div id="content">
|
2020-04-10 02:35:00 -04:00
|
|
|
<h2 id="loading">Loading...</h2>
|
|
|
|
<pre id="error" style="display:none"></pre>
|
2020-04-12 10:29:31 -04:00
|
|
|
<div id="local" style="display:none">
|
|
|
|
<h2>This page cannot be loaded from a local file</h2>
|
|
|
|
<p>Follow these steps instead:</p>
|
|
|
|
<ul>
|
2020-04-12 10:30:22 -04:00
|
|
|
<li>Launch Ardour</li>
|
|
|
|
<li>Enable the WebSockets Server control surface</li>
|
2020-04-12 10:29:31 -04:00
|
|
|
<li>
|
|
|
|
Click on the following link
|
|
|
|
<a href="http://localhost:3818/">http://localhost:3818</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2020-04-10 02:35:00 -04:00
|
|
|
<div id="index" style="display:none">
|
|
|
|
<h1>Available Web Surfaces</h1>
|
2020-04-11 04:08:54 -04:00
|
|
|
<div class="surface-list" id="builtin">
|
2020-04-12 04:29:20 -04:00
|
|
|
<h2>Built-In</h2>
|
2020-04-11 04:08:54 -04:00
|
|
|
<ul></ul>
|
2020-04-10 02:35:00 -04:00
|
|
|
</div>
|
2020-04-11 04:08:54 -04:00
|
|
|
<div class="surface-list" id="user">
|
2020-04-12 04:29:20 -04:00
|
|
|
<h2>User</h2>
|
2020-04-11 04:08:54 -04:00
|
|
|
<ul></ul>
|
2020-04-10 02:35:00 -04:00
|
|
|
</div>
|
2020-04-09 10:34:16 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-12 10:29:31 -04:00
|
|
|
<script>
|
|
|
|
if (!location.hostname) {
|
|
|
|
document.getElementById('loading').style.display = 'none';
|
|
|
|
document.getElementById('local').style.display = 'inline';
|
|
|
|
}
|
|
|
|
</script>
|
2020-04-11 11:31:34 -04:00
|
|
|
<script type="module" src="index/main.js"></script>
|
2020-04-09 10:34:16 -04:00
|
|
|
</body>
|
|
|
|
</html>
|