Difference between revisions 20481 and 20482 on srwikiquote

if (window.showModalDialog && document.compatMode && document.compatMode == "CSS1Compat")
{
  var oldWidth;
  var docEl = document.documentElement;

  function fixIEScroll()
  {
    if (!oldWidth || docEl.clientWidth > oldWidth)
      doFixIEScroll();
    else
      setTimeout(doFixIEScroll, 1);
  
    oldWidth = docEl.clientWidth;
  }

  function doFixIEScroll() {
    docEl.style.overflowX = (docEl.scrollWidth - docEl.clientWidth < 4) ? "hidden" : "";
  }

  if (document.attachEvent) {
    document.attachEvent("onreadystatechange", fixIEScroll);
      attachEvent("onresize", fixIEScroll);
}

function addLoadEvent(func) 
{
  if (window.addEventListener) 
    window.addEventListener("load", func, false);
  else if (window.attachEvent) 
    window.attachEvent("onload", func);  }
}

function LinkFA() 
{
   // iterate over all <span>-elements
   for(var i=0; a = document.getElementsByTagName("span")[i]; i++) {
      // if found a FA span
      if(a.className == "FA") {
         // iterate over all <li>-elements
         for(var j=0; b = document.getElementsByTagName("li")[j]; j++) {
            // if found a FA link
            if(b.className == "interwiki-" + a.id) {
               b.style.padding = "0 0 0 16px";
               b.style.backgroundImage = "url('//upload.wikimedia.org/wikipedia/sr/6/60/LinkFA-star.png')";
               b.style.backgroundRepeat = "no-repeat";
               b.title = "Овај чланак је избрани";
            }
         }
      }
   }
}

addLoadEventjQuery(document).ready(LinkFA);

 // ============================================================
 // BEGIN Dynamic Navigation Bars (experimantal)
 
 // set up the words in your language
 var NavigationBarHide = '[ ▲ Сакриј ]';
 var NavigationBarShow = '[ ▼ Покажи ]';
 
 // 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 = 1;
 
 
 // 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 (NavChild.className == 'NavPic') {
                NavChild.style.display = 'none';
            }
            if (NavChild.className == '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 (NavChild.className == 'NavPic') {
                NavChild.style.display = 'block';
            }
            if (NavChild.className == '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
    for(
            var i=0; 
            NavFrame = document.getElementsByTagName("div")[i]; 
            i++
        ) {
        // if found a navigation bar
        if (NavFrame.className == "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 (NavFrame.childNodes[j].className == "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);
        }
    }
 
 }
 
 addLoadEventjQuery(document).ready(createNavigationBarToggleButton);
 
 // END Dynamic Navigation Bars
 // ============================================================
 //

 // ============================================================
 // BEGIN Mooving of the editsection links
 /*
 * moveEditsection
 * This script moves the section edit links from the right edge of the page
 * to the right edge of the heading. (Imported from German Wikipedia)
 *
 * This functionality can be disabled by adding the following line without the
 * asteriks to your custom monobook.js (located under [[User:Username/monobook.js]]):
 * var oldEditsectionLinks = true;
 */
 function moveEditsection() {
     if (typeof oldEditsectionLinks == 'undefined' || oldEditsectionLinks == false) { 
         // Collects all div tags with class "editsection".
         var editsections = new Array();
         var divs = document.getElementById("bodyContent").getElementsByTagName("div");
         for(var i = 0; i < divs.length; i++) {
             if(divs[i].className == "editsection") {
                 editsections.push(divs[i]);
             }
         }
         // if there are any section edit links
         if (editsections.length != 0) {
             // Search for the heading belonging to each section edit link.
             var i = 0;
             var element, heading;
             while (editsections[i] != null) {
                 element = editsections[i];
                 heading = element.nextSibling;
                 while(!/^H[1-6]$/.test(heading.nodeName)) {
                     heading = heading.nextSibling;
                 }
                 // Creates a new CSS formated span tag within the heading and moves
     // the section edit link to this new location. Subsequently, the old
     // section edit link is removed.
                 var spanElement = document.createElement("span");
                 var spaceNode = document.createTextNode(" ");
                 heading.appendChild(spaceNode);
                 heading.appendChild(spanElement);
                 
                 spanElement.setAttribute("class", "editsection");
                 spanElement.style.fontSize = "x-small";
                 spanElement.style.fontWeight = "normal";
                
                 while (element.childNodes.length != 0) {
                                spanElement.appendChild(element.childNodes[0]);
                 }
                 element.parentNode.removeChild(element);
                 i++;
             }
         } 
     }
 }
 // onload
 addOnloadHook(moveEditsection);

 // END Mooving of the editsection links
 // ============================================================


 // ============================================================
 // BEGIN pageview counter
 // 	Please talk to User:LeonWeber before changing anything or 
 // 	if there are any issues with that.
 
 // this should be adjusted to a good value.
 // BE CAREFULL, you will break zedler if it's too low!
 // And then DaB. will kill Leon :-(
 var disable_counter = 0;
 var counter_factor = 20; 
 
 function pgcounter_setup()
 {
 	if(disable_counter == 0)
 	{
 		var url = window.location.href;
 		if(Math.floor(Math.random()*counter_factor)==2)  // the probability thing
  		{
  			if(wgIsArticle==true) // do not count history pages etc.
 			{
 				var pgcountNs = wgCanonicalNamespace;
 				if(wgCanonicalNamespace=="")
 				{
 					pgcountNs = "0";
 				}
  				var cnt_url = "http://pgcount.wikimedia.de/index.png?ns=" + pgcountNs + "&title=" + encodeURI(wgTitle) + "&factor=" + counter_factor + "&wiki=srwiki";
 				var img = new Image(); 
 				img.src = cnt_url;
 			}
 		}
 	}
 }
 // Do not use aOnloadFunctions[aOnloadFunctions.length] = pgcounter_setup;, some browsers don't like that.
 pgcounter_setup();
 
 // END pageview counter 
 // ============================================================

