codemirror-rails 5.6 → 5.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (25) hide show
  1. checksums.yaml +4 -4
  2. data/lib/codemirror/rails/version.rb +2 -2
  3. data/vendor/assets/javascripts/codemirror.js +30 -17
  4. data/vendor/assets/javascripts/codemirror/addons/display/placeholder.js +3 -1
  5. data/vendor/assets/javascripts/codemirror/addons/edit/closebrackets.js +10 -0
  6. data/vendor/assets/javascripts/codemirror/addons/lint/lint.js +21 -3
  7. data/vendor/assets/javascripts/codemirror/addons/search/search.js +29 -14
  8. data/vendor/assets/javascripts/codemirror/keymaps/sublime.js +11 -3
  9. data/vendor/assets/javascripts/codemirror/modes/clike.js +15 -0
  10. data/vendor/assets/javascripts/codemirror/modes/coffeescript.js +14 -17
  11. data/vendor/assets/javascripts/codemirror/modes/css.js +66 -15
  12. data/vendor/assets/javascripts/codemirror/modes/elm.js +1 -1
  13. data/vendor/assets/javascripts/codemirror/modes/gfm.js +23 -17
  14. data/vendor/assets/javascripts/codemirror/modes/haxe.js +68 -80
  15. data/vendor/assets/javascripts/codemirror/modes/htmlmixed.js +125 -96
  16. data/vendor/assets/javascripts/codemirror/modes/javascript.js +14 -5
  17. data/vendor/assets/javascripts/codemirror/modes/markdown.js +40 -29
  18. data/vendor/assets/javascripts/codemirror/modes/mscgen.js +169 -0
  19. data/vendor/assets/javascripts/codemirror/modes/oz.js +252 -0
  20. data/vendor/assets/javascripts/codemirror/modes/php.js +6 -3
  21. data/vendor/assets/javascripts/codemirror/modes/ruby.js +1 -1
  22. data/vendor/assets/javascripts/codemirror/modes/vhdl.js +1 -1
  23. data/vendor/assets/javascripts/codemirror/modes/vue.js +69 -0
  24. data/vendor/assets/stylesheets/codemirror/themes/icecoder.css +1 -0
  25. metadata +6 -3
