summaryrefslogtreecommitdiffstats
path: root/src/log.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-13 16:42:12 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-13 16:42:12 +0000
commit8cef151937e74a20049a5be2546d5f761a1ee5de (patch)
tree30de89024109eff10978e6b95ebd9b403a3e37b7 /src/log.html
parentInitial commit. (diff)
downloadfoxyproxy-firefox-extension-upstream.tar.xz
foxyproxy-firefox-extension-upstream.zip
Adding upstream version 7.5.1+dfsg.upstream/7.5.1+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/log.html')
-rw-r--r--src/log.html128
1 files changed, 128 insertions, 0 deletions
diff --git a/src/log.html b/src/log.html
new file mode 100644
index 0000000..d9212ab
--- /dev/null
+++ b/src/log.html
@@ -0,0 +1,128 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <title data-i18n="log">FoxyProxy </title>
+ <link rel="icon" type="image/png" href="/images/icon.svg">
+ <link rel="stylesheet" href="styles/fontawesome-4.6.3.css">
+ <link rel="stylesheet" href="styles/app.css">
+ <style>
+ tbody tr:hover a { color: #a0522d; }
+ tbody td { padding: 0em 0.2em; overflow-x: auto; text-overflow: ellipsis; white-space: nowrap; scrollbar-color: #ddd #f5f5f5; scrollbar-width: thin; }
+ td:nth-child(1) { max-width: 20em; }
+ td:nth-child(2) { max-width: 5em; }
+ td:nth-child(3) { width: 2em; border-radius: 5px; border: 2px solid #fff; }
+ td:nth-child(4) { max-width: 8em; }
+ td:nth-child(5) { max-width: 8em; }
+ td:nth-child(6) { max-width: 14em; }
+ .prime.warning { font-size: 0.9em; padding: 0.5em;}
+ tbody { counter-reset: n; }
+ tbody tr td:first-child::before {
+ display: inline-block;
+ color: #aaa;
+ min-width: 1.5em;
+ text-align: right;
+ vertical-align: middle;
+ margin-right: 0.4em;
+ pointer-events: none;
+ counter-increment: n;
+ content: counter(n);
+ font-size: 0.7em;
+ }
+
+ label[data-i18n] {
+ margin: 0 0.5em 0 1em;
+ }
+
+ input[type="text"] {
+ display: inline-block;
+ width: 5em;
+ padding: 0.2em;
+ height: auto;
+ }
+ i.fa, i.fa:hover { color: inherit; font-size: inherit; }
+ </style>
+ </head>
+ <body>
+
+ <!-- header -->
+ <div class="prime header" data-i18n="log"></div>
+
+
+ <!-- spinner --> <!-- options, patterns, log -->
+ <div class="spinner on"><i class="fa fa-refresh fa-spin"></i></div>
+
+
+ <!-- main -->
+ <div class="prime">
+
+ <div style="text-align: right;">
+
+ <label data-i18n="log"></label>
+ <input type="checkbox" class="switch" id="onOff"><label for="onOff"></label>
+
+ <label data-i18n="logSize"></label>
+ <input id="logSize" type="text">
+
+ </div>
+
+ <div class="prime warning"><strong>Failed URLs display here, too!</strong><br>
+ A row in this log does not mean the URL successfully loaded. The log shows only how <strong>attempts</strong> were made to load URLs. If the proxy server was not responding or there was some other problem which prevented the URL from loading, the URL still displays here. This is a limitation of Firefox 57+.
+ </div>
+
+ <h3 data-i18n="matchedURLs"></h3>
+ <div class="scroll">
+ <table>
+ <thead>
+ <tr>
+ <th data-i18n="url"></th><th data-i18n="proxyTitle"></th><th data-i18n="color"></th>
+ <th data-i18n="proxyAddress"></th><th data-i18n="matchPattern"></th><th data-i18n="whiteBlack"></th>
+ <th data-i18n="timestamp"></th>
+ </tr>
+ <!-- template -->
+ <tr class="matchedtemplate">
+ <td><a href="" target="_blank"></a></td>
+ <td></td>
+ <td></td>
+ <td></td>
+ <td></td>
+ <td></td>
+ <td></td>
+ </tr>
+ </thead>
+
+ <tbody></tbody>
+ </table>
+ </div>
+
+ <h3 data-i18n="unmatchedURLs"></h3>
+ <div class="scroll">
+ <table>
+ <thead>
+ <tr>
+ <th data-i18n="url"></th>
+ <th data-i18n="timestamp"></th>
+ </tr>
+ <!-- template -->
+ <tr class="unmatchedtemplate">
+ <td><a href="" target="_blank"></a></td>
+ <td></td>
+ </tr>
+ </thead>
+
+ <tbody></tbody>
+ </table>
+ </div>
+
+ <div style="margin-top: 1em; text-align: right;">
+ <button type="button" data-i18n="back">&#x25c1; </button>
+ <button type="button" data-i18n="refresh"><i class="fa fa-refresh"></i> </button>
+ <button type="button" class="alert" data-i18n="clear"><i class="fa fa-trash"></i> </button>
+ </div>
+
+ </div>
+
+ <script src="scripts/utils.js"></script>
+ <script src="scripts/log.js"></script>
+ </body>
+</html>