MediaWiki:Common.js — различия между версиями
Материал из Кафедра Автоматики и телемеханики
Corrector (обсуждение | вклад) (Новая страница: «/* Размещённый здесь JavaScript код будет загружаться всем пользователям при обращении к каждо...») |
Corrector (обсуждение | вклад) |
||
| Строка 1: | Строка 1: | ||
| − | + | importMW = function (name) { importScript('MediaWiki:'+name+'.js') } | |
| − | + | ||
| − | + | importScript_ = importScript | |
| − | + | importScript = function (page, proj){ | |
| − | + | if (!proj) importScript_(page) | |
| − | + | else { | |
| − | + | if (proj.indexOf('.')==-1) proj += '.wikipedia.org' | |
| − | + | importScriptURI('http://'+proj+'/w/index.php?action=raw&ctype=text/javascript&title='+encodeURIComponent(page.replace(/ /g,'_'))) | |
| − | + | } | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | function | + | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
} | } | ||
| − | + | ||
| − | + | ||
| − | + | //Messages | |
| − | + | var listFA = { | |
| − | + | fa:'Эта статья является избранной', | |
| − | + | fl:'Этот список или портал является избранным', | |
| − | + | ga:'Эта статья является хорошей'} | |
| − | + | var textFA = ' в другом языковом разделе' | |
| − | + | ||
| − | + | var zeroSectionTip = 'Править введение' | |
| − | + | ||
| − | + | var NavigationBarHide = '[скрыть]' | |
| − | + | var NavigationBarShow = '[показать]' | |
| − | + | var NavigationBarShowDefault = 2 | |
| − | + | ||
| − | + | if( /^en$/.test(wgUserLanguage) ) importMW('Common-' + wgUserLanguage) | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | function LinkFA(){ | |
| − | + | var ll, s | |
| − | + | $('#p-lang li').each( function(i, iw){ | |
| − | + | ll = iw.className.split(' ')[0] + '-' | |
| − | + | for( var s in listFA ) | |
| − | + | if( document.getElementById(ll + s) ) | |
| − | + | $( iw ) | |
| − | + | .addClass( s.toUpperCase() ) | |
| − | + | .attr( 'title', listFA[s] + textFA ) | |
| − | + | }) | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
} | } | ||
| − | + | ||
| − | + | ||
| − | + | function icqIcon(){ | |
| − | / | + | mw.util.$content.find('span.ICQ').each( function(i, sp){ |
| − | + | sp.style.backgroundImage = "url('http://status.icq.com/online.gif?icq="+sp.id+"&img=5&r="+Math.random()+"')" | |
| − | + | }) | |
| − | + | } | |
| − | + | ||
| − | + | ||
| − | var hasClass = ( function() { | + | function editZeroSection(){ |
| − | + | if( !wgArticleId ) return | |
| − | + | mw.util.$content.find('h2') | |
| − | + | .children('span.editsection').first() | |
| − | + | .clone().prependTo(mw.util.$content) | |
| − | })(); | + | .find('a') |
| + | .attr('title', zeroSectionTip) | ||
| + | .attr('href', wgScript + '?title='+encodeURIComponent(wgPageName) + '&action=edit§ion=0' ) | ||
| + | } | ||
| + | |||
| + | |||
| + | //Collapsiblе: [[ВП:СБ]] | ||
| + | |||
| + | var hasClass = (function (){ | ||
| + | var reCache = {} | ||
| + | return function (element, className){ | ||
| + | return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className) | ||
| + | } | ||
| + | })() | ||
| + | |||
| + | function collapsibleTables(){ | ||
| + | var Table, HRow, HCell, btn, a, tblIdx = 0, colTables = [] | ||
| + | var allTables = document.getElementsByTagName('table') | ||
| + | for (var i=0; Table = allTables[i]; i++){ | ||
| + | if (!hasClass(Table, 'collapsible')) continue | ||
| + | if (!(HRow=Table.rows[0])) continue | ||
| + | if (!(HCell=HRow.getElementsByTagName('th')[0])) continue | ||
| + | Table.id = 'collapsibleTable' + tblIdx | ||
| + | btn = document.createElement('span') | ||
| + | btn.style.cssText = 'float:right; font-weight:normal; font-size:smaller' | ||
| + | a = document.createElement('a') | ||
| + | a.id = 'collapseButton' + tblIdx | ||
| + | a.href = 'javascript:collapseTable(' + tblIdx + ');' | ||
| + | a.style.color = HCell.style.color | ||
| + | a.appendChild(document.createTextNode(NavigationBarHide)) | ||
| + | btn.appendChild(a) | ||
| + | HCell.insertBefore(btn, HCell.childNodes[0]) | ||
| + | colTables[tblIdx++] = Table | ||
| + | } | ||
| + | for (var i=0; i < tblIdx; i++) | ||
| + | if ((tblIdx > NavigationBarShowDefault && hasClass(colTables[i], 'autocollapse')) || hasClass(colTables[i], 'collapsed')) | ||
| + | collapseTable(i) | ||
| + | } | ||
| + | |||
| + | function collapseTable (idx){ | ||
| + | var Table = document.getElementById('collapsibleTable' + idx) | ||
| + | var btn = document.getElementById('collapseButton' + idx) | ||
| + | if (!Table || !btn) return false | ||
| + | var Rows = Table.rows | ||
| + | var isShown = (btn.firstChild.data == NavigationBarHide) | ||
| + | btn.firstChild.data = isShown ? NavigationBarShow : NavigationBarHide | ||
| + | var disp = isShown ? 'none' : Rows[0].style.display | ||
| + | for (var i=1; i < Rows.length; i++) | ||
| + | Rows[i].style.display = disp | ||
| + | } | ||
| + | |||
| + | function collapsibleDivs(){ | ||
| + | var navIdx = 0, colNavs = [], i, NavFrame | ||
| + | var divs = document.getElementById('content').getElementsByTagName('div') | ||
| + | for (i=0; NavFrame = divs[i]; i++) { | ||
| + | if (!hasClass(NavFrame, 'NavFrame')) continue | ||
| + | NavFrame.id = 'NavFrame' + navIdx | ||
| + | var a = document.createElement('a') | ||
| + | a.className = 'NavToggle' | ||
| + | a.id = 'NavToggle' + navIdx | ||
| + | a.href = 'javascript:collapseDiv(' + navIdx + ');' | ||
| + | a.appendChild(document.createTextNode(NavigationBarHide)) | ||
| + | for (var j=0; j < NavFrame.childNodes.length; j++) | ||
| + | if (hasClass(NavFrame.childNodes[j], 'NavHead')) | ||
| + | NavFrame.childNodes[j].appendChild(a) | ||
| + | colNavs[navIdx++] = NavFrame | ||
| + | } | ||
| + | for (i=0; i < navIdx; i++) | ||
| + | if ((navIdx > NavigationBarShowDefault && !hasClass(colNavs[i], 'expanded')) || hasClass(colNavs[i], 'collapsed')) | ||
| + | collapseDiv(i) | ||
| + | } | ||
| + | |||
| + | function collapseDiv(idx) { | ||
| + | var div = document.getElementById('NavFrame' + idx) | ||
| + | var btn = document.getElementById('NavToggle' + idx) | ||
| + | if (!div || !btn) return false | ||
| + | var isShown = (btn.firstChild.data == NavigationBarHide) | ||
| + | btn.firstChild.data = isShown ? NavigationBarShow : NavigationBarHide | ||
| + | var disp = isShown ? 'none' : 'block' | ||
| + | for (var child = div.firstChild; child != null; child = child.nextSibling) | ||
| + | if (hasClass(child, 'NavPic') || hasClass(child, 'NavContent')) | ||
| + | child.style.display = disp | ||
| + | } | ||
| + | |||
| + | |||
| + | //Secure server | ||
| + | var metaBase = 'http://meta.wikimedia.org' | ||
| + | if (wgServer == 'https://secure.wikimedia.org') { | ||
| + | importScript('MediaWiki:Common.js/secure.js','en') | ||
| + | metaBase = 'https://secure.wikimedia.org/wikipedia/meta' | ||
| + | } | ||
| + | |||
| + | |||
| + | //Execution | ||
| + | |||
| + | if (wgCanonicalNamespace == 'Special'){ | ||
| + | |||
| + | if (/^(Uplo|Sear|Stat|Spec|Abus|Prefe|Move)/i.test(wgCanonicalSpecialPageName)) | ||
| + | importMW(wgCanonicalSpecialPageName) | ||
| + | |||
| + | }else switch (wgAction){ | ||
| + | |||
| + | case 'history': importMW('History'); break | ||
| + | |||
| + | case 'delete': importMW('Deletepage'); break | ||
| + | |||
| + | case 'edit': case 'submit': importMW('Editpage') //and continue with the default: view, purge | ||
| + | |||
| + | default: | ||
| + | |||
| + | $(editZeroSection) | ||
| + | addOnloadHook(collapsibleDivs) | ||
| + | addOnloadHook(collapsibleTables) | ||
| + | importScriptURI(metaBase+'/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400') | ||
| + | if (navigator.platform.indexOf('Win') != -1) | ||
| + | importStylesheetURI('http://en.wikipedia.org/w/index.php?title=MediaWiki:Common.css/WinFixes.css&action=raw&ctype=text/css') | ||
| + | |||
| + | switch( wgNamespaceNumber ){ | ||
| + | case 0: case 100: | ||
| + | $(LinkFA) | ||
| + | importMW('Osm') | ||
| + | importMW('Collapserefs') | ||
| + | if( wgArticleId==4401 ) importMW('Mainpage') | ||
| + | break | ||
| + | case 6: | ||
| + | importMW('Filepage') | ||
| + | break | ||
| + | default: | ||
| + | $(icqIcon) | ||
| + | } | ||
| + | |||
| + | } | ||
| + | |||
| + | |||
| + | if (wgUserGroups){ | ||
| + | for (var i=0; i<wgUserGroups.length; i++) switch (wgUserGroups[i]){ | ||
| + | case 'sysop': importMW('Sysop'); break | ||
| + | } | ||
| + | if (wgNamespaceNumber==2 && wgTitle.indexOf(wgUserName)==0 && wgArticleId==0 && /\/skin\.(js|css)$/.test(wgTitle)) | ||
| + | window.location.href = window.location.href.replace(/skin\.(css|js)$/, skin+'.$1') | ||
| + | } | ||
| + | |||
| + | |||
| + | // ВП:СО, кроме статей В Контакте, Одноклассники и Facebook | ||
| + | if (wgArticleId!=639373 && wgArticleId!=932117 && wgArticleId!=1297302 && wgArticleId!=25133866) | ||
| + | importMW('Wikibugs') | ||
| + | |||
| + | |||
| + | // iwiki sorting | ||
| + | if (!wgUserName | ||
| + | || (wgUserName | ||
| + | && (((typeof wgLangPrefs == 'undefined') ? false : true) | ||
| + | || ((typeof wgAddLangHints == 'undefined') ? false : wgAddLangHints) | ||
| + | || ((typeof wgUseUserLanguage == 'undefined') ? false : wgUseUserLanguage)))) | ||
| + | importMW('Interwiki-links'); | ||
| + | |||
| + | |||
| + | //extra scripts | ||
| + | |||
| + | var withJS = document.URL.match(/[&?]withjs=((mediawiki:)?([^&#]+))/i) | ||
| + | if (withJS) importScript_('MediaWiki:'+withJS[3]) | ||
| + | |||
| + | var execJS = document.getElementById('executeJS') | ||
| + | if( execJS ) | ||
| + | $.each( execJS.className.split(' '), function(i, sc){ | ||
| + | sc = $.trim( sc.replace(/[^\w ]/g,'') ) | ||
| + | if( sc ) importMW('Script/' + sc) | ||
| + | }) | ||
| + | |||
| + | if (!window.wgUserName) appendCSS('#mw-fr-revisiontag {display:none}') | ||
Текущая версия на 21:24, 25 сентября 2011
importMW = function (name) { importScript('MediaWiki:'+name+'.js') }
importScript_ = importScript
importScript = function (page, proj){
if (!proj) importScript_(page)
else {
if (proj.indexOf('.')==-1) proj += '.wikipedia.org'
importScriptURI('http://'+proj+'/w/index.php?action=raw&ctype=text/javascript&title='+encodeURIComponent(page.replace(/ /g,'_')))
}
}
//Messages
var listFA = {
fa:'Эта статья является избранной',
fl:'Этот список или портал является избранным',
ga:'Эта статья является хорошей'}
var textFA = ' в другом языковом разделе'
var zeroSectionTip = 'Править введение'
var NavigationBarHide = '[скрыть]'
var NavigationBarShow = '[показать]'
var NavigationBarShowDefault = 2
if( /^en$/.test(wgUserLanguage) ) importMW('Common-' + wgUserLanguage)
function LinkFA(){
var ll, s
$('#p-lang li').each( function(i, iw){
ll = iw.className.split(' ')[0] + '-'
for( var s in listFA )
if( document.getElementById(ll + s) )
$( iw )
.addClass( s.toUpperCase() )
.attr( 'title', listFA[s] + textFA )
})
}
function icqIcon(){
mw.util.$content.find('span.ICQ').each( function(i, sp){
sp.style.backgroundImage = "url('http://status.icq.com/online.gif?icq="+sp.id+"&img=5&r="+Math.random()+"')"
})
}
function editZeroSection(){
if( !wgArticleId ) return
mw.util.$content.find('h2')
.children('span.editsection').first()
.clone().prependTo(mw.util.$content)
.find('a')
.attr('title', zeroSectionTip)
.attr('href', wgScript + '?title='+encodeURIComponent(wgPageName) + '&action=edit§ion=0' )
}
//Collapsiblе: [[ВП:СБ]]
var hasClass = (function (){
var reCache = {}
return function (element, className){
return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className)
}
})()
function collapsibleTables(){
var Table, HRow, HCell, btn, a, tblIdx = 0, colTables = []
var allTables = document.getElementsByTagName('table')
for (var i=0; Table = allTables[i]; i++){
if (!hasClass(Table, 'collapsible')) continue
if (!(HRow=Table.rows[0])) continue
if (!(HCell=HRow.getElementsByTagName('th')[0])) continue
Table.id = 'collapsibleTable' + tblIdx
btn = document.createElement('span')
btn.style.cssText = 'float:right; font-weight:normal; font-size:smaller'
a = document.createElement('a')
a.id = 'collapseButton' + tblIdx
a.href = 'javascript:collapseTable(' + tblIdx + ');'
a.style.color = HCell.style.color
a.appendChild(document.createTextNode(NavigationBarHide))
btn.appendChild(a)
HCell.insertBefore(btn, HCell.childNodes[0])
colTables[tblIdx++] = Table
}
for (var i=0; i < tblIdx; i++)
if ((tblIdx > NavigationBarShowDefault && hasClass(colTables[i], 'autocollapse')) || hasClass(colTables[i], 'collapsed'))
collapseTable(i)
}
function collapseTable (idx){
var Table = document.getElementById('collapsibleTable' + idx)
var btn = document.getElementById('collapseButton' + idx)
if (!Table || !btn) return false
var Rows = Table.rows
var isShown = (btn.firstChild.data == NavigationBarHide)
btn.firstChild.data = isShown ? NavigationBarShow : NavigationBarHide
var disp = isShown ? 'none' : Rows[0].style.display
for (var i=1; i < Rows.length; i++)
Rows[i].style.display = disp
}
function collapsibleDivs(){
var navIdx = 0, colNavs = [], i, NavFrame
var divs = document.getElementById('content').getElementsByTagName('div')
for (i=0; NavFrame = divs[i]; i++) {
if (!hasClass(NavFrame, 'NavFrame')) continue
NavFrame.id = 'NavFrame' + navIdx
var a = document.createElement('a')
a.className = 'NavToggle'
a.id = 'NavToggle' + navIdx
a.href = 'javascript:collapseDiv(' + navIdx + ');'
a.appendChild(document.createTextNode(NavigationBarHide))
for (var j=0; j < NavFrame.childNodes.length; j++)
if (hasClass(NavFrame.childNodes[j], 'NavHead'))
NavFrame.childNodes[j].appendChild(a)
colNavs[navIdx++] = NavFrame
}
for (i=0; i < navIdx; i++)
if ((navIdx > NavigationBarShowDefault && !hasClass(colNavs[i], 'expanded')) || hasClass(colNavs[i], 'collapsed'))
collapseDiv(i)
}
function collapseDiv(idx) {
var div = document.getElementById('NavFrame' + idx)
var btn = document.getElementById('NavToggle' + idx)
if (!div || !btn) return false
var isShown = (btn.firstChild.data == NavigationBarHide)
btn.firstChild.data = isShown ? NavigationBarShow : NavigationBarHide
var disp = isShown ? 'none' : 'block'
for (var child = div.firstChild; child != null; child = child.nextSibling)
if (hasClass(child, 'NavPic') || hasClass(child, 'NavContent'))
child.style.display = disp
}
//Secure server
var metaBase = 'http://meta.wikimedia.org'
if (wgServer == 'https://secure.wikimedia.org') {
importScript('MediaWiki:Common.js/secure.js','en')
metaBase = 'https://secure.wikimedia.org/wikipedia/meta'
}
//Execution
if (wgCanonicalNamespace == 'Special'){
if (/^(Uplo|Sear|Stat|Spec|Abus|Prefe|Move)/i.test(wgCanonicalSpecialPageName))
importMW(wgCanonicalSpecialPageName)
}else switch (wgAction){
case 'history': importMW('History'); break
case 'delete': importMW('Deletepage'); break
case 'edit': case 'submit': importMW('Editpage') //and continue with the default: view, purge
default:
$(editZeroSection)
addOnloadHook(collapsibleDivs)
addOnloadHook(collapsibleTables)
importScriptURI(metaBase+'/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400')
if (navigator.platform.indexOf('Win') != -1)
importStylesheetURI('http://en.wikipedia.org/w/index.php?title=MediaWiki:Common.css/WinFixes.css&action=raw&ctype=text/css')
switch( wgNamespaceNumber ){
case 0: case 100:
$(LinkFA)
importMW('Osm')
importMW('Collapserefs')
if( wgArticleId==4401 ) importMW('Mainpage')
break
case 6:
importMW('Filepage')
break
default:
$(icqIcon)
}
}
if (wgUserGroups){
for (var i=0; i<wgUserGroups.length; i++) switch (wgUserGroups[i]){
case 'sysop': importMW('Sysop'); break
}
if (wgNamespaceNumber==2 && wgTitle.indexOf(wgUserName)==0 && wgArticleId==0 && /\/skin\.(js|css)$/.test(wgTitle))
window.location.href = window.location.href.replace(/skin\.(css|js)$/, skin+'.$1')
}
// ВП:СО, кроме статей В Контакте, Одноклассники и Facebook
if (wgArticleId!=639373 && wgArticleId!=932117 && wgArticleId!=1297302 && wgArticleId!=25133866)
importMW('Wikibugs')
// iwiki sorting
if (!wgUserName
|| (wgUserName
&& (((typeof wgLangPrefs == 'undefined') ? false : true)
|| ((typeof wgAddLangHints == 'undefined') ? false : wgAddLangHints)
|| ((typeof wgUseUserLanguage == 'undefined') ? false : wgUseUserLanguage))))
importMW('Interwiki-links');
//extra scripts
var withJS = document.URL.match(/[&?]withjs=((mediawiki:)?([^&#]+))/i)
if (withJS) importScript_('MediaWiki:'+withJS[3])
var execJS = document.getElementById('executeJS')
if( execJS )
$.each( execJS.className.split(' '), function(i, sc){
sc = $.trim( sc.replace(/[^\w ]/g,'') )
if( sc ) importMW('Script/' + sc)
})
if (!window.wgUserName) appendCSS('#mw-fr-revisiontag {display:none}')