From dba0d8ceb168f2afe83bcffa481099dc858efc12 Mon Sep 17 00:00:00 2001 From: Krinkle Date: Sun, 15 May 2011 10:34:28 +0000 Subject: [PATCH] Goodbye mediawiki.util.test. In no particular order: * Uses ugly eval() * Initially meant to cross-browser test mediawiki.util.test, (re|ab|)used for random other tests * Uses ugly html-element innerText comparison to validate tests * Loaded for all debug=true requests * Not automatable, not distributeable, not pushable, not compatible with TestSwarm. * I wrote it on a late sunday night because we needed it. * QUnit is the opposite of this. To run the test suite: visit /w/resources/test/ --- resources/Resources.php | 1 - resources/mediawiki.util/mediawiki.util.js | 611 --------------------- 2 files changed, 612 deletions(-) delete mode 100644 resources/mediawiki.util/mediawiki.util.js diff --git a/resources/Resources.php b/resources/Resources.php index efc38f5161..134b66598d 100644 --- a/resources/Resources.php +++ b/resources/Resources.php @@ -444,7 +444,6 @@ return array( 'jquery.makeCollapsible', 'jquery.placeholder', ), - 'debugScripts' => 'resources/mediawiki.util/mediawiki.util.test.js', ), 'mediawiki.util.jpegmeta' => array( 'scripts' => 'resources/mediawiki.util/mediawiki.util.jpegmeta.js', diff --git a/resources/mediawiki.util/mediawiki.util.js b/resources/mediawiki.util/mediawiki.util.js deleted file mode 100644 index 67b7dde393..0000000000 --- a/resources/mediawiki.util/mediawiki.util.js +++ /dev/null @@ -1,611 +0,0 @@ -/** - * Utilities - */ -( function( $, mw ) { - - mw.util = { - - /* Initialisation */ - 'initialised' : false, - 'init' : function() { - if ( this.initialised === false ) { - this.initialised = true; - - // Any initialisation after the DOM is ready - $( function() { - - /* Set up $.messageBox */ - $.messageBoxNew( { - 'id': 'mw-js-message', - 'parent': '#content' - } ); - - // Shortcut to client profile return - var profile = $.client.profile(); - - /* Set tooltipAccessKeyPrefix */ - - // Opera on any platform - if ( profile.name == 'opera' ) { - mw.util.tooltipAccessKeyPrefix = 'shift-esc-'; - - // Chrome on any platform - } else if ( profile.name == 'chrome' ) { - // Chrome on Mac or Chrome on other platform ? - mw.util.tooltipAccessKeyPrefix = ( profile.platform == 'mac' - ? 'ctrl-option-' : 'alt-' ); - - // Non-Windows Safari with webkit_version > 526 - } else if ( profile.platform !== 'win' - && profile.name == 'safari' - && profile.layoutVersion > 526 ) { - mw.util.tooltipAccessKeyPrefix = 'ctrl-alt-'; - - // Safari/Konqueror on any platform, or any browser on Mac - // (but not Safari on Windows) - } else if ( !( profile.platform == 'win' && profile.name == 'safari' ) - && ( profile.name == 'safari' - || profile.platform == 'mac' - || profile.name == 'konqueror' ) ) { - mw.util.tooltipAccessKeyPrefix = 'ctrl-'; - - // Firefox 2.x - } else if ( profile.name == 'firefox' && profile.versionBase == '2' ) { - mw.util.tooltipAccessKeyPrefix = 'alt-shift-'; - } - - /* Enable CheckboxShiftClick */ - $( 'input[type=checkbox]:not(.noshiftselect)' ).checkboxShiftClick(); - - /* Emulate placeholder if not supported by browser */ - if ( !( 'placeholder' in document.createElement( 'input' ) ) ) { - $( 'input[placeholder]' ).placeholder(); - } - - /* Fill $content var */ - if ( $( '#bodyContent' ).length ) { - // Vector, Monobook, Chick etc. - mw.util.$content = $( '#bodyContent' ); - - } else if ( $( '#mw_contentholder' ).length ) { - // Modern - mw.util.$content = $( '#mw_contentholder' ); - - } else if ( $( '#article' ).length ) { - // Standard, CologneBlue - mw.util.$content = $( '#article' ); - - } else { - // #content is present on almost all if not all skins. Most skins (the above cases) - // have #content too, but as an outer wrapper instead of the article text container. - // The skins that don't have an outer wrapper do have #content for everything - // so it's a good fallback - mw.util.$content = $( '#content' ); - } - - /* Enable makeCollapse */ - $( '.mw-collapsible' ).makeCollapsible(); - - /* Table of Contents toggle */ - var $tocContainer = $( '#toc' ), - $tocTitle = $( '#toctitle' ), - $tocToggleLink = $( '#togglelink' ); - // Only add it if there is a TOC and there is no toggle added already - if ( $tocContainer.size() && $tocTitle.size() && !$tocToggleLink.size() ) { - var hideTocCookie = $.cookie( 'mw_hidetoc' ); - $tocToggleLink = $( '' ).text( mw.msg( 'hidetoc' ) ).click( function(e){ - e.preventDefault(); - mw.util.toggleToc( $(this) ); - } ); - $tocTitle.append( $tocToggleLink.wrap( '' ).parent().prepend( ' [' ).append( '] ' ) ); - - if ( hideTocCookie == '1' ) { - // Cookie says user want toc hidden - $tocToggleLink.click(); - } - } - } ); - - return true; - } - return false; - }, - - /* Main body */ - - /** - * Encode the string like PHP's rawurlencode - * - * @param str String to be encoded - */ - 'rawurlencode' : function( str ) { - str = ( str + '' ).toString(); - return encodeURIComponent( str ) - .replace( /!/g, '%21' ).replace( /'/g, '%27' ).replace( /\(/g, '%28' ) - .replace( /\)/g, '%29' ).replace( /\*/g, '%2A' ).replace( /~/g, '%7E' ); - }, - - /** - * Encode page titles for use in a URL - * We want / and : to be included as literal characters in our title URLs - * as they otherwise fatally break the title - * - * @param str String to be encoded - */ - 'wikiUrlencode' : function( str ) { - return this.rawurlencode( str ) - .replace( /%20/g, '_' ).replace( /%3A/g, ':' ).replace( /%2F/g, '/' ); - }, - - /** - * Append a new style block to the head - * - * @param text String CSS to be appended - * @return CSSStyleSheet object - */ - 'addCSS' : function( text ) { - var s = document.createElement( 'style' ); - s.type = 'text/css'; - s.rel = 'stylesheet'; - if ( s.styleSheet ) { - s.styleSheet.cssText = text; // IE - } else { - s.appendChild( document.createTextNode( text + '' ) ); // Safari sometimes borks on null - } - document.getElementsByTagName("head")[0].appendChild( s ); - return s.sheet || s; - }, - - /** - * Hide/show the table of contents element - * - * @param $toggleLink jQuery object of the toggle link - * @return String boolean visibility of the toc (true means it's visible) - */ - 'toggleToc' : function( $toggleLink ) { - var $tocList = $( '#toc ul:first' ); - - // This function shouldn't be called if there's no TOC, - // but just in case... - if ( $tocList.size() ) { - if ( $tocList.is( ':hidden' ) ) { - $tocList.slideDown( 'fast' ); - $toggleLink.text( mw.msg( 'hidetoc' ) ); - $.cookie( 'mw_hidetoc', null, { - expires: 30, - path: '/' - } ); - return true; - } else { - $tocList.slideUp( 'fast' ); - $toggleLink.text( mw.msg( 'showtoc' ) ); - $.cookie( 'mw_hidetoc', '1', { - expires: 30, - path: '/' - } ); - return false; - } - } else { - return false; - } - }, - - /** - * Get the full URL to a page name - * - * @param str Page name to link to - * @return Full URL for page with name of 'str' or false on error - */ - 'wikiGetlink' : function( str ) { - - return mw.config.get( 'wgArticlePath' ).replace( '$1', this.wikiUrlencode( str ) ); - }, - - /** - * Grab the URL parameter value for the given parameter. - * Returns null if not found. - * Beware! When action paths are enabled (wgActionPaths) using this function - * to retrieve the 'action' or 'title' parameter will probably fail since - * those parameters are hidden in the path. - * To safely query for: - * 'action' use getActionFrom( url ) - * 'title' use getTitleFrom( url ) - * - * @param param The parameter name - * @param url URL to search through (optional) - */ - 'getParamValue' : function( param, url ) { - url = url ? url : document.location.href; - // Get last match, stop at hash - var re = new RegExp( '[^#]*[&?]' + $.escapeRE( param ) + '=([^&#]*)' ); - var m = re.exec( url ); - if ( m && m.length > 1 ) { - return decodeURIComponent( m[1] ); - } - return null; - }, - - /** - * Try to find the wiki action for a given URL with actions paths support - * - * @param url URL to search for a wiki action - */ - 'getActionFrom' : function( url ) { - // attempt to get the action from the parameter [&?]action= - var action = mw.util.getParamValue( 'action', url ); - if( action !== null ) { - return action; - } - - // now from the action paths - var actionPaths = mw.config.get( 'wgActionPaths' ); - if( actionPaths.length == 0 ) { - actionPaths['view'] = mw.config.get( 'wgArticlePath' ); - } - var action = ''; - for ( action in actionPaths ) { - var actionRe = new RegExp( actionPaths[action].replace( '$1', '.*?' ) ); - if( url.match( actionRe ) ) { - return action; - } - } - - return null; - }, - - /** - * Try to find the wiki title for a given URL with actions paths support - * - * @param url URL to search for a title - */ - 'getTitleFrom' : function( url ) { - // attempt to get the title from the parameter [&?]title= - var title = mw.util.getParamValue( 'title', url ); - if( title !== null ) { - return title; - } - - // now from the action paths - var actionPaths = mw.config.get( 'wgActionPaths' ); - if( actionPaths.length == 0 ) { - actionPaths['view'] = mw.config.get( 'wgArticlePath' ); - } - var action = ''; - for ( action in actionPaths ) { - var actionRe = new RegExp( '.*' + actionPaths[action].replace( '$1', '([^&?#]+)' ) ); - var title = url.match( actionRe ); - if( title !== null ) { - return title[1]; - } - } - - return null; - }, - - // Access key prefix. - // Will be re-defined based on browser/operating system detection in - // mw.util.init(). - 'tooltipAccessKeyPrefix' : 'alt-', - - // Regex to match accesskey tooltips - 'tooltipAccessKeyRegexp': /\[(ctrl-)?(alt-)?(shift-)?(esc-)?(.)\]$/, - - /** - * Add the appropriate prefix to the accesskey shown in the tooltip. - * If the nodeList parameter is given, only those nodes are updated; - * otherwise, all the nodes that will probably have accesskeys by - * default are updated. - * - * @param nodeList jQuery object, or array of elements - */ - 'updateTooltipAccessKeys' : function( nodeList ) { - var $nodes; - if ( nodeList instanceof jQuery ) { - $nodes = nodeList; - } else if ( nodeList ) { - $nodes = $( nodeList ); - } else { - // Rather than scanning all links, just the elements that - // contain the relevant links - this.updateTooltipAccessKeys( - $( '#column-one a, #mw-head a, #mw-panel a, #p-logo a' ) ); - - // these are rare enough that no such optimization is needed - this.updateTooltipAccessKeys( $( 'input' ) ); - this.updateTooltipAccessKeys( $( 'label' ) ); - return; - } - - $nodes.each( function ( i ) { - var tip = $(this).attr( 'title' ); - if ( !!tip && mw.util.tooltipAccessKeyRegexp.exec( tip ) ) { - tip = tip.replace( mw.util.tooltipAccessKeyRegexp, - '[' + mw.util.tooltipAccessKeyPrefix + "$5]" ); - $(this).attr( 'title', tip ); - } - } ); - }, - - // jQuery object that refers to the page-content element - // Populated by init() - '$content' : null, - - /** - * Add a link to a portlet menu on the page, such as: - * - * p-cactions (Content actions), p-personal (Personal tools), - * p-navigation (Navigation), p-tb (Toolbox) - * - * The first three paramters are required, others are optionals. Though - * providing an id and tooltip is recommended. - * - * By default the new link will be added to the end of the list. To - * add the link before a given existing item, pass the DOM node - * (document.getElementById( 'foobar' )) or the jQuery-selector - * ( '#foobar' ) of that item. - * - * @example mw.util.addPortletLink( - * 'p-tb', 'http://mediawiki.org/', - * 'MediaWiki.org', 't-mworg', 'Go to MediaWiki.org ', 'm', '#t-print' - * ) - * - * @param portlet ID of the target portlet ( 'p-cactions' or 'p-personal' etc.) - * @param href Link URL - * @param text Link text - * @param id ID of the new item, should be unique and preferably have - * the appropriate prefix ( 'ca-', 'pt-', 'n-' or 't-' ) - * @param tooltip Text to show when hovering over the link, without accesskey suffix - * @param accesskey Access key to activate this link (one character, try - * to avoid conflicts. Use $( '[accesskey=x]' ).get() in the console to - * see if 'x' is already used. - * @param nextnode DOM node or jQuery-selector string of the item that the new - * item should be added before, should be another item in the same - * list, it will be ignored otherwise - * - * @return The DOM node of the new item (a LI element, or A element for - * older skins) or null. - */ - 'addPortletLink' : function( portlet, href, text, id, tooltip, accesskey, nextnode ) { - - // Check if there's atleast 3 arguments to prevent a TypeError - if ( arguments.length < 3 ) { - return null; - } - // Setup the anchor tag - var $link = $( '' ).attr( 'href', href ).text( text ); - if ( tooltip ) { - $link.attr( 'title', tooltip ); - } - - // Some skins don't have any portlets - // just add it to the bottom of their 'sidebar' element as a fallback - switch ( mw.config.get( 'skin' ) ) { - case 'standard' : - case 'cologneblue' : - $( '#quickbar' ).append( $link.after( '
' ) ); - return $link[0]; - case 'nostalgia' : - $( '#searchform' ).before( $link).before( ' | ' ); - return $link[0]; - default : // Skins like chick, modern, monobook, myskin, simple, vector... - - // Select the specified portlet - var $portlet = $( '#' + portlet ); - if ( $portlet.length === 0 ) { - return null; - } - // Select the first (most likely only) unordered list inside the portlet - var $ul = $portlet.find( 'ul' ); - - // If it didn't have an unordered list yet, create it - if ( $ul.length === 0 ) { - // If there's no
inside, append it to the portlet directly - if ( $portlet.find( 'div:first' ).length === 0 ) { - $portlet.append( '' ); - } else { - // otherwise if there's a div (such as div.body or div.pBody) - // append the