viewConfigMetadata.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{monitoring/layout}">
  3. <head>
  4. <title th:text="#{cas.configmetadata.pagetitle}"></title>
  5. <link rel="stylesheet" th:href="@{#{webjars.jqueryui.themes.cupertino.jquery-ui.css}}"/>
  6. <script type="text/javascript" th:inline="javascript">
  7. /*<![CDATA[*/
  8. var urls = {
  9. search: /*[[@{/status/configmetadata/search?name={query}}]]*/
  10. };
  11. /*]]>*/
  12. function jqueryReady() {
  13. head.load(
  14. /*[[@{/js/viewConfigMetadata.js}]]*/
  15. );
  16. }
  17. </script>
  18. </head>
  19. <body id="cas">
  20. <div layout:fragment="content">
  21. <h3 th:text="#{cas.configmetadata.pagetitle}"></h3>
  22. <p>CAS ships with meta-data files that provide details of all supported configuration properties and settings. You
  23. may query the metadata repository
  24. here to search for specific CAS settings and properties.
  25. <p/>
  26. <p>
  27. Property names can be specified in very relaxed terms. For instance <code>cas.someProperty</code>, <code>cas.some-property</code>,
  28. <code>cas.some_property</code>
  29. and <code>CAS_SOME_PROPERTY</code> are all valid names.
  30. </p>
  31. <div>
  32. <div class="ui search">
  33. <div class="ui left icon input form-group">
  34. <label for="searchField" class="sr-only">Enter search term</label>
  35. <input id="searchField" class="prompt form-control input-lg" type="text"
  36. placeholder="Search CAS...">
  37. </div>
  38. </div>
  39. <p/>
  40. </div>
  41. <div id="accordion">
  42. </div>
  43. </div>
  44. </body>
  45. </html>