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 : folding.js
(function($){ $.fn.enableFolding = function(autofold, snap) { var fragId = document.location.hash; if (fragId && /^#no\d+$/.test(fragId)) fragId = parseInt(fragId.substr(3)); if (snap === undefined) snap = false; var count = 1; return this.each(function() { // Use first child <a> as a trigger, or generate a trigger from the text var trigger = $(this).children("a").eq(0); if (trigger.length === 0) { trigger = $("<a" + (snap? " id='no" + count + "'": "") + " href='#no" + count + "'></a>"); trigger.html($(this).html()); $(this).text(""); $(this).append(trigger); } trigger.click(function() { var div = $(this.parentNode.parentNode).toggleClass("collapsed"); return snap && !div.hasClass("collapsed"); }); if (autofold && (count !== fragId)) trigger.parents().eq(1).addClass("collapsed"); count++; }); }; /** Enable columns of a table to be hidden by clicking on the column header. * * +------------------+------+---- ... ---+---------------------+ * |column_headers[0] | ... | | column_headers[k-1] | <- c_h_row * +==================+======+==== ... ===+=====================+ * | row_headers[0] | row_headers[1] | row_headers[1*k-1] | <- rows[0] * | row_headers[k] | row_headers[k+1] | row_headers[2*k-1] | <- rows[1] * ... */ $.fn.enableCollapsibleColumns = function(recovery_area) { // column headers var c_h_row = $('thead tr', this); var column_headers = $('th', c_h_row).not(recovery_area); var k = column_headers.length; // row headers var tbody = $('tbody', this); var row_headers = $('th', tbody); var n = row_headers.length / k; // add a 'hide' callback to each column header column_headers.each(function(j) { function hide() { // remove and save column j var th = $(this); th.css('display', 'none'); for ( var i = 0; i < n; i++ ) row_headers.eq(i*k+j).css('display', 'none'); // create a recovery button and its "show" callback recovery_area.prepend($("<span></span>").addClass("recover") .text(_("Show %(title)s", {title: th.text()})) .click(function() { $(this).remove(); th.show(); for (var i = 0; i < n; i++) row_headers.eq(i*k+j).css('display', 'table-cell'); }) ); } $(this).click(hide) .css('cursor', 'pointer') .attr('title', _("%(title)s (click to hide column)", {title: $(this).attr('title')})); }); } })(jQuery);
Close