Encyclopedia SpongeBobia
Encyclopedia SpongeBobia
mNo edit summary
Tag: sourceedit
No edit summary
Tag: sourceedit
Line 426: Line 426:
 
'SonicTheEpic': 'Administrator',
 
'SonicTheEpic': 'Administrator',
 
'SpongeFreddy777': 'Administrator',
 
'SpongeFreddy777': 'Administrator',
'Depth_Strider_10': 'Administrator',
+
'Depth Strider 10': 'Administrator',
 
 
 
'Auron~Guardian': 'Assistant • Moderator',
 
'Auron~Guardian': 'Assistant • Moderator',

Revision as of 05:41, 13 November 2016

// <pre><nowiki>
// ============================================================
// BEGIN Dynamic Navigation Bars (experimantal)
// This script is from Wikipedia. For author attribution, please see http://en.wikipedia.org/w/index.php?title=MediaWiki:Common.js&action=history
 
 
/* Test if an element has a certain class **************************************
 *
 * Description: Uses regular expressions and caching for better performance.
 * Maintainers: User:Mike Dillon, User:R. Koot, User:SG
 */
 
var hasClass = (function () {
    var reCache = {};
    return function (element, className) {
        return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className);
    };
})();
 
 /** Collapsible tables *********************************************************
  *
  *  Description: Allows tables to be collapsed, showing only the header. See
  *               [[Wikipedia:NavFrame]].
  *  Maintainers: [[User:R. Koot]]
  */
 
 var autoCollapse = 2;
 var collapseCaption = "less";
 var expandCaption = "more";
 
 function collapseTable( tableIndex )
 {
     var Button = document.getElementById( "collapseButton" + tableIndex );
     var Table = document.getElementById( "collapsibleTable" + tableIndex );
 
     if ( !Table || !Button ) {
         return false;
     }
 
     var Rows = Table.getElementsByTagName( "tr" ); 
 
     if ( Button.firstChild.data == collapseCaption ) {
         for ( var i = 1; i < Rows.length; i++ ) {
             Rows[i].style.display = "none";
         }
         Button.firstChild.data = expandCaption;
     } else {
         for ( var i = 1; i < Rows.length; i++ ) {
             Rows[i].style.display = Rows[0].style.display;
         }
         Button.firstChild.data = collapseCaption;
     }
 }
 
 function createCollapseButtons()
 {
     var tableIndex = 0;
     var NavigationBoxes = new Object();
     var Tables = document.getElementsByTagName( "table" );
 
     for ( var i = 0; i < Tables.length; i++ ) {
         if ( hasClass( Tables[i], "collapsible" ) ) {
             NavigationBoxes[ tableIndex ] = Tables[i];
             Tables[i].setAttribute( "id", "collapsibleTable" + tableIndex );
 
             var Button     = document.createElement( "span" );
             var ButtonLink = document.createElement( "a" );
             var ButtonText = document.createTextNode( collapseCaption );
 
             Button.style.styleFloat = "right";
             Button.style.cssFloat = "right";
             Button.style.fontWeight = "normal";
             Button.style.textAlign = "right";
             Button.style.width = "6em";
 
             ButtonLink.setAttribute( "id", "collapseButton" + tableIndex );
             ButtonLink.setAttribute( "href", "javascript:collapseTable(" + tableIndex + ");" );
             ButtonLink.appendChild( ButtonText );
 
             Button.appendChild( document.createTextNode( "[" ) );
             Button.appendChild( ButtonLink );
             Button.appendChild( document.createTextNode( "]" ) );
 
             var Header = Tables[i].getElementsByTagName( "tr" )[0].getElementsByTagName( "th" )[0];
             /* only add button and increment count if there is a header row to work with */
             if (Header) {
                 Header.insertBefore( Button, Header.childNodes[0] );
                 tableIndex++;
             }
         }
     }
 
     for ( var i = 0;  i < tableIndex; i++ ) {
         if ( hasClass( NavigationBoxes[i], "collapsed" ) || ( tableIndex >= autoCollapse && hasClass( NavigationBoxes[i], "autocollapse" ) ) ) {
             collapseTable( i );
         }
     }
 }
 addOnloadHook( createCollapseButtons );
 
 /** Dynamic Navigation Bars (experimental) *************************************
  *
  *  Description: See [[Wikipedia:NavFrame]].
  *  Maintainers: UNMAINTAINED
  */
 
  // set up the words in your language
  var NavigationBarHide = '[' + collapseCaption + ']';
  var NavigationBarShow = '[' + expandCaption + ']';
 
  // set up max count of Navigation Bars on page,
  // if there are more, all will be hidden
  // NavigationBarShowDefault = 0; // all bars will be hidden
  // NavigationBarShowDefault = 1; // on pages with more than 1 bar all bars will be hidden
  var NavigationBarShowDefault = autoCollapse;
 
 
  // shows and hides content and picture (if available) of navigation bars
  // Parameters:
  //     indexNavigationBar: the index of navigation bar to be toggled
  function toggleNavigationBar(indexNavigationBar)
  {
     var NavToggle = document.getElementById("NavToggle" + indexNavigationBar);
     var NavFrame = document.getElementById("NavFrame" + indexNavigationBar);
 
     if (!NavFrame || !NavToggle) {
         return false;
     }
 
     // if shown now
     if (NavToggle.firstChild.data == NavigationBarHide) {
         for (
                 var NavChild = NavFrame.firstChild;
                 NavChild != null;
                 NavChild = NavChild.nextSibling
             ) {
             if ( hasClass( NavChild, 'NavPic' ) ) {
                 NavChild.style.display = 'none';
             }
             if ( hasClass( NavChild, 'NavContent') ) {
                 NavChild.style.display = 'none';
             }
         }
     NavToggle.firstChild.data = NavigationBarShow;
 
     // if hidden now
     } else if (NavToggle.firstChild.data == NavigationBarShow) {
         for (
                 var NavChild = NavFrame.firstChild;
                 NavChild != null;
                 NavChild = NavChild.nextSibling
             ) {
             if (hasClass(NavChild, 'NavPic')) {
                 NavChild.style.display = 'block';
             }
             if (hasClass(NavChild, 'NavContent')) {
                 NavChild.style.display = 'block';
             }
         }
     NavToggle.firstChild.data = NavigationBarHide;
     }
  }
 
  // adds show/hide-button to navigation bars
  function createNavigationBarToggleButton()
  {
     var indexNavigationBar = 0;
     // iterate over all < div >-elements 
     var divs = document.getElementsByTagName("div");
     for(
             var i=0; 
             NavFrame = divs[i]; 
             i++
         ) {
         // if found a navigation bar
         if (hasClass(NavFrame, "NavFrame")) {
 
             indexNavigationBar++;
             var NavToggle = document.createElement("a");
             NavToggle.className = 'NavToggle';
             NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar);
             NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');');
 
             var NavToggleText = document.createTextNode(NavigationBarHide);
             NavToggle.appendChild(NavToggleText);
             // Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked)
             for(
               var j=0; 
               j < NavFrame.childNodes.length; 
               j++
             ) {
               if (hasClass(NavFrame.childNodes[j], "NavHead")) {
                 NavFrame.childNodes[j].appendChild(NavToggle);
               }
             }
             NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar);
         }
     }
     // if more Navigation Bars found than Default: hide all
     if (NavigationBarShowDefault < indexNavigationBar) {
         for(
                 var i=1; 
                 i<=indexNavigationBar; 
                 i++
         ) {
             toggleNavigationBar(i);
         }
     }
 
  } 
 addOnloadHook( createNavigationBarToggleButton );
 
