-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
4,876 additions
and
11,175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<!-- Copyright 2020-2022 ETH Zurich and the DaCe-VSCode authors. --> | ||
<!-- All rights reserved. --> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Transformation List</title> | ||
|
||
<script> | ||
// Reference to the VSCode API. | ||
let vscode = undefined; | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<div id="contents" class="container-fluid"> | ||
<div class="row mb-2"> | ||
<div class="col-12"> | ||
<span> | ||
Status: <span id="status-text" class="not-connected"> | ||
Not connected | ||
</span> | ||
</span> | ||
</div> | ||
</div> | ||
<div class="row mb-2"> | ||
<div class="col-12"> | ||
<div class="d-flex gap-1"> | ||
<button class="btn btn-sm btn-primary flex-fill" | ||
id="launch-btn"> | ||
Launch | ||
</button> | ||
<button class="btn btn-sm btn-secondary flex-fill" | ||
id="connect-btn"> | ||
Connect | ||
</button> | ||
<button class="btn btn-sm btn-outline-danger flex-fill" | ||
id="quit-btn" | ||
disabled="disabled"> | ||
Stop | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row mb-2"> | ||
<div class="input-group input-group-sm col-12"> | ||
<label for="inputPort" class="input-group-text"> | ||
Port | ||
</label> | ||
<input type="number" class="form-control" id="inputPort"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="{{ SCRIPT_SRC }}/dace.js"></script> | ||
<script> | ||
vscode = acquireVsCodeApi(); | ||
</script> | ||
</body> | ||
|
||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.