3 Commits

Author SHA1 Message Date
UnlegitDqrk
aeadf55ec9 Updated frontend 2026-03-02 18:41:19 +01:00
UnlegitDqrk
740e85fa3f Updated to latest Protocol build 2026-02-28 15:51:18 +01:00
UnlegitDqrk
357b30b037 Updated to latest Protocol build 2026-02-28 15:50:38 +01:00
7 changed files with 12 additions and 10 deletions

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.openautonomousconnection</groupId> <groupId>org.openautonomousconnection</groupId>
<artifactId>INSServer</artifactId> <artifactId>INSServer</artifactId>
<version>1.0.1-BETA.0.2</version> <version>1.0.1-BETA.0.3</version>
<description>The default INS-Server</description> <description>The default INS-Server</description>
<url>https://open-autonomous-connection.org/</url> <url>https://open-autonomous-connection.org/</url>
<issueManagement> <issueManagement>

View File

@@ -32,7 +32,7 @@ import java.util.Map;
* </ul> * </ul>
*/ */
@Route(path = "/dashboard.html") @Route(path = "/dashboard.html")
public final class dashboard implements WebPage { public final class dashboard extends WebPage {
private static Integer normalizeNullableInt(String s) { private static Integer normalizeNullableInt(String s) {
if (s == null) return null; if (s == null) return null;

View File

@@ -16,7 +16,7 @@ import java.util.Map;
* Landing page for INS registrar frontend (v1.0.1). * Landing page for INS registrar frontend (v1.0.1).
*/ */
@Route(path = "/index.html") @Route(path = "/index.html")
public final class index implements WebPage { public final class index extends WebPage {
@Override @Override
public WebResourceResponsePacket handle(WebPageContext ctx) { public WebResourceResponsePacket handle(WebPageContext ctx) {
@@ -25,7 +25,7 @@ public final class index implements WebPage {
String html = Html.page("OAC INS Registrar", """ String html = Html.page("OAC INS Registrar", """
<div class="card"> <div class="card">
<h2>OAC INS Registrar</h2> <h2>OAC INS Registrar</h2>
<p class="muted">What you want to do?</p> <p class="muted">What you want to do? You can checkout the source of this site here: https://repo.open-autonomous-connection.org/open-autonomous-connection/INSServer/</p>
<div class="col"><a href="info.html">Info</a></div><br /> <div class="col"><a href="info.html">Info</a></div><br />
<div class="row"> <div class="row">
<div class="col"><a href="login.html">Login</a></div> <div class="col"><a href="login.html">Login</a></div>

View File

@@ -16,7 +16,7 @@ import java.util.Map;
* Info page for INS registrar frontend (v1.0.1). * Info page for INS registrar frontend (v1.0.1).
*/ */
@Route(path = "/info.html") @Route(path = "/info.html")
public final class info implements WebPage { public final class info extends WebPage {
@Override @Override
public WebResourceResponsePacket handle(WebPageContext ctx) { public WebResourceResponsePacket handle(WebPageContext ctx) {
@@ -34,7 +34,7 @@ public final class info implements WebPage {
<p> <p>
It provides a trusted reference point for resolving InfoNames It provides a trusted reference point for resolving InfoNames
and enables initial client connections and enables initial client connections
to the OAC ecosystem. to the OAC.
</p> </p>
<p> <p>
@@ -46,6 +46,8 @@ public final class info implements WebPage {
Note: Alternative or private INS servers may exist, but the default INS Note: Alternative or private INS servers may exist, but the default INS
server represents the official and stable reference instance. server represents the official and stable reference instance.
</p> </p>
<p>Checkout the Source here: https://repo.open-autonomous-connection.org/open-autonomous-connection/INSServer/</p>
</section> </section>
"""); """);

View File

@@ -21,7 +21,7 @@ import java.util.*;
* Login page (v1.0.1). * Login page (v1.0.1).
*/ */
@Route(path = "/login.html") @Route(path = "/login.html")
public final class login implements WebPage { public final class login extends WebPage {
private enum ReqMethod { GET, POST, OTHER } private enum ReqMethod { GET, POST, OTHER }

View File

@@ -21,7 +21,7 @@ import java.util.*;
* Register page (v1.0.1). * Register page (v1.0.1).
*/ */
@Route(path = "/register.html") @Route(path = "/register.html")
public final class register implements WebPage { public final class register extends WebPage {
private enum ReqMethod { GET, POST, OTHER } private enum ReqMethod { GET, POST, OTHER }

View File

@@ -6,7 +6,7 @@
<groupId>org.openautonomousconnection</groupId> <groupId>org.openautonomousconnection</groupId>
<artifactId>INSServer</artifactId> <artifactId>INSServer</artifactId>
<version>1.0.1-BETA.0.2</version> <version>1.0.1-BETA.0.3</version>
<organization> <organization>
<name>Open Autonomous Connection</name> <name>Open Autonomous Connection</name>
<url>https://open-autonomous-connection.org/</url> <url>https://open-autonomous-connection.org/</url>
@@ -69,7 +69,7 @@
<dependency> <dependency>
<groupId>org.openautonomousconnection</groupId> <groupId>org.openautonomousconnection</groupId>
<artifactId>Protocol</artifactId> <artifactId>Protocol</artifactId>
<version>1.0.1-BETA.0.5</version> <version>1.0.1-BETA.0.6</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mariadb.jdbc</groupId> <groupId>org.mariadb.jdbc</groupId>