/*
//Please leave the following line
//], maintained by ]
//Poprawki naniesione przez ]
*/
//Start db script

$(function()
{
  //check if called from deletion request
  if (document.title.indexOf("Edytujesz ") != -1)
  {
    if (document.URL.lastIndexOf("&fakeaction=huff") == -1)
      return;
    // does the page exist?
    if (wgCurRevisionId == false)
    {
      alert("Strona została już usunięta.");
      return;
    }
    if (document.URL.lastIndexOf("&reason=on") != -1)
    {
      var type = prompt("Podaj powód skasowania");
      if (type == null) //anulowanie jeśli pusty powód
        return;
      var f = document.editform, t = f.wpTextbox1;
      t.value = "{"+ "{ek|" + type + "}}\n" + t.value;
      f.wpSummary.value = "]";
      f.wpSave.click();
      return;
    }
  }
  if (wgNamespaceNumber == -1)
    return;

  //mw.util.addPortletLink("p-cactions", "javascript:easyDb(0)", "db (csd)", "ca-db0", "Request speedy deletion according to WP:CSD", ""); //niepotrzebne na pl.wiki
  mw.util.addPortletLink("p-cactions", "javascript:easyDb(1)", "ek (powód)", "ca-ek1", "Dodaj do kategorii ek", "");  //dodanie karty ek(powód)
});
 
function easyDb(n)
{
  var title = wgPageName.replace("&", "%26").replace("+", "%21");

  //if (n == 0) //niepotrzebne na pl.wiki
  //  location.assign("/w/index.php?&action=edit&fakeaction=huff&reason=off&title=" + title);
 
  if (n == 1)
    location.assign("/w/index.php?&action=edit&fakeaction=huff&reason=on&title=" + title);
}


//End db script
//