Jump to content

User:The Transhumanist/ViewAsOutline-Article.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by The Transhumanist (talk | contribs) at 06:50, 5 January 2018 (make the bullets go bye bye). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// <syntaxhighlight lang="javascript">

/*

(Script under development - not yet functional)

ADD PAGE NAME HERE = ADD NATURAL LANGUAGE INTERPRETATION HERE

What it does: ADD BRIEF DESCRIPTION OF FUNCTION HERE

When completed,
this script will...


Brief comments are provided within the source code below. For extensive explanatory 
notes on what the source code does and how it works, see the Script's workshop on 
the talk page.

*/

// ============== Set up ==============

// Start off with a bodyguard function to reserve the aliases mw and $
( function ( mw, $ ) {

    // we can now rely on mw and $ within the safety of our “bodyguard” function, to mean 
    // "mediawiki" and "jQuery", respectively

    // ============== ready() event listener/handler ==============
    // below is jQuery short-hand for $(document).ready(function() { ... });
    // it makes the rest of the script wait until the page's DOM is loaded and ready
    $(function() {
        
		// ============== activation filters ==============
        // Only activate on Vector skin
        if ( mw.config.get( 'skin' ) === 'vector' ) {

	        // Run this script only if "Outline " is in the page title
			if (document.title.indexOf("Outline ") != -1) {

				// End of set up
			
        	    // =================== Prep work =====================
				
				// Variable declarations, etc., go here

            	// ================= Core program ================= 

                $( function() {

					// BODY OF PROGRAM
					// Make the bullets go bye bye
					$( "ul" ).css( {"list-style-type":"none", "list-style-image":"none"} );

					// for all uls of class mw-prefixindex-list, wrap the page names with *[[]] - links go between the double square brackets
					// (development note: add Brackets class to prevent matching same entries again)
					var xxx = document.getElementsByClassName("name-class-here");
					var i;
					for (i = 0; i < xxx.length; i++) {
					    xxx[i].outerHTML = xxx[i].outerHTML.replace(/(^<a.*?(<\/a>))/g,'* [[$1]]');
					}

				} );
			}
        }
    } );
}( mediaWiki, jQuery ) );

// </syntaxhighlight>