-
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix links to index page (local and ghp)
- Loading branch information
Showing
23 changed files
with
222 additions
and
43 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
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,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<title>Application Playground</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="stylesheet" href="./resources/appPlayground/style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="exampleHeadelineDiv"> | ||
<b class="exampleHeadeline">Application Playground</b> - [<a href="./index.html">Back to Index</a>] | ||
<br> | ||
<b>Heads up:</b> This is a prototype and still evolving. | ||
</div> | ||
<script type="module" rel="modulepreload" src="./src/appPlayground/launcher"></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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>Language Client Pure Browser Example</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="exampleHeadelineDiv"> | ||
<b class="exampleHeadeline">Language Client Pure Browser Example</b> - [<a href="./index.html">Back to Index</a>] | ||
</div> | ||
<div id="monaco-editor-root" style="width:800px;height:600px;border:1px solid grey"></div> | ||
<script type="module"> | ||
import { runBrowserEditor } from "./src/browser/main.ts"; | ||
|
||
runBrowserEditor(); | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>Cpp Language Client & Clangd Language Server (Worker/Wasm)</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<script src="./mini-coi.js" scope="./"></script> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="exampleHeadelineDiv"> | ||
<b class="exampleHeadeline">Cpp Language Client & Clangd Language Server (Worker/Wasm)</b> - [<a href="./index.html">Back to Index</a>] | ||
<br> | ||
<b>Heads up:</b> This is a prototype and still evolving.<br> | ||
The clangd language server worker has been derived from: <a href="https://github.com/guyutongxue/clangd-in-browser">clangd-in-browser</a><br> | ||
<button type="button" id="button-start">Start</button> </div> | ||
<div id="monaco-editor-root" style="width:800px;height:600px;border:1px solid grey"></div> | ||
<label for="openFiles">Select open file:</label> | ||
<select name="openFiles" id="openFiles"> | ||
</select> | ||
<script type="module"> | ||
import { runClangdWrapper } from "./src/clangd/client/main.ts"; | ||
|
||
runClangdWrapper(); | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<title>Langium Grammar DSL Language Client & Language Server (Worker)</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="exampleHeadelineDiv"> | ||
<b class="exampleHeadeline">Langium Grammar DSL Language Client & Language Server (Worker)</b> - [<a href="./index.html">Back to Index</a>] | ||
<br> | ||
<button type="button" id="button-start-classic">Start Classic</button> | ||
<button type="button" id="button-start-extended">Start Extended</button> | ||
<button type="button" id="button-dispose">Dispose</button> | ||
</div> | ||
<div id="monaco-editor-root" style="height: 80vh; border: 1px solid grey"></div> | ||
<script type="module"> | ||
import { runLangiumDslWrapper } from './src/langium/langium-dsl/wrapperLangium.ts'; | ||
|
||
runLangiumDslWrapper(); | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>React: Langium Statemachine Language Client & Language Server (Worker)</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="exampleHeadelineDiv"> | ||
<b class="exampleHeadeline">React: Langium Statemachine Language Client & Language Server (Worker)</b> - [<a href="./index.html">Back to Index</a>] | ||
<br> | ||
<button type="button" id="button-start">Start</button> | ||
<label>Enable Strict mode:</label><input type="checkbox" id="checkbox-strictmode" /> | ||
<button type="button" id="button-dispose">Dispose</button> | ||
</div> | ||
<div id="monaco-editor-root"></div> | ||
<script type="module"> | ||
import { runStatemachineReact } from './src/langium/statemachine/main-react.tsx'; | ||
|
||
runStatemachineReact(); | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Langium Statemachine Client & Language Server (Worker)</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="exampleHeadelineDiv"> | ||
<b class="exampleHeadeline">Langium Statemachine Client & Language Server (Worker)</b> - [<a href="./index.html">Back to Index</a>] | ||
<br> | ||
<button type="button" id="button-start">Start</button> | ||
<button type="button" id="button-dispose">Dispose</button> | ||
</div> | ||
<div id="monaco-editor-root" style="height: 40vh;"></div> | ||
<div id="monaco-editor-root2" style="height: 40vh;"></div> | ||
<script type="module" rel="modulepreload" src="./src/langium/statemachine/launcher"></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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>TypeScript Extension Host Worker</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="exampleHeadelineDiv"> | ||
<b class="exampleHeadeline">TypeScript Extension Host Worker</b> - [<a href="./index.html">Back to Index</a>] | ||
<br> | ||
<button type="button" id="button-start">Start</button> | ||
<button type="button" id="button-swap-code">Swap Code</button> | ||
<button type="button" id="button-diff">Show Diff</button> | ||
<button type="button" id="button-dispose">Dispose</button> | ||
</div> | ||
|
||
<div id="monaco-editor-root" style="height: 80vh;"></div> | ||
<script type="module"> | ||
import { runTsWrapper } from './src/ts/wrapperTs.ts'; | ||
|
||
runTsWrapper(); | ||
</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
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
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
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
Oops, something went wrong.