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 : admin_enums.js
jQuery(function($) { var $enumtable = $('#enumtable'); var $enumlist = $('#enumlist', $enumtable); var $apply_button = $('input[name="apply"]', $enumtable); $enumlist.addSelectAllCheckboxes(); // Insert 'Revert changes' button after the 'Apply changes' button var $revert_button = $('<input type="submit" name="revert" value="Revert changes" disabled="disabled" />') .insertAfter($apply_button); // Disable the 'Apply changes' button until there is a change $apply_button.prop('disabled', true); $enumtable.find('input:radio').click(function () { $apply_button.prop('disabled', false); $revert_button.prop('disabled', false); }); // Don't prompt with a dialog if the 'Apply/Revert changes' button is pressed var button_pressed; $enumtable.find('div.buttons input').click(function () { button_pressed = $(this).attr('name'); }); $enumtable.submit(function () { if (button_pressed === 'apply' || button_pressed === 'revert') { $(window).off('beforeunload'); } if (button_pressed === 'revert') { // Send GET request instead of POST location = location; return false; } }); // Initialize items as sortable $enumlist.find('tbody').sortable({ axis: 'y', cursor: 'move', containment: $enumlist, tolerance: 'pointer', start: function (event, ui) { // Keep column widths of dragged items equal to header. var $tds = ui.item.children(); var $ths = $('thead th', $enumlist); $ths.each(function (idx) { $tds.eq(idx).css('width', $(this).width() + 'px'); }); }, stop: function (event, ui) { updateValues(ui.item) } }); // When user changes a select value, reorder rows $enumlist.find('select').change(function () { // Move ($this) in the right position var $tr = $(this).closest('tr'); var val = $(this).val(); if (val == 1) { $enumlist.find('tbody').prepend($tr); } else { var row_index = 0; var sib = $tr.prev(); while (sib.length != 0) { row_index++; sib = sib.prev(); } var new_index = val > row_index ? val : val - 1; $('tr', $enumlist).eq(new_index).after($tr); } updateValues($tr); }); // Set select values based their row and highlight those changed. function updateValues($tr) { var unsaved_changes = false; var position = 1; var $tr_select = $('select', $tr); $enumlist.find('select').each(function () { var $select = $(this); var val = $select.val(); var $parent = $select.closest('tr'); $parent.stop(true, true); if (val != position || val === $tr_select.val()) { $parent.effect('highlight', {color: '#ffb'}, 3000); $select.val(position); unsaved_changes = true; } position += 1; }); if (unsaved_changes) { $.setWarningUnsavedChanges(true); $revert_button.prop('disabled', false); $apply_button.prop('disabled', false); } } });
Close