// END Dynamic Navigation Bars
// ============================================================
// </nowiki></pre>

 
// *************************************************
// Pagetitle rewrite
//
// Rewrites the page's title, used by Template:Title
// *************************************************
 
$(function(){
	var newTitle = $("#title-meta").html();
	if (!newTitle) return;
	var edits = $("#user_masthead_since").text();
	$(".firstHeading,#WikiaUserPagesHeader h1,#WikiaPageHeader h1").html(newTitle);
	$("#user_masthead_head h2").html(newTitle + "<small id='user_masthead_since'>" + edits + "</small>");
});


/* Replaces {{USERNAME}} with the name of the user browsing the page.
   Requires copying Template:USERNAME. */
 
function UserNameReplace() {
    if(typeof(disableUsernameReplace) != 'undefined' && disableUsernameReplace || wgUserName == null) return;
    $("span.insertusername").html(wgUserName);
 }
 addOnloadHook(UserNameReplace);
 
/* End of the {{USERNAME}} replacement */


// **************************************************
// Experimental javascript countdown timer (Splarka)
// Version 0.0.3
// **************************************************
//
// Usage example:
//  <span class="countdown" style="display:none;">
//  Only <span class="countdowndate">January 01 2007 00:00:00 PST</span> until New years.
//  </span>
//  <span class="nocountdown">Javascript disabled.</span>

