_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

Szerkesztő:Tgr/assess.js

A mai világban a Szerkesztő:Tgr/assess.js olyan téma, amely nagy érdeklődést és vitát vált ki a társadalomban. A Szerkesztő:Tgr/assess.js évek óta visszatérő téma a politikától a populáris kultúráig különböző területeken. Az idő múlásával a Szerkesztő:Tgr/assess.js egyre nagyobb jelentőséget és relevanciát kapott, és aktuális témává vált, amely továbbra is vitákat és vitákat generál. Ezért kulcsfontosságú, hogy mélyebben elmélyedjünk ebben a témában, és elemezzük különböző aspektusait, hogy megértsük a mai társadalomra gyakorolt ​​hatását.
// cikkértékelés
function assess(templateName) {
  var quality = prompt('Minőség:');
  if(quality == null) return false;
  var importance = prompt('Fontosság:');
  if(importance == null) return false;
 
  var today = new Date();
  var dateString = 
    today.getFullYear() + "-" + 
    (today.getMonth() + 1) + "-" +
    today.getDate();
  var template = 
    "{{" + templateName + 
    "|besorolás=" + quality + 
    "|fontosság=" + importance + 
    "|felhasználó=" + wgUserName + 
    "|dátum=" + dateString + 
    "}}";
 
  if (typeof(wikEdUseWikEd) != 'undefined') {
    if (wikEdUseWikEd == true) {
      WikEdUpdateTextarea();
    }
  }
  var textarea = document.editform.wpTextbox1;
 
  if(textarea.value.match("{{" + templateName ))
    textarea.value = textarea.value.replace(new RegExp("\\{\\{" + templateName + ".*?\\}\\}"), template);
  else
    textarea.value = template + '\n' + textarea.value;
 
  if (typeof(wikEdUseWikEd) != 'undefined') {
    if (wikEdUseWikEd == true) {
      WikEdUpdateFrame();
    }
  }
 
  var summary = document.editform.wpSummary;
  summary.value = "cikk értékelése";
 
  return false;
}
 
function addAssessButton(templateName, image, tip) {
  // FIXME néha eltünteti a többi gombot (wikEd miatt?)
  var toolbar = document.getElementById('toolbar');
  if (!toolbar) { return false; }
 
  mwInsertEditButton(toolbar, {
    "imageId": "editbutton-assess-" + templateName,
    "imageFile": image,
    "speedTip": tip,
    "tagOpen": "",
    "tagClose": "",
    "sampleText": ""
  });
  var button = document.getElementById("editbutton-assess-" + templateName);
  button.onclick = function() {assess(templateName);};
}
 
$(function() {
  addAssessButton("WPÓKOR", "http://upload.wikimedia.org/wikipedia/commons/e/e9/Button_copy_edit.png", "Cikkértékelés");
}); //cikkértékelés-end