/* add menu for selecting subsets of secial characters */
/***** must match MediaWiki:Edittools *****/

function addCharSubsetMenu() {
  var specialchars = document.getElementById('specialchars');

  if (specialchars) {
    var menu = "<select id=\"charsetBox\" style=\"display:inline\" onkeyup=\"chooseCharSubset(selectedIndex)\" onChange=\"chooseCharSubset(selectedIndex)\">";
    menu += "<option>Вики</option>";
    menu += "<option>Латински/Романски</option>";
    menu += "<option>Грчки</option>";
    menu += "<option>Ћирилица</option>";
    menu += "<option>Каталонски</option>";
    menu += "<option>Хрватски</option>";
    menu += "<option>Чешки/Словачки</option>";
    menu += "<option>Есперанто</option>";
    menu += "<option>Естонски</option>";
    menu += "<option>Француски</option>";
    menu += "<option>Немачки</option>";
    menu += "<option>Хијероглифи</option>";
    menu += "<option>Мађарски</option>";
    menu += "<option>Исландски</option>";
    menu += "<option>Ирски</option>";
    menu += "<option>Италијански</option>";
    menu += "<option>Летонски</option>";
    menu += "<option>Литвански</option>";
    menu += "<option>Малтешки</option>";
    menu += "<option>Староенглески</option>";
    menu += "<option>Пољски</option>";
    menu += "<option>Португалски</option>";
    menu += "<option>Румунски</option>";
    menu += "<option>Скандинавски</option>";
    menu += "<option>Лужичкосрпски</option>";
    menu += "<option>Шпански</option>";
    menu += "<option>Турски</option>";
    menu += "<option>Јидиш</option>";
    menu += "<option>IPA</option>";
    menu += "<option>Математика</option>";
    menu += "</select>";
    specialchars.innerHTML = menu + specialchars.innerHTML;

    /* default subset - try to use a cookie some day */
    chooseCharSubset(0);
  }
}

/* select subsection of special characters */
function chooseCharSubset(s) {
  var l = document.getElementById('specialchars').getElementsByTagName('p');
  for (var i = 0; i < l.length ; i++) {
    l[i].style.display = i == s ? 'inline' : 'none';
    l[i].style.visibility = i == s ? 'visible' : 'hidden';
  }
}

addLoadEventjQuery(document).ready(addCharSubsetMenu);


/**
 * Transformer les pages du Bistro en page de discussion
 */
function DiscussionBistro() 
{
  if(document.title.search("Википедија:Трг") != -1)
    document.body.className = "ns-1";
}
     
addLoadEventjQuery(document).ready(DiscussionBistro);

// Amélioration de la page de recherche
// Auteur : Dake
// Sous licence GFDL.

function SpecialSearchEnhanced() 
{
  if (wgPageName == "Special:Search") {
    var mainNode = document.getElementsByTagName("form");
    if (!mainNode) return;
    
    var searchValue = document.getElementById("lsearchbox").value
    var firstForm = mainNode[0];

    var node = document.createElement('center');
    
    var googleSearch = '<hr /><p /><FORM method=GET action="http://www.google.com/search">';
    googleSearch +=  '<TABLE bgcolor="#FFFFFF"><tr><td>';
    googleSearch += '<A HREF="http://www.google.com">';
    googleSearch += '<IMG SRC="http://www.google.com/logos/Logo_25wht.gif" border="0" '
    googleSearch += 'ALT="Google" align="absmiddle"></A>&nbsp;'
    googleSearch += '<INPUT TYPE=text name=q size=31 maxlength=255 value="' + searchValue + '">'
    googleSearch += '<INPUT TYPE=hidden name=hl value=sr>'
    googleSearch += '<INPUT TYPE=hidden name=as_sitesearch value=sr.wikipedia.org>'
    googleSearch += '<INPUT type=submit name=btnG VALUE="Претражите sr.wikipedia.org">'
    googleSearch += '</td></tr></TABLE>'
    googleSearch += '</FORM>'
    
    var yahooSearch = '<FORM method=GET action="http://search.yahoo.com/search">';
    yahooSearch +=  '<TABLE bgcolor="#FFFFFF"><tr><td>';
    yahooSearch += '<A HREF="http://yahoo.com">';
    yahooSearch += '<IMG SRC="http://us.yimg.com/i/yahootogo/y88red2.gif" alt="Yahoo!" border="0" '
    yahooSearch += 'align="absmiddle"></A>&nbsp;'
    yahooSearch += '<INPUT TYPE=text name=p size=31 maxlength=255 value="' + searchValue + '">'
    yahooSearch += '<INPUT TYPE=hidden name=vs value=sr.wikipedia.org>'
    yahooSearch += '<INPUT type=submit name=btnG VALUE="Претражите sr.wikipedia.org">'
    yahooSearch += '</td></tr></TABLE>'
    yahooSearch += '</FORM>'

    node.innerHTML = node.innerHTML + '<div id="enhancedSearch">' + googleSearch + yahooSearch + '</div>';
  	
    firstForm.parentNode.insertBefore(node, firstForm.nextSibling);
    
  }
}
     
addOnloadHook(SpecialSearchEnhanced);