|
|
(не показана 1 промежуточная версия этого же участника) |
Строка 1: |
Строка 1: |
| //See http://ru.wikipedia.org/wiki/project:code //<source lang=javascript> | | /* Let it stay empty for now */ |
| | |
| function importScript(page) {
| |
| return importScriptURI(wgScript + '?action=raw&ctype=text/javascript&title=' + encodeURIComponent(page.replace(/ /g,'_')));
| |
| }
| |
|
| |
| var loadedScripts = {}; // included-scripts tracker
| |
| function importScriptURI(url) {
| |
| if (loadedScripts[url]) {
| |
| return null;
| |
| }
| |
| loadedScripts[url] = true;
| |
| var s = document.createElement('script');
| |
| s.setAttribute('src',url);
| |
| s.setAttribute('type','text/javascript');
| |
| document.getElementsByTagName('head')[0].appendChild(s);
| |
| return s;
| |
| }
| |
| | |
| 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,'_')))
| |
| }
| |
| }
| |
| | |
| addLoadEvent = addOnloadHook
| |
| | |
| | |
| function ts_parseFloat(n){
| |
| if (!n) return 0
| |
| n = parseFloat(n.replace(/\./g, '').replace(/,/, '.'))
| |
| return (isNaN(n) ? 0 : n)
| |
| }
| |
| | |
| | |
| function LinkFA(){
| |
| var pLang = document.getElementById('p-lang')
| |
| if (!pLang) return
| |
| var iw = pLang.getElementsByTagName('li')
| |
| for (var i=0; i < iw.length; i++)
| |
| if (document.getElementById(iw[i].className+'-fa')){
| |
| iw[i].className += ' FA'
| |
| iw[i].title = 'Эта статья является избранной в другом языковом разделе'
| |
| }else if (document.getElementById(iw[i].className+'-ga')){
| |
| iw[i].className += ' GA'
| |
| iw[i].title = 'Эта статья является хорошей в другом языковом разделе'
| |
| }
| |
| }
| |
| | |
| | |
| 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 newSectionLink(){
| |
| var plus = document.getElementById('ca-addsection')
| |
| if (!plus) return
| |
| var custom = document.getElementById('add-custom-section')
| |
| if (!custom) return
| |
| plus.firstChild.setAttribute('href', custom.getElementsByTagName('a')[0].href)
| |
| }
| |
| | |
| | |
| 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('§ion=T') == -1 ) a.title = a.title.replace(/:.*$/,': 0')
| |
| else a.title = 'Править секцию: 0'
| |
| a.setAttribute('href', wgScript + '?title='+wgPageName + '&action=edit§ion=0')
| |
| }
| |
| | |
| | |
| function mainPage(){
| |
| if (wgArticleId == 4401 || wgArticleId == 23){
| |
| var li = addPortletLink('p-lang', wgArticlePath.replace(/\$1/, 'Википедия:Список_Википедий'), 'Полный список', 'interwiki-completelist')
| |
| if (li) li.style.fontWeight = 'bold'
| |
| var nstab = document.getElementById('ca-nstab-main')
| |
| if (nstab && wgUserLanguage == 'ru') nstab.firstChild.firstChild.nodeValue = 'Заглавная'
| |
| }
| |
| }
| |
| | |
| | |
| //Collapsiblе: [[ВП:СБ]]
| |
| | |
| var NavigationBarShowDefault = 2
| |
| var NavigationBarHide = '[скрыть]'
| |
| var NavigationBarShow = '[показать]'
| |
| | |
| 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))
| |
| //(must be this complicated because Moz's firstChild handling is borked)
| |
| 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 searchPage() {
| |
| var searchEngines = {
| |
| 'Внутренний поиск': false,
| |
| 'Wikiwix': 'http://ru.wikiwix.com/?action=%s&disp=article',
| |
| 'Google': 'http://www.google.com/custom?q=%s&hl=ru&domains=towiki.ru&sitesearch=towiki.ru',
| |
| 'Yahoo': 'http://search.yahoo.com/search?p=%s&vs=towiki.ru',
| |
| 'Яndex': 'http://yandex.ru/yandsearch?text=%s&site=towiki.ru&ras=1&site_manually=true&server_name=Towiki'
| |
| }
| |
| createOption = function(site, engine) {
| |
| var opt = document.createElement('option')
| |
| opt.appendChild(document.createTextNode(site))
| |
| opt.value = site
| |
| return opt
| |
| }
| |
| var searchForm = document.forms['search'] || document.forms['powersearch']
| |
| if (searchForm.fulltext) searchForm.fulltext.value = 'Найти'
| |
| submit = function() {
| |
| var optSelected = searchEngines[document.getElementById('searchEngine').value]
| |
| if (optSelected) {
| |
| searchInput = document.getElementById('searchText') || document.getElementById('powerSearchText')
| |
| window.location = optSelected.replace(/%s/g, encodeURIComponent(searchInput.value))
| |
| return false
| |
| }
| |
| }
| |
| if (navigator.userAgent.match(/msie/i)) addHandler(searchForm, 'submit', submit)
| |
| else searchForm.onsubmit = submit
| |
| var selectBox = document.createElement('select')
| |
| selectBox.id = 'searchEngine'
| |
| for (var se in searchEngines)
| |
| selectBox.appendChild(createOption(se, searchEngines[se]))
| |
| searchInput = document.getElementById('searchText') || document.getElementById('powerSearchText')
| |
| searchInput.parentNode.insertBefore(selectBox, searchInput.nextSibling)
| |
| }
| |
| | |
| | |
| function uploadPage(){
| |
| var desc = document.getElementById('wpUploadDescription')
| |
| var tmpl = document.getElementById('imageinfo')
| |
| if (tmpl && desc && !desc.value) desc.value = tmpl.innerHTML
| |
| var span = document.getElementById('insertlink')
| |
| if (!span) return
| |
| var a = document.createElement('a')
| |
| a.href = 'javascript:addRationaleTemplate()'
| |
| span.parentNode.insertBefore(a, span)
| |
| a.appendChild(span)
| |
| span.style.display = 'inline'
| |
| }
| |
| function addRationaleTemplate(){
| |
| var desc = document.getElementById('wpUploadDescription')
| |
| var tmpl = document.getElementById('rationale')
| |
| if (desc && tmpl && desc.value.indexOf(tmpl.innerHTML.substring(0,8)) == -1){
| |
| desc.value += '\n' + tmpl.innerHTML
| |
| desc.rows = 15
| |
| }
| |
| }
| |
| | |
| | |
| | |
| //Оn special pages
| |
| if (wgCanonicalNamespace == 'Special'){
| |
| if (wgCanonicalSpecialPageName == 'Upload')
| |
| addOnloadHook(uploadPage)
| |
| else if (wgCanonicalSpecialPageName == 'Search')
| |
| addOnloadHook(searchPage)
| |
| | |
| //Оn normal pages
| |
| }else if (wgAction != 'history'){
| |
| addOnloadHook(editZeroSection)
| |
| addOnloadHook(collapsibleDivs)
| |
| addOnloadHook(collapsibleTables)
| |
| addOnloadHook(mainPage)
| |
| document.write('<script type="text/javascript" src="http://meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400"><\/script>')
| |
| if (wgNamespaceNumber == 0)
| |
| addOnloadHook(LinkFA)
| |
| else{
| |
| addOnloadHook(icqIcons)
| |
| addOnloadHook(newSectionLink)
| |
| }
| |
| if (wgAction == 'edit' || wgAction == 'submit')
| |
| document.write('<script type="text/javascript" src="http://towiki.ru/w/index.php?title=MediaWiki:Editpage.js&action=raw&ctype=text/javascript"><\/script>')
| |
| }
| |
| | |
| | |
| if (navigator.appName == 'Microsoft Internet Explorer'){
| |
| if (document.createStyleSheet) //IPA fix
| |
| 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 (wgUserGroups) addOnloadHook(function(){
| |
| if (wgUserGroups.join('').indexOf('sysop')!=-1 && !window.disableSysopJS)
| |
| importScript('MediaWiki:Sysop.js')
| |
| })
| |
| | |
| //</source>
| |