MediaWiki:Common.js — различия между версиями

Материал из Guild Wars 2 wiki
Перейти к: навигация, поиск
(новая версия autoConvertUTC)
Строка 3: Строка 3:
 
/** additional scripts **/
 
/** additional scripts **/
 
if (wgIsArticle || window.location.href.indexOf('action=submit') > -1 || wgNamespaceNumber == -1) {
 
if (wgIsArticle || window.location.href.indexOf('action=submit') > -1 || wgNamespaceNumber == -1) {
  importScript('MediaWiki:CollapsibleTables.js');
+
    importScript('MediaWiki:CollapsibleTables.js');
  importScript('MediaWiki:TPprices.js');
+
    importScript('MediaWiki:TPprices.js');
  importScript('MediaWiki:GameLinks.js');
+
    importScript('MediaWiki:GameLinks.js');
  importScript('MediaWiki:BloodTest.js');
+
    importScript('MediaWiki:BloodTest.js');
  $(function() {
+
    $(function() {
    autoConvertUTC();
+
        autoConvertUTC();
  });
+
    });
 
}
 
}
  
/*
+
/**
 
  * autoConvertUTC (see [[Template:UTC time]])
 
  * autoConvertUTC (see [[Template:UTC time]])
 
  */
 
  */
 
function autoConvertUTC () {
 
function autoConvertUTC () {
  function pad (s) {  return (s < 10 ? '0' : '') + s; }
+
    function pad (s) {  return (s < 10 ? '0' : '') + s; }
  var days = ['Воскресенье', 'Понедельник', 'Вторник', 'Среда', 'Четверг', 'Пятница', 'Суббота', 'Воскресенье'];
+
    var days = ['Воскресенье', 'Понедельник', 'Вторник', 'Среда', 'Четверг', 'Пятница', 'Суббота', 'Воскресенье'];
  $('.utc-auto-convert').each(function(i,v){
+
    $('.utc-auto-convert').each(function(i,v){
 
+
        // Get UTC time using MediaWiki {{#time: U}} epoch format
    // Get UTC time using MediaWiki {{#time: U}} epoch format
+
        var utcseconds = v.getAttribute('data-time');
    var utcseconds = v.getAttribute('data-time');
+
        if (utcseconds == 'error') {
    if (utcseconds == 'error') {
+
            return;
      return;
+
        }
    }
+
        var d = new Date(0);
    var d = new Date(0);
+
        d.setUTCSeconds(utcseconds);
    d.setUTCSeconds(utcseconds);
+
        var offset = (-1 * d.getTimezoneOffset() / 60);
    var offset = (-1 * d.getTimezoneOffset() / 60);
+
        var offsetstring = '';
    var offsetstring = '';
+
        if (offset > 0) { offsetstring = '+' + offset; }
    if (offset > 0) { offsetstring = '+' + offset; }
+
        if (offset < 0) { offsetstring = offset;      }
    if (offset < 0) { offsetstring = offset;      }
+
       
 
+
        // Default to showing the time only
    // Default to showing the time only
+
        var datestring = pad(d.getHours()) + ':' + pad(d.getMinutes()) + ' UTC' + offsetstring;
    var datestring = pad(d.getHours()) + ':' + pad(d.getMinutes()) + ' UTC' + offsetstring;
+
        var titlestring = pad(d.getUTCHours()) + ':' + pad(d.getUTCMinutes()) + ' UTC';
    var titlestring = pad(d.getUTCHours()) + ':' + pad(d.getUTCMinutes()) + ' UTC';
+
       
   
+
        // But check for different formatting in case there is a day of the week given inside the span
    // But check for different formatting in case there is a day of the week given inside the span
+
        if (!v.textContent.match(/^\d/)) {
    if (!v.textContent.match(/^\d/)) {
+
            datestring  = days[d.getDay()] + ' ' + datestring;
      datestring  = days[d.getDay()] + ' ' + datestring;
+
            titlestring = days[d.getUTCDay()] + ' ' + titlestring;
      titlestring = days[d.getUTCDay()] + ' ' + titlestring;
+
        }
    }
+
       
 
+
        // Show result
    // Show result
+
        $(v).html('<span style="cursor:help; border-bottom:1px dotted silver;" title="'+titlestring+'">'+datestring+'</span>');
    $(v).html('<span style="cursor:help; border-bottom:1px dotted silver;" title="'+titlestring+'">'+datestring+'</span>');
+
    });
  });
 
 
}
 
}
  
 
/**
 
/**
 
  * Helper script for .hlist class in Common.css
 
  * Helper script for .hlist class in Common.css
  * Add pseudo-selector class to last-child list items in IE8
+
  *   add pseudo-selector class to last-child list items in IE8
  * @source mediawiki.org/wiki/Snippets/Horizontal_lists
+
  *   @source mediawiki.org/wiki/Snippets/Horizontal_lists
  * @revision 6 (2014-08-23)
+
  *   @revision 6 (2014-08-23)
  * @author mediawiki.org/wiki/User:Edokter
+
  *   @author mediawiki.org/wiki/User:Edokter
 
  */
 
  */
