Got a spare minute? The Archives need some love. See the to-do list to find a way to help.
If you upload a new image make sure you name and categorize it properly. If in doubt, ask an admin or see our FAQ page.

MediaWiki:Monobook.js: Difference between revisions

From Bulbagarden Archives
Jump to navigationJump to search
m (Testing a javascript fix.)
No edit summary
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
/*<nowiki>*/
/* Any JavaScript here will be loaded for users using the MonoBook skin */
/* Any JavaScript here will be loaded for users using the MonoBook skin */


/*<nowiki>*/
 
/** additional monobook scripts **/
/** additional monobook scripts **/
hookEvent( 'load', displayTimer );


/**** function displayTimer.js
/**** function displayTimer.js
  * by Patrick Westerhoff [poke]
  * by Patrick Westerhoff [poke]
  */
  */
function displayTimer ()
$(document).ready(function ()
{
{
  if ( typeof( timerDisplay ) !== 'undefined' && timerDisplay === false )
    if ( typeof( timerDisplay ) !== 'undefined' && timerDisplay === false )
    return;
        return;
 
  var date;
  var timerParent = document.getElementById( 'p-personal' ).getElementsByTagName( 'ul' )[0];
  var timerLink  = document.createElement( 'a' );
  var timerObj    = document.createElement( 'li' );
  timerLink.href              = '/wiki/' + wgPageName + '?action=purge';
  timerLink.title              = 'Purge the server cache and update the contents of this page.'
  timerObj.id                  = 'pt-timer';
  timerObj.style.textTransform = 'none';
  timerObj.style.fontWeight    = 'bold';
  timerObj.style.fontSize      = '100%';
  timerObj.appendChild( timerLink );
  timerParent.insertBefore( timerObj, timerParent.firstChild );
 
  function actualizeUTC ()
  {
    timerDate          = new Date();
    timerLink.innerHTML = ( timerDate.getUTCHours()  < 10 ? '0' : '' ) + timerDate.getUTCHours()  + ':'
                        + ( timerDate.getUTCMinutes() < 10 ? '0' : '' ) + timerDate.getUTCMinutes() + ':'
                        + ( timerDate.getUTCSeconds() < 10 ? '0' : '' ) + timerDate.getUTCSeconds() + ' (UTC)';
  }
 
  function actualizeCustom ()
  {
    timerDate          = new Date();
    timerDate.setMinutes( timerDate.getMinutes() + timerDate.getTimezoneOffset() + timerTimezone * 60 );
    timerLink.innerHTML = ( timerDate.getHours()  < 10 ? '0' : '' ) + timerDate.getHours()  + ':'
                        + ( timerDate.getMinutes() < 10 ? '0' : '' ) + timerDate.getMinutes() + ':'
                        + ( timerDate.getSeconds() < 10 ? '0' : '' ) + timerDate.getSeconds()
                        + ' (UTC' + ( timerTimezone < 0 ? '' : '+' ) + timerTimezone + ')';
  }
 
  // start
  if ( typeof( timerTimezone ) !== 'number' )
  {
    actualizeUTC();
    setInterval( actualizeUTC, 1000 );
  }
  else
  {
    actualizeCustom();
    setInterval( actualizeCustom, 1000 );
  }
}
/*</nowiki>*/


// Add an [edit] link to pages
    var date;
addOnloadHook(function () {
    var timerParent = document.getElementById( 'p-personal' ).getElementsByTagName( 'ul' )[0];
// if this is preview page or generated page, stop
    var timerLink  = document.createElement( 'a' );
if(
    var timerObj    = document.createElement( 'li' );
document.getElementById("wikiPreview") ||
    timerLink.href              = '/wiki/' + mw.config.get("wgPageName") + '?action=purge';
document.getElementById("histlegend‎") ||
    timerLink.title              = 'Purge the server cache and update the contents of this page.'
document.getElementById("difference‎") ||
    timerObj.id                  = 'pt-timer';
document.getElementById("watchdetails") ||
    timerObj.style.textTransform = 'none';
document.getElementById("ca-viewsource") ||
    timerObj.style.fontWeight    = 'bold';
window.location.href.indexOf("/wiki/Special:") != -1
    timerObj.style.fontSize      = '100%';
) {
    timerObj.appendChild( timerLink );
if(window.location.href.indexOf("&action=edit&section=0") != -1) {
    timerParent.insertBefore( timerObj, timerParent.firstChild );
document.getElementById("wpSummary").value = "/* Intro */ ";
}
return;
};


// get the page title
    function actualizeUTC ()
var pageTitle = escape(wgPageName);
    {
        timerDate          = new Date();
        timerLink.innerHTML = ( timerDate.getUTCHours()  < 10 ? '0' : '' ) + timerDate.getUTCHours()  + ':'
            + ( timerDate.getUTCMinutes() < 10 ? '0' : '' ) + timerDate.getUTCMinutes() + ':'
            + ( timerDate.getUTCSeconds() < 10 ? '0' : '' ) + timerDate.getUTCSeconds() + ' (UTC)';
    }


// create div and set innerHTML to link
    function actualizeCustom ()
var divContainer = document.createElement("div");
    {
divContainer.innerHTML = '<div class="editsection">[<a href="/w/index.php?title='+pageTitle+'&action=edit&section=0" title="Edit first section: '+pageTitle+'">edit top of page</a>]</div>';
        timerDate          = new Date();
 
        timerDate.setMinutes( timerDate.getMinutes() + timerDate.getTimezoneOffset() + timerTimezone * 60 );
// insert divContainer into the DOM below the h1
        timerLink.innerHTML = ( timerDate.getHours()  < 10 ? '0' : '' ) + timerDate.getHours()  + ':'
if(window.location.href.indexOf("&action=edit") == -1) {
            + ( timerDate.getMinutes() < 10 ? '0' : '' ) + timerDate.getMinutes() + ':'
document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
            + ( timerDate.getSeconds() < 10 ? '0' : '' ) + timerDate.getSeconds()
}
            + ' (UTC' + ( timerTimezone < 0 ? '' : '+' ) + timerTimezone + ')';
    }


    // start
    if ( typeof( timerTimezone ) !== 'number' )
    {
        actualizeUTC();
        setInterval( actualizeUTC, 1000 );
    }
    else
    {
        actualizeCustom();
        setInterval( actualizeCustom, 1000 );
    }
});
});
/*</nowiki>*/

