MediaWiki:Common.js: различия между версиями

Материал из Gravity Defied Wiki
Перейти к навигации Перейти к поиску
Нет описания правки
Нет описания правки
 
(не показано 16 промежуточных версий этого же участника)
Строка 1: Строка 1:
importScript_ = importScript
/* Размещённый здесь JavaScript код будет загружаться всем пользователям при обращении к каждой странице */
importScript = function (page, proj){
//This is a modified copy of a script by User:MarkS for extra features added by User:Voice of All.
if (!proj) importScript_(page)
  // This is based on the original code on Wikipedia:Tools/Editing tools
else {
  // To disable this script, add <code>mwCustomEditButtons = [];<code> to [[Special:Mypage/monobook.js]]
  if (proj.indexOf('.')==-1) proj += '.wikipedia.org'
  importScriptURI('http://'+proj+'/w/index.php?action=raw&ctype=text/javascript&title='+encodeURIComponent(page.replace(/ /g,'_')))
}
}
function LinkFA(){
var pLang = document.getElementById('p-lang')
if (!pLang) return
var list = {
'fa':'Эта статья является избранной',
'fl':'Этот список или портал является избранным',
'ga':'Эта статья является хорошей'}
var iw = pLang.getElementsByTagName('li')
for (var i=0; i<iw.length; i++)
  for (var s in list)
    if (document.getElementById(iw[i].className+'-'+s)){
      iw[i].className += ' ' + s.toUpperCase()
      iw[i].title = list[s] + ' в другом языковом разделе'
    }
}
function icqIcons(){
var a, spans = document.getElementById('content').getElementsByTagName('span')
  for (var i=0; a=spans[i]; i++)
  if (a.className == 'ICQ')
    a.style.backgroundImage = "url('http://status.icq.com/online.gif?icq="+a.id+"&img=5&randseed="+Math.floor(Math.random()*10000000)+"')"
}
   
function editZeroSection(){
var body = document.getElementById('bodyContent')
if (!body) return
var h2s = body.getElementsByTagName('H2')
var h2 = h2s[0]
if (!h2) return
if (h2.parentNode.id == 'toctitle') h2 = h2s[1]
if (!h2) return
var span = h2.firstChild
if (!span || span.className != 'editsection') return
var zero = span.cloneNode(true)
body.insertBefore(zero, body.firstChild)
var a = zero.getElementsByTagName('a')[0]
if (a.href.indexOf('&section=T') == -1 )  a.title = a.title.replace(/:.*$/,': 0')
else a.title = 'Править секцию: 0'
a.setAttribute('href', wgScript + '?title='+encodeURIComponent(wgPageName) + '&action=edit&section=0')
}
//Collapsiblе: [[ВП:СБ]]
   
   
var NavigationBarShowDefault = 2
if (mwCustomEditButtons) {
var NavigationBarHide = '[скрыть]'
 
var NavigationBarShow = '[показать]'
  mwCustomEditButtons[mwCustomEditButtons.length] = {
    "imageFile": "http://sonic-planet.ru/skins/common/images/button_youtube.png",
    "speedTip": "YouTube",
    "tagOpen": "<videoflash>",
    "tagClose": "</videoflash>",
    "sampleText": "Arm4g3dd0nX"};
   
   
var hasClass = (function (){
  mwCustomEditButtons[mwCustomEditButtons.length] = {
var reCache = {}
    "imageFile": "http://sonic-planet.ru/skins/common/images/button_vq.png",
return function (element, className){
    "speedTip": "Цветной текст",
   return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className)
    "tagOpen": "<font style='color: #*Код цвета*;'>",
  }
    "tagClose": "</font>",
})()
    "sampleText": "Ваш текст"};
 
   mwCustomEditButtons[mwCustomEditButtons.length] = {
    "imageFile": "http://imod.z-c.lv/wikigd/images/Button_code.png",
    "speedTip": "Код",
    "tagOpen": " <code><nowiki>",
    "tagClose": "</nowiki></code>",
    "sampleText": "Ваш код"};
 
  mwCustomEditButtons[mwCustomEditButtons.length] = {
    "imageFile": "http://imod.z-c.lv/wikigd/images/Button_ul.png",
    "speedTip": "Подчеркнутый текст",
    "tagOpen": "<u>",
    "tagClose": "</u>",
    "sampleText": "Ваш текст"};
 
  mwCustomEditButtons[mwCustomEditButtons.length] = {
    "imageFile": "http://upload.wikimedia.org/wikipedia/en/3/34/Button_hide_comment.png",
    "speedTip": "Вставить скрытый комментарий",
    "tagOpen": "<!-- ",
    "tagClose": " -->",
    "sampleText": "Comment"};
   
   
