The web-sandbox written in Go and JavaScript for interacting with the Vostok translator has been fixed as version 0.1. The sandbox allows you to edit modules on Oberon, run exported procedures, convert modules to other programming languages. Modules available from the default translator's environment have restricted access to server's resources.
Enhancements:- Ability to work with multiple modules.
- Using the current editor as the standard input source.
- Adding string and comment highlighting, supporting snippets and enabling autocompletion.
- Saving input to a local web-storage.
- Ability to save on a server with access for editing and for viewing only.
- Ability to fix the content of the command line as a button.
- Ability to run code in the command line by the keyboard.
- Ability to run code from a log.
- Minimal initial configuration of sandbox reduced to a single log.
- Dark theme has been chosen and the icon has been added.
Youtube
The sandbox available by URL vostok.oberon.org/sandbox.html
For local building and running needs to execute:
cd vostok/demo-server
# go version ≥ 1.16
go build server.go
./server &
browse http://localhost:8080/
For embedding to HTML-page needs code like this:
<link rel='stylesheet' type='text/css' href='vostokbox.css'>
<script src='https://ajaxorg.github.io/ace-builds/src/ace.js'
type='text/javascript' charset='utf-8'></script>
<script src='https://ajaxorg.github.io/ace-builds/src/ext-language_tools.js'
type='text/javascript' charset='utf-8'></script>
<script src='ace-oberon.js' type='text/javascript' charset='utf-8'></script>
<script src='vostokbox-config.js' type='text/javascript' charset='utf-8'></script>
<script src='vostokbox.js' type='text/javascript' charset='utf-8'></script>
<div id='vostokbox-tabs'></div>
<div>
<div class='vostokbox-editor'>MODULE One;
END One.</div>
<div class='vostokbox-editor'>MODULE Two;
IMPORT One;
END Two.</div>
<div id='vostokbox-log'></div>
</div>
<div id='vostokbox-button-runners'></div>
<div id='vostokbox-runners'></div>
<script>VostokBox.createByDefaultIdentifiers(document, ace, {
runners:['One'], buttonRunners:['Two']});
</script>
Комментариев нет:
Отправить комментарий