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