מדיה ויקי:Monobook.js
מראה
הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.
- פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
- גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
- אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
/* <div style="direction: ltr;"><pre> */
/* ערכו קובץ זה כדי להריץ סקריפטים ב־JavaScript ברקע Monobook באתר כולו */
/* הוספת כפתור טבלה, המעלה כלי ליצירת טבלאות */
/* גרסה 0.1, נלקח מוויקיפדיה בצרפתית, נכתב במקור על־ידי Dake */
function generateTableau(nbCol, nbRow, border, styleHeader, styleLine)
{
var code = "\n";
if (styleHeader==1) {
code += '{| class="wikitable" border="' + border + '"\n';
} else {
code += '{| border="' + border + '"\n';
code += '|+ כותרת הטבלה\n';
}
for (var i=0;i<nbCol;i++) code += '! כותרת ' + i + '\n'
for (var j=0;j<nbRow;j++) {
if ((j+1)%2==0 && styleLine==1) {
code += '|- bgcolor="#EFEFEF"\n'
} else {
code += '|-\n'
}
for (var i=0;i<nbCol;i++) code += '| תא\n';
}
code += '|}';
insertTags('','', code);
}
function popupTableau()
{
var popup = window.open('','name','height=400,width=500');
javaCode = '<script type="text\/javascript">function insertCode(){';
javaCode += 'var row = parseInt(document.paramForm.inputRow.value); '
javaCode += 'var col = parseInt(document.paramForm.inputCol.value); '
javaCode += 'var bord = parseInt(document.paramForm.inputBorder.value); '
javaCode += 'var styleHeader = document.paramForm.inputHeader.checked; '
javaCode += 'var styleLine = document.paramForm.inputLine.checked; '
javaCode += 'window.opener.generateTableau(col,row,bord,styleHeader,styleLine); '
javaCode += '}<\/script>';
popup.document.write('<html><head><title>פרמטרים לטבלה</title>');
popup.document.write(javaCode);
popup.document.write('</head><body>');
popup.document.write('<p>אנא הזן/י פרמטרים לטבלה : </p>');
popup.document.write('<form name="paramForm">');
popup.document.write('מספר שורות : <input type="text" name="inputRow" value="3" ><p>');
popup.document.write('מספר עמודות : <input type="text" name="inputCol" value="3" ><p>');
popup.document.write('רוחב מסגרת : <input type="text" name="inputBorder" value="1" ><p>');
popup.document.write('טבלה מעוצבת : <input type="checkbox" name="inputHeader" checked="1" ><p>');
popup.document.write('שורות אפורות לסירוגין: <input type="checkbox" name="inputLine" checked="1" ><p>');
popup.document.write('</form">');
popup.document.write('<p><a href="javascript:insertCode()"> הוספת הקוד לחלון העריכה</a></p>');
popup.document.write('<p><a href="javascript:self.close()"> סגירה</a></p>');
popup.document.write('</body></html>');
popup.document.close();
}
/* הוספת כפתור טבלאות לסרגל הכלים */
function tableButton(e)
{
e = (e) ? e : event;
tooly = document.getElementById('toolbar');
if (tooly != null)
{
/* הגדרת כפתור הוספת טבלה. */
var tableButton=document.createElement("img");
tableButton.width = 23;
tableButton.height = 22;
tableButton.src = "//upload.wikimedia.org/wikipedia/he/6/60/Button_insert_table.png";
tableButton.border = 0;
tableButton.alt = "הוספת טבלה";
tableButton.title = "הוספת טבלה";
tableButton.style.cursor = "pointer";
tableButton.onclick = popupTableau;
tooly.appendChild(tableButton);
}
}
/* הוספת קישור להעלאה לוויקישיתוף */
function commonsLink(e)
{
e = (e) ? e : event;
if (document.getElementById("t-upload"))
{
document.getElementById("t-upload").innerHTML += ' / <a href="//commons.wikimedia.org/wiki/Special:Upload">לוויקישיתוף</a>';
}
}
function subPagesLink()
{
try {
var uploadItem = document.getElementById( "t-upload" );
if ( !document.getElementById("t-prefixindex") && uploadItem )
{
var link = document.createElement( "a" );
link.appendChild( document.createTextNode(wgUserLanguage == "he" ? "דפי משנה" : "Sub pages") );
link.setAttribute( "href", "/wiki/מיוחד:דפים_המתחילים_ב/" +
encodeURIComponent(mw.config.get('wgPageName')).replace(/%2F/g,"/").replace(/%24/g,"$").replace(/%2C/g,",").replace(/%3A/g,":").replace(/%40/g,"@") + "/" );
link.setAttribute( "title", wgUserLanguage == "he" ? "רשימת דפי המשנה של דף זה" : "List of the sub pages of this page" );
var item = document.createElement( "li" );
item.setAttribute( "id", "t-prefixindex" );
item.appendChild( link );
uploadItem.parentNode.insertBefore ( item, uploadItem );
}
}
catch(e)
{
return; // lets just ignore what's happened
}
}
/* פונקציה להדגשת אינטרויקי באמצעות התבנית אינטרויקי מודגש */
function boldInterwiki(e)
{
e = (e) ? e : event;
var spans = document.getElementsByTagName("span");
var items = document.getElementsByTagName("li");
var i, j;
for (i = 1; i <= spans.length; i++)
{
if (spans[i - 1].className == "BIntLang")
{
for (j = 1; j <= items.length; j++)
{
if (items[j - 1].className == "interwiki-" + spans[i - 1].id)
{
items[j - 1].style.fontWeight = "bold";
}
}
}
}
}
function featuredInterwiki(e)
{
e = (e) ? e : event;
var spans = document.getElementsByTagName("span");
var items = document.getElementsByTagName("li");
var i, j;
for (i = 1; i <= spans.length; i++)
{
if (spans[i - 1].className == "FA")
{
for (j = 1; j <= items.length; j++)
{
if (items[j - 1].className == "interwiki-" + spans[i - 1].id)
{
items[j - 1].style.paddingRight = "16px";
items[j - 1].style.paddingLeft = "16px";
items[j - 1].style.backgroundPosition = "right";
items[j - 1].style.backgroundImage = "url('//upload.wikimedia.org/wikipedia/en/6/60/LinkFA-star.png')";
items[j - 1].style.backgroundRepeat = "no-repeat";
items[j - 1].title = "ערך מומלץ";g
}
}
}
}
}
/* הסתרת הכותרת בעמוד הראשי */
function hideMainPageTitle(e)
{
e = (e) ? e : event;
var headings = document.getElementsByTagName("h1");
var i, done = false;
for (i = 1; ((!done) && (i <= headings.length)); i++)
{
if (headings[i - 1].className == "firstHeading")
{
done = true;
if ((headings[i - 1].innerHTML == "עמוד ראשי") && (document.getElementById("contentSub").innerHTML == ""))
{
headings[i - 1].style.display = "none";
document.getElementById("siteSub").style.display = "none";
document.getElementById("contentSub").style.display = "none";
}
}
}
}
/* הגדרת הפונקציות לטעינה */
//$(tableButton);
$(commonsLink);
if ( mw.config.get('wgNamespaceNumber') > 0 && mw.config.get('wgNamespaceNumber') != 6 && mw.config.get('wgNamespaceNumber') != 14 )
$(subPagesLink);
$(boldInterwiki);
$(featuredInterwiki);
$(hideMainPageTitle);
/* </div></pre> */