Latest revision as of 08:25, 19 April 2021

/*<nowiki>*/
/* Any JavaScript here will be loaded for users using the MonoBook skin */


/** additional monobook scripts **/

/**** function displayTimer.js
 * by Patrick Westerhoff [poke]
 */
$(document).ready(function ()
{
    if ( typeof( timerDisplay ) !== 'undefined' && timerDisplay === false )
        return;

    var date;
    var timerParent = document.getElementById( 'p-personal' ).getElementsByTagName( 'ul' )[0];
    var timerLink   = document.createElement( 'a' );
    var timerObj    = document.createElement( 'li' );
    timerLink.href               = '/wiki/' + mw.config.get("wgPageName") + '?action=purge';
    timerLink.title              = 'Purge the server cache and update the contents of this page.'
    timerObj.id                  = 'pt-timer';
    timerObj.style.textTransform = 'none';
    timerObj.style.fontWeight    = 'bold';
    timerObj.style.fontSize      = '100%';
    timerObj.appendChild( timerLink );
    timerParent.insertBefore( timerObj, timerParent.firstChild );

    function actualizeUTC ()
    {
        timerDate           = new Date();
        timerLink.innerHTML = ( timerDate.getUTCHours()   < 10 ? '0' : '' ) + timerDate.getUTCHours()   + ':'
            + ( timerDate.getUTCMinutes() < 10 ? '0' : '' ) + timerDate.getUTCMinutes() + ':'
            + ( timerDate.getUTCSeconds() < 10 ? '0' : '' ) + timerDate.getUTCSeconds() + ' (UTC)';
    }

    function actualizeCustom ()
    {
        timerDate           = new Date();
        timerDate.setMinutes( timerDate.getMinutes() + timerDate.getTimezoneOffset() + timerTimezone * 60 );
        timerLink.innerHTML = ( timerDate.getHours()   < 10 ? '0' : '' ) + timerDate.getHours()   + ':'
            + ( timerDate.getMinutes() < 10 ? '0' : '' ) + timerDate.getMinutes() + ':'
            + ( timerDate.getSeconds() < 10 ? '0' : '' ) + timerDate.getSeconds()
            + ' (UTC' + ( timerTimezone < 0 ? '' : '+' ) + timerTimezone + ')';
    }

    // start
    if ( typeof( timerTimezone ) !== 'number' )
    {
        actualizeUTC();
        setInterval( actualizeUTC, 1000 );
    }
    else
    {
        actualizeCustom();
        setInterval( actualizeCustom, 1000 );
    }
});
/*</nowiki>*/