dump-launch.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!DOCTYPE HTML>
  2. <html xmlns:th="https://www.thymeleaf.org">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
  6. <title>Launch Dump</title>
  7. <style>
  8. th {
  9. min-width: 200px;
  10. text-align: right;
  11. background-color: #394b58;
  12. color: white;
  13. font-family: Serif;
  14. padding-left: 10px;
  15. padding-right: 10px;
  16. border-radius: 5px;
  17. text-overflow: ellipsis;
  18. white-space: nowrap;
  19. overflow: hidden;
  20. vertical-align: top;
  21. }
  22. td {
  23. text-align: left;
  24. background-color: #d1edfa;
  25. color: #394b58;
  26. font-family: Serif;
  27. padding-left: 10px;
  28. padding-right: 10px;
  29. border-radius: 5px;
  30. text-overflow: ellipsis;
  31. white-space: nowrap;
  32. overflow: hidden;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <h3>Meta Data</h3>
  38. <table>
  39. <tr th:each="metadata : ${metadata}">
  40. <th th:text="${metadata.key}">keyvalue</th>
  41. <td th:text="${metadata.value}">num</td>
  42. </tr>
  43. </table>
  44. <h3>Launch Claims</h3>
  45. <table title="Launch Claims">
  46. <tr th:each="claim : ${claims}">
  47. <th th:text="${claim.key}"></th>
  48. <td th:if="${claim.value.class.name == 'java.util.ArrayList'}" >
  49. <div th:each="row : ${claim.value}">
  50. <div th:text="${row}"/>
  51. </div>
  52. </td>
  53. <td th:if="${claim.value.class.name == 'org.jose4j.json.JsonUtil$DupeKeyDisallowingLinkedHashMap'}" >
  54. <table>
  55. <tr th:each="objmap : ${claim.value}">
  56. <th th:text="${objmap.key}"></th>
  57. <td th:text="${objmap.value}"></td>
  58. </tr>
  59. </table>
  60. </td>
  61. <td th:if="${claim.value.class.name == 'java.lang.String'}" th:text="${claim.value}">num</td>
  62. <td th:if="${claim.value.class.name == 'java.lang.Long'}" th:text="${claim.value}">num</td>
  63. </tr>
  64. </table>
  65. </body>
  66. </html>