Difference between revisions of "MediaWiki:Gadget-edittop.js"

From EntropiaPlanets Wiki - Entropia Universe Guides Wiki Info
(Created page with "// ********************************************************************** // ** ***WARNING! GLOBAL GADGET FILE*** ** // ************************...")
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
// **********************************************************************
// **********************************************************************
// **                ***WARNING! GLOBAL GADGET FILE***               **
// **                ***WARNING GLOBAL GADGET FILE***                 **
// **            changes to this file affect many users.              **
// **          please discuss on the talk page before editing        **
// **                                                                  **
// **********************************************************************
// **********************************************************************
if( ( wgAction == 'view' || wgAction == 'purge' ) && wgNamespaceNumber >= 0 ) {
// Imported from [[User:Alex Smotrov/edittop.js]], version as of: 2007-06-19T04:28:52
jQuery( document ).ready( function() {
// Updated from [[User:TheDJ/Gadget-edittop.js]], version as of: 2009-04-28T11:54:22
var localtitles = {
 
en: 'Edit lead section',
if ($.inArray( mw.config.get('wgAction'), [ 'view', 'purge' ]) !== -1 && mw.config.get( 'wgNamespaceNumber' ) >=0) {
fr: 'Modifier le résumé introductif',
  $(function edittop_hook () {
it: 'Modifica della sezione iniziale',
    var localtitles = {
ja: '導入部を編集'
      bg: 'Редактиране на началото',
};
      bn: 'সূচনা অনুচ্ছেদ সম্পাদনা করুন',
var h2s = document.getElementsByTagName( 'H2' );
      cs: 'Editovat úvodní sekci',
var h2 = h2s[0];
      en: 'Edit lead section',
if( !h2 ) {
      fa: 'ویرایش بخش آغازین',
return;
      fr: 'Modifier le résumé introductif',
}
      id: 'Sunting bagian atas',
if( h2.parentNode.id == 'toctitle' ) {
      it: 'Modifica della sezione iniziale',
h2 = h2s[1];
      ja: '導入部を編集',
}
      kk: 'Кіріспе бөлімді өңдеу',
if( !h2 ) {
      min: 'Suntiang bagian ateh',
return;
      ko: '도입부를 편집',
}
      pa: 'ਸੋਧ',
var span = h2.firstChild;
      pt: 'Editar a seção superior',
if( !span || span.className != 'editsection' ) {
      'pt-br': 'Editar a seção superior',
return;
      sr: 'Уреди уводни део',
}
      th: 'แก้ไขย่อหน้าแรกสุด',
var zero = span.cloneNode( true );
      vi: 'Sửa phần mở đầu'
if( document.getElementById( 'featured-star' ) ) {
    };
zero.style.marginRight = '25px';
 
}
    var our_content = $("#content, #mw_content").first();
if( document.getElementById( 'spoken-icon' ) ) {
    var span1 = our_content.find("span.mw-editsection:not(.plainlinks)").first();
zero.style.marginRight = '45px';
    if (!span1.length) {
}
      return;
if( document.getElementById( 'protected-icon' ) && zero.style.marginRight ) {
    }
zero.style.marginRight = '70px';
    var span0 = span1.clone();
}
 
var parent = document.getElementsByTagName( 'H1' )[0];
    $("#mw_header h1, #content h1").first().append(span0);
parent.insertBefore( zero, parent.firstChild );
    span0.find("a").each(function (idx) {
var a = zero.getElementsByTagName( 'A' )[0];
      var a = $(this), href;
if( localtitles[wgUserLanguage] ) {
      a.attr("title", localtitles[mw.config.get( 'wgUserLanguage' )] || localtitles.en);
a.title = localtitles[wgUserLanguage];
      href = a.attr( "href" ) || '#';
} else {
      if ( !/&(ve|)section=T/.test( a.attr( "href" ) ) ) { // not transcluded
// TODO check for content of header, to get a more precise replacement
        a.attr( "href", href.replace( /&(ve|)section=\d+/, "&$1section=0&summary=/*%20top%20*/%20" ) );
a.title = a.title.replace( /:.*$/, ': 0' );
      } else if ( /&vesection=/.test( a.attr( "href" ) ) ) { // transcluded, VE
}
        a.attr( "href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?veaction=edit&vesection=0&summary=/*%20top%20*/%20" );
a.setAttribute( 'href', a.href.replace( /&section=1/, '&section=0' ) );
      } else { // transcluded, not VE
});
        a.attr( "href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?action=edit&section=0&summary=/*%20top%20*/%20" );
      }
    });
  });
}
}

Latest revision as of 21:20, 5 August 2022

// **********************************************************************
// **                 ***WARNING GLOBAL GADGET FILE***                 **
// **             changes to this file affect many users.              **
// **           please discuss on the talk page before editing         **
// **                                                                  **
// **********************************************************************
// Imported from [[User:Alex Smotrov/edittop.js]], version as of: 2007-06-19T04:28:52
// Updated from [[User:TheDJ/Gadget-edittop.js]], version as of: 2009-04-28T11:54:22

if ($.inArray( mw.config.get('wgAction'), [ 'view', 'purge' ]) !== -1 && mw.config.get( 'wgNamespaceNumber' ) >=0) {
  $(function edittop_hook () {
    var localtitles = {
      bg: 'Редактиране на началото',
      bn: 'সূচনা অনুচ্ছেদ সম্পাদনা করুন',
      cs: 'Editovat úvodní sekci',
      en: 'Edit lead section',
      fa: 'ویرایش بخش آغازین',
      fr: 'Modifier le résumé introductif',
      id: 'Sunting bagian atas',
      it: 'Modifica della sezione iniziale',
      ja: '導入部を編集',
      kk: 'Кіріспе бөлімді өңдеу',
      min: 'Suntiang bagian ateh',
      ko: '도입부를 편집',
      pa: 'ਸੋਧ',
      pt: 'Editar a seção superior',
      'pt-br': 'Editar a seção superior',
      sr: 'Уреди уводни део',
      th: 'แก้ไขย่อหน้าแรกสุด',
      vi: 'Sửa phần mở đầu'
    };

    var our_content = $("#content, #mw_content").first();
    var span1 = our_content.find("span.mw-editsection:not(.plainlinks)").first();
    if (!span1.length) {
      return;
    }
    var span0 = span1.clone();

    $("#mw_header h1, #content h1").first().append(span0);
    span0.find("a").each(function (idx) {
      var a = $(this), href;
      a.attr("title", localtitles[mw.config.get( 'wgUserLanguage' )] || localtitles.en);
      href = a.attr( "href" ) || '#';
      if ( !/&(ve|)section=T/.test( a.attr( "href" ) ) ) { // not transcluded
        a.attr( "href", href.replace( /&(ve|)section=\d+/, "&$1section=0&summary=/*%20top%20*/%20" ) );
      } else if ( /&vesection=/.test( a.attr( "href" ) ) ) { // transcluded, VE
        a.attr( "href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?veaction=edit&vesection=0&summary=/*%20top%20*/%20" );
      } else { // transcluded, not VE
        a.attr( "href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?action=edit&section=0&summary=/*%20top%20*/%20" );
      }
    });
  });
}