run:R W Run
DIR
2026-04-08 19:41:33
R W Run
DIR
2026-04-08 19:29:28
R W Run
38.7 KB
2026-04-08 19:26:24
R W Run
1.49 KB
2026-04-08 19:26:23
R W Run
4.72 KB
2026-04-08 19:26:25
R W Run
3.02 KB
2026-04-08 19:26:25
R W Run
10.78 KB
2026-04-08 19:26:25
R W Run
7.35 KB
2026-04-08 19:26:23
R W Run
11.6 KB
2026-04-08 19:26:22
R W Run
10.43 KB
2026-04-08 19:26:24
R W Run
26.35 KB
2026-04-08 19:26:25
R W Run
12.68 KB
2026-04-08 19:26:24
R W Run
1.94 KB
2026-04-08 19:26:24
R W Run
7.14 KB
2026-04-08 19:26:24
R W Run
1.16 KB
2026-04-08 19:26:24
R W Run
4.77 KB
2026-04-08 19:26:22
R W Run
3.56 KB
2026-04-08 19:26:24
R W Run
5.43 KB
2026-04-08 19:26:23
R W Run
4.04 KB
2026-04-08 19:26:23
R W Run
11.09 KB
2026-04-08 19:26:23
R W Run
10.93 KB
2026-04-08 19:26:25
R W Run
8.78 KB
2026-04-08 19:26:23
R W Run
3.09 KB
2026-04-08 19:26:22
R W Run
38.75 KB
2026-04-08 19:26:24
R W Run
4.62 KB
2026-04-08 19:26:24
R W Run
1.9 KB
2026-04-08 19:26:24
R W Run
23.06 KB
2026-04-08 19:26:23
R W Run
6.79 KB
2026-04-08 19:26:22
R W Run
72.3 KB
2026-04-08 19:26:24
R W Run
42 By
2026-04-08 19:26:23
R W Run
69.61 KB
2026-04-08 19:26:23
R W Run
35.35 KB
2026-04-08 19:26:22
R W Run
425.48 KB
2026-04-08 19:26:25
R W Run
77.13 KB
2026-04-08 19:26:24
R W Run
1.42 KB
2026-04-08 19:26:22
R W Run
20.26 KB
2026-04-08 19:26:25
R W Run
94.89 KB
2026-04-08 19:26:24
R W Run
22.42 KB
2026-04-08 19:26:24
R W Run
18.09 KB
2026-04-08 19:26:23
R W Run
4.6 KB
2026-04-08 19:26:23
R W Run
3.56 KB
2026-04-08 19:26:24
R W Run
16.76 KB
2026-04-08 19:26:24
R W Run
5.18 KB
2026-04-08 19:26:23
R W Run
31.03 KB
2026-04-08 19:26:25
R W Run
96.29 KB
2026-04-08 19:26:25
R W Run
41.33 KB
2026-04-08 19:26:22
R W Run
2.76 KB
2026-04-08 19:26:25
R W Run
error_log
📄jquery.highlight-5.js
1/*
2
3highlight v5
4
5Highlights arbitrary terms.
6
7<http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html>
8
9MIT license.
10
11Johann Burkard
12<http://johannburkard.de>
13<mailto:jb@eaio.com>
14
15*/
16
17jQuery.fn.highlight = function(pat) {
18 function innerHighlight(node, pat) {
19 var skip = 0;
20 if (node.nodeType == 3) {
21 var pos = node.data.toUpperCase().indexOf(pat);
22 pos -= (node.data.substr(0, pos).toUpperCase().length - node.data.substr(0, pos).length);
23 if (pos >= 0) {
24 var spannode = document.createElement('span');
25 spannode.className = 'highlight';
26 var middlebit = node.splitText(pos);
27 var endbit = middlebit.splitText(pat.length);
28 var middleclone = middlebit.cloneNode(true);
29 spannode.appendChild(middleclone);
30 middlebit.parentNode.replaceChild(spannode, middlebit);
31 skip = 1;
32 }
33 }
34 else if (node.nodeType == 1 && node.childNodes && !/(script|style)/i.test(node.tagName)) {
35 for (var i = 0; i < node.childNodes.length; ++i) {
36 i += innerHighlight(node.childNodes[i], pat);
37 }
38 }
39 return skip;
40 }
41 return this.length && pat && pat.length ? this.each(function() {
42 innerHighlight(this, pat.toUpperCase());
43 }) : this;
44};
45
46jQuery.fn.removeHighlight = function() {
47 return this.find("span.highlight").each(function() {
48 this.parentNode.firstChild.nodeName;
49 with (this.parentNode) {
50 replaceChild(this.firstChild, this);
51 normalize();
52 }
53 }).end();
54};
55