משתמש:מהדורה קמא/בדיקת עוגנים.js
קפיצה לניווט
קפיצה לחיפוש
הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.
- פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload), או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
- גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
- אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh), או ללחוץ על צירוף המקשים Ctrl-F5.
- אופרה: ללחוץ על Ctrl-F5.
// סקריפט לאיתור ותיקון עוגנים כפולים במדיה ויקי
mw.loader.using(['jquery.client'], function () {
$(function () {
if (mw.config.get('wgAction') === 'edit' || mw.config.get('wgAction') === 'submit') {
var textArea = $('#wpTextbox1');
// יצירת כפתור
var button = $('<button type="button">בדוק ותקן עוגנים כפולים</button>');
button.css({
marginTop: '10px',
padding: '5px 10px',
fontSize: '1rem',
cursor: 'pointer'
});
// הוספת הכפתור לדף
textArea.after(button);
// הגדרת פעולת הכפתור
button.click(function () {
mw.loader.using(['jquery.client'], function () {
// בדיקה ש-jQuery זמין ונטען
$(function () {
// בדיקה שהתיבה המקורית אכן מכילה תוכן עם עוגנים
if ($('#wpTextbox1').length > 0) {
replaceDuplicateAnchors();
}
});
function replaceDuplicateAnchors() {
// קביעת משתנים והבניית הביטויים הרגולריים
var textArea = $('#wpTextbox1');
var content = textArea.val();
var anchorRegex = /\{\{עוגן(?:1)?\|([^}|]+)(?:\|([^}]+))?\}\}/gi;
var anchors = {};
var match;
// חיפוש והחלפת העוגנים הכפולים
while ((match = anchorRegex.exec(content)) !== null) {
var key = match[1].toLowerCase();
var text = match[2] !== undefined ? match[2] : key; // אם אין טקסט חופשי, השתמש בפרמטר העוגן
if (!anchors[key]) {
anchors[key] = [];
}
anchors[key].push({ index: match.index, length: match[0].length, text: text });
}
// בדיקה שהתוכן של העוגנים בלבד השתנה
var replacedContent = content;
$.each(anchors, function (key, positions) {
if (positions.length > 1) {
var offset = 0;
var counter = 1; // מספר התוקף הנוכחי
positions.forEach(function (pos, i) {
var replacement;
if (i > 0) { // מתחיל למספר מהעוגן השני
counter++;
replacement = `{{עוגן|${key}${counter}|${pos.text}}}`;
} else {
replacement = `{{עוגן|${key}|${pos.text}}}`; // העוגן הראשון ללא מספור
}
var startIndex = pos.index + offset;
replacedContent = replacedContent.slice(0, startIndex) + replacement + replacedContent.slice(startIndex + pos.length);
offset += replacement.length - pos.length;
});
}
});
// בדיקה שהתוכן של התיבה שונה והודעה למשתמש
if (replacedContent !== content) {
var userContent = content.replace(/{{[^{}]+}}/g, ''); // הוצאת כל העוגנים מתוך התוכן המקורי
var replacedUserContent = replacedContent.replace(/{{[^{}]+}}/g, ''); // הוצאת כל העוגנים מתוך התוכן שהוחלף
if (userContent === replacedUserContent) {
textArea.val(replacedContent);
alert('הוחלפו עוגנים כפולים בהצלחה');
} else {
alert('יש שינויים בתוכן מעבר לעוגנים ולכן לא ניתן להחליף את העוגנים.');
}
} else {
alert('אין עוגנים כפולים');
}
}
});
});
}
});
});