MediaWiki:Gadget-edittop.js

提供:Nikupedia
2010年11月4日 (木) 11:37時点におけるCpro (トーク | 投稿記録)による版
(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内, 検索

注意: 保存後、変更を確認するにはブラウザのキャッシュを消去する必要がある場合があります。

  • Firefox / Safari: Shift を押しながら 再読み込み をクリックする、もしくは Ctrl-F5Ctrl-R を押してください (Macでは ⌘-R )
  • Google Chrome: Ctrl-Shift-R を押してください (Macでは ⌘-Shift-R )
  • Internet Explorer: Ctrl を押しながら 最新の情報に更新 をクリックする、もしくは Ctrl-F5 を押してください
  • Konqueror: 再読み込み をクリックするか、 F5 を押してください。
  • Opera: ツール → 設定 からキャッシュをクリアしてください。
// **********************************************************************
// **                 ***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 ((wgAction == 'view' || wgAction == 'purge') && wgNamespaceNumber >=0)
addOnloadHook(function edittop_hook(){
 var localtitles = {
   cs: 'Editovat úvodní sekci',
   en: 'Edit lead section',
   fr: 'Modifier le résumé introductif',
   ko: '도입부를 편집',
   it: 'Modifica della sezione iniziale',
   ja: '導入部を編集'
 };
 var our_content = document.getElementById('content') || document.getElementById('mw_content') || document.body;
 var editspans = getElementsByClassName( our_content, "span", "editsection");
 var span1;
 for( es_count = 0; editspans && es_count < editspans.length; es_count++ )
 {
  span1 = editspans[es_count];
  if( span1.className.indexOf( "plainlinks" ) == -1 )
    break;
 }  
 if (!span1) return;
 var span0 = span1.cloneNode(true);
 var editwidth = span1.offsetWidth;
 if( skin != "vector" ) editwidth += 10;

 var topicons = getElementsByClassName( our_content, 'div', "topicon" );
 for( el=0; topicons && el < topicons.length; el++ )
 {
  topicons[el].style.marginRight  = editwidth+"px";
 }
 var mwfrtag = document.getElementById( "mw-fr-revisiontag" );
 if( mwfrtag ) {
  mwfrtag.style.marginRight = editwidth+"px";
 }

 our_content = document.getElementById('mw_header') || document.getElementById('content') || document.body;
 var parent = our_content.getElementsByTagName('H1')[0];
 parent.insertBefore(span0, parent.firstChild);
 var a = span0.getElementsByTagName('A')[0];
 if (a.href.indexOf('&section=T') == -1){
   a.title = a.title.replace(/(: |:).*$/,'$1'+'0')
   a.setAttribute('href', a.getAttribute('href',2).replace(/&section=\d+/,'&section=0'));
 }else{//transcluded
   a.title = localtitles['en']
   a.setAttribute('href', wgScript+'?title='+encodeURIComponent(wgPageName)+'&action=edit&section=0')
 }
 if (localtitles[wgUserLanguage]) a.title = localtitles[wgUserLanguage]
})
個人用ツール
名前空間
変種
操作
案内
ツールボックス