basex-lsp/webapp/lsp-manager/views/socket.htm
2025-10-19 23:16:37 +01:00

29 lines
No EOL
880 B
HTML

<!DOCTYPE HTML5>
<html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout.htm}">
<head>
<title th:text="${wsid}">socket</title>
</head>
<body>
<div layout:fragment="content" class='ProfileIndex'>
<h2><span th:text="${wsid}">#</span> @ <span th:text="${connectTime}">#</span></h2>
<ul>
<li th:each="file: ${files}">
<a th:href="@{~/app/socket/{soc}}" href="#socket"><small th:text="${soc}">socket</small></a>
<span th:text="${file}">soc</span>
</li>
</ul>
<hr />
<div th:text="${file1}">doc</div>
<div th:text="${doc.uri}">doc</div>
<div th:text="${doc.languageId}">doc</div>
<div th:text="${doc.version}">doc</div>
<hr />
<pre th:text="${doc.text}" style="height:16em;overflow:scroll;">doc</pre>
</div>
</body>
</html>