Content deleted Content added
date fix |
p- |
||
(43 intermediate revisions by 7 users not shown) | |||
Line 7:
// turn on ECMAScript 5 strict mode
'use strict';
// We will not log errors for users using this script due to volume of bugs.
mw.loader.using('mediawiki.storage').then(function () {
mw.storage.session.set( 'client-error-opt-out', '1' );
});
// define global object
var wikEd; if (wikEd === undefined) { wikEd = {}; }
// default to null (all checks are against null so make sure it starts as null)
if (wikEd.paste === undefined) {
wikEd.paste = null;
}
wikEd.Meta = function () {/*
// ==UserScript==
// @name wikEd
// @version 0.9.
// @date
// @namespace https://en.wikipedia.org/wiki/User:Cacycle/
// @description A full-featured in-browser editor for Wikipedia and other MediaWikis
Line 882 ⟶ 893:
// find and replace fields
'.wikEdFindComboInput, .wikEdReplaceComboInput': 'position: relative; margin: 0 5px; top: -1px; white-space: nowrap; vertical-align: bottom; padding: 0; line-height: 20px; font-size: 13px;',
'#wikEdFindText, #wikEdReplaceText': 'padding: 0; font-family: monospace; margin: 0; position: absolute; left: 0; top: 0; z-index: 2; vertical-align: bottom; width: 170px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 18px;',
'#wikEdFindSelect, #wikEdReplaceSelect': 'font-family: monospace; margin: 0; position: relative; left: 0; top: 0; z-index: 1; vertical-align: bottom; width: 190px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 18px;',
// summary field
'.wikEdSummaryComboInput': 'position: relative; margin: 0 0 0 2px; top: 0; white-space: nowrap; padding: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; font-size: 13px;',
'.wikEdSummaryText': 'padding: 0 2px !important; margin: 0; position: absolute; left: 0; top: 0; z-index: 2; vertical-align: bottom; width: auto; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 21px;',
'.wikEdSummarySelect': 'padding: 0; margin: 0; position: relative; left: 0; top: 0; z-index: 1; vertical-align: text-top; width: auto; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 21px;',
Line 1,259 ⟶ 1,270:
// use French rules for fix punctuation
if (wikEd.config.fixPunctFrench === undefined) { wikEd.config.fixPunctFrench = false; }
// convert \xa (nbsp) to character entities so they do not get converted to blanks
if (wikEd.config.convertNbspToEntities === undefined) { wikEd.config.convertNbspToEntities = true; }
// wikEd.config.setupHook, executed after wikEd has been set up, usage: wikEd.config.setupHook.push(YourFunction);
Line 1,386 ⟶ 1,400:
wikEd.InitObject(wikEd.config.translations, {
'en': '',
'af': wikEd.config.homeBaseUrl + 'w/index.php?action=raw&ctype=text/javascript&title=User:Arnobarnard/wikEd_international_af.js', // Afrikaans
'ar': wikEd.config.homeBaseUrl + 'w/index.php?action=raw&ctype=text/javascript&title=User:ترجمان05/wikEd_international_ar.js', // Arabic
'
'zh-
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'
'hsb': wikEd.config.homeBaseUrl + 'w/index.php?action=raw&ctype=text/javascript&title=User:Michalwiki/wikEd_international_hsb.js', // Upper Sorbian
'ur': wikEd.config.homeBaseUrl + 'w/index.php?action=raw&ctype=text/javascript&title=User:Obaid_Raza/wikEd_international_ur.js', // Urdu
'vi': wikEd.config.homeBaseUrl + 'w/index.php?action=raw&ctype=text/javascript&title=User:Vinhtantran/wikEd_international_vi.js' // Vietnamese
});
};
Line 1,436 ⟶ 1,453:
// vector (see https://bugzilla.wikimedia.org/show_bug.cgi?id=19527)
vector_old: [ 'p-personal', true, true, ['content', 'bodyContent', 'contentSub', 'left-navigation', 'p-namespaces', 'p-cactions'] ],
vector_new: [ 'p-personal', true, true, ['content', 'bodyContent', 'contentSub', 'left-navigation', 'p-
// citizendium.org
Line 1,496 ⟶ 1,513:
wikEd.editSection = null;
// beta toolbar, CodeEditor, CodeMirror
wikEd.useBetaToolbar = false;
wikEd.useCodeEditor = false;
wikEd.codeEditorButtonPollCount = 0;
wikEd.useCodeMirror = false;
// history
Line 1,518 ⟶ 1,536:
wikEd.logo = null;
wikEd.logoList = null;
wikEd.debug = null;
wikEd.wikiEditor = null;
Line 1,768 ⟶ 1,785:
if (wikEd.browserFlavor === undefined) { wikEd.browserFlavor = ''; }
if (wikEd.browserVersion === undefined) { wikEd.browserVersion = 0; }
if (wikEd.browserVersionStr === undefined) { wikEd.browserVersionStr = ''; }
if (wikEd.msie === undefined) { wikEd.msie = false; }
if (wikEd.mozilla === undefined) { wikEd.mozilla = false; }
Line 1,980 ⟶ 1,998:
// check for Google Chrome (AppleWebKit/525.13 (KHTML, like Gecko) Chrome/0.2.149.30 Safari/525.13)
else {
regExpMatchAgent = window.navigator.userAgent.match(/\b(Chrome)\W+(\d+\.\d+)(\S+)/i);
if (regExpMatchAgent !== null) {
wikEd.browserName = 'Chrome';
wikEd.browserVersion = parseFloat(regExpMatchAgent[2]);
wikEd.browserVersionStr = regExpMatchAgent[ 2 ] + regExpMatchAgent[ 3 ];
wikEd.chrome = true;
}
Line 2,040 ⟶ 2,059:
// parse global-context (MediaWiki) variables into hash (for Greasemonkey)
var globalNames = ['skin', 'wgServer', 'wgTitle', 'wgCanonicalNamespace', 'wgArticlePath', 'wgScript', 'wgScriptPath', 'wgUserName', 'wgCurRevisionId', 'wgContentLanguage', 'wgUserLanguage
if (wikEd.greasemonkey === true) {
globalNames.push('wikEdConfig', 'wikEdText');
Line 2,449 ⟶ 2,468:
if (wikEd.browserVersion < 0.2) {
wikEd.browserNotSupported = true;
}
// Chrome bug https://code.google.com/p/chromium/issues/detail?id=528382, version 45.0.2454.85 - 45.0.2454.93
else if (wikEd.browserVersion == 45) {
var regExpMatch = /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/.exec( wikEd.browserVersionStr );
if ( ( regExpMatch !== null ) && ( regExpMatch[ 3 ] == 2454 ) && ( regExpMatch[ 4 ] >= 85 ) && ( regExpMatch[ 4 ] < 93 ) ) {
wikEd.browserNotSupported = true;
}
}
break;
Line 2,619 ⟶ 2,646:
// do not turn on when code editor is active
if ( ( wikEd.useCodeEditor === true) || ( wikEd.useCodeMirror === true ) ) {
wikEd.disabled = true;
wikEd.SetLogo('incompatible', 'Code Editor');
Line 3,498 ⟶ 3,525:
if (wikEd.fixRegExTypo !== null) {
wikEd.fixRegExTypo.style.display = 'none';
}
Line 3,818 ⟶ 3,837:
}
if (typeof jQuery == 'function') {
// hook wikEd into the enhanced new edit toolbar, not Greasemonkey compatible
jQuery('#wpTextbox1').bind('encapsulateSelection', function (e, before, inside, after) {
if (wikEd.useWikEd === true) {
Line 3,825 ⟶ 3,844:
}
});
// allow other code to cause us to update the textarea via textSelection( 'getContents' )
try {
$( '#wpTextbox1' ).textSelection(
'register',
{
getContents: function () {
if ( wikEd && wikEd.useWikEd ) {
wikEd.UpdateTextarea();
}
return $( this ).val();
}
}
);
} catch ( e ) {
// catch `Error: Another textSelection API was already registered`
// When something else is registered should it unregister the existing one?
// Or should it detect this earlier and not run at all?
}
}
Line 3,939 ⟶ 3,977:
wikEd.frameHtml = wikEd.frameDocument.documentElement;
wikEd.frameBody = wikEd.frameDocument.body;
if (!wikEd.frameBody) {
return;
}
// set frame body properties
Line 4,053 ⟶ 4,094:
}
// check for code editor cookies
if ( ( wikEd.jsPage === true ) || ( wikEd.cssPage === true ) ) {
if ( wikEd.wikiGlobals.wgPageContentModel === undefined ) {
if ( wikEd.GetCookie( 'wikiEditor-0-codeEditor-enabled' ) == 1 ) {
wikEd.useCodeEditor = true;
}
}
else if ( wikEd.wikiGlobals.wgPageContentModel != 'wikitext' ) {
if ( wikEd.GetCookie( 'wikiEditor-0-codeEditor-enabled' ) == 1 ) {
wikEd.useCodeEditor = true;
}
}
}
// this can't work 100 %, because async...
// not a problem for gadget, as it ensures this dependency is loaded
if (
( window.mw !== undefined ) &&
( window.mw.loader.using !== undefined )
) {
window.mw.loader.using( 'user.options' ).then(
function() {
if (
( ( wikEd.jsPage === true ) || ( wikEd.cssPage === true) ) &&
(window.mw.user.options.get( 'usebetatoolbar' ) == 1 )
) {
wikEd.useBetaToolbar = true;
if ( window.mw.user.options.get('usecodeeditor') == 1 ) {
wikEd.useCodeEditor = true;
}
}
// CodeMirror extension for syntax highlighting
if ( window.mw.user.options.get('codemirror-syntax-highlight') == 1 ) {
wikEd.useCodeMirror = true;
}
}
}
return;
Line 5,031 ⟶ 5,089:
wikEd.PastePoll = function () {
if (!wikEd.paste
return;
}
Line 5,176 ⟶ 5,234:
// vertical pos
if (rect && rect.bottom + barHeight <= parseInt(wikEd.frameHeight)) {
wikEd.buttonBarPasted.style.top = rect.bottom + 'px';
}
Line 8,565 ⟶ 8,623:
// check for named references defined outside edited section
if (
true
) {
Line 8,668 ⟶ 8,725:
else {
// attach <style> stylesheet declarations to document
var regExpMatch;
var regExp = /<()style\b[^>]*?type="text\/css">((.|\n)*?)<\/style>/gi;
Line 8,882 ⟶ 8,939:
var cacheKey = 'wikEd' + wikEd.filePreviewIds[ i ];
var fileObj = wikEd.filePreviewCache[ cacheKey ];
if ( fileObj !== undefined ) {
span.style.backgroundImage = 'url(' + fileObj.url + ')';
Line 10,716 ⟶ 10,772:
// check if api is enabled
if
return;
}
Line 12,155 ⟶ 12,211:
else if ( (hrefParamTitle !== null) && (hrefParamSpecial !== true) ) {
linkArticle = hrefParamTitle;
linkArticle = linkArticle && linkArticle.replace(/_/g, ' ');
linkArticle = decodeURIComponent(linkArticle);
}
Line 12,162 ⟶ 12,218:
else if (hrefUrlArticle !== null) {
linkArticle = hrefUrlArticle;
linkArticle = linkArticle && linkArticle.replace(/_/g, ' ');
linkArticle = decodeURIComponent(linkArticle);
}
Line 12,177 ⟶ 12,233:
// format wiki link
if (linkArticle && linkArticle !== '') {
// check for wiki image
Line 16,366 ⟶ 16,422:
else {
wikEd.CleanNodes(wikEd.frameDocument);
obj.html = wikEd.frameBody.innerHTML;
} else {
return;
}
}
Line 16,413 ⟶ 16,474:
// convert \xa (nbsp) to character entities so they do not get converted to blanks
if (wikEd.config.convertNbspToEntities === true) {
obj.html = obj.html.replace(/\xa0/g, '&nbsp;');
}
}
Line 16,765 ⟶ 16,828:
//
wikEd.MainSwitch = function ( event ) {
// ctrl-click for debug info
if ( event.ctrlKey === true ) {
return;
}
// disable function if browser is incompatible
if ( wikEd.browserNotSupported === true ) {
return;
}
// enable wikEd
if ( wikEd.disabled === true ) {
// check for active code editor
Line 16,784 ⟶ 16,847:
// do not turn on when code editor is active
if ( ( wikEd.useCodeEditor === true ) || ( wikEd.useCodeMirror === true ) ) {
wikEd.disabled = true;
wikEd.SetLogo( 'incompatible', 'Code Editor' );
return;
}
wikEd.disabled = false;
wikEd.SetPersistent( 'wikEdDisabled', '0', 0, '/' );
// turn rich text frame on
if ( wikEd.turnedOn === false ) {
// setup wikEd
wikEd.TurnOn( false );
}
else {
wikEd.SetLogo();
var useWikEd = false;
if ( document.getElementById('wikEdUseWikEd').getAttribute('checked') == 'true' ) {
useWikEd = true;
}
wikEd.SetEditArea( useWikEd );
wikEd.useWikEd = useWikEd;
window.wikEdUseWikEd = wikEd.useWikEd;
if ( wikEd.useWikEd === true ) {
wikEd.UpdateFrame();
}
wikEd.buttonBarWrapper.style.display = 'block';
wikEd.buttonBarPreview.style.display = 'block';
if ( wikEd.buttonBarJump !== null ) {
wikEd.buttonBarJump.style.display = 'block';
}
// run scheduled custom functions
wikEd.ExecuteHook( wikEd.config.onHook );
}
}
Line 16,824 ⟶ 16,887:
// disable wikEd
else {
wikEd.SetPersistent( 'wikEdDisabled', '1', 0, '/' );
if ( wikEd.turnedOn === false ) {
wikEd.useWikEd = false;
window.wikEdUseWikEd = wikEd.useWikEd;
Line 16,834 ⟶ 16,897:
// interrupt fullscreen mode
if ( wikEd.fullscreen === true ) {
wikEd.FullScreen( false );
}
// turn classic textarea on
if ( wikEd.useWikEd === true ) {
wikEd.UpdateTextarea();
}
Line 16,845 ⟶ 16,908:
// reset textarea dimensions
wikEd.textarea.style.height = ( wikEd.textareaOffsetHeightInitial - wikEd.frameBorderHeight ) + 'px';
wikEd.textarea.style.width = '100%';
wikEd.frameHeight = ( wikEd.textareaOffsetHeightInitial - wikEd.frameBorderHeight ) + 'px';
wikEd.frameWidth = ( wikEd.editorWrapper.clientWidth - wikEd.frameBorderWidth ) + 'px';
wikEd.frame.style.height = wikEd.frameHeight;
wikEd.frame.style.width = wikEd.frameWidth;
Line 16,861 ⟶ 16,924:
wikEd.localPrevWrapper.style.height = 'auto';
if ( wikEd.buttonBarJump !== null ) {
wikEd.buttonBarJump.style.display = 'none';
}
Line 16,871 ⟶ 16,934:
// run scheduled custom functions
wikEd.ExecuteHook( wikEd.config.offHook );
}
}
Line 17,469 ⟶ 17,532:
//
wikEd.GetPersistent = function ( name ) {
var getStr;
Line 17,477 ⟶ 17,540:
// get a value from web storage
if ( wikEd.webStorage === true ) {
try {
getStr = window.localStorage.getItem( name );
}
catch ( exception ) {
wikEd.webStorage = false;
}
}
if ( wikEd.webStorage === false ) {
getStr = GM_getValue( name, '' );
getStr = wikEd.GetCookie( name );
}
}
// return string
if ( typeof getStr != 'string' ) {
getStr = '';
}
Line 17,503 ⟶ 17,573:
//
wikEd.SetPersistent = function ( name, value, expires, path, ___domain, secure ) {
// check for web storage
Line 17,509 ⟶ 17,579:
// set a value in web storage
if ( wikEd.webStorage === true ) {
if ( expires == -1 ) {
value = '';
}
try {
window.localStorage.setItem( name, value );
}
catch ( exception ) {
wikEd.webStorage = false;
}
}
if ( wikEd.webStorage === false ) {
if ( expires == -1 ) {
value = '';
}
// see http://wiki.greasespot.net/Greasemonkey_access_violation
window.setTimeout( function() {
GM_setValue( name, value );
}, 0 );
}
// else set a cookie value
else {
}
}
return;
Line 18,104 ⟶ 18,181:
// API request
if ( ( livePreview === true ) ) {
var postFields = {
'format': 'xml',
'action': 'parse',
'
'
'text': textValue
};
var requestUrl = wikEd.scriptURL + 'api.php';
Line 18,143 ⟶ 18,221:
}
else {
postFields[ 'title' ] = 'wikEd_preview';
}
postFields[ 'action' ] = 'submit';
postFields[ 'wpTextbox1' ] = textValue;
if ( wikEd.starttime !== null ) {
postFields[ 'wpStarttime' ] = wikEd.starttime;
}
if ( wikEd.edittime !== null ) {
postFields[ 'wpEdittime' ] = wikEd.edittime;
}
if ( wikEd.editToken !== null ) {
postFields[ 'wpEditToken' ] = wikEd.editToken;
}
if ( wikEd.autoSummary !== null ) {
postFields[ 'wpAutoSummary' ] = wikEd.autoSummary;
}
postFields[ 'wpPreview'] = 'true';
// keep for backward compatibility
if ( livePreview !== false ) {
postFields[ 'live' ] = 'true';
}
Line 18,289 ⟶ 18,369:
// uses postMessage, head script, and JSON encoding for Greasemonkey global to GM context access
wikEd.GetGlobals = function ( names, gotGlobalsHook ) {
if ( gotGlobalsHook !== undefined ) {
wikEd.gotGlobalsHook.push( gotGlobalsHook );
}
// code already running in global context
if ( wikEd.greasemonkey !== true ) {
var globalScopeCode = '';
for ( var i = 0; i < names.length; i ++ ) {
if ( ( window.mw !== undefined ) && ( window.mw.config !== undefined ) ) {
}
globalScopeCode += 'if (typeof ' + names[i] + ' != \'undefined\') { wikEd.wikiGlobals.' + names[ i ] + ' = ' + names[ i ] + '; }';
}
}
if ( gotGlobalsHook !== undefined ) {
globalScopeCode += 'wikEd.ExecuteHook(wikEd.gotGlobalsHook[' + (wikEd.gotGlobalsHook.length - 1) + '], true);';
}
eval( globalScopeCode );
return;
}
// prepare code to be executed in global context for Greasemonkey
if ( ( window.postMessage === undefined ) || ( typeof JSON != 'object' ) ) {
return;
}
var globalScopeCode = 'var globalObj = {};';
if ( gotGlobalsHook !== undefined ) {
wikEd.gotGlobalsHook.push( gotGlobalsHook );
globalScopeCode += 'globalObj.hookNumber = ' + ( wikEd.gotGlobalsHook.length - 1 ) + ';';
}
globalScopeCode += 'globalObj.scriptId = \'wikEdGetGlobalScript' + wikEd.getGlobalsCounter + '\';';
Line 18,324 ⟶ 18,406:
// add global scope variables
for ( var i = 0; i < names.length; i ++ ) {
globalScopeCode += '' +
'if (typeof ' + names[ i ] + ' != \'undefined\') {' +
' globalObj.wikEdGetGlobals[\'' + names[ i ] + '\'] = ' + names[ i ] + ';' +
'}';
}
globalScopeCode += 'var globalObjStr = \'wikEd:\' + JSON.stringify(globalObj);';
var origin = wikEd.pageOrigin;
if ( origin == 'file://' ) {
origin = '*';
}
Line 18,338 ⟶ 18,420:
// create head script to execute the code
var script = document.createElement( 'script' );
script.id = 'wikEdGetGlobalScript' + wikEd.getGlobalsCounter;
wikEd.getGlobalsCounter ++;
if ( script.innerText !== undefined ) {
script.innerText = globalScopeCode;
}
Line 18,347 ⟶ 18,429:
script.textContent = globalScopeCode;
}
wikEd.head.appendChild( script );
return;
};
Line 18,525 ⟶ 18,607:
//
wikEd.Debug = function ( objectName, object, usePopup ) {
// string
var value = '';
if ( typeof object == 'string' ) {
value = ': ' + '"' + object + '"';
}
// objects
else if ( typeof object == 'object' ) {
// null
if ( object === null ) {
value = ': [null]';
}
Line 18,543 ⟶ 18,625:
// whole highlighting parse tree array
// { 'tag': , 'parent': , 'firstChild': , 'nextSibling': , 'start': , 'tagLength': , 'type': , 'paired': , 'pairedPos': , 'left': , 'right': , 'index': , 'attrib': , 'newline': }
else if ( ( typeof object[0] == 'object' ) && ( typeof object[0].type == 'string' ) ) {
value = ': Parse tree full:\n';
for ( var i = 0; i < object.length; i ++ ) {
value += i + ': ';
var node = object[ i ];
if ( node === null ) {
value += '(null)\n';
}
else {
if ( node.type == 'root' ) {
value += '[type: "' + node.type + '"]\n';
}
else {
value += '[type: "' + node.type + '", tag: "' + node.tag + '", start: ' + node.start + ', tagLength: ' + node.tagLength + ', parent: ' + node.parent;
if ( typeof node.left == 'string' ) {
value += ', left: "' + node.left + '", right: "' + node.right + '"';
}
Line 18,604 ⟶ 18,686:
// DOM nodes
else if ( typeof object.nodeName == 'string' ) {
value = ': [node; nodeName: ' + object.nodeName;
if ( typeof object.id == 'string' ) {
if ( object.id !== '' ) {
value += ', id: "' + object.id + '"';
}
}
if ( typeof object.className == 'string' ) {
if ( object.className !== '' ) {
value += ', class: "' + object.className + '"';
}
}
if ( typeof object.nodeValue == 'string' ) {
value += ', nodeValue: "' + object.nodeValue + '"';
}
if ( ( typeof object.innerHTML == 'string' ) && ( object.innerHTML !== '' ) ) {
var html = object.innerHTML;
if ( html.length > wikEd.config.debugInnerHtmlLength ) {
html = html.substr(0, wikEd.config.debugInnerHtmlLength - 3) + '...';
}
Line 18,636 ⟶ 18,718:
// undefined
else if ( object === undefined ) {
value = '';
}
Line 18,647 ⟶ 18,729:
// use debug textarea
var useDebug = false;
if ( ( wikEd.debug !== undefined ) && ( wikEd.debug !== null ) ) {
useDebug = true;
}
if ( useDebug === true ) {
if ( wikEd.debugOpen === false ) {
wikEd.debugWrapper.style.display = 'block';
// resize fullscreen frame
if ( wikEd.fullscreen === true ) {
wikEd.ResizeWindowHandler();
}
else {
window.scroll( 0, wikEd.GetOffsetTop( wikEd.debug ) );
}
wikEd.debugOpen = true;
Line 18,666 ⟶ 18,748:
// cut text if having reached maximum length
value = objectName + value + '\n';
if ( wikEd.debug.value.length > wikEd.config.debugMaxLength ) {
wikEd.debug.value = value + wikEd.debug.value.substr(0, wikEd.config.debugMaxLength * 2 / 3);
}
Line 18,675 ⟶ 18,757:
// use popup alert
else if ( usePopup === true ) {
if ( object === null ) {
window.alert( objectName );
}
else {
window.alert( objectName + ': ' + value );
}
}
Line 18,687 ⟶ 18,769:
else {
var msg;
if ( object === null ) {
msg = objectName;
}
Line 18,693 ⟶ 18,775:
msg = objectName + ' ' + value;
}
wikEd.ConsoleLog( msg );
}
return;
|