User:ZooFari/picasareview.js

Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: press Ctrl-F5, Mozilla: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Opera/Konqueror: press F5, Safari: hold down Shift + Alt while clicking Reload, Chrome: hold down Shift while clicking Reload.
//<nowiki>

// addPicasaOK tagger (initially developed by Patstuart)
function PicasaOK (autosave){
  var needAppend=document.editform.wpTextbox1.value;
  document.editform.wpTextbox1.value = document.editform.wpTextbox1.value.replace(/({{User:Picasa Review Bot.*}})|({{(P|p)icasar?eview}})/g, '{{Picasareview|' + wgUserName + '|{{subst:#time:Y-m-d}}}}');
  if (needAppend==document.editform.wpTextbox1.value)
    document.editform.wpTextbox1.value+='{{Picasareview|' + wgUserName + '|{{subst:#time:Y-m-d}}}}'    
  document.editform.wpSummary.value = '[[Commons:Picasa Web Albums files|Picasareview]] passed (using [[User:ZooFari/Scripts|Picasareview script]])';
  document.editform.wpMinoredit.checked = true;
  
  if (autosave)
    document.editform.submit();
}

// Picasa_copyvio tagger (initially developed by Patstuart)
function Picasa_copyvio(autosave){
  document.editform.wpTextbox1.value = "{{subst:npd}} \n" + document.editform.wpTextbox1.value.replace(/({{User:Picasa Review Bot.*}})|({{(P|p)icasar?eview}})/g, '{{picasareview|' + wgUserName + '|{{subst:#time:Y-m-d}}|ND, NC, or All Rights Reserved}}');
  document.editform.wpSummary.value = '[[Commons:Picasa Web Albums files|Picasareview]] failed; marked as no permission (using [[User:ZooFari/Scripts|Picasareview script]])';
  document.editform.wpMinoredit.checked = false;
  
  if (autosave)
    document.editform.submit();
}

//stolen shamelessly and modified from the add {{information}} template text
function add_toolbox_button(text, _href) 
{
  var toolbox = document.getElementById ( "p-tb" ) ;
  if ( !toolbox )
    return ;
  var ul = toolbox.getElementsByTagName ( "UL" ) [0] ;
  var li = document.createElement ( "LI" ) ;
  var a = document.createElement ( "A" ) ;
  a.appendChild (document.createTextNode(text));
  a.href = _href;
  a.className = "external" ;
  li.appendChild ( a ) ;
  ul.appendChild ( li ) ;
}


//stolen shamelessly and modified from the add {{information}} template text
function add_topbar_button(text, _href) 
{
  mw.util.addPortletLink("p-cactions", _href, text, "");
}
function addFunction(functionNameString, buttonDisplayName, checkNameSpaceFlag, whereAdd)
{
  checkNameSpaceFlag|= (wgPageName=="Commons:Sandbox");
  if (!checkNameSpaceFlag)
    return;

  if (getParamValue('functionName')==functionNameString)
  {
    addOnloadHook
    (
      function ()
      {
        eval(functionNameString+"(true)")
      }
    );
  }

  var _href;
  if (wgAction=="edit") 
    _href = "javascript:"+functionNameString+"(true)";
  else
    _href = wgScript + "?title="+encodeURIComponent(mw.config.get('wgPageName'))+ "&action=edit&functionName="+functionNameString;

  if (whereAdd=="top")
    addOnloadHook(function (){add_topbar_button(buttonDisplayName, _href);})
  else if (whereAdd=="toolbox")
    addOnloadHook(function (){add_toolbox_button(buttonDisplayName, _href);})
}

function addImageFunction(functionNameString, buttonDisplayName, buttonLocation)
{
  addFunction(functionNameString, buttonDisplayName, wgNamespaceNumber == 6, buttonLocation);
}

addImageFunction("PicasaOK", "picasa ok", "top");
addImageFunction("Picasa_copyvio", "picasa np", "top");

//</nowiki>