מדיה ויקי:Makor.js: הבדלים בין גרסאות בדף

מתוך ויקישיבה
קפיצה לניווט קפיצה לחיפוש
מ (תיקון)
אין תקציר עריכה
 
(33 גרסאות ביניים של 3 משתמשים אינן מוצגות)
שורה 1: שורה 1:
/* כלי ליצירת מקורות המקושרים לפרוייקט השו"ת */
/* כלי ליצירת מקורות המקושרים לפרוייקט השו"ת */
/* גרסה 1.0 נכתב ע"י Yeshivaorgil */
/* גרסה 1.0 נכתב ע"י Yeshivaorgil */
 
 
function generateMakor( cat, book, per, pas) {
function generateMakor( cat, book, per, pas, tex) {
var code = "";
var code = "";
if (book.substr(0,book.indexOf(" ")) != cat)
if (cat != "")
code += cat + ":" + book + " " + per + " " + pas;
{
else
if (book.substr(0,book.indexOf(" ")) != cat)
code += cat + ":" + book.substr(book.indexOf(" ")+1) + " " + per + " " + pas;
code += cat + ":" + book + " " + per + " " + pas;
insertTags( "{{מקור|", "}}", code );
else
}
code += cat + ":" + book.substr(book.indexOf(" ")+1) + " " + per + " " + pas;
}
function calPer(hak)
else
{
code += book + " " + per + " " + pas;
a=hak*1;
if (tex)
a *= 0.27;
code += "$" + tex;
hak=Math.round((100*(a+1))/27);
insertTags( "{{מקור|", "}}", code );
return hak;
}
//popup.document.getElementById("percent").innerHTML=(100*(a+1))/27;
function generateNewMakor(path,per,pas,tex){
}
var code = tex+"|"+path+"|"+per+"|"+pas;
 
insertTags( "{{#makor-new:", "}}", code );
function popupMakor() {
}
var popup = window.open( "", "popup", "height=380,width=500" );
 
popup.document.open();
function calPer(hak)
popup.document.write('<html><head><title>מקור מקושר</title>');
{
popup.document.write('<style type="text/css" media="screen,projection">/*<![CDATA[*/ @import "http://www.yeshiva.org.il/wiki/skins/monobook/main.css"; @import "http://www.yeshiva.org.il/wiki/skins/monobook/rtl.css"; /*]]>*/</style>');
a=hak*1;
popup.document.write('<style>select{font-family:arial;}.lst0{height:0px;width:0px;visibility:hidden;}.lst1{height:100px;width:300px;visiblility:visible;}</style>');
a *= 0.27;
popup.document.write('<script language="javascript" src="http://www.yeshiva.org.il/wiki/extensions/makor/BD.js"></script>');
hak=Math.round((100*(a+1))/27);
popup.document.write('<script type="text/javascript">function insertCode() {');
return hak;
popup.document.write('var cat = document.paramForm.catList.options[document.paramForm.catList.selectedIndex].text; ');
}
popup.document.write('var book = document.paramForm.inputBook.value; ');
 
popup.document.write('var per = document.paramForm.inputPerek.value; ');
function popupMakor() {
popup.document.write('var pas = document.paramForm.inputPasuk.value; ');
// var popup = window.open( "http://www.yeshiva.org.il/wiki/extensions/makor/makor.html", "popup", "height=510,width=500" );
popup.document.write('window.opener.generateMakor( cat, book, per, pas); ');
var popup = window.open( "/wiki/extensions/makor/tree.php", "popup", "height=610,width=900" );
popup.document.write('}\n');
}
popup.document.write('function getL()');
 
popup.document.write('{//alert(BrowserDetect.browser);\n');
/* הוספת כפתור מקורות לסרגל הכלים */
popup.document.write('var xmlHttp;var num=document.paramForm.catList.selectedIndex;');
 
popup.document.write('try{// Firefox, Opera 8.0+, Safari\n');
function makorButton()
popup.document.write('xmlHttp=new XMLHttpRequest();}\n');
{
popup.document.write('catch (e){// Internet Explorer\n');
if( document.getElementById("toolbar") )
popup.document.write('try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}\n');
{
popup.document.write('catch (e)');
var makorButton = document.createElement("img");
popup.document.write('{');
makorButton.width = 23;
popup.document.write('try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}\n');
makorButton.height = 22;
popup.document.write('catch (e){');
makorButton.src = "images/4/44/Button_makor.PNG";
popup.document.write('alert("Your browser does not support AJAX!");');
makorButton.border = 0;
popup.document.write('return false;}\n');
makorButton.alt = "הוספת מקור";
popup.document.write('}\n');
makorButton.title = "הוספת מקור";
popup.document.write('}\n');
makorButton.style.cursor = "pointer";
popup.document.write('xmlHttp.onreadystatechange=function()');
makorButton.onclick = popupMakor;
popup.document.write('{');
document.getElementById("toolbar").appendChild( makorButton );
popup.document.write('if(xmlHttp.readyState==4)');
}
popup.document.write('{');
}
popup.document.write('if(BrowserDetect.browser=="Explorer")');
 
popup.document.write('document.getElementById("select" + num).outerHTML="<select id=\\"select" + num + "\\" ondblclick=\\"autoVom(this);\\" onchange=\\"autoVom(this);\\" dir=\\"rtl\\" size=6>" + xmlHttp.responseText + "</select>";');
/*test*/
popup.document.write('else\n');
//hookEvent("load", makorButton);
popup.document.write('document.getElementById("select" + num).innerHTML=xmlHttp.responseText;');
mw.hook('load').add(makorButton);
popup.document.write('}\n');
popup.document.write('}\n');
popup.document.write('if(BrowserDetect.browser!="Explorer")');
popup.document.write('xmlHttp.open("GET","http://www.yeshiva.org.il/wiki/extensions/makor/bl.php?sCat="+num,true);');
popup.document.write('else\n');
popup.document.write('xmlHttp.open("GET","http://www.yeshiva.org.il/wiki/extensions/makor/bl.php?sCat="+num,false);');
popup.document.write('xmlHttp.send(null);');
popup.document.write('}\n');
popup.document.write('function autoVom(selObj) {');
popup.document.write('paramForm.inputBook.value = selObj.options[selObj.selectedIndex].text;');
popup.document.write('}\n');
popup.document.write('function loadCat(selObj) {');
popup.document.write('getL();');
popup.document.write('for (i=0;i<document.getElementById("catList").length;i++)');
popup.document.write('{');
popup.document.write('var oJnf = document.getElementById("select" + i);');
popup.document.write('oJnf.style.visibility="hidden";oJnf.style.height=0;');
popup.document.write('oJnf.style.width=0;');
popup.document.write('}\n');
popup.document.write('var obj = document.getElementById("select" + selObj.selectedIndex);');
popup.document.write('obj.style.visibility="visible";obj.style.width=300;obj.style.height=100;');
popup.document.write('}\n');
popup.document.write('function FindDefinitionInList(UserSelection,objSelectBox)');
popup.document.write('{');
popup.document.write('var strSearchString, lngLenSearchString;');
popup.document.write('strSearchString = UserSelection.value;');
popup.document.write('lngLenSearchString = strSearchString.length;');
popup.document.write('for (i=0;i<objSelectBox.length;i++)');
popup.document.write('{');
popup.document.write('if (objSelectBox[i].text.substr(0,lngLenSearchString) == strSearchString){');
popup.document.write('objSelectBox.options[i].selected = true;');
popup.document.write('break;}');
popup.document.write('}\n');
popup.document.write('if(event.keyCode == 13) {');
popup.document.write('UserSelection.value = objSelectBox.options[i].text;}');
popup.document.write('}\n');
popup.document.write('</script>');
popup.document.write('</head><body>');
//alert(BrowserDetect.browser + " " + BrowserDetect.version + " " + BrowserDetect.OS);
//if(BrowserDetect.browser=="Explorer") popup.document.write('<div id="loading"><center><BR><BR>הדף נטען...&nbsp;<span id="percent">0</span>%<BR><img src="ajax-loader.gif"><BR><BR><BR></center></div>');
popup.document.write('<p>אנא הזן/י פרמטרים למקור : </p>');
popup.document.write('<form name="paramForm">');
popup.document.write('קטגוריה:<select id="catList" name="catList" onchange=\'loadCat(this);\'>');
popup.document.write('<option>תנ"ך</option><option>פרשנות-תנ"ך</option><option>משנה</option><option>תוספתא</option><option>מסכתות-קטנות</option><option>בבלי</option><option>ירושלמי</option><option>מדרשי-הלכה</option><option>מדרשי-אגדה</option><option>זוהר</option><option>גאונים</option><option>פרשנות-משנה</option><option>ראשונים</option><option>פוסקים</option><option>אחרונים</option><option>מנהגים</option><option>מצוות</option><option>מחשבה</option><option>רמב"ם</option><option>פרשנות-רמב"ם</option><option>טור</option><option>בית-יוסף</option><option>שולחן-ערוך</option><option>פרשנות-שו"ע</option><option>קיצור-שולחן-ערוך</option><option>חסידות</option><option>שות</option><option>כללים</option>');
popup.document.write('</select></div><BR>');
popup.document.write('ספר: <INPUT id="inputBook" name="inputBook" maxlength="70" onkeyup=\'FindDefinitionInList(getElementById("inputBook"),getElementById("select" + getElementById("catList").selectedIndex));\' style=\'FONT-FAMILY: arial; WIDTH: 100px;\' value=\'בראשית\'><BR>');
popup.document.write('רשימת ספרים:');
popup.document.write('<select id="select0" ondblclick="paramForm.inputBook.value = this.options[this.selectedIndex].text;" onchange=\"paramForm.inputBook.value = this.options[this.selectedIndex].text;\" dir=\"rtl\" size=6 class="lst1">');
popup.document.write('<option>בראשית</option>');
popup.document.write('<option>שמות</option>');
popup.document.write('<option>ויקרא</option>');
popup.document.write('<option>במדבר</option>');
popup.document.write('<option>דברים</option>');
popup.document.write('<option>יהושע</option>');
popup.document.write('<option>שופטים</option>');
popup.document.write('<option>שמואל א</option>');
popup.document.write('<option>שמואל ב</option>');
popup.document.write('<option>מלכים א</option>');
popup.document.write('<option>מלכים ב</option>');
popup.document.write('<option>ישעיהו</option>');
popup.document.write('<option>ירמיהו</option>');
popup.document.write('<option>יחזקאל</option>');
popup.document.write('<option>הושע</option>');
popup.document.write('<option>יואל</option>');
popup.document.write('<option>עמוס</option>');
popup.document.write('<option>עובדיה</option>');
popup.document.write('<option>יונה</option>');
popup.document.write('<option>מיכה</option>');
popup.document.write('<option>נחום</option>');
popup.document.write('<option>חבקוק</option>');
popup.document.write('<option>צפניה</option>');
popup.document.write('<option>חגי</option>');
popup.document.write('<option>זכריה</option>');
popup.document.write('<option>מלאכי</option>');
popup.document.write('<option>תהלים</option>');
popup.document.write('<option>משלי</option>');
popup.document.write('<option>איוב</option>');
popup.document.write('<option>שיר השירים</option>');
popup.document.write('<option>רות</option>');
popup.document.write('<option>איכה</option>');
popup.document.write('<option>קהלת</option>');
popup.document.write('<option>אסתר</option>');
popup.document.write('<option>דניאל</option>');
popup.document.write('<option>עזרא</option>');
popup.document.write('<option>נחמיה</option>');
popup.document.write('<option>דברי הימים א</option>');
popup.document.write('<option>דברי הימים ב</option>');
popup.document.write('</select>');
/*popup.document.write('<select id="select0" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst1">');
popup.document.write('<option>טוען רשימה...</option></select>');*/
popup.document.write('<select id="select1" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select2" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select3" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select4" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select5" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select6" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select7" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select8" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select9" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select10" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select11" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select12" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select13" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select14" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select15" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select16" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select17" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select18" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select19" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select20" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select21" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select22" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select23" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select24" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select25" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select26" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<select id="select27" ondblclick="autoVom(this);" onchange="autoVom(this);" dir="rtl" size=6 class="lst0">');
popup.document.write('<option>טוען רשימה...</option></select>');
popup.document.write('<br>');
popup.document.write('חלק בספר (פרק, סימן וכד\'): <input type="text" name="inputPerek" maxlength="30" value="א" style=\"width:50px;\"><p>');
popup.document.write('חלק משנה (פסוק, סעיף וכד\') [לא חובה להזין]: <input type="text" name="inputPasuk" maxlength="30" value="א" style=\"width:50px;\"><p>');
popup.document.write('</form><br>');
popup.document.write('<p><a href="javascript:insertCode(); self.close();"> הוספת הקוד לחלון העריכה</a></p>');
popup.document.write('<p><a href="javascript:self.close()"> סגירה</a></p>');
popup.document.write('</body></html>');
popup.document.close();
}
/* הוספת כפתור מקורות לסרגל הכלים */
function makorButton()
{
if( document.getElementById("toolbar") )
{
var makorButton = document.createElement("img");
makorButton.width = 23;
makorButton.height = 22;
makorButton.src = "images/4/44/Button_makor.PNG";
makorButton.border = 0;
makorButton.alt = "הוספת מקור";
makorButton.title = "הוספת מקור";
makorButton.style.cursor = "pointer";
makorButton.onclick = popupMakor;
document.getElementById("toolbar").appendChild( makorButton );
}
}
 
