MediaWiki:AboutArticle.js

Вы находитесь на сайте "Архив статей из ЭЕЭ и статей на еврейские темы из Википедии"

(Различия между версиями)
Перейти к: навигация, поиск
Строка 1: Строка 1:
-
//  ____________________________________________________________________________________________
+
{{Остатье}}//  ____________________________________________________________________________________________
// |                                                                                            |
// |                                                                                            |
// |                    Основано на версии 264413579 гаджета refToolbar.js                      |
// |                    Основано на версии 264413579 гаджета refToolbar.js                      |
Строка 149: Строка 149:
       citebegin = '{{' + cites[i].value;
       citebegin = '{{' + cites[i].value;
     }
     }
-
     else if (cites[i].id == "ТИП") {
+
     else if (cites[i].name == "ТИП") {
-
       citeinner += "|" + cites[i].id + "=" + cites[i].value;
+
       citeinner += "|" + cites[i].name + "=" + cites[i].value;
     }
     }
   }
   }

Версия 05:27, 23 марта 2010

{{Остатье}}//  ____________________________________________________________________________________________
// |                                                                                            |
// |                    Основано на версии 264413579 гаджета refToolbar.js                      |
// | (http://en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-refToolbar.js&oldid=264413579) |
// |____________________________________________________________________________________________|
//
// Imported from revision 264412998 as of 2009-01-16T05:53:39 from [[User:Mr.Z-man/refToolbar.js]]
// For a description, see [[User:Mr.Z-man/refToolbar]]
 
var numforms = 0;
 
function Articlebutton() {
  if (mwCustomEditButtons && document.getElementById('toolbar') ) {
    button = document.createElement('a');
    button.href = "javascript:easyArticleMain()";
    button.title = "Добавить шаблон О_статье";
    buttonimage = document.createElement('img');
    buttonimage.src = "http://upload.wikimedia.org/wikipedia/commons/9/9f/Button_defaultsort.png";
    buttonimage.alt = "Вставить описание статьи";
    button.appendChild(buttonimage);
    var toolbar = document.getElementById('toolbar');
    if (navigator.userAgent.indexOf('MSIE') == -1) {
      if (toolbar.style != null) {
        toolbar.style.height = 'auto';
      }
      else {
      	toolbar.setAttribute('style', 'margin-bottom: 6px; height: auto;');
      }
      toolbar.appendChild(button);
      articlemain = document.createElement('div');
      articlemain.style.display = 'none';
      articlemain.style.margin = '0.2em 0 -0.2em 0';
      articlemain.setAttribute('Id', 'articleselect');
      articlemain.appendChild( addOption("aboutArticle()", "О статье") );
      articlemain.appendChild( addOption("hideInit()", "Отмена") );
      toolbar.appendChild(articlemain);
    }
    else {
      toolbar.appendChild(button);
      selection = '<div id="articleselect" style="display:none"><input type="button" value="О статье" onclick="aboutArticle()" />'+
      '<input type="button" value="Отмена" onclick="hideInit()" /></div>';
      document.getElementById('editform').innerHTML = selection + document.getElementById('editform').innerHTML;
    }
  }
}
 
function addOption(script, text) {
  option = document.createElement('input');
  option.setAttribute('type', 'button');
  option.setAttribute('onclick', script);
  option.setAttribute("value", text);
  return option;
}
 
function hideInit() {
  document.getElementById('articleselect').style.display = 'none';
  oldFormHide1();
}
 
function oldFormHide1() {
  if (numforms != 0) {
    document.getElementById('articlediv'+numforms).style.display = 'none';
  }
}
 
function easyArticleMain() {
  document.getElementById('articleselect').style.display = '';
}
 
function getTime() {
  var time = new Date();
  var nowdate = time.getUTCDate();
  if (nowdate<10) { nowdate = "0"+ nowdate.toString(); }
  var nowmonth = time.getUTCMonth()+1;
  if (nowmonth<10) { nowmonth = "0"+ nowmonth.toString(); }
  var nowyear = time.getUTCFullYear();
  newtime =  nowyear + '-' + nowmonth + '-' + nowdate;
  return (newtime);
}
 
