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
/* * Section Edit Links for Vector */ ( function( $, mw ) { var eventBase = 'ext.vector.sectionEditLinks-bucket:'; var cookieBase = 'ext.vector.sectionEditLinks-'; if ( mw.config.get( 'wgVectorSectionEditLinksBucketTest', false ) ) { // If the version in the client's cookie doesn't match wgVectorSectionEditLinksExperiment, then // we need to disregard the bucket they may already be in to ensure accurate redistribution var currentExperiment = $.cookie( cookieBase + 'experiment' ); var experiment = Number( mw.config.get( 'wgVectorSectionEditLinksExperiment', 0 ) ); var bucket = null; if ( currentExperiment === null || Number( currentExperiment ) != experiment ) { $.cookie( cookieBase + 'experiment', experiment ); } else { bucket = $.cookie( cookieBase + 'bucket' ); } if ( bucket === null ) { // Percentage chance of being tracked var odds = Math.min( 100, Math.max( 0, Number( mw.config.get( 'wgVectorSectionEditLinksLotteryOdds', 0 ) ) ) ); // 0 = not tracked, 1 = tracked with old version, 2 = tracked with new version bucket = ( Math.random() * 100 ) < odds ? Number( Math.random() < 0.5 ) + 1 : 0; $.cookie( cookieBase + 'bucket', bucket, { 'path': '/', 'expires': 30 } ); // If we are going to track this person from now on, let's also track which bucket we put // them into and when if ( bucket > 0 && 'trackAction' in $ ) { $.trackAction( eventBase + bucket + '@' + experiment ); } } } if ( bucket > 0 ) { // Transform the targets of section edit links to route through the click tracking API var session = $.cookie( 'clicktracking-session' ); $( 'span.editsection a, #ca-edit a' ).each( function() { var event = eventBase + bucket + '@' + experiment; if ( $(this).is( '#ca-edit a' ) ) { event += '-tab'; } var href = $( this ).attr( 'href' ); var editUrl = href + ( href.indexOf( '?' ) >= 0 ? '&' : '?' ) + $.param( { 'clicktrackingsession': session, 'clicktrackingevent': event + '-save' } ); $(this).attr( 'href', $.trackActionURL( editUrl, event + '-click' ) ); } ); if ( bucket == 2 ) { // Move the link over to be next to the heading text and style it with an icon $( 'span.mw-headline' ).each( function() { $(this) .after( $( '<span class="editsection vector-editLink"></span>' ) .append( $(this) .prev( 'span.editsection' ) .find( 'a' ) .each( function() { var text = $(this).text(); $(this).text( text.substr( 0, 1 ).toUpperCase() + text.substr( 1 ) ); } ) .detach() ) ) .prev( 'span.editsection' ) .remove(); } ); } } } )( jQuery, mediaWiki );