hookEvent("load", makorButton);

גרסה אחרונה מ־12:54, 10 במאי 2022

/* כלי ליצירת מקורות המקושרים לפרוייקט השו"ת */
/* גרסה 1.0 נכתב ע"י Yeshivaorgil */


function generateMakor( cat, book, per, pas, tex) {
	var code = "";
	if (cat != "")
	{
		if (book.substr(0,book.indexOf(" ")) != cat)
			code += cat + ":" + book + " " + per + " " + pas;
		else
			code += cat + ":" + book.substr(book.indexOf(" ")+1) + " " + per + " " + pas;
	}
	else
		code += book + " " + per + " " + pas;
	if (tex)
		code += "$" + tex;
	insertTags( "{{מקור|", "}}", code );
}
function generateNewMakor(path,per,pas,tex){
	var code = tex+"|"+path+"|"+per+"|"+pas;
	insertTags( "{{#makor-new:", "}}", code );
}

function calPer(hak)
{
	a=hak*1;
	a *= 0.27;
	hak=Math.round((100*(a+1))/27);
	return hak;
}

function popupMakor() {
//	var popup = window.open( "http://www.yeshiva.org.il/wiki/extensions/makor/makor.html", "popup", "height=510,width=500" );
	var popup = window.open( "/wiki/extensions/makor/tree.php", "popup", "height=610,width=900" );
}

/* הוספת כפתור מקורות לסרגל הכלים */

function makorButton()
{
	if( document.getElementById("toolbar") )
	{
		var makorButton = document.createElement("img");
		makorButton.width = 23;
		makorButton.height = 22;
		makorButton.src = "images/4/44/Button_makor.PNG";
		makorButton.border = 0;
		makorButton.alt = "הוספת מקור";
		makorButton.title = "הוספת מקור";
		makorButton.style.cursor = "pointer";
		makorButton.onclick = popupMakor;
		document.getElementById("toolbar").appendChild( makorButton );
	}
}

/*test*/
//hookEvent("load", makorButton);
mw.hook('load').add(makorButton);