Projekt

Obecné

Profil

Stáhnout (2.99 KB) Statistiky
| Větev: | Tag: | Revize:
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
    <meta charset="UTF-8">
5
    <title>Crossroad</title>
6
</head>
7
<body>
8
<form action="" method="get">
9
  <label for="view">Choose view:</label>
10
  <select id="view" name="view" onchange="this.form.action=this.value;">
11
      <option value=""></option>
12
      <option value="/logs-web">Vector Logs</option>
13
      <option value="/ldlogs-web">Lauterbach Logs</option>
14
      <option value="/devices-web">Keyman Devices</option>
15
      <option value="/body-devices-web">Lauterbach Body Devices</option>
16
      <option value="/head-devices-web">Lauterbach Head Devices</option>
17
      <option value="/teams-web">Teams</option>
18
      <option value="/pcs-web">PCs</option>
19
      <option value="/licenses-web">Licenses</option>
20
  </select>
21
  <input type="submit" value="OK">
22
</form>
23
<h3>Available endpoints are accessible from selectBox above</h3>
24
<h4>Endpoints are:</h4>
25
<table>
26
    <TR>
27
        <TH>URL</TH>
28
        <TH>Name</TH>
29
        <TH>Purpose</TH>
30
    </TR>
31
    <TR>
32
        <TD class="URL">/logs-web</TD>
33
        <TD class="Name">Vector Logs</TD>
34
        <TD class="Purpose">Shows all saved Keyman logs. User can filter through license, team and user</TD>
35
    </TR>
36
    <TR>
37
        <TD class="URL">/ldlogs-web</TD>
38
        <TD class="Name">Lauterbach Logs</TD>
39
        <TD class="Purpose">Shows all saved LD debugger logs. User can filter through license, team and user</TD>
40
    </TR>
41
    <TR>
42
        <TD class="URL">/devices-web</TD>
43
        <TD class="Name">Keyman Devices</TD>
44
        <TD class="Purpose">Shows all Keyman devices saved in database and its license, inventory number, last pc and
45
                            last detection. User can filter through keyman id, license type, license id and team</TD>
46
    </TR>
47
    <TR>
48
        <TD class="URL">/body-devices-web</TD>
49
        <TD class="Name">Lauterbach Body Devices</TD>
50
        <TD class="Purpose">Shows all Lauterbach Body devices saved in database and its license, inventory number, last pc and
51
                            last detection. User can filter through body device serial nummber, license id and team</TD>
52
    </TR>
53
     <TR>
54
        <TD class="URL">/head-devices-web</TD>
55
        <TD class="Name">Lauterbach Head Devices</TD>
56
        <TD class="Purpose">Shows all Lauterbach Head devices saved in database and its license, inventory number, last pc and
57
                            last detection. User can filter through body device serial nummber, license id and team</TD>
58
    </TR>
59
    <TR>
60
        <TD class="URL">/teams-web</TD>
61
        <TD class="Name">Teams</TD>
62
        <TD class="Purpose">Shows all teams currently saved in database</TD>
63
    </TR>
64
    <TR>
65
        <TD class="URL">/pcs-web</TD>
66
        <TD class="Name">PCs</TD>
67
        <TD class="Purpose">Shows all PCS currently saved in database</TD>
68
    </TR>
69
    <TR>
70
        <TD class="URL">/licenses-web</TD>
71
        <TD class="Name">Licenses</TD>
72
        <TD class="Purpose">Shows all Licenses currently saved in database and its expiration date</TD>
73
    </TR>
74
</table>
75
</body>
76
</html>
(1-1/3)