नोंद: साठवून ठेवल्यानंतर बदल पहाण्यासाठी कदाचित तुमच्या ब्राऊजरच्या कॅचेला बायपास करावे लागेल.

  • फ़ायरफ़ॉक्स / सफ़ारी: धरुन ठेवा Shift टिचकी मारताना Reload, किंवा हे दाबताना Ctrl-F5 किंवा Ctrl-R (⌘-R मॅकवर)
  • गुगल क्रोम: दाबा Ctrl-Shift-R (⌘-Shift-R मॅकसाठी)
  • ओपेरा: कडे जा Menu → Settings (ओपेरा → पसंतीक्रम on a Mac) आणि मग गोपनियता आणि सुरक्षा → ब्राउजिंग डाटा काढून टाका → कॅचे छायाचित्रे आणि धारिणी.
document.write('<script type="text/javascript" src="' + 'http://mr.wikipedia.org/w/index.php?title=MediaWiki:translit.js&action=raw&ctype=text/javascript&dontcountme=s"' + '&action="raw"></script>');
 
 function addLoadEvent(func)
 {
   if (window.addEventListener) 
     window.addEventListener("load", func, false);
   else if (window.attachEvent) 
     window.attachEvent("onload", func);
 }
 
 function addTranslit(editForm, textBox)
 {
   checkrt(editForm);
   if (textBox.addEventListener)
     textBox.addEventListener("keypress", processKeys, false);
   else if (textBox .attachEvent) 
     textBox.attachEvent("onkeypress", processKeys);
 }
 
 function addTextEvent() {
   //cookie for remembering transliteration choice
   if(new_getCookie('newWikiTranslit')!=null && new_getCookie('newWikiTranslit')!="")  
   realTime=(new_getCookie('newWikiTranslit')=="true")?true:false; 
 
 
   // add transliteration feature to main edit box 
   var editForm =document.getElementById('editform');
   if(editForm != null) {
      var textBox=document.getElementById('wpTextbox1');
      var textSummary = document.getElementById('wpSummary');
 
      addTranslit(editForm,textBox);
      addCheckbox(editForm,textBox );
      if(textSummary) { addTranslit(editForm,textSummary); }
   }
 
   // add transliteration feature to search form
   var searchForm = document.getElementById('searchform');
   if( searchForm != null ) {
			try {
				var searchBox = document.getElementById('searchInput');
				 // add IME checkbox control to searchForm
				if (searchBox != null || searchForm != null) {
					var element = document.createElement("input");
					element.setAttribute("type","checkbox");
					element.setAttribute("id","sbrealtime");
					if (element.addEventListener) 
						element.addEventListener("click", rtClick, false);
					else if (element.attachEvent) 
						element.attachEvent("onclick", rtClick);
 
					// var labelcheckBox = document.createTextNode('देवनागरी');					
					var chkSpan = document.createElement("span");
					chkSpan.setAttribute("id","spnRealtime");
					var searchBody = document.getElementById('searchBody');
					searchBody.appendChild(element);
					searchBody.appendChild(chkSpan);
 
					// searchForm.insertBefore(element,searchBox);
					document.getElementById("sbrealtime").checked = realTime;
					document.getElementById('spnRealtime').innerHTML = '<a href="http://mr.wikipedia.org/wiki/विकिपीडिया:Input System‌" title="Switches keyboard between Devnagari and English">देवनागरी</a>';
					// searchForm.insertBefore(chkSpan,searchBox);
					// var p = document.createElement("p");
					// p.setAttribute("style","width:100%;height:1px;");
					// searchForm.insertBefore(p,searchBox);
				}
			 }
			 catch(ex)
			 {
			  //ऎऱऱिनॆ ओटिक्कुक.
			 }
 
			 if(searchBox) { addTranslit(searchForm,searchBox); }
		}             
 
   // add transliteration feature to power search
   var powerSearchForm = document.getElementById('search');
   if( powerSearchForm != null) { 
      var powerSearchBox = document.getElementById('lsearchbox');
      if( powerSearchBox ) { addTranslit(powerSearchForm, powerSearchBox );}
   }
 
   // add transliteration feature to move page
   var movePageForm = document.getElementById('movepage');
   if( movePageForm != null ) {
      var newTitleBox = document.getElementById('wpNewTitle');
      var reasonBox = document.getElementById('wpReason');
      if( newTitleBox ) {addTranslit(movePageForm, newTitleBox);}
      if( reasonBox ) {addTranslit(movePageForm, reasonBox ); }
   }
 
   // add transliteration feature to upload feature page
   var upForm=document.getElementById('upload');
   if(upForm)
   {
      var upName=document.getElementById('wpDestFile');
      var upComment=document.getElementById('wpUploadDescription');
      if(upName) addTranslit(upForm,upName);
      if(upComment) addTranslit(upForm,upComment);
   }
 
   // add transliteration feature to create inputbox
   var crForm=document.getElementById('createbox');
   if(crForm)
   {
      var crName=crForm.title;
      if(crName) addTranslit(crForm,crName);
   }
 }
 
 function addCheckbox(editform,textBox )
 {
   var element = document.createElement("input");
   element.setAttribute("type","checkbox");
   element.setAttribute("id","realtime");
 
   if (element.addEventListener)
     element.addEventListener("click", rtClick, false);
   else if (element.attachEvent)
     element.attachEvent("onclick", rtClick);
 
   var ellabel = document.createElement("label");
   //ellabel.setAttribute("for","realtime"); 
   ellabel.setAttribute("id","labelrealtime"); 
 
   ellabel.innerHTML = 'देवनागरीत लिहीण्यासाठी डावीकडील डबीत टिचकवा.(परीक्षणकाल) लिपी बदलण्यासाठी Esc दाबा, (IE मध्ये Esc नंतर Ctrl+z दाबा.)'; 
 
     editform.insertBefore(element,textBox);
   document.getElementById("realtime").checked = realTime;
   //editform.insertBefore(labelcheckBox,textBox);
   editform.insertBefore(ellabel,textBox);
   document.getElementById("labelrealtime").htmlFor = "realtime"; 
 }
 
 function processKeys(event)
 {
   if (rtsupported)
   {
     if (event.keyCode == 27) // ESC  - for ie, Press ctrl+z after pressing ESC
     { 
       //escape to toggle
       realTime = !realTime;
       new_setCookie('newWikiTranslit',realTime,1);//save status in a cookie 
       var chk = document.getElementById('realtime'); 
       if (chk) { chk.checked = realTime; } 
       return false; 
     }
     else if (realTime)
     {
       translitonkey(event);
     }
   }
 }
 
 var realTime = true;
 function rtClick(event)
 {
   realTime = !realTime;
   new_setCookie('newWikiTranslit',realTime,1);//save status in a cookie
 }
 
 var rtsupported = false; var error;
 function checkrt(editform)
 {
   try
   {
     /* var nav = navigator.userAgent.toUpperCase();
     rtsupported = (nav.indexOf("GECKO") >= 0 || nav.indexOf("OPERA") >= 0 || nav.indexOf("SAFARI") >= 0);
     */
 
     rtsupported = (document.selection != undefined)
 
     if (!rtsupported)
     {
       var element = document.createElement("TEXTAREA");
       editform.appendChild(element);
       if(element.selectionStart != undefined)
         rtsupported = true;
       editform.removeChild(element);
     }
   }
   catch (error)
   {}
 }
 
// function to handle cookies
function new_getCookie(cookieName)
  {
    if (document.cookie.length>0)
     { 
       cookieStart=document.cookie.indexOf(cookieName + "=");
       if (cookieStart!=-1)
          { 
            cookieStart=cookieStart + cookieName.length+1;
            cookieEnd=document.cookie.indexOf(";",cookieStart);
            if (cookieEnd==-1) cookieEnd=document.cookie.length;
               return unescape(document.cookie.substring(cookieStart,cookieEnd));
          } 
     }
    return "";
  }
 
function new_setCookie(cookieName,value,expiredays)
 {
   var exdate=new Date();
   exdate.setDate(exdate.getDate()+expiredays);
   document.cookie=cookieName+ "=" +escape(value)+"; path=/"+
   ((expiredays==null) ? "" : "; expires="+exdate.toGMTString());
 }
 
 addLoadEvent(addTextEvent)