124 lines
3.7 KiB
HTML
124 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="content-security-policy" content="
|
|
base-uri 'self';
|
|
default-src 'none';
|
|
script-src 'self' https://unpkg.com;
|
|
style-src 'self' 'sha256-s7UPtBgvov5WNF9C1DlTZDpqwLgEmfiWha5a5p/Zn7E=';
|
|
connect-src 'self';
|
|
font-src 'self' data:;
|
|
img-src 'self' blob:;
|
|
frame-src 'self';
|
|
form-action 'self';
|
|
">
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, minimal-ui">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
<meta name="format-detection" content="telephone=no">
|
|
|
|
<title>Sequence Diagram</title>
|
|
<link rel="icon" href="web/resources/favicon.png">
|
|
<link rel="apple-touch-icon" href="web/resources/apple-touch-icon.png">
|
|
<link rel="stylesheet" href="web/styles/editor.css">
|
|
|
|
<meta
|
|
name="cdn-split"
|
|
content="https://unpkg.com/split.js@1.3.5/split.min.js"
|
|
data-integrity="sha256-vBu0/2gpeLlfmY2yFkr8eHTMuYKBw2M+/Id/qZx27F4="
|
|
>
|
|
|
|
<!-- DEV
|
|
<meta
|
|
name="cdn-cm/lib/codemirror"
|
|
content="node_modules/codemirror/lib/codemirror.js"
|
|
>
|
|
|
|
<link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css">
|
|
|
|
<meta
|
|
name="cdn-cm/addon/hint/show-hint"
|
|
content="node_modules/codemirror/addon/hint/show-hint.js"
|
|
>
|
|
|
|
<link rel="stylesheet"
|
|
href="node_modules/codemirror/addon/hint/show-hint.css"
|
|
>
|
|
|
|
<meta
|
|
name="cdn-cm/addon/edit/trailingspace"
|
|
content="node_modules/codemirror/addon/edit/trailingspace.js"
|
|
>
|
|
|
|
<meta
|
|
name="cdn-cm/addon/comment/comment"
|
|
content="node_modules/codemirror/addon/comment/comment.js"
|
|
>
|
|
|
|
<script src="node_modules/requirejs/require.js"></script>
|
|
<link rel="stylesheet" href="web/styles/codemirror-override.css">
|
|
<script src="web/scripts/editor.mjs" type="module"></script>
|
|
/DEV -->
|
|
|
|
<!-- LIVE -->
|
|
<link rel="stylesheet" href="web/lib/codemirror.css">
|
|
<meta name="cdn-cm/lib/codemirror" content="web/lib/codemirror.js">
|
|
<meta name="cdn-cm/addon/hint/show-hint" content="web/lib/show-hint.js">
|
|
<meta name="cdn-cm/addon/edit/trailingspace" content="web/lib/trailingspace.js">
|
|
<meta name="cdn-cm/addon/comment/comment" content="web/lib/comment.js">
|
|
|
|
<script src="lib/sequence-diagram-web.min.js"></script>
|
|
<script src="web/lib/require.js"></script>
|
|
<link rel="stylesheet" href="web/styles/codemirror-override.css">
|
|
<script src="web/lib/editor.min.js"></script>
|
|
<!-- /LIVE -->
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="loader">
|
|
<h1>Sequence Diagram Online Editor</h1>
|
|
<p class="loadmsg">Loading…</p>
|
|
<nav>
|
|
<a href="#" data-touch="Files">My Diagrams</a>
|
|
<a href="library.htm" target="_blank" rel="noopener" data-touch="API">Library</a>
|
|
<a href="https://github.com/davidje13/SequenceDiagram" target="_blank" rel="noopener" data-touch="">GitHub</a>
|
|
</nav>
|
|
</div>
|
|
|
|
<noscript>
|
|
<link rel="stylesheet" href="web/styles/noscript.css">
|
|
<main>
|
|
<section class="banner">
|
|
Enable JavaScript for live rendering, templates, PNG export, and local file saving.
|
|
<nav><a href="library.htm" target="_blank" rel="noopener">Library</a><a href="https://github.com/davidje13/SequenceDiagram" target="_blank" rel="noopener">GitHub</a></nav>
|
|
</section>
|
|
<form target="preview" action="preview" method="GET">
|
|
<textarea name="c">
|
|
title Labyrinth
|
|
|
|
Bowie -> Goblin: You remind me of the babe
|
|
Goblin -> Bowie: What babe?
|
|
Bowie -> Goblin: The babe with the power
|
|
Goblin -> Bowie: What power?
|
|
note right of Bowie, Goblin: Most people get muddled here!
|
|
Bowie -> Goblin: "The power of voodoo"
|
|
Goblin -> Bowie: "Who-do?"
|
|
Bowie -> Goblin: You do!
|
|
Goblin -> Bowie: Do what?
|
|
Bowie -> Goblin: Remind me of the babe!
|
|
|
|
Bowie -> Audience: Sings
|
|
|
|
terminators box
|
|
</textarea>
|
|
<button type="submit">Update</button>
|
|
</form>
|
|
<iframe name="preview" src="web/resources/preview.htm"></iframe>
|
|
</main>
|
|
</noscript>
|
|
|
|
</body>
|
|
</html>
|