function collapsibleTables(){
  mwCustomEditButtons[mwCustomEditButtons.length] = {
var Table, HRow, HCell, btn, a, tblIdx = 0, colTables = []
    "imageFile": "http://upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png",
var allTables = document.getElementsByTagName('table')
    "speedTip": "Вставить примечание",
for (var i=0; Table = allTables[i]; i++){
    "tagOpen": "<ref>",
  if (!hasClass(Table, 'collapsible')) continue
    "tagClose": "</ref>",
   if (!(HRow=Table.rows[0])) continue
    "sampleText": "Примечание"};
  if (!(HCell=HRow.getElementsByTagName('th')[0])) continue
 
  Table.id = 'collapsibleTable' + tblIdx
   mwCustomEditButtons[mwCustomEditButtons.length] = {
  btn = document.createElement('span')
    "imageFile": "http://imod.z-c.lv/wikigd/images/Button_sp2.png",
  btn.style.cssText = 'float:right; font-weight:normal; font-size:smaller'
    "speedTip": "Спойлер",
  a = document.createElement('a')
    "tagOpen": "<spoiler>",
   a.id = 'collapseButton' + tblIdx
    "tagClose": "</spoiler>",
  a.href = 'javascript:collapseTable(' + tblIdx + ');'
    "sampleText": "Текст"};
  a.style.color = HCell.style.color
 
  a.appendChild(document.createTextNode(NavigationBarHide))
   mwCustomEditButtons[mwCustomEditButtons.length] = {
  btn.appendChild(a)
    "imageFile": "http://upload.wikimedia.org/wikipedia/en/1/13/Button_enter.png",
  HCell.insertBefore(btn, HCell.childNodes[0])
    "speedTip": "Следующая строка",
  colTables[tblIdx++] = Table
    "tagOpen": "<br>",
    "tagClose": "",
    "sampleText": ""};
 
  }
  }
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
}
function voting11(){
if (votingTrigger = document.getElementById('voting-trigger'))
  importScriptURI(wgServer+wgScript
  +'?title=MediaWiki:Voting11.js&action=raw&ctype=text/javascript&cversion='
  +encodeURIComponent(votingTrigger.innerHTML.replace(/\D+/g, '.')))
}
//Execution
if (wgCanonicalNamespace == 'Special'){
  if (/^(Uplo|Sear|Stat|Spec|Abus)/i.test(wgCanonicalSpecialPageName))
    importScript_('MediaWiki:'+wgCanonicalSpecialPageName+'.js')
}else if (wgAction != 'history'){
  addOnloadHook(editZeroSection)
  addOnloadHook(collapsibleDivs)
  addOnloadHook(collapsibleTables)
  importScript('MediaWiki:Wikiminiatlas.js', 'meta.wikimedia.org')
  if (navigator.appName=='Microsoft Internet Explorer' && document.createStyleSheet)
    document.createStyleSheet().addRule('.IPA', 'font-family: "Doulos SIL", "Charis SIL", Gentium, "DejaVu Sans", Code2000, "TITUS Cyberbit Basic", "Arial Unicode MS", "Lucida Sans Unicode", "Chrysanthi Unicode";')
  if (wgNamespaceNumber==0 || wgNamespaceNumber==100)
    addOnloadHook(LinkFA)
    importScript_('MediaWiki:Collapserefs.js')
    if (wgArticleId==4401) importScript_('MediaWiki:Mainpage.js')
  else {
    if (wgNamespaceNumber==4){
      if (/^(Мастер статей|Инкубатор)/.test(wgTitle)) importScript_('MediaWiki:Incubator.js')
      if (wgTitle=='Скрипты') importScript_('MediaWiki:Scripts.js')
    }
    addOnloadHook(icqIcons)
  }
  if (wgAction=='edit' || wgAction=='submit') importScript_('MediaWiki:Editpage.js')
}
if (wgUserGroups){
  for (var i=0; i<wgUserGroups.length; i++) switch (wgUserGroups[i]){
    case 'autoconfirmed': wgAutoConfirmed = true; break
    case 'sysop': importScript_('MediaWiki:Sysop.js'); 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')
}
if (!window.wgAutoConfirmed) importStylesheet('MediaWiki:Gadget-HideFlaggedRevs.css')
// ВП:СО, кроме статей  В Контакте, Одноклассники и Facebook
if (wgArticleId!=639373 && wgArticleId!=932117 && wgArticleId!=1297302 && wgArticleId!=25133866)
importScript_('MediaWiki:Wikibugs.js')
// iwiki sorting
if (!wgUserName
    || (wgUserName
        && (((typeof wgLangPrefs == 'undefined') ? false : true)
            || ((typeof wgAddLangHints == 'undefined') ? false : wgAddLangHints)
            || ((typeof wgUseUserLanguage == 'undefined') ? false : wgUseUserLanguage))))
    importScript_('MediaWiki:Interwiki-links.js');
var withJS = document.URL.match(/[&?]withjs=((mediawiki:)?([^&#]+))/i)
if (withJS) importScript_('MediaWiki:'+withJS[3])
// ВП:Выборы арбитров/Осень 2010/Голосование
if (wgArticleId == 2862559) addOnloadHook(voting11)

Текущая версия от 17:02, 8 декабря 2010

/* Размещённый здесь JavaScript код будет загружаться всем пользователям при обращении к каждой странице */
//This is a modified copy of a script by User:MarkS for extra features added by User:Voice of All.
 // This is based on the original code on Wikipedia:Tools/Editing tools
 // To disable this script, add <code>mwCustomEditButtons = [];<code> to [[Special:Mypage/monobook.js]]
 
 if (mwCustomEditButtons) {

   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://sonic-planet.ru/skins/common/images/button_youtube.png",
     "speedTip": "YouTube",
     "tagOpen": "<videoflash>",
     "tagClose": "</videoflash>",
     "sampleText": "Arm4g3dd0nX"};
 
   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://sonic-planet.ru/skins/common/images/button_vq.png",
     "speedTip": "Цветной текст",
     "tagOpen": "<font style='color: #*Код цвета*;'>",
     "tagClose": "</font>",
     "sampleText": "Ваш текст"};

   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://imod.z-c.lv/wikigd/images/Button_code.png",
     "speedTip": "Код",
     "tagOpen": " <code><nowiki>",
     "tagClose": "</nowiki></code>",
     "sampleText": "Ваш код"};

   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://imod.z-c.lv/wikigd/images/Button_ul.png",
     "speedTip": "Подчеркнутый текст",
     "tagOpen": "<u>",
     "tagClose": "</u>",
     "sampleText": "Ваш текст"};

   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://upload.wikimedia.org/wikipedia/en/3/34/Button_hide_comment.png",
     "speedTip": "Вставить скрытый комментарий",
     "tagOpen": "<!-- ",
     "tagClose": " -->",
     "sampleText": "Comment"};
 
   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png",
     "speedTip": "Вставить примечание",
     "tagOpen": "<ref>",
     "tagClose": "</ref>",
     "sampleText": "Примечание"};

   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://imod.z-c.lv/wikigd/images/Button_sp2.png",
     "speedTip": "Спойлер",
     "tagOpen": "<spoiler>",
     "tagClose": "</spoiler>",
     "sampleText": "Текст"};

   mwCustomEditButtons[mwCustomEditButtons.length] = {
     "imageFile": "http://upload.wikimedia.org/wikipedia/en/1/13/Button_enter.png",
     "speedTip": "Следующая строка",
     "tagOpen": "<br>",
     "tagClose": "",
     "sampleText": ""};

 }