( function ( mw, $ ) {
+
(function ( mw, $ ) {
 
     var profile = $.client.profile();
 
     var profile = $.client.profile();
 
     if ( profile.name === 'msie' && profile.versionNumber === 8 ) {
 
     if ( profile.name === 'msie' && profile.versionNumber === 8 ) {
Строка 62: Строка 61:
 
         } );
 
         } );
 
     }
 
     }
} ( mediaWiki, jQuery ) );
+
}) (mediaWiki, jQuery);

Версия 21:32, 11 декабря 2017

/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */

/** additional scripts **/
if (wgIsArticle || window.location.href.indexOf('action=submit') > -1 || wgNamespaceNumber == -1) {
    importScript('MediaWiki:CollapsibleTables.js');
    importScript('MediaWiki:TPprices.js');
    importScript('MediaWiki:GameLinks.js');
    importScript('MediaWiki:BloodTest.js');
    $(function() {
        autoConvertUTC();
    });
}

/**
 * autoConvertUTC (see [[Template:UTC time]])
 */
function autoConvertUTC () {
    function pad (s) {  return (s < 10 ? '0' : '') + s; }
    var days = ['Воскресенье', 'Понедельник', 'Вторник', 'Среда', 'Четверг', 'Пятница', 'Суббота', 'Воскресенье'];
    $('.utc-auto-convert').each(function(i,v){
        // Get UTC time using MediaWiki {{#time: U}} epoch format
        var utcseconds = v.getAttribute('data-time');
        if (utcseconds == 'error') {
            return;
        }
        var d = new Date(0);
        d.setUTCSeconds(utcseconds);
        var offset = (-1 * d.getTimezoneOffset() / 60);
        var offsetstring = '';
        if (offset > 0) { offsetstring = '+' + offset; }
        if (offset < 0) { offsetstring = offset;       }
        
        // Default to showing the time only
        var datestring = pad(d.getHours()) + ':' + pad(d.getMinutes()) + ' UTC' + offsetstring;
        var titlestring = pad(d.getUTCHours()) + ':' + pad(d.getUTCMinutes()) + ' UTC';
        
        // But check for different formatting in case there is a day of the week given inside the span
        if (!v.textContent.match(/^\d/)) {
            datestring  = days[d.getDay()] + ' ' + datestring;
            titlestring = days[d.getUTCDay()] + ' ' + titlestring;
        }
        
        // Show result
        $(v).html('<span style="cursor:help; border-bottom:1px dotted silver;" title="'+titlestring+'">'+datestring+'</span>');
    });
}

/**
 * Helper script for .hlist class in Common.css
 *   add pseudo-selector class to last-child list items in IE8
 *   @source mediawiki.org/wiki/Snippets/Horizontal_lists
 *   @revision 6 (2014-08-23)
 *   @author mediawiki.org/wiki/User:Edokter
 */
(function ( mw, $ ) {
    var profile = $.client.profile();
    if ( profile.name === 'msie' && profile.versionNumber === 8 ) {
        mw.hook( 'wikipage.content' ).add( function ( $content ) {
            $content.find( '.hlist' ).find( 'dd:last-child, dt:last-child, li:last-child' )
                .addClass( 'hlist-last-child' );
        } );
    }
}) (mediaWiki, jQuery);