12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!DOCTYPE HTML>
- <html xmlns:th="https://www.thymeleaf.org">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
- <title>Launch Dump</title>
- <style>
- th {
- min-width: 200px;
- text-align: right;
- background-color: #394b58;
- color: white;
- font-family: Serif;
- padding-left: 10px;
- padding-right: 10px;
- border-radius: 5px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- vertical-align: top;
- }
- td {
- text-align: left;
- background-color: #d1edfa;
- color: #394b58;
- font-family: Serif;
- padding-left: 10px;
- padding-right: 10px;
- border-radius: 5px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- </style>
- </head>
- <body>
- <h3>Meta Data</h3>
- <table>
- <tr th:each="metadata : ${metadata}">
- <th th:text="${metadata.key}">keyvalue</th>
- <td th:text="${metadata.value}">num</td>
- </tr>
- </table>
- <h3>Launch Claims</h3>
- <table title="Launch Claims">
- <tr th:each="claim : ${claims}">
- <th th:text="${claim.key}"></th>
- <td th:if="${claim.value.class.name == 'java.util.ArrayList'}" >
- <div th:each="row : ${claim.value}">
- <div th:text="${row}"/>
- </div>
- </td>
- <td th:if="${claim.value.class.name == 'org.jose4j.json.JsonUtil$DupeKeyDisallowingLinkedHashMap'}" >
- <table>
- <tr th:each="objmap : ${claim.value}">
- <th th:text="${objmap.key}"></th>
- <td th:text="${objmap.value}"></td>
- </tr>
- </table>
- </td>
- <td th:if="${claim.value.class.name == 'java.lang.String'}" th:text="${claim.value}">num</td>
- <td th:if="${claim.value.class.name == 'java.lang.Long'}" th:text="${claim.value}">num</td>
- </tr>
- </table>
- </body>
- </html>
|