function updatetimer(i) {
  var now = new Date();
  var then = timers[i].eventdate;
  var diff = count=Math.floor((then.getTime()-now.getTime())/1000);

  // catch bad date strings
  if(isNaN(diff)) { 
    timers[i].firstChild.nodeValue = '** ' + timers[i].eventdate + ' **' ;
    return;
  }

  // determine plus/minus
  if(diff<0) {
    diff = -diff;
    var tpm = ' ';
  } else {
    var tpm = ' ';
  }

  // calcuate the diff
  var left = (diff%60) + ' seconds';
    diff=Math.floor(diff/60);
  if(diff > 0) left = (diff%60) + ' minutes ' + left;
    diff=Math.floor(diff/60);
  if(diff > 0) left = (diff%24) + ' hours ' + left;
    diff=Math.floor(diff/24);
  if(diff > 0) left = diff + ' days ' + left
  timers[i].firstChild.nodeValue = tpm + left;

  // a setInterval() is more efficient, but calling setTimeout()
  // makes errors break the script rather than infinitely recurse
  timeouts[i] = setTimeout('updatetimer(' + i + ')',1000);
}

function checktimers() {
  //hide 'nocountdown' and show 'countdown'
  var nocountdowns = getElementsByClassName(document, 'span', 'nocountdown');
  for(var i in nocountdowns) nocountdowns[i].style.display = 'none'
  var countdowns = getElementsByClassName(document, 'span', 'countdown');
  for(var i in countdowns) countdowns[i].style.display = 'inline'

  //set up global objects timers and timeouts.
  timers = getElementsByClassName(document, 'span', 'countdowndate');  //global
  timeouts = new Array(); // generic holder for the timeouts, global
  if(timers.length == 0) return;
  for(var i in timers) {
    timers[i].eventdate = new Date(timers[i].firstChild.nodeValue);
    updatetimer(i);  //start it up
  }
}
addOnloadHook(checktimers);

// **************************************************
//  - end -  Experimental javascript countdown timer
// **************************************************

/* Temporary Badge Fix */
document.getElementById('WikiaRail').className += ' WikiaRail';

/* User Tags */

window.UserTagsJS = {
	modules: {},
	tags: {
		// group: { associated tag data }
		founder: { u:'Founder', order: -1/0 },
		bureaucrat: { u:'Bureaucrat', order: -1/0 },
		adopter: { u:'Wiki Adopter', order: -1/0 },
		usermonth: { u:'User of the Month', order: -1/0 },
		facebook: 'Facebook Manager',
		twitter: 'Twitter Manager',
		google: 'Google+ Manager',
		assistant: 'Assistant',
		skype: 'Skype Admin',
		captures: 'SpongeBob Captures Manager',
		youtube: 'YouTube Manager',
	}
};

UserTagsJS.modules.custom = {
    'Haldir': ['founder'],
	'AMK152': ['adopter', 'facebook'],
	'Spongebob456': ['twitter', 'google', 'skype'],
	'AW10': ['captures'],
	'ZeoSpark': ['skype'],
	'Nicko756': ['skype'],
	'TheOneFootTallBrickWall': ['usermonth'],
};

UserTagsJS.modules.inactive = 30;
UserTagsJS.modules.newuser = true;
UserTagsJS.modules.autoconfirmed = true;
UserTagsJS.modules.mwGroups = ['bureaucrat', 'chatmoderator', 'patroller', 'rollback', 'bannedfromchat', 'bot', 'bot-global', 'assistant', 'moderator'];

