| Age | Commit message (Collapse) | Author |
|
We will move all fields related to HTTP server into one struct later.
|
|
Previously, the "local" and "play" command only accept two kind of
arguments: one argument for executing single line or two arguments for
executing line range.
There are no options to executing multiple single line, multiple line
range, or combination of them.
This changes make the both commands accept list of lines or line range
where each separated by comma.
For example, to execute multiple, different single lines
awwan local 4,8,12
To execute multiple line range,
awwan local 4-8,12-16
Or to execute multiple lines and line range,
awwan local 4,8,10-12
|
|
Replace ":=" with explicit variable declaration with types for clarity
and minimizing duplicate variables.
|
|
|
|
See https://kilabit.info/journal/2022/gpl for more information.
|
|
The WUI now has a button "Remove" under the file system tree that allow
user to remove selected file.
|
|
The web user interface (wui) now has a button to create a directory
or file given the input file name.
|
|
The web-user interface now have button "Save" that save the edited
content of file to storage.
|
|
The serve comman will run a HTTP server that provide web-user interface
to edit and execute script.
Currently, the web-user interface provide the following features,
* Browsing the workspace
* Running the script on local or remote
|