Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
backup /
extensions /
Vector /
modules /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
ext.vector.collapsibleNav.css
1.38
KB
-rw-r--r--
2010-12-16 20:32
ext.vector.collapsibleNav.js
8.7
KB
-rw-r--r--
2011-02-14 20:13
ext.vector.collapsibleTabs.js
4.72
KB
-rw-r--r--
2011-11-14 22:03
ext.vector.editWarning.js
2.35
KB
-rw-r--r--
2010-10-27 02:16
ext.vector.expandableSearch.css
122
B
-rw-r--r--
2010-09-21 01:45
ext.vector.expandableSearch.js
1.7
KB
-rw-r--r--
2010-09-20 21:55
ext.vector.footerCleanup.css
1.82
KB
-rw-r--r--
2010-09-20 21:55
ext.vector.footerCleanup.js
1.96
KB
-rw-r--r--
2010-09-20 21:55
ext.vector.sectionEditLinks.css
323
B
-rw-r--r--
2011-03-16 14:07
ext.vector.sectionEditLinks.js
2.62
KB
-rw-r--r--
2011-03-17 23:40
ext.vector.simpleSearch.js
3.16
KB
-rw-r--r--
2011-07-14 22:30
Save
Rename
/* JavaScript for SimpleSearch extension */ jQuery( document ).ready( function( $ ) { // Compatibility map var map = { 'browsers': { // Left-to-right languages 'ltr': { // SimpleSearch is broken in Opera < 9.6 'opera': [['>=', 9.6]], 'docomo': false, 'blackberry': false, 'ipod': false, 'iphone': false }, // Right-to-left languages 'rtl': { 'opera': [['>=', 9.6]], 'docomo': false, 'blackberry': false, 'ipod': false, 'iphone': false } } }; if ( !$.client.test( map ) ) { return true; } // Disable MWSuggest if loaded if ( window.os_MWSuggestDisable ) { window.os_MWSuggestDisable(); } // Placeholder text for SimpleSearch box $( '#simpleSearch > input#searchInput' ) .attr( 'placeholder', mw.msg( 'vector-simplesearch-search' ) ) .placeholder(); // General suggestions functionality for all search boxes $( '#searchInput, #searchInput2, #powerSearchText, #searchText' ) .suggestions( { fetch: function( query ) { var $this = $(this); if ( query.length !== 0 ) { var request = $.ajax( { url: mw.util.wikiScript( 'api' ), data: { action: 'opensearch', search: query, namespace: 0, suggest: '' }, dataType: 'json', success: function( data ) { if ( $.isArray( data ) && 1 in data ) { $this.suggestions( 'suggestions', data[1] ); } } }); $this.data( 'request', request ); } }, cancel: function() { var request = $(this).data( 'request' ); // If the delay setting has caused the fetch to have not even happend yet, the request object will // have never been set if ( request && $.isFunction( request.abort ) ) { request.abort(); $(this).removeData( 'request' ); } }, result: { select: function( $input ) { $input.closest( 'form' ).submit(); } }, delay: 120, positionFromLeft: $( 'body' ).hasClass( 'rtl' ), highlightInput: true } ) .bind( 'paste cut drop', function( e ) { // make sure paste and cut events from the mouse and drag&drop events // trigger the keypress handler and cause the suggestions to update $( this ).trigger( 'keypress' ); } ); // Special suggestions functionality for skin-provided search box $( '#searchInput' ).suggestions( { result: { select: function( $input ) { $input.closest( 'form' ).submit(); } }, special: { render: function( query ) { if ( $(this).children().length === 0 ) { $(this).show(); var $label = $( '<div></div>', { 'class': 'special-label', text: mw.msg( 'vector-simplesearch-containing' ) }) .appendTo( $(this) ); var $query = $( '<div></div>', { 'class': 'special-query', text: query }) .appendTo( $(this) ); $query.autoEllipsis(); } else { $(this).find( '.special-query' ) .empty() .text( query ) .autoEllipsis(); } }, select: function( $input ) { $input.closest( 'form' ).append( $( '<input>', { type: 'hidden', name: 'fulltext', val: '1' }) ); $input.closest( 'form' ).submit(); } }, $region: $( '#simpleSearch' ) } ); });