LaravelTest
351 строка · 11.2 Кб
1// CodeMirror, copyright (c) by Marijn Haverbeke and others
2// Distributed under an MIT license: https://codemirror.net/LICENSE
3
4(function(mod) {5if (typeof exports == "object" && typeof module == "object") // CommonJS6mod(require("../../lib/codemirror"), require("./xml-hint"));7else if (typeof define == "function" && define.amd) // AMD8define(["../../lib/codemirror", "./xml-hint"], mod);9else // Plain browser env10mod(CodeMirror);11})(function(CodeMirror) {12"use strict";13
14var langs = "ab aa af ak sq am ar an hy as av ae ay az bm ba eu be bn bh bi bs br bg my ca ch ce ny zh cv kw co cr hr cs da dv nl dz en eo et ee fo fj fi fr ff gl ka de el gn gu ht ha he hz hi ho hu ia id ie ga ig ik io is it iu ja jv kl kn kr ks kk km ki rw ky kv kg ko ku kj la lb lg li ln lo lt lu lv gv mk mg ms ml mt mi mr mh mn na nv nb nd ne ng nn no ii nr oc oj cu om or os pa pi fa pl ps pt qu rm rn ro ru sa sc sd se sm sg sr gd sn si sk sl so st es su sw ss sv ta te tg th ti bo tk tl tn to tr ts tt tw ty ug uk ur uz ve vi vo wa cy wo fy xh yi yo za zu".split(" ");15var targets = ["_blank", "_self", "_top", "_parent"];16var charsets = ["ascii", "utf-8", "utf-16", "latin1", "latin1"];17var methods = ["get", "post", "put", "delete"];18var encs = ["application/x-www-form-urlencoded", "multipart/form-data", "text/plain"];19var media = ["all", "screen", "print", "embossed", "braille", "handheld", "print", "projection", "screen", "tty", "tv", "speech",20"3d-glasses", "resolution [>][<][=] [X]", "device-aspect-ratio: X/Y", "orientation:portrait",21"orientation:landscape", "device-height: [X]", "device-width: [X]"];22var s = { attrs: {} }; // Simple tag, reused for a whole lot of tags23
24var data = {25a: {26attrs: {27href: null, ping: null, type: null,28media: media,29target: targets,30hreflang: langs31}32},33abbr: s,34acronym: s,35address: s,36applet: s,37area: {38attrs: {39alt: null, coords: null, href: null, target: null, ping: null,40media: media, hreflang: langs, type: null,41shape: ["default", "rect", "circle", "poly"]42}43},44article: s,45aside: s,46audio: {47attrs: {48src: null, mediagroup: null,49crossorigin: ["anonymous", "use-credentials"],50preload: ["none", "metadata", "auto"],51autoplay: ["", "autoplay"],52loop: ["", "loop"],53controls: ["", "controls"]54}55},56b: s,57base: { attrs: { href: null, target: targets } },58basefont: s,59bdi: s,60bdo: s,61big: s,62blockquote: { attrs: { cite: null } },63body: s,64br: s,65button: {66attrs: {67form: null, formaction: null, name: null, value: null,68autofocus: ["", "autofocus"],69disabled: ["", "autofocus"],70formenctype: encs,71formmethod: methods,72formnovalidate: ["", "novalidate"],73formtarget: targets,74type: ["submit", "reset", "button"]75}76},77canvas: { attrs: { width: null, height: null } },78caption: s,79center: s,80cite: s,81code: s,82col: { attrs: { span: null } },83colgroup: { attrs: { span: null } },84command: {85attrs: {86type: ["command", "checkbox", "radio"],87label: null, icon: null, radiogroup: null, command: null, title: null,88disabled: ["", "disabled"],89checked: ["", "checked"]90}91},92data: { attrs: { value: null } },93datagrid: { attrs: { disabled: ["", "disabled"], multiple: ["", "multiple"] } },94datalist: { attrs: { data: null } },95dd: s,96del: { attrs: { cite: null, datetime: null } },97details: { attrs: { open: ["", "open"] } },98dfn: s,99dir: s,100div: s,101dialog: { attrs: { open: null } },102dl: s,103dt: s,104em: s,105embed: { attrs: { src: null, type: null, width: null, height: null } },106eventsource: { attrs: { src: null } },107fieldset: { attrs: { disabled: ["", "disabled"], form: null, name: null } },108figcaption: s,109figure: s,110font: s,111footer: s,112form: {113attrs: {114action: null, name: null,115"accept-charset": charsets,116autocomplete: ["on", "off"],117enctype: encs,118method: methods,119novalidate: ["", "novalidate"],120target: targets121}122},123frame: s,124frameset: s,125h1: s, h2: s, h3: s, h4: s, h5: s, h6: s,126head: {127attrs: {},128children: ["title", "base", "link", "style", "meta", "script", "noscript", "command"]129},130header: s,131hgroup: s,132hr: s,133html: {134attrs: { manifest: null },135children: ["head", "body"]136},137i: s,138iframe: {139attrs: {140src: null, srcdoc: null, name: null, width: null, height: null,141sandbox: ["allow-top-navigation", "allow-same-origin", "allow-forms", "allow-scripts"],142seamless: ["", "seamless"]143}144},145img: {146attrs: {147alt: null, src: null, ismap: null, usemap: null, width: null, height: null,148crossorigin: ["anonymous", "use-credentials"]149}150},151input: {152attrs: {153alt: null, dirname: null, form: null, formaction: null,154height: null, list: null, max: null, maxlength: null, min: null,155name: null, pattern: null, placeholder: null, size: null, src: null,156step: null, value: null, width: null,157accept: ["audio/*", "video/*", "image/*"],158autocomplete: ["on", "off"],159autofocus: ["", "autofocus"],160checked: ["", "checked"],161disabled: ["", "disabled"],162formenctype: encs,163formmethod: methods,164formnovalidate: ["", "novalidate"],165formtarget: targets,166multiple: ["", "multiple"],167readonly: ["", "readonly"],168required: ["", "required"],169type: ["hidden", "text", "search", "tel", "url", "email", "password", "datetime", "date", "month",170"week", "time", "datetime-local", "number", "range", "color", "checkbox", "radio",171"file", "submit", "image", "reset", "button"]172}173},174ins: { attrs: { cite: null, datetime: null } },175kbd: s,176keygen: {177attrs: {178challenge: null, form: null, name: null,179autofocus: ["", "autofocus"],180disabled: ["", "disabled"],181keytype: ["RSA"]182}183},184label: { attrs: { "for": null, form: null } },185legend: s,186li: { attrs: { value: null } },187link: {188attrs: {189href: null, type: null,190hreflang: langs,191media: media,192sizes: ["all", "16x16", "16x16 32x32", "16x16 32x32 64x64"]193}194},195map: { attrs: { name: null } },196mark: s,197menu: { attrs: { label: null, type: ["list", "context", "toolbar"] } },198meta: {199attrs: {200content: null,201charset: charsets,202name: ["viewport", "application-name", "author", "description", "generator", "keywords"],203"http-equiv": ["content-language", "content-type", "default-style", "refresh"]204}205},206meter: { attrs: { value: null, min: null, low: null, high: null, max: null, optimum: null } },207nav: s,208noframes: s,209noscript: s,210object: {211attrs: {212data: null, type: null, name: null, usemap: null, form: null, width: null, height: null,213typemustmatch: ["", "typemustmatch"]214}215},216ol: { attrs: { reversed: ["", "reversed"], start: null, type: ["1", "a", "A", "i", "I"] } },217optgroup: { attrs: { disabled: ["", "disabled"], label: null } },218option: { attrs: { disabled: ["", "disabled"], label: null, selected: ["", "selected"], value: null } },219output: { attrs: { "for": null, form: null, name: null } },220p: s,221param: { attrs: { name: null, value: null } },222pre: s,223progress: { attrs: { value: null, max: null } },224q: { attrs: { cite: null } },225rp: s,226rt: s,227ruby: s,228s: s,229samp: s,230script: {231attrs: {232type: ["text/javascript"],233src: null,234async: ["", "async"],235defer: ["", "defer"],236charset: charsets237}238},239section: s,240select: {241attrs: {242form: null, name: null, size: null,243autofocus: ["", "autofocus"],244disabled: ["", "disabled"],245multiple: ["", "multiple"]246}247},248small: s,249source: { attrs: { src: null, type: null, media: null } },250span: s,251strike: s,252strong: s,253style: {254attrs: {255type: ["text/css"],256media: media,257scoped: null258}259},260sub: s,261summary: s,262sup: s,263table: s,264tbody: s,265td: { attrs: { colspan: null, rowspan: null, headers: null } },266textarea: {267attrs: {268dirname: null, form: null, maxlength: null, name: null, placeholder: null,269rows: null, cols: null,270autofocus: ["", "autofocus"],271disabled: ["", "disabled"],272readonly: ["", "readonly"],273required: ["", "required"],274wrap: ["soft", "hard"]275}276},277tfoot: s,278th: { attrs: { colspan: null, rowspan: null, headers: null, scope: ["row", "col", "rowgroup", "colgroup"] } },279thead: s,280time: { attrs: { datetime: null } },281title: s,282tr: s,283track: {284attrs: {285src: null, label: null, "default": null,286kind: ["subtitles", "captions", "descriptions", "chapters", "metadata"],287srclang: langs288}289},290tt: s,291u: s,292ul: s,293"var": s,294video: {295attrs: {296src: null, poster: null, width: null, height: null,297crossorigin: ["anonymous", "use-credentials"],298preload: ["auto", "metadata", "none"],299autoplay: ["", "autoplay"],300mediagroup: ["movie"],301muted: ["", "muted"],302controls: ["", "controls"]303}304},305wbr: s306};307
308var globalAttrs = {309accesskey: ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],310"class": null,311contenteditable: ["true", "false"],312contextmenu: null,313dir: ["ltr", "rtl", "auto"],314draggable: ["true", "false", "auto"],315dropzone: ["copy", "move", "link", "string:", "file:"],316hidden: ["hidden"],317id: null,318inert: ["inert"],319itemid: null,320itemprop: null,321itemref: null,322itemscope: ["itemscope"],323itemtype: null,324lang: ["en", "es"],325spellcheck: ["true", "false"],326autocorrect: ["true", "false"],327autocapitalize: ["true", "false"],328style: null,329tabindex: ["1", "2", "3", "4", "5", "6", "7", "8", "9"],330title: null,331translate: ["yes", "no"],332onclick: null,333rel: ["stylesheet", "alternate", "author", "bookmark", "help", "license", "next", "nofollow", "noreferrer", "prefetch", "prev", "search", "tag"]334};335function populate(obj) {336for (var attr in globalAttrs) if (globalAttrs.hasOwnProperty(attr))337obj.attrs[attr] = globalAttrs[attr];338}339
340populate(s);341for (var tag in data) if (data.hasOwnProperty(tag) && data[tag] != s)342populate(data[tag]);343
344CodeMirror.htmlSchema = data;345function htmlHint(cm, options) {346var local = {schemaInfo: data};347if (options) for (var opt in options) local[opt] = options[opt];348return CodeMirror.hint.xml(cm, local);349}350CodeMirror.registerHelper("hint", "html", htmlHint);351});352