مدیاویکی:Gadget-Direct-link-to-Commons.js: نوسخهلر آراسینداکی فرق
ظاهر
محتوای حذفشده محتوای افزودهشده
ResourceLoader/Migration guide (users) mw:Special:Permalink/4989156#mediawiki.RegExp (global sysop action) |
|||
خط ۲۰: | خط ۲۰: | ||
commonsBaseScript = '//commons.wikimedia.org/w/index.php?title=File:'; |
commonsBaseScript = '//commons.wikimedia.org/w/index.php?title=File:'; |
||
$content.find( 'a.image' ).attr( 'href', function ( i, currVal ) { |
$content.find( 'a.image, a.mw-file-description' ).attr( 'href', function ( i, currVal ) { |
||
if ( uploadBaseRe.test( $( this ).find( 'img' ).attr( 'src' ) ) ) { |
if ( uploadBaseRe.test( $( this ).find( 'img' ).attr( 'src' ) ) ) { |
||
currVal = currVal |
currVal = currVal |
۲۵ فوریه ۲۰۲۳، ساعت ۰۰:۲۳ تاریخینه کیمی سون نۆسخه
/**
* Direct imagelinks to Commons
*
* Required modules: jquery.mwExtension, mediawiki.util
*
* @source www.mediawiki.org/wiki/Snippets/Direct_imagelinks_to_Commons
* @author Krinkle
* @version 2014-05-14
*/
if ( mw.config.get( 'wgNamespaceNumber', 0 ) >= 0 ) {
mw.hook( 'wikipage.content' ).add( function ( $content ) {
'use strict';
var
uploadBaseRe = /^\/\/upload\.wikimedia\.org\/wikipedia\/commons/,
localBasePath = new RegExp( '^' + mw.util.escapeRegExp( mw.util.getUrl( mw.config.get( 'wgFormattedNamespaces' )['6'] + ':' ) ) ),
localBaseScript = new RegExp( '^' + mw.util.escapeRegExp( mw.util.wikiScript() + '?title=' + mw.util.wikiUrlencode( mw.config.get( 'wgFormattedNamespaces' )['6'] + ':' ) ) ),
commonsBasePath = '//commons.wikimedia.org/wiki/File:',
commonsBaseScript = '//commons.wikimedia.org/w/index.php?title=File:';
$content.find( 'a.image, a.mw-file-description' ).attr( 'href', function ( i, currVal ) {
if ( uploadBaseRe.test( $( this ).find( 'img' ).attr( 'src' ) ) ) {
currVal = currVal
.replace( localBasePath, commonsBasePath )
.replace( localBaseScript, commonsBaseScript );
currVal += (/\?/.test(currVal) ? '&' : '?') + 'uselang='
+ mw.config.get('wgPageContentLanguage');
return currVal;
}
} );
} );
}