index.html 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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. <span id = "username">&nbsp;</span>
  31. </header>
  32. <main title = "main content">
  33. <section id = "contentLogs" title = "Logs" hidden>
  34. <div class = "toolbar">
  35. <input placeholder = "Search for action name" id = "logSearchBox" />
  36. <button id = "searchLogsClear" title = "Clear search filter" disabled>X</button>
  37. </div>
  38. <table title = "Logs">
  39. <thead>
  40. <tr title = "untitled">
  41. <th>Timestamp</th>
  42. <th>Log</th>
  43. <th>Exit Code</th>
  44. </tr>
  45. </thead>
  46. <tbody id = "logTableBody" />
  47. </table>
  48. </section>
  49. <section id = "contentActions" title = "Actions" hidden >
  50. <fieldset id = "root-group" title = "Actions">
  51. <legend hidden>Actions</legend>
  52. </fieldset>
  53. </section>
  54. <noscript>
  55. <div class = "error">Sorry, JavaScript is required to use OliveTin.</div>
  56. </noscript>
  57. </main>
  58. <footer title = "footer">
  59. <p><img title = "application icon" src = "OliveTinLogo.png" alt = "OliveTin logo" height = "1em" class = "logo" /> OliveTin</p>
  60. <p>
  61. <a href = "https://docs.olivetin.app" target = "_new">Documentation</a> |
  62. <a href = "https://github.com/OliveTin/OliveTin/issues/new/choose" target = "_new">Raise an issue on GitHub</a> |
  63. <span>Version: <span id = "currentVersion">?</span></span> |
  64. <span>Server connection:
  65. <span id = "serverConnectionRest">REST</span>,
  66. <span id = "serverConnectionWebSocket">WebSocket</span>
  67. </span>
  68. </p>
  69. <p>
  70. <a id = "available-version" href = "http://olivetin.app" target = "_blank" hidden>?</a>
  71. </p>
  72. </footer>
  73. <dialog title = "Big Error Message" id = "big-error" class = "error">
  74. </dialog>
  75. <dialog title = "Execution Results" id = "execution-results-popup">
  76. <div class = "action-header">
  77. <span id = "execution-dialog-icon" class = "icon" role = "img"></span>
  78. <h2>
  79. <span id = "execution-dialog-title">?</span>
  80. </h2>
  81. <button id = "execution-dialog-toggle-size" title = "Toggle dialog size">&#128470;</button>
  82. </div>
  83. <div id = "execution-dialog-basics">
  84. <strong>Started: </strong><span id = "execution-dialog-datetime-started">unknown</span>
  85. </div>
  86. <div id = "execution-dialog-details">
  87. <p>
  88. <strong>Finished: </strong><span id = "execution-dialog-datetime-finished">unknown</span>
  89. </p>
  90. <p>
  91. <strong>Exit Code: </strong><span id = "execution-dialog-exit-code">unknown</span>
  92. </p>
  93. <p>
  94. <strong>Status: </strong><span id = "execution-dialog-status">unknown</span>
  95. </p>
  96. </div>
  97. <div id = "execution-dialog-output">
  98. <details>
  99. <summary>Standard Output</summary>
  100. <pre id = "execution-dialog-stdout">?</pre>
  101. </details>
  102. <details>
  103. <summary>Standard Error</summary>
  104. <pre id = "execution-dialog-stderr">?</pre>
  105. </details>
  106. </div>
  107. <div class = "buttons">
  108. <button name = "kill" title = "Kill" id = "execution-dialog-kill-action">Kill</button>
  109. <form method = "dialog">
  110. <button name = "Cancel" title = "Close">Close</button>
  111. </form>
  112. </div>
  113. </dialog>
  114. <template id = "tplArgumentForm">
  115. <dialog title = "Arguments" id = "argument-popup">
  116. <form class = "action-arguments">
  117. <div class = "wrapper">
  118. <div class = "action-header">
  119. <span class = "icon" role = "img"></span>
  120. <h2>Argument form</h2>
  121. </div>
  122. <div class = "arguments"></div>
  123. <div class = "buttons">
  124. <input name = "start" type = "submit" value = "Start">
  125. <button name = "cancel" title = "Cancel">Cancel</button>
  126. </div>
  127. </div>
  128. </form>
  129. </dialog>
  130. </template>
  131. <template id = "tplActionButton">
  132. <button>
  133. <span title = "action button icon" class = "icon">&#x1f4a9;</span>
  134. <span class = "title" aria-live = "polite">Untitled Button</span>
  135. </button>
  136. <div class = "action-button-footer" hidden></div>
  137. </template>
  138. <template id = "tplLogRow">
  139. <tr class = "log-row">
  140. <td class = "timestamp">?</td>
  141. <td>
  142. <span role = "img" class = "icon"></span>
  143. <a href = "#" class = "content">?</a>
  144. <details>
  145. <summary>stdout</summary>
  146. <pre class = "stdout">?</pre>
  147. </details>
  148. <details>
  149. <summary>stderr</summary>
  150. <pre class = "stderr">?</pre>
  151. </details>
  152. <div class = "tags"></div>
  153. </td>
  154. <td class = "exit-code">?</td>
  155. </tr>
  156. </template>
  157. <script type = "text/javascript">
  158. const bigErrorDialog = document.getElementById('big-error')
  159. /**
  160. This is the bootstrap code, which relies on very simple, old javascript
  161. to at least display a helpful error message if we can't use OliveTin.
  162. */
  163. window.showBigError = function (type, friendlyType, message, isFatal) {
  164. 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>"
  165. if (isFatal) {
  166. bigErrorDialog.innerHTML += '<p>You will need to refresh your browser to clear this message.</p>'
  167. } else {
  168. bigErrorDialog.innerHTML += '<p>This error message will go away automatically if the problem is solved.</p>'
  169. }
  170. bigErrorDialog.showModal()
  171. console.error('Error ' + type + ': ', message)
  172. }
  173. window.clearBigErrors = function () {
  174. bigErrorDialog.close()
  175. }
  176. </script>
  177. <script type = "text/javascript" nomodule>
  178. showBigError("js-modules-not-supported", "Sorry, your browser does not support JavaScript modules.", null)
  179. </script>
  180. <script type = "module" src = "main.js"></script>
  181. <script src = "lib/iconify-icon-2.0.0.min.js"></script>
  182. </body>
  183. </html>