github.com/elliott5/community@v0.14.1-0.20160709191136-823126fb026a/app/public/codemirror/mode/meta.js (about) 1 // CodeMirror, copyright (c) by Marijn Haverbeke and others 2 // Distributed under an MIT license: http://codemirror.net/LICENSE 3 4 (function(mod) { 5 if (typeof exports == "object" && typeof module == "object") // CommonJS 6 mod(require("../codemirror")); 7 else if (typeof define == "function" && define.amd) // AMD 8 define(["../codemirror"], mod); 9 else // Plain browser env 10 mod(CodeMirror); 11 })(function(CodeMirror) { 12 "use strict"; 13 14 CodeMirror.modeInfo = [ 15 {name: "APL", mime: "text/apl", mode: "apl", ext: ["dyalog", "apl"]}, 16 {name: "PGP", mimes: ["application/pgp", "application/pgp-keys", "application/pgp-signature"], mode: "asciiarmor", ext: ["pgp"]}, 17 {name: "ASN.1", mime: "text/x-ttcn-asn", mode: "asn.1", ext: ["asn", "asn1"]}, 18 {name: "Asterisk", mime: "text/x-asterisk", mode: "asterisk", file: /^extensions\.conf$/i}, 19 {name: "Brainfuck", mime: "text/x-brainfuck", mode: "brainfuck", ext: ["b", "bf"]}, 20 {name: "C", mime: "text/x-csrc", mode: "clike", ext: ["c", "h"]}, 21 {name: "C++", mime: "text/x-c++src", mode: "clike", ext: ["cpp", "c++", "cc", "cxx", "hpp", "h++", "hh", "hxx"], alias: ["cpp"]}, 22 {name: "Cobol", mime: "text/x-cobol", mode: "cobol", ext: ["cob", "cpy"]}, 23 {name: "C#", mime: "text/x-csharp", mode: "clike", ext: ["cs"], alias: ["csharp"]}, 24 {name: "Clojure", mime: "text/x-clojure", mode: "clojure", ext: ["clj"]}, 25 {name: "Closure Stylesheets (GSS)", mime: "text/x-gss", mode: "css", ext: ["gss"]}, 26 {name: "CMake", mime: "text/x-cmake", mode: "cmake", ext: ["cmake", "cmake.in"], file: /^CMakeLists.txt$/}, 27 {name: "CoffeeScript", mime: "text/x-coffeescript", mode: "coffeescript", ext: ["coffee"], alias: ["coffee", "coffee-script"]}, 28 {name: "Common Lisp", mime: "text/x-common-lisp", mode: "commonlisp", ext: ["cl", "lisp", "el"], alias: ["lisp"]}, 29 {name: "Cypher", mime: "application/x-cypher-query", mode: "cypher", ext: ["cyp", "cypher"]}, 30 {name: "Cython", mime: "text/x-cython", mode: "python", ext: ["pyx", "pxd", "pxi"]}, 31 {name: "Crystal", mime: "text/x-crystal", mode: "crystal", ext: ["cr"]}, 32 {name: "CSS", mime: "text/css", mode: "css", ext: ["css"]}, 33 {name: "CQL", mime: "text/x-cassandra", mode: "sql", ext: ["cql"]}, 34 {name: "D", mime: "text/x-d", mode: "d", ext: ["d"]}, 35 {name: "Dart", mimes: ["application/dart", "text/x-dart"], mode: "dart", ext: ["dart"]}, 36 {name: "diff", mime: "text/x-diff", mode: "diff", ext: ["diff", "patch"]}, 37 {name: "Django", mime: "text/x-django", mode: "django"}, 38 {name: "Dockerfile", mime: "text/x-dockerfile", mode: "dockerfile", file: /^Dockerfile$/}, 39 {name: "DTD", mime: "application/xml-dtd", mode: "dtd", ext: ["dtd"]}, 40 {name: "Dylan", mime: "text/x-dylan", mode: "dylan", ext: ["dylan", "dyl", "intr"]}, 41 {name: "EBNF", mime: "text/x-ebnf", mode: "ebnf"}, 42 {name: "ECL", mime: "text/x-ecl", mode: "ecl", ext: ["ecl"]}, 43 {name: "Eiffel", mime: "text/x-eiffel", mode: "eiffel", ext: ["e"]}, 44 {name: "Elm", mime: "text/x-elm", mode: "elm", ext: ["elm"]}, 45 {name: "Embedded Javascript", mime: "application/x-ejs", mode: "htmlembedded", ext: ["ejs"]}, 46 {name: "Embedded Ruby", mime: "application/x-erb", mode: "htmlembedded", ext: ["erb"]}, 47 {name: "Erlang", mime: "text/x-erlang", mode: "erlang", ext: ["erl"]}, 48 {name: "Factor", mime: "text/x-factor", mode: "factor", ext: ["factor"]}, 49 {name: "Forth", mime: "text/x-forth", mode: "forth", ext: ["forth", "fth", "4th"]}, 50 {name: "Fortran", mime: "text/x-fortran", mode: "fortran", ext: ["f", "for", "f77", "f90"]}, 51 {name: "F#", mime: "text/x-fsharp", mode: "mllike", ext: ["fs"], alias: ["fsharp"]}, 52 {name: "Gas", mime: "text/x-gas", mode: "gas", ext: ["s"]}, 53 {name: "Gherkin", mime: "text/x-feature", mode: "gherkin", ext: ["feature"]}, 54 {name: "GitHub Flavored Markdown", mime: "text/x-gfm", mode: "gfm", file: /^(readme|contributing|history).md$/i}, 55 {name: "Go", mime: "text/x-go", mode: "go", ext: ["go"]}, 56 {name: "Groovy", mime: "text/x-groovy", mode: "groovy", ext: ["groovy"]}, 57 {name: "HAML", mime: "text/x-haml", mode: "haml", ext: ["haml"]}, 58 {name: "Haskell", mime: "text/x-haskell", mode: "haskell", ext: ["hs"]}, 59 {name: "Haxe", mime: "text/x-haxe", mode: "haxe", ext: ["hx"]}, 60 {name: "HXML", mime: "text/x-hxml", mode: "haxe", ext: ["hxml"]}, 61 {name: "ASP.NET", mime: "application/x-aspx", mode: "htmlembedded", ext: ["aspx"], alias: ["asp", "aspx"]}, 62 {name: "HTML", mime: "text/html", mode: "htmlmixed", ext: ["html", "htm"], alias: ["xhtml"]}, 63 {name: "HTTP", mime: "message/http", mode: "http"}, 64 {name: "IDL", mime: "text/x-idl", mode: "idl", ext: ["pro"]}, 65 {name: "Jade", mime: "text/x-jade", mode: "jade", ext: ["jade"]}, 66 {name: "Java", mime: "text/x-java", mode: "clike", ext: ["java"]}, 67 {name: "Java Server Pages", mime: "application/x-jsp", mode: "htmlembedded", ext: ["jsp"], alias: ["jsp"]}, 68 {name: "JavaScript", mimes: ["text/javascript", "text/ecmascript", "application/javascript", "application/x-javascript", "application/ecmascript"], 69 mode: "javascript", ext: ["js"], alias: ["ecmascript", "js", "node"]}, 70 {name: "JSON", mimes: ["application/json", "application/x-json"], mode: "javascript", ext: ["json", "map"], alias: ["json5"]}, 71 {name: "JSON-LD", mime: "application/ld+json", mode: "javascript", ext: ["jsonld"], alias: ["jsonld"]}, 72 {name: "Jinja2", mime: "null", mode: "jinja2"}, 73 {name: "Julia", mime: "text/x-julia", mode: "julia", ext: ["jl"]}, 74 {name: "Kotlin", mime: "text/x-kotlin", mode: "clike", ext: ["kt"]}, 75 {name: "LESS", mime: "text/x-less", mode: "css", ext: ["less"]}, 76 {name: "LiveScript", mime: "text/x-livescript", mode: "livescript", ext: ["ls"], alias: ["ls"]}, 77 {name: "Lua", mime: "text/x-lua", mode: "lua", ext: ["lua"]}, 78 {name: "Markdown", mime: "text/x-markdown", mode: "markdown", ext: ["markdown", "md", "mkd"]}, 79 {name: "mIRC", mime: "text/mirc", mode: "mirc"}, 80 {name: "MariaDB SQL", mime: "text/x-mariadb", mode: "sql"}, 81 {name: "Mathematica", mime: "text/x-mathematica", mode: "mathematica", ext: ["m", "nb"]}, 82 {name: "Modelica", mime: "text/x-modelica", mode: "modelica", ext: ["mo"]}, 83 {name: "MUMPS", mime: "text/x-mumps", mode: "mumps"}, 84 {name: "MS SQL", mime: "text/x-mssql", mode: "sql"}, 85 {name: "MySQL", mime: "text/x-mysql", mode: "sql"}, 86 {name: "Nginx", mime: "text/x-nginx-conf", mode: "nginx", file: /nginx.*\.conf$/i}, 87 {name: "NSIS", mime: "text/x-nsis", mode: "nsis", ext: ["nsh", "nsi"]}, 88 {name: "NTriples", mime: "text/n-triples", mode: "ntriples", ext: ["nt"]}, 89 {name: "Objective C", mime: "text/x-objectivec", mode: "clike", ext: ["m", "mm"]}, 90 {name: "OCaml", mime: "text/x-ocaml", mode: "mllike", ext: ["ml", "mli", "mll", "mly"]}, 91 {name: "Octave", mime: "text/x-octave", mode: "octave", ext: ["m"]}, 92 {name: "Oz", mime: "text/x-oz", mode: "oz", ext: ["oz"]}, 93 {name: "Pascal", mime: "text/x-pascal", mode: "pascal", ext: ["p", "pas"]}, 94 {name: "PEG.js", mime: "null", mode: "pegjs", ext: ["jsonld"]}, 95 {name: "Perl", mime: "text/x-perl", mode: "perl", ext: ["pl", "pm"]}, 96 {name: "PHP", mime: "application/x-httpd-php", mode: "php", ext: ["php", "php3", "php4", "php5", "phtml"]}, 97 {name: "Pig", mime: "text/x-pig", mode: "pig", ext: ["pig"]}, 98 {name: "Plain Text", mime: "text/plain", mode: "null", ext: ["txt", "text", "conf", "def", "list", "log"]}, 99 {name: "PLSQL", mime: "text/x-plsql", mode: "sql", ext: ["pls"]}, 100 {name: "Properties files", mime: "text/x-properties", mode: "properties", ext: ["properties", "ini", "in"], alias: ["ini", "properties"]}, 101 {name: "Python", mime: "text/x-python", mode: "python", ext: ["py", "pyw"]}, 102 {name: "Puppet", mime: "text/x-puppet", mode: "puppet", ext: ["pp"]}, 103 {name: "Q", mime: "text/x-q", mode: "q", ext: ["q"]}, 104 {name: "R", mime: "text/x-rsrc", mode: "r", ext: ["r"], alias: ["rscript"]}, 105 {name: "reStructuredText", mime: "text/x-rst", mode: "rst", ext: ["rst"], alias: ["rst"]}, 106 {name: "RPM Changes", mime: "text/x-rpm-changes", mode: "rpm"}, 107 {name: "RPM Spec", mime: "text/x-rpm-spec", mode: "rpm", ext: ["spec"]}, 108 {name: "Ruby", mime: "text/x-ruby", mode: "ruby", ext: ["rb"], alias: ["jruby", "macruby", "rake", "rb", "rbx"]}, 109 {name: "Rust", mime: "text/x-rustsrc", mode: "rust", ext: ["rs"]}, 110 {name: "Sass", mime: "text/x-sass", mode: "sass", ext: ["sass"]}, 111 {name: "Scala", mime: "text/x-scala", mode: "clike", ext: ["scala"]}, 112 {name: "Scheme", mime: "text/x-scheme", mode: "scheme", ext: ["scm", "ss"]}, 113 {name: "SCSS", mime: "text/x-scss", mode: "css", ext: ["scss"]}, 114 {name: "Shell", mime: "text/x-sh", mode: "shell", ext: ["sh", "ksh", "bash"], alias: ["bash", "sh", "zsh"], file: /^PKGBUILD$/}, 115 {name: "Sieve", mime: "application/sieve", mode: "sieve", ext: ["siv", "sieve"]}, 116 {name: "Slim", mimes: ["text/x-slim", "application/x-slim"], mode: "slim", ext: ["slim"]}, 117 {name: "Smalltalk", mime: "text/x-stsrc", mode: "smalltalk", ext: ["st"]}, 118 {name: "Smarty", mime: "text/x-smarty", mode: "smarty", ext: ["tpl"]}, 119 {name: "Solr", mime: "text/x-solr", mode: "solr"}, 120 {name: "Soy", mime: "text/x-soy", mode: "soy", ext: ["soy"], alias: ["closure template"]}, 121 {name: "SPARQL", mime: "application/sparql-query", mode: "sparql", ext: ["rq", "sparql"], alias: ["sparul"]}, 122 {name: "Spreadsheet", mime: "text/x-spreadsheet", mode: "spreadsheet", alias: ["excel", "formula"]}, 123 {name: "SQL", mime: "text/x-sql", mode: "sql", ext: ["sql"]}, 124 {name: "Squirrel", mime: "text/x-squirrel", mode: "clike", ext: ["nut"]}, 125 {name: "Swift", mime: "text/x-swift", mode: "swift", ext: ["swift"]}, 126 {name: "MariaDB", mime: "text/x-mariadb", mode: "sql"}, 127 {name: "sTeX", mime: "text/x-stex", mode: "stex"}, 128 {name: "LaTeX", mime: "text/x-latex", mode: "stex", ext: ["text", "ltx"], alias: ["tex"]}, 129 {name: "SystemVerilog", mime: "text/x-systemverilog", mode: "verilog", ext: ["v"]}, 130 {name: "Tcl", mime: "text/x-tcl", mode: "tcl", ext: ["tcl"]}, 131 {name: "Textile", mime: "text/x-textile", mode: "textile", ext: ["textile"]}, 132 {name: "TiddlyWiki ", mime: "text/x-tiddlywiki", mode: "tiddlywiki"}, 133 {name: "Tiki wiki", mime: "text/tiki", mode: "tiki"}, 134 {name: "TOML", mime: "text/x-toml", mode: "toml", ext: ["toml"]}, 135 {name: "Tornado", mime: "text/x-tornado", mode: "tornado"}, 136 {name: "troff", mime: "troff", mode: "troff", ext: ["1", "2", "3", "4", "5", "6", "7", "8", "9"]}, 137 {name: "TTCN", mime: "text/x-ttcn", mode: "ttcn", ext: ["ttcn", "ttcn3", "ttcnpp"]}, 138 {name: "TTCN_CFG", mime: "text/x-ttcn-cfg", mode: "ttcn-cfg", ext: ["cfg"]}, 139 {name: "Turtle", mime: "text/turtle", mode: "turtle", ext: ["ttl"]}, 140 {name: "TypeScript", mime: "application/typescript", mode: "javascript", ext: ["ts"], alias: ["ts"]}, 141 {name: "Twig", mime: "text/x-twig", mode: "twig"}, 142 {name: "VB.NET", mime: "text/x-vb", mode: "vb", ext: ["vb"]}, 143 {name: "VBScript", mime: "text/vbscript", mode: "vbscript", ext: ["vbs"]}, 144 {name: "Velocity", mime: "text/velocity", mode: "velocity", ext: ["vtl"]}, 145 {name: "Verilog", mime: "text/x-verilog", mode: "verilog", ext: ["v"]}, 146 {name: "VHDL", mime: "text/x-vhdl", mode: "vhdl", ext: ["vhd", "vhdl"]}, 147 {name: "XML", mimes: ["application/xml", "text/xml"], mode: "xml", ext: ["xml", "xsl", "xsd"], alias: ["rss", "wsdl", "xsd"]}, 148 {name: "XQuery", mime: "application/xquery", mode: "xquery", ext: ["xy", "xquery"]}, 149 {name: "YAML", mime: "text/x-yaml", mode: "yaml", ext: ["yaml", "yml"], alias: ["yml"]}, 150 {name: "Z80", mime: "text/x-z80", mode: "z80", ext: ["z80"]}, 151 {name: "mscgen", mime: "text/x-mscgen", mode: "mscgen", ext: ["mscgen", "mscin", "msc"]}, 152 {name: "xu", mime: "text/x-xu", mode: "mscgen", ext: ["xu"]}, 153 {name: "msgenny", mime: "text/x-msgenny", mode: "mscgen", ext: ["msgenny"]} 154 ]; 155 // Ensure all modes have a mime property for backwards compatibility 156 for (var i = 0; i < CodeMirror.modeInfo.length; i++) { 157 var info = CodeMirror.modeInfo[i]; 158 if (info.mimes) info.mime = info.mimes[0]; 159 } 160 161 CodeMirror.findModeByMIME = function(mime) { 162 mime = mime.toLowerCase(); 163 for (var i = 0; i < CodeMirror.modeInfo.length; i++) { 164 var info = CodeMirror.modeInfo[i]; 165 if (info.mime == mime) return info; 166 if (info.mimes) for (var j = 0; j < info.mimes.length; j++) 167 if (info.mimes[j] == mime) return info; 168 } 169 }; 170 171 CodeMirror.findModeByExtension = function(ext) { 172 for (var i = 0; i < CodeMirror.modeInfo.length; i++) { 173 var info = CodeMirror.modeInfo[i]; 174 if (info.ext) for (var j = 0; j < info.ext.length; j++) 175 if (info.ext[j] == ext) return info; 176 } 177 }; 178 179 CodeMirror.findModeByFileName = function(filename) { 180 for (var i = 0; i < CodeMirror.modeInfo.length; i++) { 181 var info = CodeMirror.modeInfo[i]; 182 if (info.file && info.file.test(filename)) return info; 183 } 184 var dot = filename.lastIndexOf("."); 185 var ext = dot > -1 && filename.substring(dot + 1, filename.length); 186 if (ext) return CodeMirror.findModeByExtension(ext); 187 }; 188 189 CodeMirror.findModeByName = function(name) { 190 name = name.toLowerCase(); 191 for (var i = 0; i < CodeMirror.modeInfo.length; i++) { 192 var info = CodeMirror.modeInfo[i]; 193 if (info.name.toLowerCase() == name) return info; 194 if (info.alias) for (var j = 0; j < info.alias.length; j++) 195 if (info.alias[j].toLowerCase() == name) return info; 196 } 197 }; 198 });