/* End of User Tags */

/* AjaxRC */

AjaxRCRefreshText = 'Auto-refresh';
AjaxRCRefreshHoverText = 'Auto-refreshes the page.';
ajaxPages = ["Special:RecentChanges", "Special:WikiActivity"];

/* End of AjaxRC */

/* LockForums and LockOldBlogs */

window.LockForums = {
    expiryDays: 90,
};

window.LockOldBlogs = {
    expiryDays: 90,
    nonexpiryCategory: "Never archived blogs"
};

/* End of LockForums and LockOldBlogs */

importArticles({
    type: 'script',
    articles: [
        // ...
        'w:c:dev:UserTags/code.js',
        'u:dev:ReferencePopups/code.js',
        'u:dev:DynamicImages/code.js',
        'u:dev:BackToTopButton/code.js',
        'u:dev:MessageWallUserTags/code.js',
        'u:dev:WallGreetingButton/code.js',
        'u:dev:FileUsageAuto-update/code.js',
        'u:dev:Quiz/code.js',
        'u:dev:DynamicImages/code.js',
        'u:dev:FloatingToc/code.js',
        'u:dev:MiniComplete/code.js',
        'u:dev:ExtendedNavigation/code.js',
        'u:dev:DisplayClock/code.js',
        'u:dev:AjaxRC/code.js',
        'u:dev:TopEditors/code.js',
        'ESB:JavaScripts/Standard_Edit_Summary.js',
        // ...
    ]
});

importArticles({
    type: "script",
    articles: [
        "w:c:dev:PurgeBlogs/code.js",
        "w:c:dev:PageRenameAuto-update/code.js",
        "w:c:dev:LockForums/code.js",
        "w:c:dev:MediaWiki:LockOldBlogs/code.js"
    ]
});

/* Message Wall User Tags */

window.MessageWallUserTags = {
    tagColor: 'red',
    glow: true,
    glowSize: '15px',
    glowColor: '#f77',
    users: {
        'username': 'usergroup',
        'AMK152': 'Wiki Adopter • Bureaucrat • Administrator',
        'Spongebob456': 'Bureaucrat • Administrator',
        'ZeoSpark': 'Bureaucrat • Administrator',
        'Nicko756': 'Bureaucrat • Administrator',
        
        'Tanhamman': 'Administrator',
        'AW10': 'Administrator',
        'JCM': 'Administrator',
        'AustinD-3': 'Administrator',
        'Squiddleward': 'Administrator',
        'SonicTheEpic': 'Administrator',
        'SpongeFreddy777': 'Administrator',
        'Depth Strider 10': 'Administrator',
    
        'Auron~Guardian': 'Assistant • Moderator',
        'Jackninja5DipperGravityFalls': 'Assistant',
        'TrevorOntario719': 'Moderator',
        'Jensonk': 'Assistant',
        
        'Alex.sapre': 'Chat Moderator',
        'TheOneFootTallBrickWall': 'Chat Moderator',
        'Dragonballgtgoku': 'Chat Moderator',
    }
};

/* End of Message Wall User Tags */

var quizName = "The ESB SpongeBob Quiz";
var quizLang = "en";
var resultsTextArray = [
      "You need to watch more SpongeBob!",
      "Not bad. You have a decent knowledge of SpongeBob.",
      "You are a SpongeBob expert!"
       ];