function aboutArticle() {
  oldFormHide1();
  var legend;
  template = "Остатье";
 
  legend = "Описание статьи";
  newtime = getTime();
  numforms++;
 
  form = '<div id="articlediv'+numforms+'">'+
    '<fieldset><legend>'+legend+'</legend>'+
    '<table cellspacing="6">'+
    '<input type="hidden" value="'+template+'" id="template">'+
    '<tr><td width="150"><label for="НАЗВАНИЕ">&nbsp;название: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="НАЗВАНИЕ"></td>'+
    '<td width="150"><label for="ТИП">&nbsp;&nbsp;&nbsp;тип статьи: </label></td>'+
      '<td width="80"><SELECT NAME="ТИП" SIZE=0 id="ТИП">'+
            '<OPTION VALUE="0"></option>'+
            '<OPTION VALUE="1">Регулярная статья</option>'+
            '<OPTION VALUE="2">Регулярная исправленная статья</option>'+
            '<OPTION VALUE="3">Статья-справка</option>'+
            '<OPTION VALUE="4">Первоначальный набросок</option>'+
            '<OPTION VALUE="5">Текст унаследован из Википедии</option>'+
            '<OPTION VALUE="6">Требует дополнения</option>'+
            '<OPTION VALUE="7">Служебная статья</option></SELECT></td></tr>'+
    '<tr><td width="150"><label for="ПОДЗАГОЛОВОК">&nbsp;подзаголовок: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="ПОДЗАГОЛОВОК"></td>'+
    '<td width="150"><label for="ТЕМА">&nbsp;&nbsp;&nbsp;тема: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="ТЕМА"></td></tr>'+
    '<tr><td width="150"><label for="АВТОР">&nbsp;статья об авторе: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="АВТОР"></td>'+
    '<td width="150"><label for="ИЗЦИКЛА">&nbsp;&nbsp;&nbsp;из цикла: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="ИЗЦИКЛА"></td></tr>'+
    '<tr><td width="150"><label for="АВТОРЫ">&nbsp;авторы: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="АВТОРЫ"></td>'+
    '<td width="150"><label for="ИСТОЧНИК">&nbsp;&nbsp;&nbsp;источник: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="ИСТОЧНИК"></td></tr>'+
    '<tr><td width="150"><label for="АВТОР1">&nbsp;страница участника: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="АВТОР1"></td>'+
    '<td width="150"><label for="ЕЖЕВИКА">&nbsp;&nbsp;&nbsp;в Ежевике: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="ЕЖЕВИКА"></td></tr>'+
    '<tr><td width="150"><label for="СУПЕРВАЙЗЕР">&nbsp;академический &nbsp;супервайзер: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="СУПЕРВАЙЗЕР"></td>'+
    '<td width="150"><label for="ПУБЛИКАЦИИ">&nbsp;&nbsp;&nbsp;в Публикациях: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="ПУБЛИКАЦИИ"></td></tr>'+
    '<tr><td width="150"><label for="ДАТАСОЗДАНИЯ">&nbsp;дата создания: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="ДАТАСОЗДАНИЯ"></td>'+
    '<td width="150"><label for="ВИКИПЕДИЯ">&nbsp;&nbsp;&nbsp;в Википедии: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="ВИКИПЕДИЯ"></td></tr>'+
    '<tr><td width="150"><label for="КАЧЕСТВО">&nbsp;качество: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="КАЧЕСТВО"></td>'+
    '<td width="150"><label for="НЕОДНОЗНАЧНОСТЬ">&nbsp;&nbsp;&nbsp;страница &nbsp;&nbsp;&nbsp;неоднозначности: </label></td>'+
      '<td width="300"><input type="text" tabindex=1 style="width:100%" id="НЕОДНОЗНАЧНОСТЬ"></td></tr>'+
    '</table>'+
    '<input type="button" value="Добавить" onClick="addtemplate()">'+
 '</fieldset></div>';
   document.getElementById('articleselect').innerHTML += form;
}
 
function addtemplate() {
  cites = document.getElementById('articlediv'+numforms).getElementsByTagName('input');
  var citebegin = '';
  var citeinner = '';
  for (var i=0; i<cites.length-1; i++) {
    if (cites[i].value != '' && cites[i].id != "template") {
      citeinner += "|" + cites[i].id + "=" + cites[i].value;
    }
    else if (cites[i].value != '' && cites[i].id == "template") {
      citebegin = '{{' + cites[i].value;
    }
    else if (cites[i].name == "ТИП") {
      citeinner += "|" + cites[i].name + "=" + cites[i].value;
    }
  }
 
  cite = citebegin + citeinner + "}}";
  insertTags(cite, '', '');
  document.getElementById('articlediv'+numforms).style.display = 'none';
}
 
//hookEvent("load", Articlebutton);
addOnloadHook(Articlebutton)
Личные инструменты
 

Шаблон:Ежевика:Рубрики

Навигация