אונטערשייד צווישן ווערסיעס פון "מעדיעוויקי:Gadget-ShortNSSearch.js"
קפיצה לניווט
קפיצה לחיפוש
אין תקציר עריכה |
אין תקציר עריכה |
||
שורה 54: | שורה 54: | ||
return false; | return false; | ||
} | } | ||
var rxHistory = new RegExp('^ | var rxHistory = new RegExp('^פו' + shortcuts[i][0]); | ||
if (rxHistory.test(text.value)) { | if (rxHistory.test(text.value)) { | ||
text.value = text.value.replace(rxHistory, shortcuts[i][1]); | text.value = text.value.replace(rxHistory, shortcuts[i][1]); |
רעוויזיע פון 04:33, 13 פעברואר 2023
// נלקח מ[[המכלול:סקריפטים/14|כאן]]
// מאפשר לבצע חיפוש תוך שימוש בשמות מרחב מקוצרים מוגדרים מראש. את הרשימה ניתן למצוא [[שיחת המכלול:סקריפטים/14|כאן]]
// נכתב על ידי [[user:Yonidebest]]
//
function checkSearchInput() {
var shortcuts = new Array(19)
for (var i = 0; i < shortcuts.length; i++)
shortcuts[i] = new Array(2);
shortcuts[0][0] = 'ש:';
shortcuts[0][1] = 'שמועס:';
shortcuts[1][0] = 'מ:';
shortcuts[1][1] = 'המכלול:';
shortcuts[2][0] = 'מש:';
shortcuts[2][1] = 'המכלול שמועס:';
shortcuts[3][0] = 'ק:';
shortcuts[3][1] = 'קאַטעגאָריע:';
shortcuts[4][0] = 'קש:';
shortcuts[4][1] = 'קאַטעגאָריע שמועס:';
shortcuts[5][0] = 'ה:';
shortcuts[5][1] = 'הילף:';
shortcuts[6][0] = 'הש:';
shortcuts[6][1] = 'הילף שמועס:';
shortcuts[7][0] = 'ב:';
shortcuts[7][1] = 'באַניצער:';
shortcuts[8][0] = 'בש:';
shortcuts[8][1] = 'באַניצער שמועס:';
shortcuts[9][0] = 'פ:';
shortcuts[9][1] = 'פארטל:';
shortcuts[10][0] = 'פש:';
shortcuts[10][1] = 'פארטל שמועס:';
shortcuts[11][0] = 'מוו:';
shortcuts[11][1] = 'מעדיעװיקי:';
shortcuts[12][0] = 'מווש:';
shortcuts[12][1] = 'מעדיעװיקי שמועס:';
shortcuts[13][0] = 'ט:';
shortcuts[13][1] = 'טעקע:';
shortcuts[14][0] = 'טש:';
shortcuts[14][1] = 'טעקע שמועס:';
shortcuts[15][0] = 'מו:';
shortcuts[15][1] = 'מוסטער:';
shortcuts[16][0] = 'מוש:';
shortcuts[16][1] = 'מוסטער שמועס:';
shortcuts[17][0] = 'בש:';
shortcuts[17][1] = 'באַזונדער:בײַשטײַערונגען';
shortcuts[18][0] = 'ס:';
shortcuts[18][1] = 'באַזונדער:';
text = document.getElementById('searchInput');
for (i = 0; i < shortcuts.length; i++) {
var rxEdit = new RegExp('^ר' + shortcuts[i][0]);
if (rxEdit.test(text.value)) {
text.value = text.value.replace(rxEdit, shortcuts[i][1]);
document.location = '//yi.hamichlol.org.il/w/index.php?title=' + text.value + '&action=edit';
return false;
}
var rxHistory = new RegExp('^פו' + shortcuts[i][0]);
if (rxHistory.test(text.value)) {
text.value = text.value.replace(rxHistory, shortcuts[i][1]);
document.location = '//yi.hamichlol.org.il/w/index.php?title=' + text.value + '&action=history';
return false;
}
var rxPI = new RegExp('^/');
if (rxPI.test(text.value)) {
document.location = '//yi.hamichlol.org.il/w/index.php?title=' + "באַזונדער:הדף_שלי" + text.value;
return false;
}
}
for (i = 0; i < shortcuts.length; i++) {
var rx = new RegExp('^' + shortcuts[i][0]);
text.value = text.value.replace(rx, shortcuts[i][1]);
}
return true;
}
function addCheckSearchInput() {
var form = document.getElementById('searchform');
if (!form) return;
form.onsubmit = function(){return checkSearchInput();}
}
$(addCheckSearchInput);