Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.216.64.93
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
libjs-codemirror /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
activeline.html
3.26
KB
-rw-r--r--
2022-01-28 11:40
anywordhint.html
2.87
KB
-rw-r--r--
2022-01-28 11:40
bidi.html
4.88
KB
-rw-r--r--
2022-01-28 11:40
btree.html
2.94
KB
-rw-r--r--
2022-01-28 11:40
buffers.html
3.59
KB
-rw-r--r--
2022-01-28 11:40
changemode.html
1.78
KB
-rw-r--r--
2022-01-28 11:40
closebrackets.html
1.72
KB
-rw-r--r--
2022-01-28 11:40
closetag.html
1.58
KB
-rw-r--r--
2022-01-28 11:40
complete.html
4.4
KB
-rw-r--r--
2022-01-28 11:40
emacs.html
2.76
KB
-rw-r--r--
2022-01-28 11:40
folding.html
6.12
KB
-rw-r--r--
2022-01-28 11:40
fullscreen.html
3.53
KB
-rw-r--r--
2022-01-28 11:40
hardwrap.html
2.62
KB
-rw-r--r--
2022-01-28 11:40
html5complete.html
1.99
KB
-rw-r--r--
2022-01-28 11:40
indentwrap.html
2.62
KB
-rw-r--r--
2022-01-28 11:40
loadmode.html
2.31
KB
-rw-r--r--
2022-01-28 11:40
marker.html
1.53
KB
-rw-r--r--
2022-01-28 11:40
markselection.html
1.94
KB
-rw-r--r--
2022-01-28 11:40
matchhighlighter.html
4.89
KB
-rw-r--r--
2022-01-28 11:40
matchtags.html
1.48
KB
-rw-r--r--
2022-01-28 11:40
multiplex.html
2.25
KB
-rw-r--r--
2022-01-28 11:40
mustache.html
2.18
KB
-rw-r--r--
2022-01-28 11:40
panel.html
3.57
KB
-rw-r--r--
2022-01-28 11:40
placeholder.html
1.55
KB
-rw-r--r--
2022-01-28 11:40
preview.html
2.54
KB
-rw-r--r--
2022-01-28 11:40
requirejs.html
2.27
KB
-rw-r--r--
2022-01-28 11:40
resize.html
1.4
KB
-rw-r--r--
2022-01-28 11:40
rulers.html
1.45
KB
-rw-r--r--
2022-01-28 11:40
runmode-standalone.html
2.3
KB
-rw-r--r--
2022-01-28 11:40
runmode.html
2.36
KB
-rw-r--r--
2022-01-28 11:40
search.html
4.89
KB
-rw-r--r--
2022-01-28 11:40
simplemode.html
8.14
KB
-rw-r--r--
2022-01-28 11:40
simplescrollbars.html
5.1
KB
-rw-r--r--
2022-01-28 11:40
spanaffectswrapping_shim.html
3
KB
-rw-r--r--
2022-01-28 11:40
sublime.html
3.23
KB
-rw-r--r--
2022-01-28 11:40
theme.html
7.5
KB
-rw-r--r--
2022-01-28 11:40
trailingspace.html
1.61
KB
-rw-r--r--
2022-01-28 11:40
variableheight.html
2.12
KB
-rw-r--r--
2022-01-28 11:40
vim.html
4.32
KB
-rw-r--r--
2022-01-28 11:40
visibletabs.html
1.89
KB
-rw-r--r--
2022-01-28 11:40
xmlcomplete.html
3.78
KB
-rw-r--r--
2022-01-28 11:40
Save
Rename
<!doctype html> <title>CodeMirror: Automatically derive odd wrapping behavior for your browser</title> <meta charset="utf-8"/> <link rel=stylesheet href="../html/docs.css"> <div id=nav> <a href="https://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../html/logo.png"></a> <ul> <li><a href="../index.html">Home</a> <li><a href="../html/manual.html">Manual</a> <li><a href="https://github.com/codemirror/codemirror">Code</a> </ul> <ul> <li><a class=active href="#">Automatically derive odd wrapping behavior for your browser</a> </ul> </div> <article> <h2>Automatically derive odd wrapping behavior for your browser</h2> <p>This is a hack to automatically derive a <code>spanAffectsWrapping</code> regexp for a browser. See the comments above that variable in <a href="/usr/share/javascript/codemirror/lib/codemirror.js"><code>lib/codemirror.js</code></a> for some more details.</p> <div style="white-space: pre-wrap; width: 50px;" id="area"></div> <pre id="output"></pre> <script id="script"> var a = document.getElementById("area"), bad = Object.create(null); var chars = "a~`!@#$%^&*()-_=+}{[]\\|'\"/?.>,<:;", l = chars.length; for (var x = 0; x < l; ++x) for (var y = 0; y < l; ++y) { var s1 = "foooo" + chars.charAt(x), s2 = chars.charAt(y) + "br"; a.appendChild(document.createTextNode(s1 + s2)); var h1 = a.offsetHeight; a.innerHTML = ""; a.appendChild(document.createElement("span")).appendChild(document.createTextNode(s1)); a.appendChild(document.createElement("span")).appendChild(document.createTextNode(s2)); if (a.offsetHeight != h1) bad[chars.charAt(x)] = (bad[chars.charAt(x)] || "") + chars.charAt(y); a.innerHTML = ""; } var re = ""; function toREElt(str) { if (str.length > 1) { var invert = false; if (str.length > chars.length * .6) { invert = true; var newStr = ""; for (var i = 0; i < l; ++i) if (str.indexOf(chars.charAt(i)) == -1) newStr += chars.charAt(i); str = newStr; } str = str.replace(/[\-\.\]\"\'\\\/\^a]/g, function(orig) { return orig == "a" ? "\\w" : "\\" + orig; }); return "[" + (invert ? "^" : "") + str + "]"; } else if (str == "a") { return "\\w"; } else if (/[?$*()+{}[\]\.|/\'\"]/.test(str)) { return "\\" + str; } else { return str; } } var newRE = ""; for (;;) { var left = null; for (var left in bad) break; if (left == null) break; var right = bad[left]; delete bad[left]; for (var other in bad) if (bad[other] == right) { left += other; delete bad[other]; } newRE += (newRE ? "|" : "") + toREElt(left) + toREElt(right); } document.getElementById("output").appendChild(document.createTextNode("Your regexp is: " + (newRE || "^$"))); </script> </article>