var questions = [

       ["How old is the character SpongeBob SquarePants (as of November 2016)?",
       "30",
       "25",
       "17",
       "13"],

       ["How does Squidward know Squilliam?",
       "They met in high school.",
       "They are brothers.",
       "They met during a symphony.",
       "They are cousins."],

       ["What is the name of the worm SpongeBob bought in the episode 'Dumped'?",
       "Rex",
       "Jerry",
       "Max",
       "Lary"],
 
       ["What did Mr. Krabs sell to the Flying Dutchman in order to talk to money in the episode 'Money Talks'?",
       "His soul",
       "His golden tooth",
       "SpongeBob",
       "His daughter, Pearl"],
 
       ["Where is Bikini Bottom located?",
       "Pacific Ocean",
       "Atlantic Ocean",
       "Indian Ocean",
       "Middle of nowhere"],
 
       ["Why does SpongeBob come to the Krusty Krab at 3 AM?",
       "To count the sesame seeds",
       "To pre-fry the patties",
       "To check if the security alarm is working",
       "For a midnight snack"],
 
       ["Which song was sung in the first movie?",
       "'Now That We're Men'",
       "'Ripped Pants'",
       "'F.U.N. Song'",
       "'Campfire Song Song'"],
 
       ["What was the name of the tour fish in 'Mr. Krabs Takes a Vacation'?",
       "Bill",
       "Jim",
       "Buck",
       "Joe"],
 
       ["What's the name of Sandy's twin brother?",
       "Randy",
       "Earl",
       "Scott",
       "Brandy"],
 
       ["What is the date in the episode 'To SquarePants or Not to SquarePants?'",
       "January 10",
       "January 7",
       "January 14",
       "January 18"]
        
        ];

/* voting system begin */

if ( document.getElementById("ScoreVoteCountContainer") !== null ) {
    
    //collecting all votes
    
    var SupportVoteScores = document.getElementsByClassName("SupportVoteNum");
    var NeutralVoteScores = document.getElementsByClassName("NeutralVoteNum");
    var OpposeVoteScores = document.getElementsByClassName("OpposeVoteNum");
    
    var votesCount = SupportVoteScores.length + NeutralVoteScores.length + OpposeVoteScores.length;
    
    var votesNumSum = 0;
    
    //processing support votes
    
    for (var i = 0; i < SupportVoteScores.length; i++) {
    	if (SupportVoteScores[i].innerHTML === "NaN") {
    		votesCount--;
    	} else {
    		votesNumSum += parseInt(SupportVoteScores[i].innerHTML);
    	}
    }
    
    //prcessing oppose votes
    
    for (var i = 0; i < OpposeVoteScores.length; i++) {
    	if (OpposeVoteScores[i].innerHTML === "NaN") {
    		votesCount--;
    	} else {
    		votesNumSum -= parseInt(OpposeVoteScores[i].innerHTML);
    	}
    }
    
    //defining vote status
    
    var currentVoteScore = Math.round( (votesNumSum / votesCount) * 100 ) / 100;
    
    var currentVoteStatus = "";
    
    if ( currentVoteScore >= 1.00 ) {
    	currentVoteStatus = '<span style="font-size:15px; font-weight:normal;"><img src="http://vignette2.wikia.nocookie.net/spongebob/images/a/ab/Support.png/revision/latest/scale-to-width-down/15?cb=20140913200712" alt="Support" height="15" width="15"> Community supports proposal with score "' + currentVoteScore.toFixed(2) + '".</span>';
    } else {
    	currentVoteStatus = '<span style="font-size:15px; font-weight:normal;"><img src="http://vignette4.wikia.nocookie.net/spongebob/images/b/bc/Oppose.png/revision/latest/scale-to-width-down/15?cb=20140913200954" alt="Oppose" width="15" height="15"> Community opposes proposal with score "' + currentVoteScore.toFixed(2) + '".</span>';
    }
    
    //writing vote status to page
    
    document.getElementById("ScoreVoteCount").innerHTML = currentVoteStatus;
    
}

/* voting system end */

/* timeCircles begin */

var timeCrirclesDivs = document.getElementsByClassName("TimeCirclesDiv");

for (var i = 0; i < timeCrirclesDivs.length; i++) {
	var dateTime = timeCrirclesDivs[i].innerHTML.substring(1).split("]")[0];

	var width = "100%";

	var height = Math.round(timeCrirclesDivs[i].offsetWidth / 4) + "px";

	timeCrirclesDivs[i].innerHTML = '<iframe scrolling="no" src="http://spongebobia.com/ESB/TimeCircle/TimeCirclesImport.php?dateTime=' + dateTime + '" style="width:' + width + '; height:' + height + ';"></iframe>'; 
}

/* timeCircles end */