1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
---|
2 | <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
|
---|
3 | <html>
|
---|
4 | <head><title><fmt:message key="app.name"/> Debug</title></head>
|
---|
5 | <body>
|
---|
6 |
|
---|
7 | <h1><fmt:message key="app.name"/> Debug</h1>
|
---|
8 |
|
---|
9 | <h4>initLogArea</h4>
|
---|
10 |
|
---|
11 | <form name="initLogArea" action="tracking.xml" method="post">
|
---|
12 | <input name="command" type="hidden" value="initLogArea"/>
|
---|
13 | <table>
|
---|
14 | <tr>
|
---|
15 | <td><label for="init_area">area</label></td>
|
---|
16 | <td><input id="init_area" name="area" type="text" value="1"/></td>
|
---|
17 | </tr>
|
---|
18 | </table>
|
---|
19 | <input type="submit" value="Execute"/>
|
---|
20 | </form>
|
---|
21 |
|
---|
22 | <h4>initTrackingArea</h4>
|
---|
23 |
|
---|
24 | <form name="initTrackingArea" action="board.xml" method="post">
|
---|
25 | <input name="command" type="hidden" value="initLogArea"/>
|
---|
26 | <table>
|
---|
27 | <tr>
|
---|
28 | <td><label for="init_area">area</label></td>
|
---|
29 | <td><input id="init_area" name="area" type="text" value="1"/></td>
|
---|
30 | </tr>
|
---|
31 | </table>
|
---|
32 | <input type="submit" value="Execute"/>
|
---|
33 | </form>
|
---|
34 |
|
---|
35 | <h4>refreshLogSelector</h4>
|
---|
36 |
|
---|
37 | <form name="refreshLogSelector" action="tracking.xml" method="post">
|
---|
38 | <input name="command" type="hidden" value="refreshLogSelector"/>
|
---|
39 | <table>
|
---|
40 | <tr>
|
---|
41 | <td><label for="refresh_area">area</label></td>
|
---|
42 | <td><input id="refresh_area" name="area" type="text" value="1"/></td>
|
---|
43 | </tr>
|
---|
44 | <tr>
|
---|
45 | <td><label for="token">token</label></td>
|
---|
46 | <td><input id="token" name="token" type="text" value="-1"/></td>
|
---|
47 | </tr>
|
---|
48 | </table>
|
---|
49 | <input type="submit" value="Execute"/>
|
---|
50 | </form>
|
---|
51 |
|
---|
52 | <h4>switchLogEntry</h4>
|
---|
53 |
|
---|
54 | <form name="switchLogEntry" action="tracking.xml" method="post">
|
---|
55 | <input name="command" type="hidden" value="switchLogEntry"/>
|
---|
56 | <table>
|
---|
57 | <tr>
|
---|
58 | <td><label for="logID">logID</label></td>
|
---|
59 | <td><input id="logID" name="logID" type="text" value="64"/></td>
|
---|
60 | </tr>
|
---|
61 | <tr>
|
---|
62 | <td><label for="getChoices">getChoices</label></td>
|
---|
63 | <td><input id="getChoices" name="getChoices" type="text" value="1"/></td>
|
---|
64 | </tr>
|
---|
65 | </table>
|
---|
66 | <input type="submit" value="Execute"/>
|
---|
67 | </form>
|
---|
68 |
|
---|
69 | </body>
|
---|
70 | </html>
|
---|