A semi-automatic parser of Ancient Greek and Latin languages. https://lexis.glossa.info/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.9 KiB

6 years ago
{{ define "about-en" }}
<h1>LEΞΙΣ</h1>
<p>This application is a part of the <a href="https://glossa.info/" target="_blank">glossa.info</a> project.</p>
<p>This is a semi-automatic parser of Ancient Greek and Latin languages, based on
6 years ago
<a href="http://www.perseus.tufts.edu/" target="_blank">http://www.perseus.tufts.edu/</a>.</p>
<p>The application can be used to determine the root form of a word from its
form, facilitating translation from ancient languages.</p>
<h1>License</h1>
<p><a href="https://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License v3.</a></p>
<h1>Usage</h1>
<h2 class="help">Reference</h2>
<p>The program parses word form and suggests possible properties to be chosen in a drop-down menu.</p>
<p><a href="/assets/img/screenshot_1.png" target="_blank"><img class="img-screenshot" src="/assets/img/screenshot_1.png" /></a></p>
<p>Click the word to open Perseus analysis page</p>
<p>All fields are editable.</p>
<p><a href="/assets/img/screenshot_2.png" target="_blank"><img class="img-screenshot" src="/assets/img/screenshot_2.png" /></a></p>
<p>Adjust the table by choosing font size and disabling borders.</p>
<p><a href="/assets/img/screenshot_3.png" target="_blank"><img class="img-screenshot" src="/assets/img/screenshot_3.png" /></a></p>
<p>The table settings are saved when the document is printed.</p>
<p>a) Printed table:</p>
<p><a href="/assets/img/screenshot_4.png" target="_blank"><img class="img-screenshot" src="/assets/img/screenshot_4.png" /></a></p>
<p>а) Printed text:</p>
<p><a href="/assets/img/screenshot_5.png" target="_blank"><img class="img-screenshot" src="/assets/img/screenshot_5.png" /></a></p>
<br />
<h3>Command line usage</h3>
<p><a href="/assets/img/screenshot_6.png" target="_blank"><img class="img-screenshot" src="/assets/img/screenshot_6.png" /></a></p>
<h2 class="help">Launch locally</h2>
<h3>Download</h3>
<p>Binary files are available for <a href="/dist/lexis.linux.bin">Linux</a> and <a href="/dist/lexis.macos.bin">MacOS</a>.</p>
<h3>Building from sources</h3>
<pre>
$ git clone https://code.envrm.info/src/lexis
6 years ago
$ cd lexis
#1
$ make build
#2
$ go build lexis.go
</pre>
<h3>Launch</h3>
<h4>Command line arguments:</h4>
<pre>
$ lexis -h
Usage:
CLI: lexis <text>
WEB: lexis --serve [--port] [--host]
6 years ago
-host string
Host to bind (default "127.0.0.1")
6 years ago
-port int
Server port (default 9000)
-serve
Serve LEΞΙΣ
</pre>
<h4>Web-service launch</h4>
<pre>
#1
$ make serve
Server is started at 127.0.0.1:9000
6 years ago
#2
$ lexis --serve [--port] [--host]
Server is started at 127.0.0.1:9000
6 years ago
$ xdg-open http://localhost:9000
</pre>
<h1>Development</h1>
<p>Submit your suggestions, amendments and improvements at
<a href="https://code.envrm.info/src/lexis" target="_blank">https://code.envrm.info/src/lexis</a>
6 years ago
or send them to the e-mail address specified at
<a href="https://glossa.info/" target="_blank">glossa.info</a>.</p>
{{ end }}