User:WhitePhosphorus/磷原子4号/edit.js

注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google ChromeFirefoxMicrosoft EdgeSafari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。

//<source lang="javascript">

/*

== 編輯工具欄 ==
*/

/**
 * tip for custom edittools
 * 
 * Maintainers: fdcn@zh.wikipedia
 */
$( function(){
	//在提交新段落時,讓主題欄在特定情況下失效
	if(document.getElementById('no-new-title') && document.editform.wpSection.value=="new") {
		var summaryinputs = document.getElementsByName("wpSummary");
		if(summaryinputs.length) {
			var summaryinput = summaryinputs[0];
			summaryinput.disabled=true;
			summaryinput.value='';
		}
	}
});

( function( $, mw ) { $( function() {
    if ( $( '#editform input[name=wpSection]' ).val() === 'new' ) {
        if ( $( '#no-new-title' ).length ) {
            $( 'input[name="wpSummary"]' ).attr( 'disabled', true );
        }
        return;
    }
    $( '#wpSummaryLabel .mw-summary-preset' ).on( 'click', '.mw-summary-preset-item a', function( e ) {
        e.preventDefault();
        var $this = $( this ), summary = $( 'input[name="wpSummary"]' ).val();
        var $item = $this.parent( '.mw-summary-preset-item' );
        summary = summary.replace( /\s+$/g, '' );
        if ( summary != '' ) {
            summary += ' ';
        }
        summary += $item.attr( 'title' ) || $this.text();
        $this.replaceWith( $this.contents() );
        $( 'input[name="wpSummary"]' ).val( summary );
    } );
} ); } )( jQuery, mediaWiki );

/*

== 强制预览 ==
[[mw:Manual:Force preview]]
*/

// -------------------------------------------------------------------------------
//  Force Preview  JavaScript code - Start
//
//  To allow any group to bypass being forced to preview, 
//  enter the group name in the permittedGroups array.
//  E.g.
//    var permittedGroups = [];                       // force everyone
//    var permittedGroups = [ "user"];                // permit logged-in users 
//    var permittedGroups = [ "sysop", "bureaucrat"]; // permit sysop, bureaucrat 
// -------------------------------------------------------------------------------
var permittedGroups = [ 'confirmed', 'autoconfirmed' ];

function forcePreview() {
	if ( mw.config.get( "wgAction" ) != "edit" ) return;
	if ( mw.config.get( "wgUserGroups" ).filter(function(group) {
		return permittedGroups.indexOf(group) > -1;
	}).length ) return;
	// Doesn't work correctly with live preview
	if ( mw.user.options.get( "uselivepreview" ) == "1" ) return;
	var saveButtons = document.getElementsByName( "wpSave" );
	if ( !saveButtons.length ) return;
	var saveButton = saveButtons[0];
	saveButton.disabled = true;
	saveButton.value = saveButton.value + wgULS( '(请先预览)', '(請先預覽)' );
	saveButton.style.fontWeight = "normal";
	document.getElementById("wpPreview").style.fontWeight = "bold";
}

jQuery(document).ready( forcePreview );
// -----------------------------------------------------
//  Force Preview  JavaScript code - End
// -----------------------------------------------------

/*

== 取消修訂編輯摘要修正 ==
*/
/**
  fix edit summary prompt for undo
  this code fixes the fact that the undo function combined with the "no edit summary prompter" causes problems if leaving the edit summary unchanged
  this was added by [[:en:User:Deskana]], code by [[:en:User:Tra]]
*/
$ (function () {
	var autoSummary=document.getElementsByName('wpAutoSummary')[0];
	if (document.location.search.indexOf("undo=") != -1 && autoSummary)
	{ autoSummary.value=''; }
});

/*

== WP:DYKC編輯時取消編輯摘要空段落標示 ==
*/
$( function(){
	var $wpSummary=$("#editform #wpSummary"), $wpTextbox1=$("#editform #wpTextbox1");
	if($wpSummary.length==0 || $wpTextbox1.length==0) return;
	var wpSummary=$wpSummary.get(0), wpTextbox1=$wpTextbox1.get(0);
	var keyReg= /(?:\n|.)*\|\s*article\s*= *([\S ]*)(?:\n|.)*/m ;
	if(wpSummary.value.indexOf("  ")>=0) wpSummary.value="";
	if(mw.config.get("wgPageName")!="Wikipedia:新条目推荐/候选") return;
	if(wpSummary.value=="/"+"*  *"+"/ " && wpTextbox1.value.match(keyReg) ){}else return;
	var temp=wpTextbox1.value.replace(keyReg, '$1');
	if(!temp) return;
	wpSummary.value=wpSummary.defaultValue="\/"+"* "+temp+" *"+"\/ ";
});


/* Check for any client-side simplified/traditional Chinese conversion */
var checkAntiConv = function() {
    var $ac = $('#wpAntiConv');
    if ($ac.length && $ac.val() != '\u6c49\u6f22') {
        var text = $('#wpTextbox1').val();
        var section = $('input[name=wpSection]').val();
        var basetimestamp = $('input[name=wpEdittime]').val();
        var starttimestamp = $('input[name=wpStarttime]').val();
        $('#editform :input').attr({disabled:true,readOnly:true});
        mw.loader.using(['mediawiki.notification'],function(){
            mw.notify(wgULS(
                '系统检测到您使用了客户端繁简转换软件,且此软件对文本框中的内容进行了转换。请关闭此软件后重新打开编辑界面,再进行编辑。',
                '系統檢測到您使用了用戶端繁簡轉換軟體,且此軟體對文字方塊中的內容進行了轉換。請關閉此軟體後重新打開編輯介面,再進行編輯。'
            ),{autoHide:false});
        });
    } else {
        setTimeout(checkAntiConv, 1000);
    }
};
setTimeout(checkAntiConv, 1000);
//</source>