@@ -0,0 +1,169 @@
1
+ // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
+ // Distributed under an MIT license: http://codemirror.net/LICENSE
3
+
4
+ // mode(s) for the sequence chart dsl's mscgen, xù and msgenny
5
+ // For more information on mscgen, see the site of the original author:
6
+ // http://www.mcternan.me.uk/mscgen
7
+ //
8
+ // This mode for mscgen and the two derivative languages were
9
+ // originally made for use in the mscgen_js interpreter
10
+ // (https://sverweij.github.io/mscgen_js)
11
+
12
+ (function(mod) {
13
+ if ( typeof exports == "object" && typeof module == "object")// CommonJS
14
+ mod(require("../../lib/codemirror"));
15
+ else if ( typeof define == "function" && define.amd)// AMD
16
+ define(["../../lib/codemirror"], mod);
17
+ else// Plain browser env
18
+ mod(CodeMirror);
19
+ })(function(CodeMirror) {
20
+ "use strict";
21
+
22
+ var languages = {
23
+ mscgen: {
24
+ "keywords" : ["msc"],
25
+ "options" : ["hscale", "width", "arcgradient", "wordwraparcs"],
26
+ "attributes" : ["label", "idurl", "id", "url", "linecolor", "linecolour", "textcolor", "textcolour", "textbgcolor", "textbgcolour", "arclinecolor", "arclinecolour", "arctextcolor", "arctextcolour", "arctextbgcolor", "arctextbgcolour", "arcskip"],
27
+ "brackets" : ["\\{", "\\}"], // [ and ] are brackets too, but these get handled in with lists
28
+ "arcsWords" : ["note", "abox", "rbox", "box"],
29
+ "arcsOthers" : ["\\|\\|\\|", "\\.\\.\\.", "---", "--", "<->", "==", "<<=>>", "<=>", "\\.\\.", "<<>>", "::", "<:>", "->", "=>>", "=>", ">>", ":>", "<-", "<<=", "<=", "<<", "<:", "x-", "-x"],
30
+ "singlecomment" : ["//", "#"],
31
+ "operators" : ["="]
32
+ },
33
+ xu: {
34
+ "keywords" : ["msc"],
35
+ "options" : ["hscale", "width", "arcgradient", "wordwraparcs", "watermark"],
36
+ "attributes" : ["label", "idurl", "id", "url", "linecolor", "linecolour", "textcolor", "textcolour", "textbgcolor", "textbgcolour", "arclinecolor", "arclinecolour", "arctextcolor", "arctextcolour", "arctextbgcolor", "arctextbgcolour", "arcskip"],
37
+ "brackets" : ["\\{", "\\}"], // [ and ] are brackets too, but these get handled in with lists
38
+ "arcsWords" : ["note", "abox", "rbox", "box", "alt", "else", "opt", "break", "par", "seq", "strict", "neg", "critical", "ignore", "consider", "assert", "loop", "ref", "exc"],
39
+ "arcsOthers" : ["\\|\\|\\|", "\\.\\.\\.", "---", "--", "<->", "==", "<<=>>", "<=>", "\\.\\.", "<<>>", "::", "<:>", "->", "=>>", "=>", ">>", ":>", "<-", "<<=", "<=", "<<", "<:", "x-", "-x"],
40
+ "singlecomment" : ["//", "#"],
41
+ "operators" : ["="]
42
+ },
43
+ msgenny: {
44
+ "keywords" : null,
45
+ "options" : ["hscale", "width", "arcgradient", "wordwraparcs", "watermark"],
46
+ "attributes" : null,
47
+ "brackets" : ["\\{", "\\}"],
48
+ "arcsWords" : ["note", "abox", "rbox", "box", "alt", "else", "opt", "break", "par", "seq", "strict", "neg", "critical", "ignore", "consider", "assert", "loop", "ref", "exc"],
49
+ "arcsOthers" : ["\\|\\|\\|", "\\.\\.\\.", "---", "--", "<->", "==", "<<=>>", "<=>", "\\.\\.", "<<>>", "::", "<:>", "->", "=>>", "=>", ">>", ":>", "<-", "<<=", "<=", "<<", "<:", "x-", "-x"],
50
+ "singlecomment" : ["//", "#"],
51
+ "operators" : ["="]
52
+ }
53
+ }
54
+
55
+ CodeMirror.defineMode("mscgen", function(_, modeConfig) {
56
+ var language = languages[modeConfig && modeConfig.language || "mscgen"]
57
+ return {
58
+ startState: startStateFn,
59
+ copyState: copyStateFn,
60
+ token: produceTokenFunction(language),
61
+ lineComment : "#",
62
+ blockCommentStart : "/*",
63
+ blockCommentEnd : "*/"
64
+ };
65
+ });
66
+
67
+ CodeMirror.defineMIME("text/x-mscgen", "mscgen");
68
+ CodeMirror.defineMIME("text/x-xu", {name: "mscgen", language: "xu"});
69
+ CodeMirror.defineMIME("text/x-msgenny", {name: "mscgen", language: "msgenny"});
70
+
71
+ function wordRegexpBoundary(pWords) {
72
+ return new RegExp("\\b((" + pWords.join(")|(") + "))\\b", "i");
73
+ }
74
+
75
+ function wordRegexp(pWords) {
76
+ return new RegExp("((" + pWords.join(")|(") + "))", "i");
77
+ }
78
+
79
+ function startStateFn() {
80
+ return {
81
+ inComment : false,
82
+ inString : false,
83
+ inAttributeList : false,
84
+ inScript : false
85
+ };
86
+ }
87
+
88
+ function copyStateFn(pState) {
89
+ return {
90
+ inComment : pState.inComment,
91
+ inString : pState.inString,
92
+ inAttributeList : pState.inAttributeList,
93
+ inScript : pState.inScript
94
+ };
95
+ }
96
+
97
+ function produceTokenFunction(pConfig) {
98
+
99
+ return function(pStream, pState) {
100
+ if (pStream.match(wordRegexp(pConfig.brackets), true, true)) {
101
+ return "bracket";
102
+ }
103
+ /* comments */
104
+ if (!pState.inComment) {
105
+ if (pStream.match(/\/\*[^\*\/]*/, true, true)) {
106
+ pState.inComment = true;
107
+ return "comment";
108
+ }
109
+ if (pStream.match(wordRegexp(pConfig.singlecomment), true, true)) {
110
+ pStream.skipToEnd();
111
+ return "comment";
112
+ }
113
+ }
114
+ if (pState.inComment) {
115
+ if (pStream.match(/[^\*\/]*\*\//, true, true))
116
+ pState.inComment = false;
117
+ else
118
+ pStream.skipToEnd();
119
+ return "comment";
120
+ }
121
+ /* strings */
122
+ if (!pState.inString && pStream.match(/\"(\\\"|[^\"])*/, true, true)) {
123
+ pState.inString = true;
124
+ return "string";
125
+ }
126
+ if (pState.inString) {
127
+ if (pStream.match(/[^\"]*\"/, true, true))
128
+ pState.inString = false;
129
+ else
130
+ pStream.skipToEnd();
131
+ return "string";
132
+ }
133
+ /* keywords & operators */
134
+ if (!!pConfig.keywords && pStream.match(wordRegexpBoundary(pConfig.keywords), true, true))
135
+ return "keyword";
136
+
137
+ if (pStream.match(wordRegexpBoundary(pConfig.options), true, true))
138
+ return "keyword";
139
+
140
+ if (pStream.match(wordRegexpBoundary(pConfig.arcsWords), true, true))
141
+ return "keyword";
142
+
143
+ if (pStream.match(wordRegexp(pConfig.arcsOthers), true, true))
144
+ return "keyword";
145
+
146
+ if (!!pConfig.operators && pStream.match(wordRegexp(pConfig.operators), true, true))
147
+ return "operator";
148
+
149
+ /* attribute lists */
150
+ if (!pConfig.inAttributeList && !!pConfig.attributes && pStream.match(/\[/, true, true)) {
151
+ pConfig.inAttributeList = true;
152
+ return "bracket";
153
+ }
154
+ if (pConfig.inAttributeList) {
155
+ if (pConfig.attributes !== null && pStream.match(wordRegexpBoundary(pConfig.attributes), true, true)) {
156
+ return "attribute";
157
+ }
158
+ if (pStream.match(/]/, true, true)) {
159
+ pConfig.inAttributeList = false;
160
+ return "bracket";
161
+ }
162
+ }
163
+
164
+ pStream.next();
165
+ return "base";
166
+ };
167
+ }
168
+
169
+ });
@@ -0,0 +1,252 @@
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("../../lib/codemirror"));
7
+ else if (typeof define == "function" && define.amd) // AMD
8
+ define(["../../lib/codemirror"], mod);
9
+ else // Plain browser env
10
+ mod(CodeMirror);
11
+ })(function(CodeMirror) {
12
+ "use strict";
13
+
14
+ CodeMirror.defineMode("oz", function (conf) {
15
+
16
+ function wordRegexp(words) {
17
+ return new RegExp("^((" + words.join(")|(") + "))\\b");
18
+ }
19
+
20
+ var singleOperators = /[\^@!\|<>#~\.\*\-\+\\/,=]/;
21
+ var doubleOperators = /(<-)|(:=)|(=<)|(>=)|(<=)|(<:)|(>:)|(=:)|(\\=)|(\\=:)|(!!)|(==)|(::)/;
22
+ var tripleOperators = /(:::)|(\.\.\.)|(=<:)|(>=:)/;
23
+
24
+ var middle = ["in", "then", "else", "of", "elseof", "elsecase", "elseif", "catch",
25
+ "finally", "with", "require", "prepare", "import", "export", "define", "do"];
26
+ var end = ["end"];
27
+
28
+ var atoms = wordRegexp(["true", "false", "nil", "unit"]);
29
+ var commonKeywords = wordRegexp(["andthen", "at", "attr", "declare", "feat", "from", "lex",
30
+ "mod", "mode", "orelse", "parser", "prod", "prop", "scanner", "self", "syn", "token"]);
31
+ var openingKeywords = wordRegexp(["local", "proc", "fun", "case", "class", "if", "cond", "or", "dis",
32
+ "choice", "not", "thread", "try", "raise", "lock", "for", "suchthat", "meth", "functor"]);
33
+ var middleKeywords = wordRegexp(middle);
34
+ var endKeywords = wordRegexp(end);
35
+
36
+ // Tokenizers
37
+ function tokenBase(stream, state) {
38
+ if (stream.eatSpace()) {
39
+ return null;
40
+ }
41
+
42
+ // Brackets
43
+ if(stream.match(/[{}]/)) {
44
+ return "bracket";
45
+ }
46
+
47
+ // Special [] keyword
48
+ if (stream.match(/(\[])/)) {
49
+ return "keyword"
50
+ }
51
+
52
+ // Operators
53
+ if (stream.match(tripleOperators) || stream.match(doubleOperators)) {
54
+ return "operator";
55
+ }
56
+
57
+ // Atoms
58
+ if(stream.match(atoms)) {
59
+ return 'atom';
60
+ }
61
+
62
+ // Opening keywords
63
+ var matched = stream.match(openingKeywords);
64
+ if (matched) {
65
+ if (!state.doInCurrentLine)
66
+ state.currentIndent++;
67
+ else
68
+ state.doInCurrentLine = false;
69
+
70
+ // Special matching for signatures
71
+ if(matched[0] == "proc" || matched[0] == "fun")
72
+ state.tokenize = tokenFunProc;
73
+ else if(matched[0] == "class")
74
+ state.tokenize = tokenClass;
75
+ else if(matched[0] == "meth")
76
+ state.tokenize = tokenMeth;
77
+
78
+ return 'keyword';
79
+ }
80
+
81
+ // Middle and other keywords
82
+ if (stream.match(middleKeywords) || stream.match(commonKeywords)) {
83
+ return "keyword"
84
+ }
85
+
86
+ // End keywords
87
+ if (stream.match(endKeywords)) {
88
+ state.currentIndent--;
89
+ return 'keyword';
90
+ }
91
+
92
+ // Eat the next char for next comparisons
93
+ var ch = stream.next();
94
+
95
+ // Strings
96
+ if (ch == '"' || ch == "'") {
97
+ state.tokenize = tokenString(ch);
98
+ return state.tokenize(stream, state);
99
+ }
100
+
101
+ // Numbers
102
+ if (/[~\d]/.test(ch)) {
103
+ if (ch == "~") {
104
+ if(! /^[0-9]/.test(stream.peek()))
105
+ return null;
106
+ else if (( stream.next() == "0" && stream.match(/^[xX][0-9a-fA-F]+/)) || stream.match(/^[0-9]*(\.[0-9]+)?([eE][~+]?[0-9]+)?/))
107
+ return "number";
108
+ }
109
+
110
+ if ((ch == "0" && stream.match(/^[xX][0-9a-fA-F]+/)) || stream.match(/^[0-9]*(\.[0-9]+)?([eE][~+]?[0-9]+)?/))
111
+ return "number";
112
+
113
+ return null;
114
+ }
115
+
116
+ // Comments
117
+ if (ch == "%") {
118
+ stream.skipToEnd();
119
+ return 'comment';
120
+ }
121
+ else if (ch == "/") {
122
+ if (stream.eat("*")) {
123
+ state.tokenize = tokenComment;
124
+ return tokenComment(stream, state);
125
+ }
126
+ }
127
+
128
+ // Single operators
129
+ if(singleOperators.test(ch)) {
130
+ return "operator";
131
+ }
132
+
133
+ // If nothing match, we skip the entire alphanumerical block
134
+ stream.eatWhile(/\w/);
135
+
136
+ return "variable";
137
+ }
138
+
139
+ function tokenClass(stream, state) {
140
+ if (stream.eatSpace()) {
141
+ return null;
142
+ }
143
+ stream.match(/([A-Z][A-Za-z0-9_]*)|(`.+`)/);
144
+ state.tokenize = tokenBase;
145
+ return "variable-3"
146
+ }
147
+
148
+ function tokenMeth(stream, state) {
149
+ if (stream.eatSpace()) {
150
+ return null;
151
+ }
152
+ stream.match(/([a-zA-Z][A-Za-z0-9_]*)|(`.+`)/);
153
+ state.tokenize = tokenBase;
154
+ return "def"
155
+ }
156
+
157
+ function tokenFunProc(stream, state) {
158
+ if (stream.eatSpace()) {
159
+ return null;
160
+ }
161
+
162
+ if(!state.hasPassedFirstStage && stream.eat("{")) {
163
+ state.hasPassedFirstStage = true;
164
+ return "bracket";
165
+ }
166
+ else if(state.hasPassedFirstStage) {
167
+ stream.match(/([A-Z][A-Za-z0-9_]*)|(`.+`)|\$/);
168
+ state.hasPassedFirstStage = false;
169
+ state.tokenize = tokenBase;
170
+ return "def"
171
+ }
172
+ else {
173
+ state.tokenize = tokenBase;
174
+ return null;
175
+ }
176
+ }
177
+
178
+ function tokenComment(stream, state) {
179
+ var maybeEnd = false, ch;
180
+ while (ch = stream.next()) {
181
+ if (ch == "/" && maybeEnd) {
182
+ state.tokenize = tokenBase;
183
+ break;
184
+ }
185
+ maybeEnd = (ch == "*");
186
+ }
187
+ return "comment";
188
+ }
189
+
190
+ function tokenString(quote) {
191
+ return function (stream, state) {
192
+ var escaped = false, next, end = false;
193
+ while ((next = stream.next()) != null) {
194
+ if (next == quote && !escaped) {
195
+ end = true;
196
+ break;
197
+ }
198
+ escaped = !escaped && next == "\\";
199
+ }
200
+ if (end || !escaped)
201
+ state.tokenize = tokenBase;
202
+ return "string";
203
+ };
204
+ }
205
+
206
+ function buildElectricInputRegEx() {
207
+ // Reindentation should occur on [] or on a match of any of
208
+ // the block closing keywords, at the end of a line.
209
+ var allClosings = middle.concat(end);
210
+ return new RegExp("[\\[\\]]|(" + allClosings.join("|") + ")$");
211
+ }
212
+
213
+ return {
214
+
215
+ startState: function () {
216
+ return {
217
+ tokenize: tokenBase,
218
+ currentIndent: 0,
219
+ doInCurrentLine: false,
220
+ hasPassedFirstStage: false
221
+ };
222
+ },
223
+
224
+ token: function (stream, state) {
225
+ if (stream.sol())
226
+ state.doInCurrentLine = 0;
227
+
228
+ return state.tokenize(stream, state);
229
+ },
230
+
231
+ indent: function (state, textAfter) {
232
+ var trueText = textAfter.replace(/^\s+|\s+$/g, '');
233
+
234
+ if (trueText.match(endKeywords) || trueText.match(middleKeywords) || trueText.match(/(\[])/))
235
+ return conf.indentUnit * (state.currentIndent - 1);
236
+
237
+ if (state.currentIndent < 0)
238
+ return 0;
239
+
240
+ return state.currentIndent * conf.indentUnit;
241
+ },
242
+ fold: "indent",
243
+ electricInput: buildElectricInputRegEx(),
244
+ lineComment: "%",
245
+ blockCommentStart: "/*",
246
+ blockCommentEnd: "*/"
247
+ };
248
+ });
249
+
250
+ CodeMirror.defineMIME("text/x-oz", "oz");
251
+
252
+ });
@@ -86,7 +86,7 @@
86
86
  "die echo empty exit eval include include_once isset list require require_once return " +
87
87
  "print unset __halt_compiler self static parent yield insteadof finally";
88
88
  var phpAtoms = "true false null TRUE FALSE NULL __CLASS__ __DIR__ __FILE__ __LINE__ __METHOD__ __FUNCTION__ __NAMESPACE__ __TRAIT__";
89
- var phpBuiltin = "func_num_args func_get_arg func_get_args strlen strcmp strncmp strcasecmp strncasecmp each error_reporting define defined trigger_error user_error set_error_handler restore_error_handler get_declared_classes get_loaded_extensions extension_loaded get_extension_funcs debug_backtrace constant bin2hex hex2bin sleep usleep time mktime gmmktime strftime gmstrftime strtotime date gmdate getdate localtime checkdate flush wordwrap htmlspecialchars htmlentities html_entity_decode md5 md5_file crc32 getimagesize image_type_to_mime_type phpinfo phpversion phpcredits strnatcmp strnatcasecmp substr_count strspn strcspn strtok strtoupper strtolower strpos strrpos strrev hebrev hebrevc nl2br basename dirname pathinfo stripslashes stripcslashes strstr stristr strrchr str_shuffle str_word_count strcoll substr substr_replace quotemeta ucfirst ucwords strtr addslashes addcslashes rtrim str_replace str_repeat count_chars chunk_split trim ltrim strip_tags similar_text explode implode setlocale localeconv parse_str str_pad chop strchr sprintf printf vprintf vsprintf sscanf fscanf parse_url urlencode urldecode rawurlencode rawurldecode readlink linkinfo link unlink exec system escapeshellcmd escapeshellarg passthru shell_exec proc_open proc_close rand srand getrandmax mt_rand mt_srand mt_getrandmax base64_decode base64_encode abs ceil floor round is_finite is_nan is_infinite bindec hexdec octdec decbin decoct dechex base_convert number_format fmod ip2long long2ip getenv putenv getopt microtime gettimeofday getrusage uniqid quoted_printable_decode set_time_limit get_cfg_var magic_quotes_runtime set_magic_quotes_runtime get_magic_quotes_gpc get_magic_quotes_runtime import_request_variables error_log serialize unserialize memory_get_usage var_dump var_export debug_zval_dump print_r highlight_file show_source highlight_string ini_get ini_get_all ini_set ini_alter ini_restore get_include_path set_include_path restore_include_path setcookie header headers_sent connection_aborted connection_status ignore_user_abort parse_ini_file is_uploaded_file move_uploaded_file intval floatval doubleval strval gettype settype is_null is_resource is_bool is_long is_float is_int is_integer is_double is_real is_numeric is_string is_array is_object is_scalar ereg ereg_replace eregi eregi_replace split spliti join sql_regcase dl pclose popen readfile rewind rmdir umask fclose feof fgetc fgets fgetss fread fopen fpassthru ftruncate fstat fseek ftell fflush fwrite fputs mkdir rename copy tempnam tmpfile file file_get_contents stream_select stream_context_create stream_context_set_params stream_context_set_option stream_context_get_options stream_filter_prepend stream_filter_append fgetcsv flock get_meta_tags stream_set_write_buffer set_file_buffer set_socket_blocking stream_set_blocking socket_set_blocking stream_get_meta_data stream_register_wrapper stream_wrapper_register stream_set_timeout socket_set_timeout socket_get_status realpath fnmatch fsockopen pfsockopen pack unpack get_browser crypt opendir closedir chdir getcwd rewinddir readdir dir glob fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype file_exists is_writable is_writeable is_readable is_executable is_file is_dir is_link stat lstat chown touch clearstatcache mail ob_start ob_flush ob_clean ob_end_flush ob_end_clean ob_get_flush ob_get_clean ob_get_length ob_get_level ob_get_status ob_get_contents ob_implicit_flush ob_list_handlers ksort krsort natsort natcasesort asort arsort sort rsort usort uasort uksort shuffle array_walk count end prev next reset current key min max in_array array_search extract compact array_fill range array_multisort array_push array_pop array_shift array_unshift array_splice array_slice array_merge array_merge_recursive array_keys array_values array_count_values array_reverse array_reduce array_pad array_flip array_change_key_case array_rand array_unique array_intersect array_intersect_assoc array_diff array_diff_assoc array_sum array_filter array_map array_chunk array_key_exists pos sizeof key_exists assert assert_options version_compare ftok str_rot13 aggregate session_name session_module_name session_save_path session_id session_regenerate_id session_decode session_register session_unregister session_is_registered session_encode session_start session_destroy session_unset session_set_save_handler session_cache_limiter session_cache_expire session_set_cookie_params session_get_cookie_params session_write_close preg_match preg_match_all preg_replace preg_replace_callback preg_split preg_quote preg_grep overload ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_lower ctype_graph ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit virtual apache_request_headers apache_note apache_lookup_uri apache_child_terminate apache_setenv apache_response_headers apache_get_version getallheaders mysql_connect mysql_pconnect mysql_close mysql_select_db mysql_create_db mysql_drop_db mysql_query mysql_unbuffered_query mysql_db_query mysql_list_dbs mysql_list_tables mysql_list_fields mysql_list_processes mysql_error mysql_errno mysql_affected_rows mysql_insert_id mysql_result mysql_num_rows mysql_num_fields mysql_fetch_row mysql_fetch_array mysql_fetch_assoc mysql_fetch_object mysql_data_seek mysql_fetch_lengths mysql_fetch_field mysql_field_seek mysql_free_result mysql_field_name mysql_field_table mysql_field_len mysql_field_type mysql_field_flags mysql_escape_string mysql_real_escape_string mysql_stat mysql_thread_id mysql_client_encoding mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_info mysql_info mysql mysql_fieldname mysql_fieldtable mysql_fieldlen mysql_fieldtype mysql_fieldflags mysql_selectdb mysql_createdb mysql_dropdb mysql_freeresult mysql_numfields mysql_numrows mysql_listdbs mysql_listtables mysql_listfields mysql_db_name mysql_dbname mysql_tablename mysql_table_name pg_connect pg_pconnect pg_close pg_connection_status pg_connection_busy pg_connection_reset pg_host pg_dbname pg_port pg_tty pg_options pg_ping pg_query pg_send_query pg_cancel_query pg_fetch_result pg_fetch_row pg_fetch_assoc pg_fetch_array pg_fetch_object pg_fetch_all pg_affected_rows pg_get_result pg_result_seek pg_result_status pg_free_result pg_last_oid pg_num_rows pg_num_fields pg_field_name pg_field_num pg_field_size pg_field_type pg_field_prtlen pg_field_is_null pg_get_notify pg_get_pid pg_result_error pg_last_error pg_last_notice pg_put_line pg_end_copy pg_copy_to pg_copy_from pg_trace pg_untrace pg_lo_create pg_lo_unlink pg_lo_open pg_lo_close pg_lo_read pg_lo_write pg_lo_read_all pg_lo_import pg_lo_export pg_lo_seek pg_lo_tell pg_escape_string pg_escape_bytea pg_unescape_bytea pg_client_encoding pg_set_client_encoding pg_meta_data pg_convert pg_insert pg_update pg_delete pg_select pg_exec pg_getlastoid pg_cmdtuples pg_errormessage pg_numrows pg_numfields pg_fieldname pg_fieldsize pg_fieldtype pg_fieldnum pg_fieldprtlen pg_fieldisnull pg_freeresult pg_result pg_loreadall pg_locreate pg_lounlink pg_loopen pg_loclose pg_loread pg_lowrite pg_loimport pg_loexport http_response_code get_declared_traits getimagesizefromstring socket_import_stream stream_set_chunk_size trait_exists header_register_callback class_uses session_status session_register_shutdown echo print global static exit array empty eval isset unset die include require include_once require_once json_decode json_encode json_last_error json_last_error_msg curl_close curl_copy_handle curl_errno curl_error curl_escape curl_exec curl_file_create curl_getinfo curl_init curl_multi_add_handle curl_multi_close curl_multi_exec curl_multi_getcontent curl_multi_info_read curl_multi_init curl_multi_remove_handle curl_multi_select curl_multi_setopt curl_multi_strerror curl_pause curl_reset curl_setopt_array curl_setopt curl_share_close curl_share_init curl_share_setopt curl_strerror curl_unescape curl_version mysqli_affected_rows mysqli_autocommit mysqli_change_user mysqli_character_set_name mysqli_close mysqli_commit mysqli_connect_errno mysqli_connect_error mysqli_connect mysqli_data_seek mysqli_debug mysqli_dump_debug_info mysqli_errno mysqli_error_list mysqli_error mysqli_fetch_all mysqli_fetch_array mysqli_fetch_assoc mysqli_fetch_field_direct mysqli_fetch_field mysqli_fetch_fields mysqli_fetch_lengths mysqli_fetch_object mysqli_fetch_row mysqli_field_count mysqli_field_seek mysqli_field_tell mysqli_free_result mysqli_get_charset mysqli_get_client_info mysqli_get_client_stats mysqli_get_client_version mysqli_get_connection_stats mysqli_get_host_info mysqli_get_proto_info mysqli_get_server_info mysqli_get_server_version mysqli_info mysqli_init mysqli_insert_id mysqli_kill mysqli_more_results mysqli_multi_query mysqli_next_result mysqli_num_fields mysqli_num_rows mysqli_options mysqli_ping mysqli_prepare mysqli_query mysqli_real_connect mysqli_real_escape_string mysqli_real_query mysqli_reap_async_query mysqli_refresh mysqli_rollback mysqli_select_db mysqli_set_charset mysqli_set_local_infile_default mysqli_set_local_infile_handler mysqli_sqlstate mysqli_ssl_set mysqli_stat mysqli_stmt_init mysqli_store_result mysqli_thread_id mysqli_thread_safe mysqli_use_result mysqli_warning_count";
89
+ var phpBuiltin = "func_num_args func_get_arg func_get_args strlen strcmp strncmp strcasecmp strncasecmp each error_reporting define defined trigger_error user_error set_error_handler restore_error_handler get_declared_classes get_loaded_extensions extension_loaded get_extension_funcs debug_backtrace constant bin2hex hex2bin sleep usleep time mktime gmmktime strftime gmstrftime strtotime date gmdate getdate localtime checkdate flush wordwrap htmlspecialchars htmlentities html_entity_decode md5 md5_file crc32 getimagesize image_type_to_mime_type phpinfo phpversion phpcredits strnatcmp strnatcasecmp substr_count strspn strcspn strtok strtoupper strtolower strpos strrpos strrev hebrev hebrevc nl2br basename dirname pathinfo stripslashes stripcslashes strstr stristr strrchr str_shuffle str_word_count strcoll substr substr_replace quotemeta ucfirst ucwords strtr addslashes addcslashes rtrim str_replace str_repeat count_chars chunk_split trim ltrim strip_tags similar_text explode implode setlocale localeconv parse_str str_pad chop strchr sprintf printf vprintf vsprintf sscanf fscanf parse_url urlencode urldecode rawurlencode rawurldecode readlink linkinfo link unlink exec system escapeshellcmd escapeshellarg passthru shell_exec proc_open proc_close rand srand getrandmax mt_rand mt_srand mt_getrandmax base64_decode base64_encode abs ceil floor round is_finite is_nan is_infinite bindec hexdec octdec decbin decoct dechex base_convert number_format fmod ip2long long2ip getenv putenv getopt microtime gettimeofday getrusage uniqid quoted_printable_decode set_time_limit get_cfg_var magic_quotes_runtime set_magic_quotes_runtime get_magic_quotes_gpc get_magic_quotes_runtime import_request_variables error_log serialize unserialize memory_get_usage var_dump var_export debug_zval_dump print_r highlight_file show_source highlight_string ini_get ini_get_all ini_set ini_alter ini_restore get_include_path set_include_path restore_include_path setcookie header headers_sent connection_aborted connection_status ignore_user_abort parse_ini_file is_uploaded_file move_uploaded_file intval floatval doubleval strval gettype settype is_null is_resource is_bool is_long is_float is_int is_integer is_double is_real is_numeric is_string is_array is_object is_scalar ereg ereg_replace eregi eregi_replace split spliti join sql_regcase dl pclose popen readfile rewind rmdir umask fclose feof fgetc fgets fgetss fread fopen fpassthru ftruncate fstat fseek ftell fflush fwrite fputs mkdir rename copy tempnam tmpfile file file_get_contents file_put_contents stream_select stream_context_create stream_context_set_params stream_context_set_option stream_context_get_options stream_filter_prepend stream_filter_append fgetcsv flock get_meta_tags stream_set_write_buffer set_file_buffer set_socket_blocking stream_set_blocking socket_set_blocking stream_get_meta_data stream_register_wrapper stream_wrapper_register stream_set_timeout socket_set_timeout socket_get_status realpath fnmatch fsockopen pfsockopen pack unpack get_browser crypt opendir closedir chdir getcwd rewinddir readdir dir glob fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype file_exists is_writable is_writeable is_readable is_executable is_file is_dir is_link stat lstat chown touch clearstatcache mail ob_start ob_flush ob_clean ob_end_flush ob_end_clean ob_get_flush ob_get_clean ob_get_length ob_get_level ob_get_status ob_get_contents ob_implicit_flush ob_list_handlers ksort krsort natsort natcasesort asort arsort sort rsort usort uasort uksort shuffle array_walk count end prev next reset current key min max in_array array_search extract compact array_fill range array_multisort array_push array_pop array_shift array_unshift array_splice array_slice array_merge array_merge_recursive array_keys array_values array_count_values array_reverse array_reduce array_pad array_flip array_change_key_case array_rand array_unique array_intersect array_intersect_assoc array_diff array_diff_assoc array_sum array_filter array_map array_chunk array_key_exists pos sizeof key_exists assert assert_options version_compare ftok str_rot13 aggregate session_name session_module_name session_save_path session_id session_regenerate_id session_decode session_register session_unregister session_is_registered session_encode session_start session_destroy session_unset session_set_save_handler session_cache_limiter session_cache_expire session_set_cookie_params session_get_cookie_params session_write_close preg_match preg_match_all preg_replace preg_replace_callback preg_split preg_quote preg_grep overload ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_lower ctype_graph ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit virtual apache_request_headers apache_note apache_lookup_uri apache_child_terminate apache_setenv apache_response_headers apache_get_version getallheaders mysql_connect mysql_pconnect mysql_close mysql_select_db mysql_create_db mysql_drop_db mysql_query mysql_unbuffered_query mysql_db_query mysql_list_dbs mysql_list_tables mysql_list_fields mysql_list_processes mysql_error mysql_errno mysql_affected_rows mysql_insert_id mysql_result mysql_num_rows mysql_num_fields mysql_fetch_row mysql_fetch_array mysql_fetch_assoc mysql_fetch_object mysql_data_seek mysql_fetch_lengths mysql_fetch_field mysql_field_seek mysql_free_result mysql_field_name mysql_field_table mysql_field_len mysql_field_type mysql_field_flags mysql_escape_string mysql_real_escape_string mysql_stat mysql_thread_id mysql_client_encoding mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_info mysql_info mysql mysql_fieldname mysql_fieldtable mysql_fieldlen mysql_fieldtype mysql_fieldflags mysql_selectdb mysql_createdb mysql_dropdb mysql_freeresult mysql_numfields mysql_numrows mysql_listdbs mysql_listtables mysql_listfields mysql_db_name mysql_dbname mysql_tablename mysql_table_name pg_connect pg_pconnect pg_close pg_connection_status pg_connection_busy pg_connection_reset pg_host pg_dbname pg_port pg_tty pg_options pg_ping pg_query pg_send_query pg_cancel_query pg_fetch_result pg_fetch_row pg_fetch_assoc pg_fetch_array pg_fetch_object pg_fetch_all pg_affected_rows pg_get_result pg_result_seek pg_result_status pg_free_result pg_last_oid pg_num_rows pg_num_fields pg_field_name pg_field_num pg_field_size pg_field_type pg_field_prtlen pg_field_is_null pg_get_notify pg_get_pid pg_result_error pg_last_error pg_last_notice pg_put_line pg_end_copy pg_copy_to pg_copy_from pg_trace pg_untrace pg_lo_create pg_lo_unlink pg_lo_open pg_lo_close pg_lo_read pg_lo_write pg_lo_read_all pg_lo_import pg_lo_export pg_lo_seek pg_lo_tell pg_escape_string pg_escape_bytea pg_unescape_bytea pg_client_encoding pg_set_client_encoding pg_meta_data pg_convert pg_insert pg_update pg_delete pg_select pg_exec pg_getlastoid pg_cmdtuples pg_errormessage pg_numrows pg_numfields pg_fieldname pg_fieldsize pg_fieldtype pg_fieldnum pg_fieldprtlen pg_fieldisnull pg_freeresult pg_result pg_loreadall pg_locreate pg_lounlink pg_loopen pg_loclose pg_loread pg_lowrite pg_loimport pg_loexport http_response_code get_declared_traits getimagesizefromstring socket_import_stream stream_set_chunk_size trait_exists header_register_callback class_uses session_status session_register_shutdown echo print global static exit array empty eval isset unset die include require include_once require_once json_decode json_encode json_last_error json_last_error_msg curl_close curl_copy_handle curl_errno curl_error curl_escape curl_exec curl_file_create curl_getinfo curl_init curl_multi_add_handle curl_multi_close curl_multi_exec curl_multi_getcontent curl_multi_info_read curl_multi_init curl_multi_remove_handle curl_multi_select curl_multi_setopt curl_multi_strerror curl_pause curl_reset curl_setopt_array curl_setopt curl_share_close curl_share_init curl_share_setopt curl_strerror curl_unescape curl_version mysqli_affected_rows mysqli_autocommit mysqli_change_user mysqli_character_set_name mysqli_close mysqli_commit mysqli_connect_errno mysqli_connect_error mysqli_connect mysqli_data_seek mysqli_debug mysqli_dump_debug_info mysqli_errno mysqli_error_list mysqli_error mysqli_fetch_all mysqli_fetch_array mysqli_fetch_assoc mysqli_fetch_field_direct mysqli_fetch_field mysqli_fetch_fields mysqli_fetch_lengths mysqli_fetch_object mysqli_fetch_row mysqli_field_count mysqli_field_seek mysqli_field_tell mysqli_free_result mysqli_get_charset mysqli_get_client_info mysqli_get_client_stats mysqli_get_client_version mysqli_get_connection_stats mysqli_get_host_info mysqli_get_proto_info mysqli_get_server_info mysqli_get_server_version mysqli_info mysqli_init mysqli_insert_id mysqli_kill mysqli_more_results mysqli_multi_query mysqli_next_result mysqli_num_fields mysqli_num_rows mysqli_options mysqli_ping mysqli_prepare mysqli_query mysqli_real_connect mysqli_real_escape_string mysqli_real_query mysqli_reap_async_query mysqli_refresh mysqli_rollback mysqli_select_db mysqli_set_charset mysqli_set_local_infile_default mysqli_set_local_infile_handler mysqli_sqlstate mysqli_ssl_set mysqli_stat mysqli_stmt_init mysqli_store_result mysqli_thread_id mysqli_thread_safe mysqli_use_result mysqli_warning_count";
90
90
  CodeMirror.registerHelper("hintWords", "php", [phpKeywords, phpAtoms, phpBuiltin].join(" ").split(" "));
91
91
  CodeMirror.registerHelper("wordChars", "php", /[\w$]/);
92
92
 
@@ -160,6 +160,7 @@
160
160
  if (!isPHP) {
161
161
  if (stream.match(/^<\?\w*/)) {
162
162
  state.curMode = phpMode;
163
+ if (!state.php) state.php = CodeMirror.startState(phpMode, htmlMode.indent(state.html, ""))
163
164
  state.curState = state.php;
164
165
  return "meta";
165
166
  }
@@ -183,6 +184,7 @@
183
184
  } else if (isPHP && state.php.tokenize == null && stream.match("?>")) {
184
185
  state.curMode = htmlMode;
185
186
  state.curState = state.html;
187
+ if (!state.php.context.prev) state.php = null;
186
188
  return "meta";
187
189
  } else {
188
190
  return phpMode.token(stream, state.curState);
@@ -191,7 +193,8 @@
191
193
 
192
194
  return {
193
195
  startState: function() {
194
- var html = CodeMirror.startState(htmlMode), php = CodeMirror.startState(phpMode);
196
+ var html = CodeMirror.startState(htmlMode)
197
+ var php = parserConfig.startOpen ? CodeMirror.startState(phpMode) : null
195
198
  return {html: html,
196
199
  php: php,
197
200
  curMode: parserConfig.startOpen ? phpMode : htmlMode,
@@ -201,7 +204,7 @@
201
204
 
202
205
  copyState: function(state) {
203
206
  var html = state.html, htmlNew = CodeMirror.copyState(htmlMode, html),
204
- php = state.php, phpNew = CodeMirror.copyState(phpMode, php), cur;
207
+ php = state.php, phpNew = php && CodeMirror.copyState(phpMode, php), cur;
205
208
  if (state.curMode == htmlMode) cur = htmlNew;
206
209
  else cur = phpNew;
207
210
  return {html: htmlNew, php: phpNew, curMode: state.curMode, curState: cur,