index.html 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <!DOCTYPE html>
  2. <html lang = "en">
  3. <head>
  4. <meta name = "viewport" content = "width=device-width, initial-scale=1.0">
  5. <meta name = "description" content = "Give safe and simple access to predefined shell commands from a web interface." />
  6. <title>OliveTin</title>
  7. <link rel = "stylesheet" type = "text/css" href = "style.css" />
  8. <link rel = "stylesheet" type = "text/css" href = "theme.css" />
  9. <link rel = "shortcut icon" type = "image/png" href = "OliveTinLogo.png" />
  10. <link rel = "apple-touch-icon" sizes="57x57" href="OliveTinLogo-57px.png" />
  11. <link rel = "apple-touch-icon" sizes="120x120" href="OliveTinLogo-120px.png" />
  12. <link rel = "apple-touch-icon" sizes="180x180" href="OliveTinLogo-180px.png" />
  13. </head>
  14. <body>
  15. <header>
  16. <button id = "sidebar-toggler-button" aria-label = "Open sidebar navigation" aria-pressed = "false" aria-haspopup = "menu">&#9776;</button>
  17. <h1 id = "page-title">OliveTin</h1>
  18. <nav>
  19. <ul id = "navigation-links">
  20. <li title = "Actions">
  21. <a id = "showActions" href = "#actions">Actions</a>
  22. </li>
  23. </ul>
  24. <ul id = "supplemental-links">
  25. <li title = "Logs">
  26. <a id = "showLogs" href = "#logs">Logs</a>
  27. </li>
  28. </ul>
  29. </nav>
  30. </header>
  31. <main title = "main content">
  32. <section id = "contentLogs" title = "Logs" hidden>
  33. <div class = "toolbar">
  34. <input placeholder = "Search for action name" id = "logSearchBox" />
  35. <button id = "searchLogsClear" title = "Clear search filter" disabled>X</button>
  36. </div>
  37. <table title = "Logs">
  38. <thead>
  39. <tr title = "untitled">
  40. <th>Timestamp</th>
  41. <th>Log</th>
  42. <th>Exit Code</th>
  43. </tr>
  44. </thead>
  45. <tbody id = "logTableBody" />
  46. </table>
  47. </section>
  48. <section id = "contentActions" title = "Actions" hidden >
  49. <fieldset id = "root-group" title = "Actions">
  50. <legend hidden>Actions</legend>
  51. </fieldset>
  52. </section>
  53. <noscript>
  54. <div class = "error">Sorry, JavaScript is required to use OliveTin.</div>
  55. </noscript>
  56. </main>
  57. <footer title = "footer">
  58. <p><img title = "application icon" src = "OliveTinLogo.png" alt = "OliveTin logo" height = "1em" class = "logo" /> OliveTin</p>
  59. <p>
  60. <a href = "https://docs.olivetin.app" target = "_new">Documentation</a> |
  61. <a href = "https://github.com/OliveTin/OliveTin/issues/new/choose" target = "_new">Raise an issue on GitHub</a> |
  62. <span>Version: <span id = "currentVersion">?</span></span> |
  63. <span>Server connection:
  64. <span id = "serverConnectionRest">REST</span>,
  65. <span id = "serverConnectionWebSocket">WebSocket</span>
  66. </span>
  67. </p>
  68. <p>
  69. <a id = "available-version" href = "http://olivetin.app" target = "_blank" hidden>?</a>
  70. </p>
  71. </footer>
  72. <dialog title = "Big Error Message" id = "big-error" class = "error">
  73. </dialog>
  74. <dialog title = "Execution Results" id = "execution-results-popup">
  75. <div class = "action-header">
  76. <span id = "execution-dialog-icon" class = "icon" role = "img"></span>
  77. <h2>
  78. <span id = "execution-dialog-title">?</span>
  79. </h2>
  80. <button id = "execution-dialog-toggle-size" title = "Toggle dialog size">&#128470;</button>
  81. </div>
  82. <div id = "execution-dialog-basics">
  83. <strong>Started: </strong><span id = "execution-dialog-datetime-started">unknown</span>
  84. </div>
  85. <div id = "execution-dialog-details">
  86. <p>
  87. <strong>Finished: </strong><span id = "execution-dialog-datetime-finished">unknown</span>
  88. </p>
  89. <p>
  90. <strong>Exit Code: </strong><span id = "execution-dialog-exit-code">unknown</span>
  91. </p>
  92. <p>
  93. <strong>Status: </strong><span id = "execution-dialog-status">unknown</span>
  94. </p>
  95. </div>
  96. <div id = "execution-dialog-output">
  97. <details>
  98. <summary>Standard Output</summary>
  99. <pre id = "execution-dialog-stdout">?</pre>
  100. </details>
  101. <details>
  102. <summary>Standard Error</summary>
  103. <pre id = "execution-dialog-stderr">?</pre>
  104. </details>
  105. </div>
  106. <form method = "dialog">
  107. <div class = "buttons">
  108. <button name = "Cancel" title = "Close">Close</button>
  109. </div>
  110. </form>
  111. </dialog>
  112. <template id = "tplArgumentForm">
  113. <dialog title = "Arguments" id = "argument-popup">
  114. <form class = "action-arguments">
  115. <div class = "wrapper">
  116. <div class = "action-header">
  117. <span class = "icon" role = "img"></span>
  118. <h2>Argument form</h2>
  119. </div>
  120. <div class = "arguments"></div>
  121. <div class = "buttons">
  122. <input name = "start" type = "submit" value = "Start">
  123. <button name = "cancel" title = "Cancel">Cancel</button>
  124. </div>
  125. </div>
  126. </form>
  127. </dialog>
  128. </template>
  129. <template id = "tplActionButton">
  130. <button>
  131. <span title = "action button icon" class = "icon">&#x1f4a9;</span>
  132. <span class = "title" aria-live = "polite">Untitled Button</span>
  133. </button>
  134. <div class = "action-button-footer" hidden></div>
  135. </template>
  136. <template id = "tplLogRow">
  137. <tr class = "log-row">
  138. <td class = "timestamp">?</td>
  139. <td>
  140. <span role = "img" class = "icon"></span>
  141. <a href = "#" class = "content">?</a>
  142. <details>
  143. <summary>stdout</summary>
  144. <pre class = "stdout">?</pre>
  145. </details>
  146. <details>
  147. <summary>stderr</summary>
  148. <pre class = "stderr">?</pre>
  149. </details>
  150. <div class = "tags"></div>
  151. </td>
  152. <td class = "exit-code">?</td>
  153. </tr>
  154. </template>
  155. <script type = "text/javascript">
  156. const bigErrorDialog = document.getElementById('big-error')
  157. /**
  158. This is the bootstrap code, which relies on very simple, old javascript
  159. to at least display a helpful error message if we can't use OliveTin.
  160. */
  161. window.showBigError = function (type, friendlyType, message, isFatal) {
  162. bigErrorDialog.innerHTML = '<h1>Error ' + friendlyType + '</h1><p>' + message + "</p><p><a href = 'http://docs.olivetin.app/err-" + type + ".html' target = 'blank'/>" + type + " error in OliveTin Documentation</a></p>"
  163. if (isFatal) {
  164. bigErrorDialog.innerHTML += '<p>You will need to refresh your browser to clear this message.</p>'
  165. } else {
  166. bigErrorDialog.innerHTML += '<p>This error message will go away automatically if the problem is solved.</p>'
  167. }
  168. bigErrorDialog.showModal()
  169. console.error('Error ' + type + ': ', message)
  170. }
  171. window.clearBigErrors = function () {
  172. bigErrorDialog.close()
  173. }
  174. </script>
  175. <script type = "text/javascript" nomodule>
  176. showBigError("js-modules-not-supported", "Sorry, your browser does not support JavaScript modules.", null)
  177. </script>
  178. <script type = "module" src = "main.js"></script>
  179. <script src = "lib/iconify-icon-2.0.0.min.js"></script>
  180. </body>
  181. </html>