MediaWiki:Gadget-SyntaxHighlighter.js: Difference between revisions

From Zelda Dungeon Wiki
Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
(Updated script.)
(Script Update)
 
Line 1: Line 1:
//Syntax highlighter with various advantages
mw.loader.using("jquery.client", function() {
(function () {
     "use strict";
     "use strict";
     var g, h, m, f, p, y, C, x = -1,
    //variables that are preserved between function calls
        e = mw.config.get("wgUrlProtocols"),
     var wpTextbox0;
        r = "&(?:(?:n(?:bsp|dash)|m(?:dash|inus)|lt|e[mn]sp|thinsp|amp|quot|gt|shy|zwn?j|lrm|rlm|Alpha|Beta|Epsilon|Zeta|Eta|Iota|Kappa|[Mm]u|micro|Nu|[Oo]micron|[Rr]ho|Tau|Upsilon|Chi)|#x[0-9a-fA-F]+);\n*",
    var wpTextbox1;
        t = "\\[(?:\\[|(?:" + e + "))|\\{(?:\\{\\{?|\\|)|<(?:[:A-Z_a--ÖØ-öø-˿Ͱ-ͽͿ-῿‌‍⁰-↏Ⰰ-⿯、-퟿豈-﷏ﷰ-][:\\-ÖØ-öø-˿Ͱ-ͽͿ-῿‌‍⁰-↏Ⰰ-⿯、-퟿豈-﷏ﷰ--\\.·̀-ͯ‿--]*(?=/?>| |\n)|!--[^]*?--\x3e\n*)|(?:" + e.replace("|\\/\\/", "") + ")[^\\s\"<>[\\]{-}]*[^\\s\",\\.:;<>[\\]{-}]\n*|^(?:=|[*#:;]+\n*|-{4,}\n*)|\\\\'\\\\'(?:\\\\')?|~{3,5}\n*|" + r;
    var syntaxStyleTextNode;
 
    var lastText;
     function b(e) {
    var maxSpanNumber = -1; //the number of the last span available, used to tell if creating additional spans is necessary
         return new RegExp("(" + e + ")\n*|" + t, "gm")
    var highlightSyntaxIfNeededIntervalID;
    var attributeObserver;
    /* Define context-specific regexes, one for every common token that ends the
      current context.
      An attempt has been made to search for the most common syntaxes first,
      thus maximizing performance. Syntaxes that begin with the same character
      are searched for at the same time.
      Supported wiki syntaxes from most common to least common:
          [[internal link]] [http:// named external link]
          {{template}} {{{template parameter}}} {| table |}
          <tag> <!-- comment -->
          http:// bare external link
          =Heading= * unordered list # ordered list : indent ; small heading ---- horizontal line
          ''italic'' '''bold'''
          three tildes username four tildes signature five tildes timestamp
          &entity;
      The tag-matching regex follows the XML standard closely so that users
      won't feel like they have to escape sequences that MediaWiki will never
      consider to be tags.
      Only entities for characters which need to be escaped or cannot be
      unambiguously represented in a monospace font are highlighted, such as
      Greek letters that strongly resemble Latin letters. Use of other entities
      is discouraged as a matter of style. For the same reasons, numeric
      entities should be in hexadecimal (giving character codes in decimal only
      adds confusion).
      Newlines are sucked up into ending tokens (including comments, bare
      external links, lists, horizontal lines, signatures, entities, etc.) to
      avoid creating spans with nothing but newlines in them.
      Flags: g for global search, m for make ^ match the beginning of each line
      and $ the end of each line
    */
    var breakerRegexBase = "\\[(?:\\[|(?:https?:|ftp:)?//|mailto:)|\\{(?:\\{\\{?|\\|)|<(?:[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:\\w\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD-\\.\u00B7\u0300-\u036F\u203F-\u203F-\u2040]*(?=/?>| |\n)|!--[^]*?-->\n*)|(?:https?://|ftp://|mailto:)[^\\s\"<>[\\]{-}]*[^\\s\",\\.:;<>[\\]{-}]\n*|^(?:=|[*#:;]+\n*|-{4,}\n*)|\\\\'\\\\'(?:\\\\')?|~{3,5}\n*|&(?:(?:n(?:bsp|dash)|m(?:dash|inus)|lt|e[mn]sp|thinsp|amp|quot|gt|shy|zwn?j|lrm|rlm|Alpha|Beta|Epsilon|Zeta|Eta|Iota|Kappa|[Mm]u|micro|Nu|[Oo]micron|[Rr]ho|Tau|Upsilon|Chi)|#x[0-9a-fA-F]+);\n*";
     function breakerRegexWithPrefix(prefix)
    {
        //the stop token has to be at the beginning of the regex so that it takes precedence over substrings of itself.
         return new RegExp("(" + prefix + ")\n*|" + breakerRegexBase, "gm");
     }
     }
     var defaultBreakerRegex          = new RegExp(breakerRegexBase, "gm");
     var v = new RegExp(t, "gm"),
    var wikilinkBreakerRegex          = breakerRegexWithPrefix("]][a-zA-Z]*");
        w = b("]][a-zA-Z]*"),
    var namedExternalLinkBreakerRegex = breakerRegexWithPrefix("]");
        H = b("]"),
    var parameterBreakerRegex         = breakerRegexWithPrefix("}}}");
         k = b("}}}"),
    var templateBreakerRegex          = breakerRegexWithPrefix("}}");
        z = b("}}"),
    var tableBreakerRegex            = breakerRegexWithPrefix("\\|}");
        E = b("\\|}"),
    var headingBreakerRegex          = breakerRegexWithPrefix("\n");
        S = b("\n"),
    var tagBreakerRegexCache          = {};
        T = {},
        L = {};
     function highlightSyntax()
 
    {
     function F() {
         lastText = wpTextbox1.value;
         var i, d = (f = h.value).replace(/['\\]/g, "\\$&") + "\n",
        /* Backslashes and apostrophes are CSS-escaped at the beginning and all
            u = 0,
          parsing regexes and functions are designed to match. On the other hand,
            o = "",
          newlines are not escaped until written so that in the regexes ^ and $
            r = 0,
          work for both newlines and the beginning or end of the string. */
            n = !0;
        var text = lastText.replace(/['\\]/g, "\\$&") + "\n"; //add a newline to fix scrolling and parsing issues
 
        var i = 0; //the location of the parser as it goes through var text
         function c(e, t) {
             t != i && (o += "'}#s" + r, n ? (o += ":before{", n = !1) : (o += ":after{", n = !0, ++r), t && (o += "background-color:" + t + ";"), o += "content:'", i = t), o += e
        var css = "";
        var spanNumber = 0;
        var lastColor;
        var before = true;
        /* Highlighting bold or italic markup presents a special challenge
          because the actual MediaWiki parser uses multiple passes to determine
          which ticks represent start tags and which represent end tags.
          Because that would be too slow for us here, we instead keep track of
          what kinds of unclosed opening ticks have been encountered and use
          that to make a good guess as to whether the next ticks encountered
          are an opening tag or a closing tag.
          The major downsides to this method are that '''apostrophe italic''
          and ''italic apostrophe''' are not highlighted correctly, and bold
          and italic are both highlighted in the same color. */
        var assumedBold = false;
        var assumedItalic = false;
        //writes text into to-be-created span elements of wpTextbox0 using :before and :after pseudo-elements
        //both :before and :after are used because using two pseudo-elements per span is significantly faster than doubling the number of spans required
         function writeText(text, color)
        {
             //no need to use another span if using the same color
            if (color != lastColor)
            {
                //whitespace is omitted in the hope of increasing performance
                css += "'}#s" + spanNumber; //spans will be created with IDs s0 through sN
                if (before)
                {
                    css += ":before{";
                    before = false;
                }
                else
                {
                    css += ":after{";
                    before = true;
                    ++spanNumber;
                }
                if (color)
                {
                    //"background-color" is 6 characters longer than "background" but the browser processes it faster
                    css += "background-color:" + color + ";";
                }
                css += "content:'";
                lastColor = color;
            }
            css += text;
         }
         }
        var e = Date.now();
         function highlightBlock(color, breakerRegex)
         ! function e(t, i, o, r) {
        {
             var n;
             var match;
             for (i.lastIndex = u; n = i.exec(d); i.lastIndex = u) {
                 if (n[1]) return c(d.substring(u, i.lastIndex), t), void(u = i.lastIndex);
             for (breakerRegex.lastIndex = i; match = breakerRegex.exec(text); breakerRegex.lastIndex = i)
                 var a = i.lastIndex - n[0].length;
            {
                 switch (u < a && c(d.substring(u, a), t), u = i.lastIndex, n[0].charAt(0)) {
                 if (match[1])
                {
                    //end token found
                    writeText(text.substring(i, breakerRegex.lastIndex), color);
                    i = breakerRegex.lastIndex;
                    return;
                }
                 var endIndexOfLastColor = breakerRegex.lastIndex - match[0].length;
                 if (i < endIndexOfLastColor) //avoid calling writeText with text == "" to improve performance
                {
                    writeText(text.substring(i, endIndexOfLastColor), color);
                }
                i = breakerRegex.lastIndex;
                switch (match[0].charAt(0)) //cases in this switch should be arranged from most common to least common
                {
                     case "[":
                     case "[":
                         if (match[0].charAt(1) == "[")
                         "[" == n[0].charAt(1) ? (c("[[", syntaxHighlighterConfig.wikilinkColor || t), e(syntaxHighlighterConfig.wikilinkColor || t, w)) : (c(n[0], syntaxHighlighterConfig.externalLinkColor || t), e(syntaxHighlighterConfig.externalLinkColor || t, H));
                        {
                            //wikilink
                            writeText("[[", syntaxHighlighterConfig.wikilinkColor || color);
                            highlightBlock(syntaxHighlighterConfig.wikilinkColor || color, wikilinkBreakerRegex);
                        }
                        else
                        {
                            //named external link
                            writeText(match[0], syntaxHighlighterConfig.externalLinkColor || color);
                            highlightBlock(syntaxHighlighterConfig.externalLinkColor || color, namedExternalLinkBreakerRegex);
                        }
                         break;
                         break;
                     case "{":
                     case "{":
                         if (match[0].charAt(1) == "{")
                         "{" == n[0].charAt(1) ? 3 == n[0].length ? (c("{{{", syntaxHighlighterConfig.parameterColor || t), e(syntaxHighlighterConfig.parameterColor || t, k)) : (c("{{", syntaxHighlighterConfig.templateColor || t), e(syntaxHighlighterConfig.templateColor || t, z)) : (c("{|", syntaxHighlighterConfig.tableColor || t), e(syntaxHighlighterConfig.tableColor || t, E));
                        {
                            if (match[0].length == 3)
                            {
                                //parameter
                                writeText("{{{", syntaxHighlighterConfig.parameterColor || color);
                                highlightBlock(syntaxHighlighterConfig.parameterColor || color, parameterBreakerRegex);
                            }
                            else
                            {
                                //template
                                writeText("{{", syntaxHighlighterConfig.templateColor || color);
                                highlightBlock(syntaxHighlighterConfig.templateColor || color, templateBreakerRegex);
                            }
                        }
                        else //|
                        {
                            //table
                            writeText("{|", syntaxHighlighterConfig.tableColor || color);
                            highlightBlock(syntaxHighlighterConfig.tableColor || color, tableBreakerRegex);
                        }
                         break;
                         break;
                     case "<":
                     case "<":
                         if (match[0].charAt(1) == "!")
                         if ("!" == n[0].charAt(1)) {
                        {
                             c(n[0], syntaxHighlighterConfig.commentColor || t);
                             //comment tag
                             break
                            writeText(match[0], syntaxHighlighterConfig.commentColor || color);
                        }
                             break;
                        var s = d.indexOf(">", u) + 1;
                        if (0 == s) {
                            c("<", t), u = u - n[0].length + 1;
                            break
                         }
                         }
                         else
                         if ("/" == d.charAt(s - 2)) c(d.substring(u - n[0].length, s), syntaxHighlighterConfig.tagColor || t), u = s;
                        {
                        else {
                            //some other kind of tag, search for its end
                             var l = n[0].substring(1);
                            //the search is made easier because XML attributes may not contain the character ">"
                            if (-1 != syntaxHighlighterConfig.sourceTags.indexOf(l)) {
                            var tagEnd = text.indexOf(">", i) + 1;
                                 var g = "</" + l + ">",
                            if (tagEnd == 0)
                                     h = d.indexOf(g, u); - 1 == h ? h = d.length : h += g.length, c(d.substring(u - n[0].length, h), syntaxHighlighterConfig.tagColor || t), u = h
                            {
                            } else -1 != syntaxHighlighterConfig.nowikiTags.indexOf(l) ? (c(d.substring(u - n[0].length, s), syntaxHighlighterConfig.tagColor || t), u = s, e(syntaxHighlighterConfig.tagColor || t, L[l])) : (c(d.substring(u - n[0].length, s), syntaxHighlighterConfig.tagColor || t), u = s, T[l] || (T[l] = b("</" + l + ">")), e(syntaxHighlighterConfig.tagColor || t, T[l]))
                                //not a tag, just a "<" with some text after it
                                writeText("<", color);
                                i = i - match[0].length + 1;
                                break;
                            }
                            if (text.charAt(tagEnd - 2) == "/")
                            {
                                //empty tag
                                writeText(text.substring(i - match[0].length, tagEnd), syntaxHighlighterConfig.tagColor || color);
                                i = tagEnd;
                            }
                            else
                             {
                                var tagName = match[0].substring(1);
                                //again, cases are ordered from most common to least common
                                if (/^(?:nowiki|pre|math|syntaxhighlight|source|timeline|hiero)$/.test(tagName))
                                 {
                                    //tag that can contain only plain text
                                    var stopAfter = "</" + tagName + ">";
                                     var endIndex = text.indexOf(stopAfter, i);
                                    if (endIndex == -1)
                                    {
                                        endIndex = text.length;
                                    }
                                    else
                                    {
                                        endIndex += stopAfter.length;
                                    }
                                    writeText(text.substring(i - match[0].length, endIndex), syntaxHighlighterConfig.tagColor || color);
                                    i = endIndex;
                                }
                                else
                                {
                                    //ordinary tag
                                    writeText(text.substring(i - match[0].length, tagEnd), syntaxHighlighterConfig.tagColor || color);
                                    i = tagEnd;
                                    if (!tagBreakerRegexCache[tagName])
                                    {
                                        tagBreakerRegexCache[tagName] = breakerRegexWithPrefix("</" + tagName + ">");
                                    }
                                    highlightBlock(syntaxHighlighterConfig.tagColor || color, tagBreakerRegexCache[tagName]);
                                }
                            }
                         }
                         }
                        break;
                    case "h":
                    case "f":
                    case "m":
                        //bare external link
                        writeText(match[0], syntaxHighlighterConfig.externalLinkColor || color);
                         break;
                         break;
                     case "=":
                     case "=":
                         if (/[^=]=+$/.test(text.substring(i, text.indexOf("\n", i)))) //the line begins and ends with an equals sign and has something else in the middle
                         /[^=]=+$/.test(d.substring(u, d.indexOf("\n", u))) ? (c("=", syntaxHighlighterConfig.headingColor || t), e(syntaxHighlighterConfig.headingColor || t, S)) : c("=", t);
                        {
                            //heading
                            writeText("=", syntaxHighlighterConfig.headingColor || color);
                            highlightBlock(syntaxHighlighterConfig.headingColor || color, headingBreakerRegex);
                        }
                        else
                        {
                            writeText("=", color); //move on, process this line as regular wikitext
                        }
                         break;
                         break;
                     case "*":
                     case "*":
                     case "#":
                     case "#":
                     case ":":
                     case ":":
                         //unordered list, ordered list, indent, small heading
                         c(n[0], syntaxHighlighterConfig.listOrIndentColor || t);
                        //just highlight the marker
                        writeText(match[0], syntaxHighlighterConfig.listOrIndentColor || color);
                         break;
                         break;
                     case ";":
                     case ";":
                         //small heading
                         c(";", syntaxHighlighterConfig.headingColor || t), e(syntaxHighlighterConfig.headingColor || t, S);
                        writeText(";", syntaxHighlighterConfig.headingColor || color);
                        highlightBlock(syntaxHighlighterConfig.headingColor || color, headingBreakerRegex);
                         break;
                         break;
                     case "-":
                     case "-":
                         //horizontal line
                         c(n[0], syntaxHighlighterConfig.hrColor || t);
                        writeText(match[0], syntaxHighlighterConfig.hrColor || color);
                         break;
                         break;
                     case "\\":
                     case "\\":
                         writeText(match[0], syntaxHighlighterConfig.boldOrItalicColor || color);
                         if (c(n[0], syntaxHighlighterConfig.boldOrItalicColor || t), 6 == n[0].length)
                        if (match[0].length == 6)
                             if (o) {
                        {
                                 if (!r) return;
                            //bold
                                 o = !1
                             if (assumedBold)
                             } else r ? o = !0 : e(syntaxHighlighterConfig.boldOrItalicColor || t, v, !0, !1);
                            {
                         else if (r) {
                                 //end tag
                             if (!o) return;
                                 assumedBold = false;
                             r = !1
                                return;
                        } else o ? r = !0 : e(syntaxHighlighterConfig.boldOrItalicColor || t, v, !1, !0);
                             }
                            else
                            {
                                //start tag
                                assumedBold = true;
                                highlightBlock(syntaxHighlighterConfig.boldOrItalicColor || color, defaultBreakerRegex);
                            }
                        }
                         else
                        {
                            //italic
                             if (assumedItalic)
                             {
                                //end tag
                                assumedItalic = false;
                                return;
                            }
                            else
                            {
                                //start tag
                                assumedItalic = true;
                                highlightBlock(syntaxHighlighterConfig.boldOrItalicColor || color, defaultBreakerRegex);
                            }
                        }
                         break;
                         break;
                     case "&":
                     case "&":
                         //entity
                         c(n[0], syntaxHighlighterConfig.entityColor || t);
                        writeText(match[0], syntaxHighlighterConfig.entityColor || color);
                         break;
                         break;
                     case "~":
                     case "~":
                         //username, signature, timestamp
                         c(n[0], syntaxHighlighterConfig.signatureColor || t);
                         writeText(match[0], syntaxHighlighterConfig.signatureColor || color);
                        break;
                    default:
                         c(n[0], syntaxHighlighterConfig.externalLinkColor || t)
                 }
                 }
             }
             }
        }("", v), u < d.length && c(d.substring(u), "");
        var t = Date.now();
        if (t - e > syntaxHighlighterConfig.timeout) {
            clearInterval(p), h.removeEventListener("input", F), h.removeEventListener("scroll", I), h.removeEventListener("scroll", O), y.disconnect(), C.disconnect(), m.nodeValue = "";
            var a = {
                    be: "Падсьветка сынтаксісу на гэтай старонцы была адключаная, бо заняла шмат часу. Максымальна дапушчальны час апэрацыі — $1мс, а на вашым кампутары яна заняла $2мс. Паспрабуйце зачыніць нейкія закладкі і праграмы і націснуць «Праглядзець» або «Паказаць зьмены». Калі гэта не дапаможа, паспрабуйце іншы броўзэр; калі й гэта не дапаможа, выкарыстайце магутнейшы кампутар.",
                    ca: 'S\'ha desactivat el remarcar de sintaxi en aquesta pàgina perquè ha trigat massa temps. El temps màxim permès per a remarcar és $1ms, i el vostre ordinador ha trigat $2ms. Proveu tancar algunes pestanyes i programes i fer clic en "Mostra la previsualització" o "Mostra els canvis". Si no funciona això, proveu un altre navegador web, i si això no funciona, proveu un ordinador més ràpid.',
                    de: 'Die Syntaxhervorhebung wurde auf dieser Seite deaktiviert, da diese zu lange gedauert hat. Die maximal erlaubte Zeit zur Hervorhebung beträgt $1ms und dein Computer benötigte $2ms. Versuche einige Tabs und Programme zu schließen und klicke "Vorschau zeigen" oder "Änderungen zeigen". Wenn das nicht funktioniert, probiere einen anderen Webbrowser und wenn immer noch nicht, probiere einen schnelleren Computer.',
                    el: "Η έμφαση σύνταξης έχει απενεργοποιηθεί σε αυτήν τη σελίδα γιατί αργούσε πολύ. Ο μέγιστος επιτρεπτός χρόνος για την έμφαση σύνταξης είναι $1ms και ο υπολογιστής σας έκανε $2ms. Δοκιμάστε να κλείσετε μερικές καρτέλες και προγράμματα και να κάνετε κλικ στην «Εμφάνιση προεπισκόπησης» ή στην «Εμφάνιση αλλαγών». Αν αυτό δεν δουλέψει, δοκιμάστε έναν διαφορετικό περιηγητή και αν ούτε αυτό δουλέψει, δοκιμάστε έναν ταχύτερο υπολογιστή.",
                    en: 'Syntax highlighting on this page was disabled because it took too long. The maximum allowed highlighting time is $1ms, and your computer took $2ms. Try closing some tabs and programs and clicking "Show preview" or "Show changes". If that doesn\'t work, try a different web browser, and if that doesn\'t work, try a faster computer.',
                    es: 'Se desactivó el resaltar de sintaxis en esta página porque tardó demasiado. El tiempo máximo permitido para resaltar es $1ms, y tu ordenador tardó $2ms. Prueba cerrar algunas pestañas y programas y hacer clic en "Mostrar previsualización" o "Mostrar cambios". Si no funciona esto, prueba otro navegador web, y si eso no funciona, prueba un ordenador más rápido.',
                    fa: "از آنجایی که زمان زیادی صرف آن می‌شد، برجسته‌سازی نحو در این صفحه غیرفعال شده است. بیشینهٔ زمان برجسته‌سازی برای ابزار $1ms تعریف شده در حالی که رایانهٔ شما $2ms زمان نیاز داشت. می‌توانید بستن برخی سربرگ‌ها و برنامه‌ها و سپس کلیک‌کردن دکمهٔ «پیش‌نمایش» یا «نمایش تغییرات» را بیازمایید. اگر جواب نداد مرورگر دیگری را امتحان کنید؛ و اگر باز هم جواب نداد، رایانهٔ سریع‌تری را بیازمایید.",
                    fr: 'La coloration syntaxique a été désactivée sur cette page en raison d\'un temps de chargement trop important ($2ms). Le temps maximum autorisé est $1ms. Vous pouvez essayer de fermer certains onglets et programmes et cliquez sur "Prévisualisation" ou "Voir mes modifications". Si cela ne fonctionne pas, essayez un autre navigateur web, et si cela ne fonctionne toujours pas, essayez un ordinateur plus rapide.',
                    hy: "Շարադասության ընդգծումը այս էջում անջատվել է, քանի որ այն չափից շատ է տևել։ Ընդգծման թույլատրելի առավելագույն ժամանակը $1 միլիվայրկյան է, բայց այս էջում տևել է $2 միլիվայրկյան։ Փորձեք անջատել որոշ ներդիրներ կամ ծրագրեր և սեղմել «Նախադիտել» կամ «Կատարված փոփոխությունները»։ Կրկին չաշխատելու դեպքում փորձեք այլ վեբ դիտարկիչ, եթե կրկին չաշխատի, փորձեք ավելի արագ համակարգիչ։",
                    io: 'Sintaxo-hailaitar en ca pagino esis nekapabligata pro ke konsumis tro multa tempo. La maxima permisata hailaitala tempo es $1ms, e tua ordinatro konsumis $2ms. Probez klozar kelka tabi e programi e kliktar "Previdar" o "Montrez chanji". Se to ne funcionas, probez altra brauzero, e se to ne funcionas, probez plu rapida ordinatro.',
                    it: 'L\'evidenziazione delle sintassi su questa pagina è stata disabilitata perché ha richiesto troppo tempo. Il tempo massimo per l\'evidenziazione è di $1ms e al tuo computer sono serviti $2ms. Prova a chiudere alcune schede e programmi e ricarica la pagina cliccando su "Visualizza anteprima" o "Mostra modifiche". Se non funziona ancora, prova con un web browser differente e, in ultima alternativa, prova ad utilizzare un computer più veloce.',
                    ko: '이 문서에서의 문법 강조가 너무 오래 걸러서 해제되었습니다. 최대로 할당된 강조 시간은 $1ms인데, 당신의 컴퓨터는 $2ms이나 걸렸습니다. 탭과 프로그램을 일부 닫으신 후에 "미리 보기"나 "차이 보기"를 클릭하시기 바랍니다. 만약 작동하지 않으면 다른 웹 브라우저로 시도해보시고, 그래도 안되면 더 빠른 컴퓨터를 이용하십시오',
                    pt: 'O marcador de sintaxe foi desativado nesta página porque demorou demais. O tempo máximo permitido para marcar é de $1ms, e seu computador demorou $2ms. Tente fechar algumas abas e programas e clique em "Mostrar previsão" ou "Mostrar alterações". Se isso não funcionar, tente usar um outro navegador web, e se ainda não funcionar, tente em um computador mais rápido.',
                    ru: "Подсветка синтаксиса на странице была отключена, так как заняла слишком долго. Максимальное допустимое время операции - $1мс, сейчас на вашем компьютере она заняла $2мс. Попробуйте закрыть несколько вкладок и программ, затем нажать «Предварительный просмотр» или «Внесённые изменения». Если это не поможет, попробуйте другой браузер; если и это не поможет, используйте более быстрый компьютер.",
                    sr: "Истицање синтаксе на овој страници је онемогућено јер се одвија предуго. Максимално дозвољено време истицања је $1ms, а на Вашем рачунару траје $2ms. Покушајте затворити неке картице и програме или кликните на „Прикажи претпреглед” или „Прикажи измене”. Ако то не ради, покушајте са другим веб-прегледачем, а ако и тада не ради, покушајте са бржим рачунаром."
                },
                s = mw.config.get("wgUserLanguage");
            return a = a[s] || a[s.substring(0, s.indexOf("-"))] || a.en, h.style.backgroundColor = "", h.style.marginTop = "0", g.removeAttribute("dir"), g.removeAttribute("lang"), g.setAttribute("style", "color:red; font-size:small"), void(g.textContent = a.replace("$1", syntaxHighlighterConfig.timeout).replace("$2", t - e))
         }
         }
         if (x < r) {
            for (var l = document.createDocumentFragment(); l.appendChild(document.createElement("span")).id = "s" + ++x, x < r;);
         //start!
             g.appendChild(l)
        var startTime = Date.now();
        highlightBlock("", defaultBreakerRegex);
        //output the leftovers (if any) to make sure whitespace etc. matches
        if (i < text.length)
        {
             writeText(text.substring(i), "");
         }
         }
         m.nodeValue = o.substring(2).replace(/\n/g, "\\A ") + "'}"
         //if highlighting took too long, disable it.
    }
        var endTime = Date.now();
 
        /*if (typeof(bestTime) == "undefined")
    function I() {
        {
         g.scrollLeft = h.scrollLeft
            window.bestTime = endTime - startTime;
            document.title = bestTime;
            highlightSyntaxIfNeededIntervalID = setInterval(highlightSyntax, 250);
        }
        else
        {
            if (endTime - startTime < bestTime)
            {
                bestTime = endTime - startTime;
                document.title = bestTime;
            }
        }//*/
        if (endTime - startTime > syntaxHighlighterConfig.timeout)
        {
            clearInterval(highlightSyntaxIfNeededIntervalID);
            wpTextbox1.removeEventListener("input", highlightSyntax);
            wpTextbox1.removeEventListener("scroll", syncScrollX);
            wpTextbox1.removeEventListener("scroll", syncScrollY);
            attributeObserver.disconnect();
            syntaxStyleTextNode.nodeValue = "";
            var errorMessage = {
                ca: "S'ha desactivat el remarcar de sintaxi en aquesta pàgina perquè ha trigat massa temps. El temps màxim permès per a remarcar és $1ms, i el vostre ordinador ha trigat $2ms. Proveu tancar algunes pestanyes i programes i fer clic en \"Mostra la previsualització\" o \"Mostra els canvis\". Si no funciona això, proveu un altre navegador web, i si això no funciona, proveu un ordinador més ràpid.",
                de: "Die Syntaxhervorhebung wurde auf dieser Seite deaktiviert, da diese zu lange gedauert hat. Die maximal erlaubte Zeit zur Hervorhebung beträgt $1ms und dein Computer benötigte $2ms. Versuche einige Tabs und Programme zu schließen und klicke \"Vorschau zeigen\" oder \"Änderungen zeigen\". Wenn das nicht funktioniert, probiere einen anderen Webbrowser und wenn immer noch nicht, probiere einen schnelleren Computer.",
                el: "Η έμφαση σύνταξης έχει απενεργοποιηθεί σε αυτήν τη σελίδα γιατί αργούσε πολύ. Ο μέγιστος επιτρεπτός χρόνος για την έμφαση σύνταξης είναι $1ms και ο υπολογιστής σας έκανε $2ms. Δοκιμάστε να κλείσετε μερικές καρτέλες και προγράμματα και να κάνετε κλικ στην «Εμφάνιση προεπισκόπησης» ή στην «Εμφάνιση αλλαγών». Αν αυτό δεν δουλέψει, δοκιμάστε έναν διαφορετικό περιηγητή και αν ούτε αυτό δουλέψει, δοκιμάστε έναν ταχύτερο υπολογιστή.",
                en: "Syntax highlighting on this page was disabled because it took too long. The maximum allowed highlighting time is $1ms, and your computer took $2ms. Try closing some tabs and programs and clicking \"Show preview\" or \"Show changes\". If that doesn't work, try a different web browser, and if that doesn't work, try a faster computer.",
                es: "Se desactivó el resaltar de sintaxis en esta página porque tardó demasiado. El tiempo máximum permitido para resaltar es $1ms, y tu ordenador tardó $2ms. Prueba cerrar algunas pestañas y programas y hacer clic en \"Mostrar previsualización\" o \"Mostrar cambios\". Si no funciona esto, prueba otro navegador web, y si eso no funciona, prueba un ordenador más rápido.",
                fa: "از آنجایی که زمان زیادی صرف آن می‌شد، برجسته‌سازی نحو در این صفحه غیرفعال شده است. بیشینهٔ زمان برجسته‌سازی برای ابزار $1ms تعریف شده در حالی که رایانهٔ شما $2ms زمان نیاز داشت. می‌توانید بستن برخی سربرگ‌ها و برنامه‌ها و سپس کلیک‌کردن دکمهٔ «پیش‌نمایش» یا «نمایش تغییرات» را بیازمایید. اگر جواب نداد مرورگر دیگری را امتحان کنید؛ و اگر باز هم جواب نداد، رایانهٔ سریع‌تری را بیازمایید.",
                fr: "La coloration syntaxique a été désactivée sur cette page en raison d'un temps de chargement trop important ($2ms). Le temps maximum autorisé est $1ms. Vous pouvez essayer de fermer certains onglets et programmes et cliquez sur \"Prévisualisation\" ou \"Voir mes modifications\". Si cela ne fonctionne pas, essayez un autre navigateur web, et si cela ne fonctionne toujours pas, essayez un ordinateur plus rapide.",
                io: "Sintaxo-hailaitar en ca pagino esis nekapabligata pro ke konsumis tro multa tempo. La maxima permisata hailaitala tempo es $1ms, e tua ordinatro konsumis $2ms. Probez klozar kelka tabi e programi e kliktar \"Previdar\" o \"Montrez chanji\". Se to ne funcionas, probez altra brauzero, e se to ne funcionas, probez plu rapida ordinatro.",
                pt: "O marcador de sintaxe foi desativado nesta pagina porque demorou demais. O tempo máximo permitido para marcar e $1ms, e seu computador demorou $2ms. Tenta sair de alguns programas e clique em \"Mostrar previsão\" ou \"Mostrar alterações\". Se isso não funciona, tenta usar uma outra navegador web, e se ainda não funciona, procura um computador mais rápido.",
            };
            var wgUserLanguage = mw.config.get("wgUserLanguage");
            errorMessage = errorMessage[wgUserLanguage] || errorMessage[wgUserLanguage.substring(0, wgUserLanguage.indexOf("-"))] || errorMessage.en;
            wpTextbox1.style.backgroundColor = "";
            wpTextbox1.style.position = "";
            wpTextbox0.removeAttribute("dir");
            wpTextbox0.removeAttribute("lang");
            wpTextbox0.style = "color:red; font-size:small";
            wpTextbox0.textContent = errorMessage.replace("$1", syntaxHighlighterConfig.timeout).replace("$2", endTime - startTime);
            return;
        }
        //do we have enough span elements to match the generated CSS?
        //this step isn't included in the above benchmark because it takes a highly variable amount of time
        if (maxSpanNumber < spanNumber)
        {
            var fragment = document.createDocumentFragment();
            do
            {
                fragment.appendChild(document.createElement("span")).id = "s" + ++maxSpanNumber;
            }
            while (maxSpanNumber < spanNumber)
            wpTextbox0.appendChild(fragment);
         }
        /* finish CSS: move the extra '} from the beginning to the end and CSS-
          escape newlines. CSS ignores the space after the hex code of the
          escaped character */
        syntaxStyleTextNode.nodeValue = css.substring(2).replace(/\n/g, "\\A ") + "'}";
     }
     }
 
     function syncScrollX()
     function O() {
    {
         g.scrollTop = h.scrollTop
         wpTextbox0.scrollLeft = wpTextbox1.scrollLeft;
     }
     }
 
     function syncScrollY()
     function n() {
    {
         g.dir = h.dir
         wpTextbox0.scrollTop = wpTextbox1.scrollTop;
     }
     }
 
     function syncTextDirection()
     function a() {
    {
         h.previousSibling != g && (h.parentNode.insertBefore(g, h), C.disconnect(), C.observe(h.parentNode, {
         wpTextbox0.dir = wpTextbox1.dir;
            childList: !0
        }))
     }
     }
 
     //this function runs once every 500ms to detect changes to wpTextbox1's text that the input event does not catch
     function s() {
    //this happens when another script changes the text without knowing that the syntax highlighter needs to be informed
         if (h.value != f && F(), h.scrollLeft != g.scrollLeft && I(), h.scrollTop != g.scrollTop && O(), h.offsetHeight != g.offsetHeight) {
    function highlightSyntaxIfNeeded()
            var e = h.offsetHeight + "px";
    {
             g.style.height = e, h.style.marginTop = "-" + e
         if (wpTextbox1.value != lastText)
        {
            highlightSyntax();
        }
        if (wpTextbox1.scrollLeft != wpTextbox0.scrollLeft)
        {
            syncScrollX();
        }
        if (wpTextbox1.scrollTop != wpTextbox0.scrollTop)
        {
            syncScrollY();
        }
        if (wpTextbox1.offsetHeight != wpTextbox0.offsetHeight)
        {
             wpTextbox0.style.height = wpTextbox1.offsetHeight + "px";
         }
         }
     }
     }
 
     function setup()
     function i() {
    {
         function e(e, t, i) {
         function configureColor(parameterName, hardcodedFallback)
             if (void 0 === syntaxHighlighterConfig[e] && (syntaxHighlighterConfig[e] = syntaxHighlighterSiteConfig[e]), "normal" == syntaxHighlighterConfig[e]) syntaxHighlighterConfig[e] = t;
        {
             else {
             if (syntaxHighlighterConfig[parameterName] == "normal")
                if (void 0 !== syntaxHighlighterConfig[e]) return;
            {
                void 0 !== syntaxHighlighterConfig.defaultColor && i ? syntaxHighlighterConfig[e] = syntaxHighlighterConfig.defaultColor : syntaxHighlighterConfig[e] = t
                syntaxHighlighterConfig[parameterName] = hardcodedFallback;
             }
            else if (typeof(syntaxHighlighterConfig[parameterName]) != "undefined")
            {
                return;
            }
            else if (typeof(syntaxHighlighterConfig.defaultColor) != "undefined")
            {
                syntaxHighlighterConfig[parameterName] = syntaxHighlighterConfig.defaultColor;
            }
            else
            {
                syntaxHighlighterConfig[parameterName] = hardcodedFallback;
             }
             }
         }
         }
         window.syntaxHighlighterSiteConfig = window.syntaxHighlighterSiteConfig || {}, window.syntaxHighlighterConfig = window.syntaxHighlighterConfig || {}, e("backgroundColor", "#FFF", !1), e("foregroundColor", "#000", !1), e("boldOrItalicColor", "#EEE", !0), e("commentColor", "#EFE", !0), e("entityColor", "#DFD", !0), e("externalLinkColor", "#EFF", !0), e("headingColor", "#EEE", !0), e("hrColor", "#EEE", !0), e("listOrIndentColor", "#EFE", !0), e("parameterColor", "#FC6", !0), e("signatureColor", "#FC6", !0), e("tagColor", "#FEF", !0), e("tableColor", "#FFC", !0), e("templateColor", "#FFC", !0), e("wikilinkColor", "#EEF", !0), syntaxHighlighterConfig.nowikiTags = syntaxHighlighterConfig.nowikiTags || syntaxHighlighterSiteConfig.nowikiTags || ["nowiki", "pre"], syntaxHighlighterConfig.sourceTags = syntaxHighlighterConfig.sourceTags || syntaxHighlighterSiteConfig.sourceTags || ["math", "syntaxhighlight", "source", "timeline", "hiero"], syntaxHighlighterConfig.timeout = syntaxHighlighterConfig.timeout || syntaxHighlighterSiteConfig.timeout || 50, syntaxHighlighterConfig.nowikiTags.forEach(function(e) {
         window.syntaxHighlighterConfig = window.syntaxHighlighterConfig || {};
            L[e] = new RegExp("(</" + e + ">)\n*|" + r, "gm")
         }), g = document.createElement("div"), h = document.getElementById("wpTextbox1");
        //use 3-digit colors instead of 6-digit colors for performance
         var t = document.createElement("style");
        configureColor("boldOrItalicColor", "#EEE"); //gray
         m = t.appendChild(document.createTextNode(""));
        configureColor("commentColor",       "#EFE"); //green
         var i = window.getComputedStyle(h),
        configureColor("entityColor",       "#DFD"); //green
            o = "vertical" == i.resize || "both" == i.resize ? "vertical" : "none";
        configureColor("externalLinkColor", "#EFF"); //cyan
         g.dir = h.dir, g.id = "wpTextbox0", g.lang = h.lang, g.style.backgroundColor = syntaxHighlighterConfig.backgroundColor, g.style.border = "1px solid transparent", g.style.boxSizing = "border-box", g.style.clear = i.clear, g.style.color = "transparent", g.style.fontFamily = i.fontFamily, g.style.fontSize = i.fontSize, g.style.lineHeight = "normal", g.style.marginBottom = "0", g.style.marginLeft = "0", g.style.marginRight = "0", g.style.marginTop = "0", g.style.overflowX = "auto", g.style.overflowY = "scroll", g.style.resize = o, g.style.tabSize = i.tabSize, g.style.whiteSpace = "pre-wrap", g.style.width = "100%", g.style.wordWrap = "normal", h.style.backgroundColor = "transparent", h.style.border = "1px inset gray", h.style.boxSizing = "border-box", h.style.color = syntaxHighlighterConfig.foregroundColor, h.style.fontSize = i.fontSize, h.style.lineHeight = "normal", h.style.marginBottom = i.marginBottom, h.style.marginLeft = "0", h.style.marginRight = "0", h.style.overflowX = "auto", h.style.overflowY = "scroll", h.style.padding = "0", h.style.resize = o, h.style.width = "100%", h.style.wordWrap = "normal", h.style.height = g.style.height = h.offsetHeight + "px", h.style.marginTop = -h.offsetHeight + "px", h.parentNode.insertBefore(g, h), document.head.appendChild(t), h.addEventListener("input", F), h.addEventListener("scroll", I), h.addEventListener("scroll", O), (y = new MutationObserver(n)).observe(h, {
        configureColor("headingColor",       "#EEE"); //gray
            attributes: !0
        configureColor("hrColor",           "#EEE"); //gray
         }), (C = new MutationObserver(a)).observe(h.parentNode, {
        configureColor("listOrIndentColor", "#EFE"); //green
             childList: !0
        configureColor("parameterColor",     "#FC6"); //orange
         }), p = setInterval(s, 500), F()
        configureColor("signatureColor",     "#FC6"); //orange
        configureColor("tagColor",           "#FEF"); //pink
        configureColor("tableColor",         "#FFC"); //yellow
        configureColor("templateColor",     "#FFC"); //yellow
        configureColor("wikilinkColor",     "#EEF"); //blue
        syntaxHighlighterConfig.timeout = syntaxHighlighterConfig.timeout || 50;
        var textboxContainer = document.createElement("div");
         wpTextbox0 = document.createElement("div");
        wpTextbox1 = document.getElementById("wpTextbox1");
         var syntaxStyleElement = document.createElement("style");
         syntaxStyleTextNode = syntaxStyleElement.appendChild(document.createTextNode(""));
        //the styling of the textbox and the background div must be kept very similar
         var wpTextbox1Style = window.getComputedStyle(wpTextbox1);
        var scrollTop = wpTextbox1.scrollTop;
        var focus = (document.activeElement == wpTextbox1);
         wpTextbox0.dir                   = wpTextbox1.dir;
        wpTextbox0.lang                 = wpTextbox1.lang; //lang determines which font "monospace" is
        wpTextbox0.style.backgroundColor = wpTextbox1Style.backgroundColor;
        wpTextbox0.style.border         = "1px solid transparent";
        wpTextbox0.style.boxSizing       = "border-box";
        wpTextbox0.style.color           = "transparent"; //makes it look just a little bit smoother
        wpTextbox0.style.fontFamily     = wpTextbox1Style.fontFamily;
        wpTextbox0.style.fontSize       = wpTextbox1Style.fontSize;
        wpTextbox0.style.lineHeight     = "normal";
        wpTextbox0.style.marginBottom   = wpTextbox1Style.marginBottom;
        wpTextbox0.style.marginLeft     = "0";
        wpTextbox0.style.marginRight     = "0";
        wpTextbox0.style.marginTop       = wpTextbox1Style.marginTop;
        wpTextbox0.style.overflowX       = "auto";
        wpTextbox0.style.overflowY       = "scroll";
        //horizontal resize would look horribly choppy, better to make the user resize the browser window instead
        wpTextbox0.style.resize         = (wpTextbox1Style.resize == "vertical" || wpTextbox1Style.resize == "both" ? "vertical" : "none");
        wpTextbox0.style.tabSize         = wpTextbox1Style.tabSize;
        wpTextbox0.style.whiteSpace     = "pre-wrap";
        wpTextbox0.style.width           = "100%";
        wpTextbox0.style.wordWrap       = "normal"; //see below
        wpTextbox1.style.backgroundColor = "transparent";
        wpTextbox1.style.border         = "1px inset gray";
        wpTextbox1.style.boxSizing       = "border-box";
        wpTextbox1.style.fontSize       = wpTextbox1Style.fontSize; //resolves alignment problems on mobile chrome
        wpTextbox1.style.lineHeight     = "normal";
        wpTextbox1.style.left            = "0";
        wpTextbox1.style.margin          = "0";
        wpTextbox1.style.overflowX       = "auto";
        wpTextbox1.style.overflowY       = "scroll";
        wpTextbox1.style.padding         = "0";
        wpTextbox1.style.position        = "absolute";
        wpTextbox1.style.resize         = wpTextbox0.style.resize;
        wpTextbox1.style.top            = "0";
        wpTextbox1.style.width           = "100%";
        wpTextbox1.style.wordWrap       = "normal"; //overall more visually appealing
        //lock both heights to pixel values so that the browser zoom feature works better
        wpTextbox0.style.height         = wpTextbox1.offsetHeight + "px";
        wpTextbox1.style.height         = wpTextbox0.style.height;
        textboxContainer.style.clear    = "both";
        textboxContainer.style.position  = "relative";
        wpTextbox1.parentNode.insertBefore(textboxContainer, wpTextbox1);
        textboxContainer.appendChild(wpTextbox1);
        textboxContainer.appendChild(wpTextbox0);
        //changing the parent resets scrollTop to 0 and removes focus, so we have to bring that back
        wpTextbox0.scrollTop = scrollTop;
        wpTextbox1.scrollTop = scrollTop;
        if (focus) wpTextbox1.focus();
        //fix drop-downs in editing toolbar
        $('.tool-select *').css({zIndex: 5});
        document.head.appendChild(syntaxStyleElement);
        wpTextbox1.addEventListener("input", highlightSyntax);
        wpTextbox1.addEventListener("scroll", syncScrollX);
        wpTextbox1.addEventListener("scroll", syncScrollY);
        attributeObserver = new MutationObserver(syncTextDirection);
        attributeObserver.observe(wpTextbox1, {attributes: true});
         highlightSyntaxIfNeededIntervalID = setInterval(highlightSyntaxIfNeeded, 500);
        highlightSyntax();
    }
    function queueSetup()
    {
        setTimeout(setup, 0);
    }
    //enable the highlighter only when editing wikitext pages
    //in the future a separate parser could be added for CSS and JS pages
    //blacklist Internet Explorer, it's just too broken
    var wgAction = mw.config.get("wgAction");
    if ((wgAction == "edit" || wgAction == "submit") && mw.config.get("wgPageContentModel") == "wikitext" && $.client.profile().layout != "trident")
    {
        /* The highlighter has to run after any other script (such as the
          editing toolbar) that reparents wpTextbox1. We make sure that
          everything else has run by waiting for the page to completely load
          and then adding a call to the setup function to the end of the event
          queue, so that the setup function runs after any other triggers set
          on the load event. */
        if (document.readyState == "complete")
        {
             queueSetup();
         }
        else
        {
            $(window).load(queueSetup);
        }
     }
     }
})();
    var o = mw.config.get("wgAction"),
        l = $.client.profile().layout;
    "edit" != o && "submit" != o || "wikitext" != mw.config.get("wgPageContentModel") || "trident" == l || "edge" == l || ("complete" == document.readyState ? i() : window.addEventListener("load", i))
});

Latest revision as of 20:57, February 15, 2019

mw.loader.using("jquery.client", function() {
    "use strict";
    var g, h, m, f, p, y, C, x = -1,
        e = mw.config.get("wgUrlProtocols"),
        r = "&(?:(?:n(?:bsp|dash)|m(?:dash|inus)|lt|e[mn]sp|thinsp|amp|quot|gt|shy|zwn?j|lrm|rlm|Alpha|Beta|Epsilon|Zeta|Eta|Iota|Kappa|[Mm]u|micro|Nu|[Oo]micron|[Rr]ho|Tau|Upsilon|Chi)|#x[0-9a-fA-F]+);\n*",
        t = "\\[(?:\\[|(?:" + e + "))|\\{(?:\\{\\{?|\\|)|<(?:[:A-Z_a-zÀ-ÖØ-öø-˿Ͱ-ͽͿ-῿‌‍⁰-↏Ⰰ-⿯、-퟿豈-﷏ﷰ-�][:\\wÀ-ÖØ-öø-˿Ͱ-ͽͿ-῿‌‍⁰-↏Ⰰ-⿯、-퟿豈-﷏ﷰ-�-\\.·̀-ͯ‿-‿-⁀]*(?=/?>| |\n)|!--[^]*?--\x3e\n*)|(?:" + e.replace("|\\/\\/", "") + ")[^\\s\"<>[\\]{-}]*[^\\s\",\\.:;<>[\\]{-}]\n*|^(?:=|[*#:;]+\n*|-{4,}\n*)|\\\\'\\\\'(?:\\\\')?|~{3,5}\n*|" + r;

    function b(e) {
        return new RegExp("(" + e + ")\n*|" + t, "gm")
    }
    var v = new RegExp(t, "gm"),
        w = b("]][a-zA-Z]*"),
        H = b("]"),
        k = b("}}}"),
        z = b("}}"),
        E = b("\\|}"),
        S = b("\n"),
        T = {},
        L = {};

    function F() {
        var i, d = (f = h.value).replace(/['\\]/g, "\\$&") + "\n",
            u = 0,
            o = "",
            r = 0,
            n = !0;

        function c(e, t) {
            t != i && (o += "'}#s" + r, n ? (o += ":before{", n = !1) : (o += ":after{", n = !0, ++r), t && (o += "background-color:" + t + ";"), o += "content:'", i = t), o += e
        }
        var e = Date.now();
        ! function e(t, i, o, r) {
            var n;
            for (i.lastIndex = u; n = i.exec(d); i.lastIndex = u) {
                if (n[1]) return c(d.substring(u, i.lastIndex), t), void(u = i.lastIndex);
                var a = i.lastIndex - n[0].length;
                switch (u < a && c(d.substring(u, a), t), u = i.lastIndex, n[0].charAt(0)) {
                    case "[":
                        "[" == n[0].charAt(1) ? (c("[[", syntaxHighlighterConfig.wikilinkColor || t), e(syntaxHighlighterConfig.wikilinkColor || t, w)) : (c(n[0], syntaxHighlighterConfig.externalLinkColor || t), e(syntaxHighlighterConfig.externalLinkColor || t, H));
                        break;
                    case "{":
                        "{" == n[0].charAt(1) ? 3 == n[0].length ? (c("{{{", syntaxHighlighterConfig.parameterColor || t), e(syntaxHighlighterConfig.parameterColor || t, k)) : (c("{{", syntaxHighlighterConfig.templateColor || t), e(syntaxHighlighterConfig.templateColor || t, z)) : (c("{|", syntaxHighlighterConfig.tableColor || t), e(syntaxHighlighterConfig.tableColor || t, E));
                        break;
                    case "<":
                        if ("!" == n[0].charAt(1)) {
                            c(n[0], syntaxHighlighterConfig.commentColor || t);
                            break
                        }
                        var s = d.indexOf(">", u) + 1;
                        if (0 == s) {
                            c("<", t), u = u - n[0].length + 1;
                            break
                        }
                        if ("/" == d.charAt(s - 2)) c(d.substring(u - n[0].length, s), syntaxHighlighterConfig.tagColor || t), u = s;
                        else {
                            var l = n[0].substring(1);
                            if (-1 != syntaxHighlighterConfig.sourceTags.indexOf(l)) {
                                var g = "</" + l + ">",
                                    h = d.indexOf(g, u); - 1 == h ? h = d.length : h += g.length, c(d.substring(u - n[0].length, h), syntaxHighlighterConfig.tagColor || t), u = h
                            } else -1 != syntaxHighlighterConfig.nowikiTags.indexOf(l) ? (c(d.substring(u - n[0].length, s), syntaxHighlighterConfig.tagColor || t), u = s, e(syntaxHighlighterConfig.tagColor || t, L[l])) : (c(d.substring(u - n[0].length, s), syntaxHighlighterConfig.tagColor || t), u = s, T[l] || (T[l] = b("</" + l + ">")), e(syntaxHighlighterConfig.tagColor || t, T[l]))
                        }
                        break;
                    case "=":
                        /[^=]=+$/.test(d.substring(u, d.indexOf("\n", u))) ? (c("=", syntaxHighlighterConfig.headingColor || t), e(syntaxHighlighterConfig.headingColor || t, S)) : c("=", t);
                        break;
                    case "*":
                    case "#":
                    case ":":
                        c(n[0], syntaxHighlighterConfig.listOrIndentColor || t);
                        break;
                    case ";":
                        c(";", syntaxHighlighterConfig.headingColor || t), e(syntaxHighlighterConfig.headingColor || t, S);
                        break;
                    case "-":
                        c(n[0], syntaxHighlighterConfig.hrColor || t);
                        break;
                    case "\\":
                        if (c(n[0], syntaxHighlighterConfig.boldOrItalicColor || t), 6 == n[0].length)
                            if (o) {
                                if (!r) return;
                                o = !1
                            } else r ? o = !0 : e(syntaxHighlighterConfig.boldOrItalicColor || t, v, !0, !1);
                        else if (r) {
                            if (!o) return;
                            r = !1
                        } else o ? r = !0 : e(syntaxHighlighterConfig.boldOrItalicColor || t, v, !1, !0);
                        break;
                    case "&":
                        c(n[0], syntaxHighlighterConfig.entityColor || t);
                        break;
                    case "~":
                        c(n[0], syntaxHighlighterConfig.signatureColor || t);
                        break;
                    default:
                        c(n[0], syntaxHighlighterConfig.externalLinkColor || t)
                }
            }
        }("", v), u < d.length && c(d.substring(u), "");
        var t = Date.now();
        if (t - e > syntaxHighlighterConfig.timeout) {
            clearInterval(p), h.removeEventListener("input", F), h.removeEventListener("scroll", I), h.removeEventListener("scroll", O), y.disconnect(), C.disconnect(), m.nodeValue = "";
            var a = {
                    be: "Падсьветка сынтаксісу на гэтай старонцы была адключаная, бо заняла шмат часу. Максымальна дапушчальны час апэрацыі — $1мс, а на вашым кампутары яна заняла $2мс. Паспрабуйце зачыніць нейкія закладкі і праграмы і націснуць «Праглядзець» або «Паказаць зьмены». Калі гэта не дапаможа, паспрабуйце іншы броўзэр; калі й гэта не дапаможа, выкарыстайце магутнейшы кампутар.",
                    ca: 'S\'ha desactivat el remarcar de sintaxi en aquesta pàgina perquè ha trigat massa temps. El temps màxim permès per a remarcar és $1ms, i el vostre ordinador ha trigat $2ms. Proveu tancar algunes pestanyes i programes i fer clic en "Mostra la previsualització" o "Mostra els canvis". Si no funciona això, proveu un altre navegador web, i si això no funciona, proveu un ordinador més ràpid.',
                    de: 'Die Syntaxhervorhebung wurde auf dieser Seite deaktiviert, da diese zu lange gedauert hat. Die maximal erlaubte Zeit zur Hervorhebung beträgt $1ms und dein Computer benötigte $2ms. Versuche einige Tabs und Programme zu schließen und klicke "Vorschau zeigen" oder "Änderungen zeigen". Wenn das nicht funktioniert, probiere einen anderen Webbrowser und wenn immer noch nicht, probiere einen schnelleren Computer.',
                    el: "Η έμφαση σύνταξης έχει απενεργοποιηθεί σε αυτήν τη σελίδα γιατί αργούσε πολύ. Ο μέγιστος επιτρεπτός χρόνος για την έμφαση σύνταξης είναι $1ms και ο υπολογιστής σας έκανε $2ms. Δοκιμάστε να κλείσετε μερικές καρτέλες και προγράμματα και να κάνετε κλικ στην «Εμφάνιση προεπισκόπησης» ή στην «Εμφάνιση αλλαγών». Αν αυτό δεν δουλέψει, δοκιμάστε έναν διαφορετικό περιηγητή και αν ούτε αυτό δουλέψει, δοκιμάστε έναν ταχύτερο υπολογιστή.",
                    en: 'Syntax highlighting on this page was disabled because it took too long. The maximum allowed highlighting time is $1ms, and your computer took $2ms. Try closing some tabs and programs and clicking "Show preview" or "Show changes". If that doesn\'t work, try a different web browser, and if that doesn\'t work, try a faster computer.',
                    es: 'Se desactivó el resaltar de sintaxis en esta página porque tardó demasiado. El tiempo máximo permitido para resaltar es $1ms, y tu ordenador tardó $2ms. Prueba cerrar algunas pestañas y programas y hacer clic en "Mostrar previsualización" o "Mostrar cambios". Si no funciona esto, prueba otro navegador web, y si eso no funciona, prueba un ordenador más rápido.',
                    fa: "از آنجایی که زمان زیادی صرف آن می‌شد، برجسته‌سازی نحو در این صفحه غیرفعال شده است. بیشینهٔ زمان برجسته‌سازی برای ابزار $1ms تعریف شده در حالی که رایانهٔ شما $2ms زمان نیاز داشت. می‌توانید بستن برخی سربرگ‌ها و برنامه‌ها و سپس کلیک‌کردن دکمهٔ «پیش‌نمایش» یا «نمایش تغییرات» را بیازمایید. اگر جواب نداد مرورگر دیگری را امتحان کنید؛ و اگر باز هم جواب نداد، رایانهٔ سریع‌تری را بیازمایید.",
                    fr: 'La coloration syntaxique a été désactivée sur cette page en raison d\'un temps de chargement trop important ($2ms). Le temps maximum autorisé est $1ms. Vous pouvez essayer de fermer certains onglets et programmes et cliquez sur "Prévisualisation" ou "Voir mes modifications". Si cela ne fonctionne pas, essayez un autre navigateur web, et si cela ne fonctionne toujours pas, essayez un ordinateur plus rapide.',
                    hy: "Շարադասության ընդգծումը այս էջում անջատվել է, քանի որ այն չափից շատ է տևել։ Ընդգծման թույլատրելի առավելագույն ժամանակը $1 միլիվայրկյան է, բայց այս էջում տևել է $2 միլիվայրկյան։ Փորձեք անջատել որոշ ներդիրներ կամ ծրագրեր և սեղմել «Նախադիտել» կամ «Կատարված փոփոխությունները»։ Կրկին չաշխատելու դեպքում փորձեք այլ վեբ դիտարկիչ, եթե կրկին չաշխատի, փորձեք ավելի արագ համակարգիչ։",
                    io: 'Sintaxo-hailaitar en ca pagino esis nekapabligata pro ke konsumis tro multa tempo. La maxima permisata hailaitala tempo es $1ms, e tua ordinatro konsumis $2ms. Probez klozar kelka tabi e programi e kliktar "Previdar" o "Montrez chanji". Se to ne funcionas, probez altra brauzero, e se to ne funcionas, probez plu rapida ordinatro.',
                    it: 'L\'evidenziazione delle sintassi su questa pagina è stata disabilitata perché ha richiesto troppo tempo. Il tempo massimo per l\'evidenziazione è di $1ms e al tuo computer sono serviti $2ms. Prova a chiudere alcune schede e programmi e ricarica la pagina cliccando su "Visualizza anteprima" o "Mostra modifiche". Se non funziona ancora, prova con un web browser differente e, in ultima alternativa, prova ad utilizzare un computer più veloce.',
                    ko: '이 문서에서의 문법 강조가 너무 오래 걸러서 해제되었습니다. 최대로 할당된 강조 시간은 $1ms인데, 당신의 컴퓨터는 $2ms이나 걸렸습니다. 탭과 프로그램을 일부 닫으신 후에 "미리 보기"나 "차이 보기"를 클릭하시기 바랍니다. 만약 작동하지 않으면 다른 웹 브라우저로 시도해보시고, 그래도 안되면 더 빠른 컴퓨터를 이용하십시오',
                    pt: 'O marcador de sintaxe foi desativado nesta página porque demorou demais. O tempo máximo permitido para marcar é de $1ms, e seu computador demorou $2ms. Tente fechar algumas abas e programas e clique em "Mostrar previsão" ou "Mostrar alterações". Se isso não funcionar, tente usar um outro navegador web, e se ainda não funcionar, tente em um computador mais rápido.',
                    ru: "Подсветка синтаксиса на странице была отключена, так как заняла слишком долго. Максимальное допустимое время операции - $1мс, сейчас на вашем компьютере она заняла $2мс. Попробуйте закрыть несколько вкладок и программ, затем нажать «Предварительный просмотр» или «Внесённые изменения». Если это не поможет, попробуйте другой браузер; если и это не поможет, используйте более быстрый компьютер.",
                    sr: "Истицање синтаксе на овој страници је онемогућено јер се одвија предуго. Максимално дозвољено време истицања је $1ms, а на Вашем рачунару траје $2ms. Покушајте затворити неке картице и програме или кликните на „Прикажи претпреглед” или „Прикажи измене”. Ако то не ради, покушајте са другим веб-прегледачем, а ако и тада не ради, покушајте са бржим рачунаром."
                },
                s = mw.config.get("wgUserLanguage");
            return a = a[s] || a[s.substring(0, s.indexOf("-"))] || a.en, h.style.backgroundColor = "", h.style.marginTop = "0", g.removeAttribute("dir"), g.removeAttribute("lang"), g.setAttribute("style", "color:red; font-size:small"), void(g.textContent = a.replace("$1", syntaxHighlighterConfig.timeout).replace("$2", t - e))
        }
        if (x < r) {
            for (var l = document.createDocumentFragment(); l.appendChild(document.createElement("span")).id = "s" + ++x, x < r;);
            g.appendChild(l)
        }
        m.nodeValue = o.substring(2).replace(/\n/g, "\\A ") + "'}"
    }

    function I() {
        g.scrollLeft = h.scrollLeft
    }

    function O() {
        g.scrollTop = h.scrollTop
    }

    function n() {
        g.dir = h.dir
    }

    function a() {
        h.previousSibling != g && (h.parentNode.insertBefore(g, h), C.disconnect(), C.observe(h.parentNode, {
            childList: !0
        }))
    }

    function s() {
        if (h.value != f && F(), h.scrollLeft != g.scrollLeft && I(), h.scrollTop != g.scrollTop && O(), h.offsetHeight != g.offsetHeight) {
            var e = h.offsetHeight + "px";
            g.style.height = e, h.style.marginTop = "-" + e
        }
    }

    function i() {
        function e(e, t, i) {
            if (void 0 === syntaxHighlighterConfig[e] && (syntaxHighlighterConfig[e] = syntaxHighlighterSiteConfig[e]), "normal" == syntaxHighlighterConfig[e]) syntaxHighlighterConfig[e] = t;
            else {
                if (void 0 !== syntaxHighlighterConfig[e]) return;
                void 0 !== syntaxHighlighterConfig.defaultColor && i ? syntaxHighlighterConfig[e] = syntaxHighlighterConfig.defaultColor : syntaxHighlighterConfig[e] = t
            }
        }
        window.syntaxHighlighterSiteConfig = window.syntaxHighlighterSiteConfig || {}, window.syntaxHighlighterConfig = window.syntaxHighlighterConfig || {}, e("backgroundColor", "#FFF", !1), e("foregroundColor", "#000", !1), e("boldOrItalicColor", "#EEE", !0), e("commentColor", "#EFE", !0), e("entityColor", "#DFD", !0), e("externalLinkColor", "#EFF", !0), e("headingColor", "#EEE", !0), e("hrColor", "#EEE", !0), e("listOrIndentColor", "#EFE", !0), e("parameterColor", "#FC6", !0), e("signatureColor", "#FC6", !0), e("tagColor", "#FEF", !0), e("tableColor", "#FFC", !0), e("templateColor", "#FFC", !0), e("wikilinkColor", "#EEF", !0), syntaxHighlighterConfig.nowikiTags = syntaxHighlighterConfig.nowikiTags || syntaxHighlighterSiteConfig.nowikiTags || ["nowiki", "pre"], syntaxHighlighterConfig.sourceTags = syntaxHighlighterConfig.sourceTags || syntaxHighlighterSiteConfig.sourceTags || ["math", "syntaxhighlight", "source", "timeline", "hiero"], syntaxHighlighterConfig.timeout = syntaxHighlighterConfig.timeout || syntaxHighlighterSiteConfig.timeout || 50, syntaxHighlighterConfig.nowikiTags.forEach(function(e) {
            L[e] = new RegExp("(</" + e + ">)\n*|" + r, "gm")
        }), g = document.createElement("div"), h = document.getElementById("wpTextbox1");
        var t = document.createElement("style");
        m = t.appendChild(document.createTextNode(""));
        var i = window.getComputedStyle(h),
            o = "vertical" == i.resize || "both" == i.resize ? "vertical" : "none";
        g.dir = h.dir, g.id = "wpTextbox0", g.lang = h.lang, g.style.backgroundColor = syntaxHighlighterConfig.backgroundColor, g.style.border = "1px solid transparent", g.style.boxSizing = "border-box", g.style.clear = i.clear, g.style.color = "transparent", g.style.fontFamily = i.fontFamily, g.style.fontSize = i.fontSize, g.style.lineHeight = "normal", g.style.marginBottom = "0", g.style.marginLeft = "0", g.style.marginRight = "0", g.style.marginTop = "0", g.style.overflowX = "auto", g.style.overflowY = "scroll", g.style.resize = o, g.style.tabSize = i.tabSize, g.style.whiteSpace = "pre-wrap", g.style.width = "100%", g.style.wordWrap = "normal", h.style.backgroundColor = "transparent", h.style.border = "1px inset gray", h.style.boxSizing = "border-box", h.style.color = syntaxHighlighterConfig.foregroundColor, h.style.fontSize = i.fontSize, h.style.lineHeight = "normal", h.style.marginBottom = i.marginBottom, h.style.marginLeft = "0", h.style.marginRight = "0", h.style.overflowX = "auto", h.style.overflowY = "scroll", h.style.padding = "0", h.style.resize = o, h.style.width = "100%", h.style.wordWrap = "normal", h.style.height = g.style.height = h.offsetHeight + "px", h.style.marginTop = -h.offsetHeight + "px", h.parentNode.insertBefore(g, h), document.head.appendChild(t), h.addEventListener("input", F), h.addEventListener("scroll", I), h.addEventListener("scroll", O), (y = new MutationObserver(n)).observe(h, {
            attributes: !0
        }), (C = new MutationObserver(a)).observe(h.parentNode, {
            childList: !0
        }), p = setInterval(s, 500), F()
    }
    var o = mw.config.get("wgAction"),
        l = $.client.profile().layout;
    "edit" != o && "submit" != o || "wikitext" != mw.config.get("wgPageContentModel") || "trident" == l || "edge" == l || ("complete" == document.readyState ? i() : window.addEventListener("load", i))
});