Simple Custom CSS and JS - Version 3.9

Version Description

  • 12/01/2017
  • Feature: add "Last edited ..." information under the editor
  • Fix: jump to line when searching
  • Tweak: add message that the Code Revision data is dummy
Download this release

Release Info

Developer diana_burduja
Plugin Icon 128x128 Simple Custom CSS and JS
Version 3.9
Comparing to
See all releases

Code changes from version 1.2 to 3.9

Files changed (37) hide show
  1. assets/ccj_admin-url_rules.js +294 -0
  2. assets/ccj_admin.css +379 -0
  3. assets/ccj_admin.js +108 -0
  4. assets/codemirror/LICENSE +22 -0
  5. assets/codemirror/addon/dialog/dialog.css +1 -0
  6. assets/codemirror/addon/dialog/dialog.js +5 -0
  7. assets/codemirror/addon/edit/matchbrackets.js +6 -120
  8. assets/codemirror/addon/scroll/simplescrollbars.css +1 -0
  9. assets/codemirror/addon/scroll/simplescrollbars.js +6 -0
  10. assets/codemirror/addon/search/jump-to-line.js +2 -0
  11. assets/codemirror/addon/search/match-highlighter.js +6 -0
  12. assets/codemirror/addon/search/matchesonscrollbar.css +1 -0
  13. assets/codemirror/addon/search/matchesonscrollbar.js +5 -0
  14. assets/codemirror/addon/search/search.js +14 -0
  15. assets/codemirror/addon/search/searchcursor.js +13 -0
  16. assets/codemirror/lib/codemirror.css +1 -334
  17. assets/codemirror/lib/codemirror.js +317 -8878
  18. assets/codemirror/mode/css/css.js +24 -825
  19. assets/codemirror/mode/htmlmixed/htmlmixed.js +6 -150
  20. assets/codemirror/mode/javascript/javascript.js +29 -720
  21. assets/codemirror/mode/xml/xml.js +12 -0
  22. assets/codemirror/theme/3024-night.css +1 -39
  23. assets/images/button-close-hover.png +0 -0
  24. assets/images/button-close.png +0 -0
  25. custom-css-js.php +220 -135
  26. includes/admin-addons.php +186 -0
  27. includes/admin-notices.php +221 -0
  28. includes/admin-screens.php +853 -254
  29. includes/admin-warnings.php +100 -0
  30. languages/custom-css-js-fr_FR.mo +0 -0
  31. languages/custom-css-js-fr_FR.po +501 -0
  32. languages/custom-css-js-pl_PL.mo +0 -0
  33. languages/custom-css-js-pl_PL.po +450 -0
  34. languages/custom-css-js-tr_TR.mo +0 -0
  35. languages/custom-css-js-tr_TR.po +501 -0
  36. languages/custom-css-js.pot +500 -0
  37. readme.txt +181 -48
assets/ccj_admin-url_rules.js ADDED
@@ -0,0 +1,294 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ if (!String.prototype.trim) {(function() {
3
+ var r = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
4
+ String.prototype.trim = function() {
5
+ return this.replace(r, '');
6
+ };
7
+ })();};
8
+
9
+ if (!String.prototype.esc_html) {(function() {
10
+ var r = /[&<>"'\/]/g;
11
+ var entity_map = {'&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;', "'": '&#39;', '/': '&#x2F;'};
12
+ String.prototype.esc_html = function() {
13
+ return this.replace(r, function from_entity_map(s) {
14
+ return entity_map[s];
15
+ });
16
+ };
17
+ })();};
18
+
19
+ if (!String.prototype.capitalize) {
20
+ String.prototype.capitalize = function() {
21
+ return this.charAt(0).toUpperCase() + this.slice(1);
22
+ }
23
+ };
24
+
25
+
26
+
27
+ ;jQuery(document).ready(function($) {
28
+
29
+
30
+
31
+ var elist_index = {};
32
+
33
+
34
+
35
+ function elist_arrange(names) {
36
+
37
+ var rq = /\%quot\%/g;
38
+ var n, name, field, editable, f;
39
+ var filters = {
40
+ 'contains' : 'Contains',
41
+ 'not-contains' : 'Not contains',
42
+ 'equal-to' : 'Is equal to',
43
+ 'not-equal-to' : 'Not equal to',
44
+ 'begins-with' : 'Starts with',
45
+ 'ends-by' : 'Ends by',
46
+ 'all' : 'All Website',
47
+ 'first-page' : 'First page'
48
+ };
49
+
50
+ for (n in names) {
51
+
52
+ name = names[n];
53
+ field = $('#wplnst-scan-' + name).val();
54
+ field = ('' === field)? [] : JSON.parse(field);
55
+ if (!(field instanceof Array) || 0 == field.length)
56
+ continue;
57
+
58
+ elist_index[name] = field.length;
59
+ editable = ('true' == $('#wplnst-elist-' + name).attr('data-editable'));
60
+
61
+ if ('anchor-filters' == name) {
62
+ for (f in field)
63
+ elist_add_row(name, elist_get_row(name, {'value' : field[f]['value'].esc_html().replace(rq, '&quot;'), 'type' : filters[ field[f]['type']].esc_html().replace('-', ' ')}, editable), field[f]['index']);
64
+
65
+ }
66
+ }
67
+ }
68
+
69
+
70
+
71
+ function elist_add(name, value, inputs, row) {
72
+
73
+ var field = $('#wplnst-scan-' + name).val();
74
+ field = ('' === field)? [] : JSON.parse(field);
75
+ if (!(field instanceof Array) || field.length > 25)
76
+ return;
77
+
78
+ (name in elist_index)? elist_index[name]++ : elist_index[name] = 0;
79
+ value['index'] = elist_index[name] + 1;
80
+ field.push(value);
81
+
82
+ $('#wplnst-scan-' + name).val(JSON.stringify(field));
83
+
84
+ for (var i = 0; i < inputs.length; i++)
85
+ $('#' + inputs[i]).val('');
86
+
87
+ elist_add_row(name, row, value['index']);
88
+ }
89
+
90
+
91
+
92
+ function elist_add_row(name, row, index) {
93
+ row = row.replace(/\%class\-index\%/g, 'wplnst-' + name + '-' + index);
94
+ row = row.replace('%close%', '<a href="#" class="wplnst-elist-close-link" data-name = "' + name + '" data-index="' + index + '">&nbsp;</a>');
95
+ $('#' + 'wplnst-elist-' + name).append(row);
96
+ $('#' + 'wplnst-elist-' + name).show();
97
+ }
98
+
99
+
100
+
101
+ function elist_get_row(name, args, editable) {
102
+
103
+ if ('anchor-filters' == name)
104
+ return '<tr class="%class-index%"><td class="wplnst-elist-type wplnst-afs-type">' + $('#wplnst-elist-anchor-filters').attr('data-label') + '&nbsp; <strong>' + args['type'] + '</strong></td><td class="wplnst-elist-val wplnst-afs-val">' + args['value'] + '</td><td class="wplnst-elist-close wplnst-afs-close">' + (editable? '%close%' : '') + '</td></tr><tr class="%class-index%"><td colspan="3" class="wplnst-elist-split"></td></tr>';
105
+
106
+ return false;
107
+ }
108
+
109
+
110
+ $('.wplnst-elist').on('click', '.wplnst-elist-close-link', function() {
111
+
112
+ var name = $(this).attr('data-name');
113
+ var index = $(this).attr('data-index');
114
+
115
+ var field = $('#wplnst-scan-' + name).val();
116
+ if ('' !== field) {
117
+
118
+ field = JSON.parse(field);
119
+ if (field instanceof Array) {
120
+
121
+ var field_new = [];
122
+ for (var i = 0; i < field.length; i++) {
123
+ if (index != field[i]['index'])
124
+ field_new.push(field[i]);
125
+ }
126
+
127
+ $('#wplnst-scan-' + name).val(JSON.stringify(field_new));
128
+ $('.wplnst-' + name + '-' + index).remove();
129
+
130
+ if (0 === field_new.length)
131
+ $('#' + 'wplnst-elist-' + name).hide();
132
+ }
133
+ }
134
+
135
+ return false;
136
+ });
137
+
138
+
139
+
140
+ $('.wplnst-status-level').click(function() {
141
+ var level = $(this).attr('id').replace('ck-status-level-', '');
142
+ $('.wplnst-code-level-' + level).prop('checked', false);
143
+ });
144
+
145
+ $('.wplnst-code-level').click(function() {
146
+ var level = $(this).attr('id').replace('ck-status-code-', '').charAt(0);
147
+ $('#ck-status-level-' + level).prop('checked', false);
148
+ });
149
+
150
+
151
+
152
+ $('#wplnst-save-and-run').click(function() {
153
+ $('#wplnst-scan-run').val('1');
154
+ $('#wplnst-form').submit();
155
+ });
156
+
157
+
158
+
159
+ $('#wplnst-cf-new-add').click(function() {
160
+ var name = $('#wplnst-cf-new').val().trim();
161
+ if ('' === name)
162
+ return;
163
+ elist_add('custom-fields', {'name' : name, 'type': $('#wplnst-cf-new-type').val()}, ['wplnst-cf-new'], elist_get_row('custom-fields', {'name' : name.esc_html(), 'type' : $('#wplnst-cf-new-type option:selected').text().esc_html()}, true));
164
+ });
165
+
166
+ $('#wplnst-cf-new').bind('keypress', function(e) {
167
+ if (e.keyCode == 13) {
168
+ $('#wplnst-cf-new-add').click();
169
+ return false;
170
+ }
171
+ });
172
+
173
+
174
+
175
+ $('#wplnst-af-new-add').click(function() {
176
+ var value = $('#wplnst-af-new').val().trim();
177
+ var type = $('#wplnst-af-new-type').val();
178
+
179
+ if ( type === 'empty' || type === 'all' || type === 'first-page' ) {
180
+ value = '';
181
+ } else if ( value === '' ) {
182
+ return;
183
+ }
184
+ elist_add('anchor-filters', {'value' : value, 'type': type}, ['wplnst-af-new'], elist_get_row('anchor-filters', {'type' : $('#wplnst-af-new-type option:selected').text().esc_html(), 'value' : value.esc_html() }, true));
185
+ });
186
+
187
+ $('#wplnst-af-new').bind('keypress', function(e) {
188
+ if (e.keyCode == 13) {
189
+ $('#wplnst-af-new-add').click();
190
+ return false;
191
+ }
192
+ });
193
+
194
+ $('#wplnst-af-new-type').change(function() {
195
+ var disabled = ('empty' == $(this).val());
196
+ $('#wplnst-af-new').attr('disabled', disabled);
197
+ });
198
+
199
+
200
+
201
+ $('#wplnst-ius-new-add').click(function() {
202
+ var value = $('#wplnst-ius-new').val().trim();
203
+ if ('' === value)
204
+ return;
205
+ elist_add('include-urls', {'value' : value, 'type': $('#wplnst-ius-new-type').val()}, ['wplnst-ius-new'], elist_get_row('include-urls', {'value' : value.esc_html(), 'type' : $('#wplnst-ius-new-type option:selected').text().esc_html()}, true));
206
+ });
207
+
208
+ $('#wplnst-ius-new').bind('keypress', function(e) {
209
+ if (e.keyCode == 13) {
210
+ $('#wplnst-ius-new-add').click();
211
+ return false;
212
+ }
213
+ });
214
+
215
+
216
+
217
+ $('#wplnst-eus-new-add').click(function() {
218
+ var value = $('#wplnst-eus-new').val().trim();
219
+ if ('' === value)
220
+ return;
221
+ elist_add('exclude-urls', {'value' : value, 'type': $('#wplnst-eus-new-type').val()}, ['wplnst-eus-new'], elist_get_row('exclude-urls', {'value' : value.esc_html(), 'type' : $('#wplnst-eus-new-type option:selected').text().esc_html()}, true));
222
+ });
223
+
224
+ $('#wplnst-eus-new').bind('keypress', function(e) {
225
+ if (e.keyCode == 13) {
226
+ $('#wplnst-eus-new-add').click();
227
+ return false;
228
+ }
229
+ });
230
+
231
+
232
+
233
+ $('#wplnst-hes-new-add').click(function() {
234
+
235
+ var att = $('#wplnst-hes-new-att').val().trim();
236
+ if ('' === att)
237
+ return;
238
+
239
+ var element = $('#wplnst-hes-new').val();
240
+ var having = $('#wplnst-hes-new-have').val();
241
+
242
+ var op = op_text = value = '';
243
+ if ('have' == having) {
244
+
245
+ var op = $('#wplnst-hes-new-op').val();
246
+ var op_text = $('#wplnst-hes-new-op option:selected').text().toLowerCase();
247
+ var value = '' + $('#wplnst-hes-new-val').val().trim();
248
+
249
+ if ('not-empty' == op || 'empty' == op) {
250
+ value = '';
251
+ } else if ('' === value) {
252
+ return;
253
+ }
254
+ }
255
+
256
+ elist_add(
257
+ 'html-attributes',
258
+ {'att' : att, 'element' : element, 'having' : having, 'op' : op, 'value' : value},
259
+ ['wplnst-hes-new-att', 'wplnst-hes-new-val'],
260
+ elist_get_row('html-attributes', {'element' : element.esc_html(), 'having' : $('#wplnst-hes-new-have option:selected').text().toLowerCase().esc_html(), 'att' : att.esc_html(), 'op' : op_text.esc_html(), 'value' : value.esc_html()}, true)
261
+ );
262
+ });
263
+
264
+ $('#wplnst-hes-new-att').bind('keypress', function(e) {
265
+ if (e.keyCode == 13) {
266
+ $('#wplnst-hes-new-add').click();
267
+ return false;
268
+ }
269
+ });
270
+
271
+ $('#wplnst-hes-new-val').bind('keypress', function(e) {
272
+ if (e.keyCode == 13) {
273
+ $('#wplnst-hes-new-add').click();
274
+ return false;
275
+ }
276
+ });
277
+
278
+ $('#wplnst-hes-new-have').change(function() {
279
+ var disabled = ('have' != $(this).val());
280
+ $('#wplnst-hes-new-op').attr('disabled', disabled);
281
+ $('#wplnst-hes-new-val').attr('disabled', disabled);
282
+ });
283
+
284
+ $('#wplnst-hes-new-op').change(function() {
285
+ $('#wplnst-hes-new-val').attr('disabled', ('empty' == $(this).val() || 'not-empty' == $(this).val()));
286
+ });
287
+
288
+
289
+
290
+ elist_arrange(['anchor-filters']);
291
+
292
+
293
+
294
+ });
assets/ccj_admin.css ADDED
@@ -0,0 +1,379 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Add Custom Code buttons
3
+ */
4
+ .updated.buttons {
5
+ border: none;
6
+ background-color: transparent;
7
+ box-shadow: none;
8
+ padding: 0;
9
+ margin: 15px 0 15px !important;
10
+ }
11
+ .custom-btn {
12
+ background: #0c73b8;
13
+ border-radius: 2px;
14
+ color: #ffffff;
15
+ font-size: 17px;
16
+ padding: 10px 20px 10px 20px !important;
17
+ text-decoration: none;
18
+ }
19
+ .custom-btn:hover {
20
+ color: #fff;
21
+ background: #2eaadd;
22
+ text-decoration: none;
23
+ }
24
+ .custom-js-btn { background: #e4a228; }
25
+ .custom-js-btn:hover { background: #eebf31; }
26
+ .custom-php-btn { background: #e45126; }
27
+ .custom-php-btn:hover { background: #f6652c; }
28
+
29
+ .update.notice a { display: none; }
30
+
31
+
32
+ /**
33
+ * Change the `edit` screen
34
+ */
35
+ .inline.hide-if-no-js{ display: none; }
36
+ .view-switch { display: none; }
37
+ #modified { width: 140px; }
38
+ #type.manage-column { width: 50px; }
39
+ .language {
40
+ background: #0c73b8;
41
+ border-radius: 2px;
42
+ color: #ffffff;
43
+ font-size: 12px;
44
+ padding: 5px 10px !important;
45
+ text-decoration: none;
46
+ }
47
+ .language-js { background: #e4a228; }
48
+ .language-php { background: #e45126; }
49
+ .language-html { background: #e45126; }
50
+ .widefat td, .widefat th, .type.column-type, .check-column, .column-active { vertical-align: middle !important; }
51
+ .type.column-type {
52
+ text-align: center;
53
+ }
54
+ .column-options span { margin-left: 7px; }
55
+ .column-active .dashicons { font-size: 17px; }
56
+ .column-active a, .column-active a:active, .column-active a:hover, .column-active a:focus { display: block; outline: 0; border: 0; text-decoration: none; }
57
+ #active.manage-column { width: 30px; }
58
+
59
+
60
+ /**
61
+ * Code Mirror editor
62
+ */
63
+ #content {
64
+ width: 100%;
65
+ padding-left: 36px;
66
+ border-top: 0;
67
+ border-bottom: 0;
68
+ }
69
+
70
+ #minor-publishing { display: none; }
71
+ #post-body #normal-sortables { min-height: 0px; }
72
+ .CodeMirror {
73
+ margin-top: 0px;
74
+ border: 1px solid #ddd;
75
+ border-bottom: none;
76
+ border-top: none;
77
+ }
78
+ .CodeMirror pre { padding-left: 7px; line-height: 1.25; }
79
+
80
+ .code-mirror-buttons {
81
+ margin-top: 15px;
82
+ width: calc(100% - 2px);
83
+ background: #f7f7f7;
84
+ border: 1px solid #ddd;
85
+ border-bottom: none;
86
+ height: 36px;
87
+ }
88
+ .code-mirror-buttons .button-right {
89
+ display: block;
90
+ float: right;
91
+ }
92
+ .code-mirror-buttons button {
93
+ padding: 2px 3px;
94
+ line-height: normal;
95
+ font-size: 14px;
96
+ cursor: pointer;
97
+ color: #333;
98
+ text-align: center;
99
+ overflow: visible;
100
+ margin: 6px 4px;
101
+ border: none;
102
+ background-color: transparent;
103
+ border: 1px solid transparent;
104
+ }
105
+ .code-mirror-buttons button:hover, .code-mirror-buttons button:focus {
106
+ color: #333;
107
+ background-color: #e3e3e3;
108
+ border: 1px solid #ccc;
109
+ border-radius: 1px;
110
+ }
111
+ .code-mirror-buttons button i {
112
+ font: 400 20px/1 dashicons;
113
+ vertical-align: middle;
114
+ speak: none;
115
+ color: #777;
116
+ line-height: 20px;
117
+ width: 20px;
118
+ height: 20px;
119
+ }
120
+ i.ccj-i-fullscreen:before {
121
+ content: "\f211";
122
+ }
123
+
124
+ .code-mirror-before {
125
+ border: 1px solid #ddd;
126
+ border-bottom: none;
127
+ background-color: #f7f7f7;
128
+ margin-top: 24px;
129
+ }
130
+ .code-mirror-before div {
131
+ color: #8F8F8F;
132
+ margin-left: 29px;
133
+ border-left: 1px solid #ddd;
134
+ padding: 3px 8px;
135
+ background-color: #fff;
136
+ }
137
+
138
+ .code-mirror-after {
139
+ border: 1px solid #ddd;
140
+ border-top: none;
141
+ background-color: #f7f7f7;
142
+ }
143
+ .code-mirror-after div {
144
+ color: #8F8F8F;
145
+ margin-left: 29px;
146
+ border-left: 1px solid #ddd;
147
+ padding: 3px 8px;
148
+ background-color: #fff;
149
+ }
150
+ /*
151
+ .cm-s-default .cm-atom { color: #549d18; }
152
+ .cm-s-default .cm-property { color: #b62625; }
153
+ .cm-s-default .cm-qualifier, .cm-s-default .cm-tag { color: #4731E4; }
154
+ */
155
+
156
+
157
+ /**
158
+ * Options meta box
159
+ */
160
+ .radio-group input { margin-top: 1px; }
161
+ .radio-group label { padding: 2px 0; }
162
+ .options_meta_box h3 { margin-top: 10px !important; }
163
+ .radio-group { line-height: 30px; padding-left: 10px; }
164
+ .radio-group .dashicons-before:before { margin: 7px 3px 0 3px; }
165
+ .options_meta_box select { margin-left: 10px; }
166
+ #custom-code-options .options_meta_box select {
167
+ margin-left: 0px;
168
+ width: 100%;
169
+ }
170
+
171
+
172
+
173
+ /**
174
+ * Revisions
175
+ */
176
+ table.revisions {
177
+ width: 100%;
178
+ max-width: 100%;
179
+ background-color: transparent;
180
+ border-spacing: 0;
181
+ border-collapse: collapse;
182
+ border-color: gray;
183
+ }
184
+ table.revisions thead, table.revisions tbody {
185
+ vertical-align: middle;
186
+ }
187
+ table.revisions tbody tr:hover {
188
+ background-color: #f7f7f9;
189
+ }
190
+ table.revisions thead th {
191
+ white-space: nowrap;
192
+ text-align: left;
193
+ padding: 8px;
194
+ line-height: 1.42857143;
195
+ vertical-align: bottom;
196
+ border-bottom: 2px solid #ddd;
197
+ }
198
+ table.revisions tbody td {
199
+ padding: 8px;
200
+ line-height: 1.42857143;
201
+ vertical-align: top;
202
+ border-top: 1px solid #ddd;
203
+ }
204
+ tr.current-revision {
205
+ background-color: #00ff00;
206
+ }
207
+ td.revisions-compare, td.revisions-restore, td.revisions-delete {
208
+ width: 36px;
209
+ }
210
+ td.revisions-compare, th.revisions-compare {
211
+ text-align: center !important;
212
+ }
213
+ table.revisions a {
214
+ text-decoration: none;
215
+ }
216
+ table.revisions a:hover {
217
+ text-decoration: underline;
218
+ }
219
+ table.revisions .hidden {
220
+ visibility: hidden;
221
+ }
222
+ div#TB_window {
223
+ width: 90% !important;
224
+ margin-left: -45% !important;
225
+ height: 90% !important;
226
+ margin-top: -22% !important;
227
+ }
228
+ div#TB_window .error {
229
+ padding: 15px;
230
+ margin-bottom: 20px;
231
+ border: 1px solid transparent;
232
+ border-radius: 4px;
233
+ color: #a94442;
234
+ background-color: #f2dede;
235
+ border-color: #ebccd1;
236
+ }
237
+ iframe#TB_iframeContent {
238
+ width: 100% !important;
239
+ height: 100% !important;
240
+ }
241
+ #url-rules textarea {
242
+ width: 100%;
243
+ height: 200px;
244
+ }
245
+
246
+
247
+ /* URL Rules */
248
+ .wplnst-elist-visible { display: block; }
249
+ .wplnst-elist-readonly { margin: 0; }
250
+
251
+ .wplnst-elist tr {
252
+ margin-bottom: 10px;
253
+ }
254
+
255
+ .wplnst-elist tr td {
256
+ margin: 0; padding: 4px 5px;
257
+ }
258
+
259
+ .wplnst-elist tr td.wplnst-elist-val {
260
+ color: #5c5a5a;
261
+ background: rgba(0,115,170,0.6);
262
+ }
263
+
264
+ #wplnst-af-new { width: 361px; }
265
+ #wplnst-ius-new { width: 425px; }
266
+ #wplnst-eus-new { width: 425px; }
267
+
268
+ .wplnst-elist tr td.wplnst-cfs-val { width: 205px; }
269
+ .wplnst-elist tr td.wplnst-afs-val { width: 350px; }
270
+ .wplnst-elist tr td.wplnst-ius-val { width: 415px; }
271
+ .wplnst-elist tr td.wplnst-eus-val { width: 415px; }
272
+
273
+ .wplnst-elist tr td.wplnst-elist-type {
274
+ color: #6f6f6f;
275
+ }
276
+
277
+ .wplnst-elist tr td.wplnst-cfs-type { width: 53px; padding-left: 12px; }
278
+ .wplnst-elist tr td.wplnst-afs-type { width: 200px; padding-left: 0; }
279
+ .wplnst-elist tr td.wplnst-ius-type { width: 121px; padding-left: 14px; }
280
+ .wplnst-elist tr td.wplnst-eus-type { width: 121px; padding-left: 14px; }
281
+
282
+ .wplnst-elist tr td.wplnst-hes-ele { width: 55px; font-weight: bold; }
283
+ .wplnst-elist tr td.wplnst-hes-have { width: 87px; font-weight: bold; }
284
+ .wplnst-elist tr td.wplnst-hes-att { width: 125px; }
285
+ .wplnst-elist tr td.wplnst-hes-op { width: 112px; padding-left: 15px; font-weight: bold; }
286
+ .wplnst-elist tr td.wplnst-hes-val { width: 126px; }
287
+
288
+ .wplnst-elist tr td.wplnst-elist-close {
289
+ padding-left: 21px;
290
+ }
291
+
292
+ .wplnst-elist tr td.wplnst-elist-close .wplnst-elist-close-link {
293
+ display: block;
294
+ width: 16px; height: 16px;
295
+ outline: none; border: 0;
296
+ text-indent: -9999px;
297
+ background: url(images/button-close.png) left top no-repeat;
298
+ }
299
+
300
+ .wplnst-elist tr td.wplnst-elist-close .wplnst-elist-close-link:hover {
301
+ background: url(images/button-close-hover.png) left top no-repeat;
302
+ }
303
+
304
+ .wplnst-elist tr td.wplnst-elist-split {
305
+ height: 3px;
306
+ }
307
+
308
+
309
+
310
+ #ccj-preview_url {
311
+ width: 78%;
312
+ }
313
+ #ccj-preview {
314
+ width: 20%;
315
+ text-align: center;
316
+ }
317
+
318
+ /**
319
+ * Settings page
320
+ */
321
+ #ccj_duration_preview, #ccj_editor_theme {
322
+ width: 220px;
323
+ }
324
+ .custom-css-js_page_custom-css-js-config .CodeMirror {
325
+ height: 200px;
326
+ }
327
+ .role-permissions, .role-permissions2 {
328
+ width: 100%;
329
+ }
330
+ .role-permissions td, .role-permissions th, .role-permissions2 td {
331
+ padding: 6px;
332
+ text-align: center;
333
+ }
334
+ .role-permissions td.desc, .role-permissions2 td.desc {
335
+ width: 35%;
336
+ text-align: right;
337
+ padding-right: 20px;
338
+ }
339
+ .role-permissions2 td {
340
+ text-align: left;
341
+ }
342
+ .custom-css-js_page_custom-css-js-config .dashicons-editor-help {
343
+ color: #999;
344
+ }
345
+
346
+ /**
347
+ * Overlay
348
+ */
349
+ #normal-sortables, .ccj_opaque {
350
+ opacity: 0.4;
351
+ }
352
+ .ccj_only_premium {
353
+ z-index:9999;
354
+ width: 160px;
355
+ height: 60px;
356
+ position: absolute;
357
+ margin-left: 254px;
358
+ color: white;
359
+ }
360
+ .ccj_only_premium>div {
361
+ font-family:sans-serif;font-size:13px;text-align: center; border-radius: 5px; float: left; background-color: rgb(51, 51, 51); color: white; width: 207px; padding: 20px 20px;
362
+ }
363
+ .ccj_only_premium a {
364
+ color: white; text-decoration: none;
365
+ transition: color 0.3s;
366
+ }
367
+ .ccj_only_premium a:hover {
368
+ color: #0073aa; text-decoration: none;
369
+ }
370
+ .ccj_only_premium-right {
371
+ width: 80px;
372
+ margin-left: 130px;
373
+ margin-top: -120px;
374
+ }
375
+ .ccj_only_premium-right>div {
376
+ width: 200px;
377
+ padding: 10px;
378
+ margin-left: -110px;
379
+ }
assets/ccj_admin.js ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready( function($) {
2
+
3
+ $('.page-title-action').hide();
4
+
5
+ // Initialize the CodeMirror editor
6
+ if ( $('#content').length > 0 ) {
7
+ var content_mode = $("#content").attr('mode');
8
+ if ( content_mode == 'html' ) {
9
+ var content_mode = {
10
+ name: "htmlmixed",
11
+ scriptTypes: [{matches: /\/x-handlebars-template|\/x-mustache/i,
12
+ mode: null}]
13
+ };
14
+ }
15
+ var options = {
16
+ lineNumbers: true,
17
+ mode: content_mode,
18
+ matchBrackets: true
19
+ };
20
+ if ( typeof CCJ !== 'undefined' && CCJ.scroll !== '0' ) {
21
+ options['scrollbarStyle'] = "simple";
22
+ }
23
+
24
+
25
+ var cm_width = $('#title').width() + 16;
26
+ var cm_height = 500;
27
+
28
+ var editor = CodeMirror.fromTextArea(document.getElementById("content"), options);
29
+
30
+ editor.setSize(cm_width, cm_height);
31
+
32
+ $('.CodeMirror').resizable({
33
+ resize: function() {
34
+ editor.setSize($(this).width(), $(this).height());
35
+ } ,
36
+ maxWidth: cm_width,
37
+ minWidth: cm_width,
38
+ minHeight: 200
39
+
40
+ });
41
+
42
+ $(window).resize(function () {
43
+ var cm_width = $('#title').width() + 16;
44
+ var cm_height = $('.CodeMirror').height();
45
+ editor.setSize(cm_width, cm_height);
46
+ });
47
+
48
+
49
+
50
+ }
51
+
52
+ // Make the inactive rows opaque
53
+ if ( $('.dashicons-star-empty.ccj_row').length > 0 ) {
54
+ $('.dashicons-star-empty.ccj_row').each(function(){
55
+ $(this).parent().parent().parent().css('opacity', '0.4');
56
+ });
57
+ }
58
+
59
+ // Activate/deactivate codes with AJAX
60
+ $(".ccj_activate_deactivate").click( function(e) {
61
+ var url = $(this).attr('href');
62
+ var code_id = $(this).attr('data-code-id');
63
+ e.preventDefault();
64
+ $.ajax({
65
+ url: url,
66
+ success: function(data){
67
+ if (data === 'yes') {
68
+ ccj_activate_deactivate(code_id, false);
69
+ }
70
+ if (data === 'no') {
71
+ ccj_activate_deactivate(code_id, true);
72
+ }
73
+ }
74
+ });
75
+ });
76
+
77
+ // Toggle the signs for activating/deactivating codes
78
+ function ccj_activate_deactivate(code_id, action) {
79
+ var row = $('tr#post-'+code_id);
80
+ if ( action === true ) {
81
+ row.css('opacity', '1');
82
+ row.find('.row-actions .ccj_activate_deactivate')
83
+ .text(CCJ.deactivate)
84
+ .attr('title', CCJ.active_title);
85
+ row.find('td.active .dashicons')
86
+ .removeClass('dashicons-star-empty')
87
+ .addClass('dashicons-star-filled');
88
+ row.find('td.active .ccj_activate_deactivate')
89
+ .attr('title', CCJ.active_title);
90
+ $('#activate-action span').text(CCJ.active);
91
+ $('#activate-action .ccj_activate_deactivate').text(CCJ.deactivate);
92
+ } else {
93
+ row.css('opacity', '0.4');
94
+ row.find('.row-actions .ccj_activate_deactivate')
95
+ .text(CCJ.activate)
96
+ .attr('title', CCJ.deactive_title);
97
+ row.find('td.active .dashicons')
98
+ .removeClass('dashicons-star-filled')
99
+ .addClass('dashicons-star-empty');
100
+ row.find('td.active .ccj_activate_deactivate')
101
+ .attr('title', CCJ.deactive_title);
102
+ $('#activate-action span').text(CCJ.inactive);
103
+ $('#activate-action .ccj_activate_deactivate').text(CCJ.activate);
104
+ }
105
+ }
106
+
107
+ });
108
+
assets/codemirror/LICENSE ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Marijn Haverbeke <marijnh@gmail.com> and others
4
+ Copyright (c) 2016 Michael Zhou <zhoumotongxue008@gmail.com>
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
assets/codemirror/addon/dialog/dialog.css ADDED
@@ -0,0 +1 @@
 
1
+ .CodeMirror-dialog{position:absolute;left:0;right:0;background:inherit;z-index:15;padding:.1em .8em;overflow:hidden;color:inherit}.CodeMirror-dialog-top{border-bottom:1px solid #eee;top:0}.CodeMirror-dialog-bottom{border-top:1px solid #eee;bottom:0}.CodeMirror-dialog input{border:none;outline:0;background:0 0;width:20em;color:inherit;font-family:monospace}.CodeMirror-dialog button{font-size:70%}
assets/codemirror/addon/dialog/dialog.js ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ 'use strict';(function(c){"object"==typeof exports&&"object"==typeof module?c(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],c):c(CodeMirror)})(function(c){function l(a,c,b){a=a.getWrapperElement().appendChild(document.createElement("div"));a.className=b?"CodeMirror-dialog CodeMirror-dialog-bottom":"CodeMirror-dialog CodeMirror-dialog-top";"string"==typeof c?a.innerHTML=c:a.appendChild(c);return a}function m(a,c){a.state.currentNotificationClose&&
2
+ a.state.currentNotificationClose();a.state.currentNotificationClose=c}c.defineExtension("openDialog",function(a,g,b){function e(a){if("string"==typeof a)d.value=a;else if(!h&&(h=!0,f.parentNode.removeChild(f),k.focus(),b.onClose))b.onClose(f)}b||(b={});m(this,null);var f=l(this,a,b.bottom),h=!1,k=this,d=f.getElementsByTagName("input")[0];if(d){d.focus();b.value&&(d.value=b.value,!1!==b.selectValueOnOpen&&d.select());if(b.onInput)c.on(d,"input",function(a){b.onInput(a,d.value,e)});if(b.onKeyUp)c.on(d,
3
+ "keyup",function(a){b.onKeyUp(a,d.value,e)});c.on(d,"keydown",function(a){if(!(b&&b.onKeyDown&&b.onKeyDown(a,d.value,e))){if(27==a.keyCode||!1!==b.closeOnEnter&&13==a.keyCode)d.blur(),c.e_stop(a),e();13==a.keyCode&&g(d.value,a)}});if(!1!==b.closeOnBlur)c.on(d,"blur",e)}else if(a=f.getElementsByTagName("button")[0]){c.on(a,"click",function(){e();k.focus()});if(!1!==b.closeOnBlur)c.on(a,"blur",e);a.focus()}return e});c.defineExtension("openConfirm",function(a,g,b){function e(){h||(h=!0,f.parentNode.removeChild(f),
4
+ k.focus())}m(this,null);var f=l(this,a,b&&b.bottom);a=f.getElementsByTagName("button");var h=!1,k=this,d=1;a[0].focus();for(b=0;b<a.length;++b){var n=a[b];(function(a){c.on(n,"click",function(b){c.e_preventDefault(b);e();a&&a(k)})})(g[b]);c.on(n,"blur",function(){--d;setTimeout(function(){0>=d&&e()},200)});c.on(n,"focus",function(){++d})}});c.defineExtension("openNotification",function(a,g){function b(){f||(f=!0,clearTimeout(h),e.parentNode.removeChild(e))}m(this,b);var e=l(this,a,g&&g.bottom),f=
5
+ !1,h;a=g&&"undefined"!==typeof g.duration?g.duration:5E3;c.on(e,"click",function(a){c.e_preventDefault(a);b()});a&&(h=setTimeout(b,a));return b})});
assets/codemirror/addon/edit/matchbrackets.js CHANGED
@@ -1,120 +1,6 @@
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
- var ie_lt8 = /MSIE \d/.test(navigator.userAgent) &&
13
- (document.documentMode == null || document.documentMode < 8);
14
-
15
- var Pos = CodeMirror.Pos;
16
-
17
- var matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"};
18
-
19
- function findMatchingBracket(cm, where, strict, config) {
20
- var line = cm.getLineHandle(where.line), pos = where.ch - 1;
21
- var match = (pos >= 0 && matching[line.text.charAt(pos)]) || matching[line.text.charAt(++pos)];
22
- if (!match) return null;
23
- var dir = match.charAt(1) == ">" ? 1 : -1;
24
- if (strict && (dir > 0) != (pos == where.ch)) return null;
25
- var style = cm.getTokenTypeAt(Pos(where.line, pos + 1));
26
-
27
- var found = scanForBracket(cm, Pos(where.line, pos + (dir > 0 ? 1 : 0)), dir, style || null, config);
28
- if (found == null) return null;
29
- return {from: Pos(where.line, pos), to: found && found.pos,
30
- match: found && found.ch == match.charAt(0), forward: dir > 0};
31
- }
32
-
33
- // bracketRegex is used to specify which type of bracket to scan
34
- // should be a regexp, e.g. /[[\]]/
35
- //
36
- // Note: If "where" is on an open bracket, then this bracket is ignored.
37
- //
38
- // Returns false when no bracket was found, null when it reached
39
- // maxScanLines and gave up
40
- function scanForBracket(cm, where, dir, style, config) {
41
- var maxScanLen = (config && config.maxScanLineLength) || 10000;
42
- var maxScanLines = (config && config.maxScanLines) || 1000;
43
-
44
- var stack = [];
45
- var re = config && config.bracketRegex ? config.bracketRegex : /[(){}[\]]/;
46
- var lineEnd = dir > 0 ? Math.min(where.line + maxScanLines, cm.lastLine() + 1)
47
- : Math.max(cm.firstLine() - 1, where.line - maxScanLines);
48
- for (var lineNo = where.line; lineNo != lineEnd; lineNo += dir) {
49
- var line = cm.getLine(lineNo);
50
- if (!line) continue;
51
- var pos = dir > 0 ? 0 : line.length - 1, end = dir > 0 ? line.length : -1;
52
- if (line.length > maxScanLen) continue;
53
- if (lineNo == where.line) pos = where.ch - (dir < 0 ? 1 : 0);
54
- for (; pos != end; pos += dir) {
55
- var ch = line.charAt(pos);
56
- if (re.test(ch) && (style === undefined || cm.getTokenTypeAt(Pos(lineNo, pos + 1)) == style)) {
57
- var match = matching[ch];
58
- if ((match.charAt(1) == ">") == (dir > 0)) stack.push(ch);
59
- else if (!stack.length) return {pos: Pos(lineNo, pos), ch: ch};
60
- else stack.pop();
61
- }
62
- }
63
- }
64
- return lineNo - dir == (dir > 0 ? cm.lastLine() : cm.firstLine()) ? false : null;
65
- }
66
-
67
- function matchBrackets(cm, autoclear, config) {
68
- // Disable brace matching in long lines, since it'll cause hugely slow updates
69
- var maxHighlightLen = cm.state.matchBrackets.maxHighlightLineLength || 1000;
70
- var marks = [], ranges = cm.listSelections();
71
- for (var i = 0; i < ranges.length; i++) {
72
- var match = ranges[i].empty() && findMatchingBracket(cm, ranges[i].head, false, config);
73
- if (match && cm.getLine(match.from.line).length <= maxHighlightLen) {
74
- var style = match.match ? "CodeMirror-matchingbracket" : "CodeMirror-nonmatchingbracket";
75
- marks.push(cm.markText(match.from, Pos(match.from.line, match.from.ch + 1), {className: style}));
76
- if (match.to && cm.getLine(match.to.line).length <= maxHighlightLen)
77
- marks.push(cm.markText(match.to, Pos(match.to.line, match.to.ch + 1), {className: style}));
78
- }
79
- }
80
-
81
- if (marks.length) {
82
- // Kludge to work around the IE bug from issue #1193, where text
83
- // input stops going to the textare whever this fires.
84
- if (ie_lt8 && cm.state.focused) cm.focus();
85
-
86
- var clear = function() {
87
- cm.operation(function() {
88
- for (var i = 0; i < marks.length; i++) marks[i].clear();
89
- });
90
- };
91
- if (autoclear) setTimeout(clear, 800);
92
- else return clear;
93
- }
94
- }
95
-
96
- var currentlyHighlighted = null;
97
- function doMatchBrackets(cm) {
98
- cm.operation(function() {
99
- if (currentlyHighlighted) {currentlyHighlighted(); currentlyHighlighted = null;}
100
- currentlyHighlighted = matchBrackets(cm, false, cm.state.matchBrackets);
101
- });
102
- }
103
-
104
- CodeMirror.defineOption("matchBrackets", false, function(cm, val, old) {
105
- if (old && old != CodeMirror.Init)
106
- cm.off("cursorActivity", doMatchBrackets);
107
- if (val) {
108
- cm.state.matchBrackets = typeof val == "object" ? val : {};
109
- cm.on("cursorActivity", doMatchBrackets);
110
- }
111
- });
112
-
113
- CodeMirror.defineExtension("matchBrackets", function() {matchBrackets(this, true);});
114
- CodeMirror.defineExtension("findMatchingBracket", function(pos, strict, config){
115
- return findMatchingBracket(this, pos, strict, config);
116
- });
117
- CodeMirror.defineExtension("scanForBracket", function(pos, dir, style, config){
118
- return scanForBracket(this, pos, dir, style, config);
119
- });
120
- });
1
+ 'use strict';(function(d){"object"==typeof exports&&"object"==typeof module?d(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],d):d(CodeMirror)})(function(d){function q(a,c,b){var l=a.getLineHandle(c.line),e=c.ch-1,k=b&&b.afterCursor;null==k&&(k=/(^| )cm-fat-cursor($| )/.test(a.getWrapperElement().className));l=!k&&0<=e&&n[l.text.charAt(e)]||n[l.text.charAt(++e)];if(!l)return null;k=">"==l.charAt(1)?1:-1;if(b&&b.strict&&0<k!=(e==c.ch))return null;
2
+ var h=a.getTokenTypeAt(m(c.line,e+1));a=t(a,m(c.line,e+(0<k?1:0)),k,h||null,b);return null==a?null:{from:m(c.line,e),to:a&&a.pos,match:a&&a.ch==l.charAt(0),forward:0<k}}function t(a,c,b,l,e){var k=e&&e.maxScanLineLength||1E4,h=e&&e.maxScanLines||1E3,g=[];e=e&&e.bracketRegex?e.bracketRegex:/[(){}[\]]/;for(var h=0<b?Math.min(c.line+h,a.lastLine()+1):Math.max(a.firstLine()-1,c.line-h),d=c.line;d!=h;d+=b){var p=a.getLine(d);if(p){var f=0<b?0:p.length-1,q=0<b?p.length:-1;if(!(p.length>k))for(d==c.line&&
3
+ (f=c.ch-(0>b?1:0));f!=q;f+=b){var r=p.charAt(f);if(e.test(r)&&(void 0===l||a.getTokenTypeAt(m(d,f+1))==l))if(">"==n[r].charAt(1)==0<b)g.push(r);else if(g.length)g.pop();else return{pos:m(d,f),ch:r}}}}return d-b==(0<b?a.lastLine():a.firstLine())?!1:null}function u(a,c,b){for(var d=a.state.matchBrackets.maxHighlightLineLength||1E3,e=[],f=a.listSelections(),h=0;h<f.length;h++){var g=f[h].empty()&&q(a,f[h].head,b);if(g&&a.getLine(g.from.line).length<=d){var n=g.match?"CodeMirror-matchingbracket":"CodeMirror-nonmatchingbracket";
4
+ e.push(a.markText(g.from,m(g.from.line,g.from.ch+1),{className:n}));g.to&&a.getLine(g.to.line).length<=d&&e.push(a.markText(g.to,m(g.to.line,g.to.ch+1),{className:n}))}}if(e.length)if(w&&a.state.focused&&a.focus(),b=function(){a.operation(function(){for(var a=0;a<e.length;a++)e[a].clear()})},c)setTimeout(b,800);else return b}function v(a){a.operation(function(){f&&(f(),f=null);f=u(a,!1,a.state.matchBrackets)})}var w=/MSIE \d/.test(navigator.userAgent)&&(null==document.documentMode||8>document.documentMode),
5
+ m=d.Pos,n={"(":")>",")":"(<","[":"]>","]":"[<","{":"}>","}":"{<"},f=null;d.defineOption("matchBrackets",!1,function(a,c,b){b&&b!=d.Init&&(a.off("cursorActivity",v),f&&(f(),f=null));c&&(a.state.matchBrackets="object"==typeof c?c:{},a.on("cursorActivity",v))});d.defineExtension("matchBrackets",function(){u(this,!0)});d.defineExtension("findMatchingBracket",function(a,c,b){if(b||"boolean"==typeof c)b?(b.strict=c,c=b):c=c?{strict:!0}:null;return q(this,a,c)});d.defineExtension("scanForBracket",function(a,
6
+ c,b,d){return t(this,a,c,b,d)})});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/addon/scroll/simplescrollbars.css ADDED
@@ -0,0 +1 @@
 
1
+ .CodeMirror-simplescroll-horizontal div,.CodeMirror-simplescroll-vertical div{position:absolute;background:#ccc;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #bbb;border-radius:2px}.CodeMirror-simplescroll-horizontal,.CodeMirror-simplescroll-vertical{position:absolute;z-index:6;background:#eee}.CodeMirror-simplescroll-horizontal{bottom:0;left:0;height:8px}.CodeMirror-simplescroll-horizontal div{bottom:0;height:100%}.CodeMirror-simplescroll-vertical{right:0;top:0;width:8px}.CodeMirror-simplescroll-vertical div{right:0;width:100%}.CodeMirror-overlayscroll .CodeMirror-gutter-filler,.CodeMirror-overlayscroll .CodeMirror-scrollbar-filler{display:none}.CodeMirror-overlayscroll-horizontal div,.CodeMirror-overlayscroll-vertical div{position:absolute;background:#bcd;border-radius:3px}.CodeMirror-overlayscroll-horizontal,.CodeMirror-overlayscroll-vertical{position:absolute;z-index:6}.CodeMirror-overlayscroll-horizontal{bottom:0;left:0;height:6px}.CodeMirror-overlayscroll-horizontal div{bottom:0;height:100%}.CodeMirror-overlayscroll-vertical{right:0;top:0;width:6px}.CodeMirror-overlayscroll-vertical div{right:0;width:100%}
assets/codemirror/addon/scroll/simplescrollbars.js ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ 'use strict';(function(c){"object"==typeof exports&&"object"==typeof module?c(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],c):c(CodeMirror)})(function(c){function g(a,b,h){function e(a){var b=c.wheelEventPixels(a)["horizontal"==d.orientation?"x":"y"],h=d.pos;d.moveTo(d.pos+b);d.pos!=h&&c.e_preventDefault(a)}this.orientation=b;this.scroll=h;this.screen=this.total=this.size=1;this.pos=0;this.node=document.createElement("div");this.node.className=
2
+ a+"-"+b;this.inner=this.node.appendChild(document.createElement("div"));var d=this;c.on(this.inner,"mousedown",function(a){function b(){c.off(document,"mousemove",h);c.off(document,"mouseup",b)}function h(a){if(1!=a.which)return b();d.moveTo(g+d.total/d.size*(a[e]-f))}if(1==a.which){c.e_preventDefault(a);var e="horizontal"==d.orientation?"pageX":"pageY",f=a[e],g=d.pos;c.on(document,"mousemove",h);c.on(document,"mouseup",b)}});c.on(this.node,"click",function(a){c.e_preventDefault(a);var b=d.inner.getBoundingClientRect();
3
+ d.moveTo(d.pos+("horizontal"==d.orientation?a.clientX<b.left?-1:a.clientX>b.right?1:0:a.clientY<b.top?-1:a.clientY>b.bottom?1:0)*d.screen)});c.on(this.node,"mousewheel",e);c.on(this.node,"DOMMouseScroll",e)}function f(a,b,c){this.addClass=a;this.horiz=new g(a,"horizontal",c);b(this.horiz.node);this.vert=new g(a,"vertical",c);b(this.vert.node);this.width=null}g.prototype.setPos=function(a,b){0>a&&(a=0);a>this.total-this.screen&&(a=this.total-this.screen);if(!b&&a==this.pos)return!1;this.pos=a;this.inner.style["horizontal"==
4
+ this.orientation?"left":"top"]=this.size/this.total*a+"px";return!0};g.prototype.moveTo=function(a){this.setPos(a)&&this.scroll(a,this.orientation)};g.prototype.update=function(a,b,c){var e=this.screen!=b||this.total!=a||this.size!=c;e&&(this.screen=b,this.total=a,this.size=c);a=this.size/this.total*this.screen;10>a&&(this.size-=10-a,a=10);this.inner.style["horizontal"==this.orientation?"width":"height"]=a+"px";this.setPos(this.pos,e)};f.prototype.update=function(a){if(null==this.width){var b=window.getComputedStyle?
5
+ window.getComputedStyle(this.horiz.node):this.horiz.node.currentStyle;b&&(this.width=parseInt(b.height))}var b=this.width||0,c=a.scrollWidth>a.clientWidth+1,e=a.scrollHeight>a.clientHeight+1;this.vert.node.style.display=e?"block":"none";this.horiz.node.style.display=c?"block":"none";e&&(this.vert.update(a.scrollHeight,a.clientHeight,a.viewHeight-(c?b:0)),this.vert.node.style.bottom=c?b+"px":"0");c&&(this.horiz.update(a.scrollWidth,a.clientWidth,a.viewWidth-(e?b:0)-a.barLeft),this.horiz.node.style.right=
6
+ e?b+"px":"0",this.horiz.node.style.left=a.barLeft+"px");return{right:e?b:0,bottom:c?b:0}};f.prototype.setScrollTop=function(a){this.vert.setPos(a)};f.prototype.setScrollLeft=function(a){this.horiz.setPos(a)};f.prototype.clear=function(){var a=this.horiz.node.parentNode;a.removeChild(this.horiz.node);a.removeChild(this.vert.node)};c.scrollbarModel.simple=function(a,b){return new f("CodeMirror-simplescroll",a,b)};c.scrollbarModel.overlay=function(a,b){return new f("CodeMirror-overlayscroll",a,b)}});
assets/codemirror/addon/search/jump-to-line.js ADDED
@@ -0,0 +1,2 @@
 
 
1
+ 'use strict';(function(e){"object"==typeof exports&&"object"==typeof module?e(require("../../lib/codemirror"),require("../dialog/dialog")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","../dialog/dialog"],e):e(CodeMirror)})(function(e){function g(a,d,b,c,e){a.openDialog?a.openDialog(d,e,{value:c,selectValueOnOpen:!0}):e(prompt(b,c))}function f(a,d){var b=Number(d);return/^[-+]/.test(d)?a.getCursor().line+b:b-1}e.commands.jumpToLine=function(a){var d=a.getCursor();g(a,'Jump to line: <input type="text" style="width: 10em" class="CodeMirror-search-field"/> <span style="color: #888" class="CodeMirror-search-hint">(Use line:column or scroll% syntax)</span>',
2
+ "Jump to line:",d.line+1+":"+d.ch,function(b){if(b){var c;(c=/^\s*([\+\-]?\d+)\s*\:\s*(\d+)\s*$/.exec(b))?a.setCursor(f(a,c[1]),Number(c[2])):(c=/^\s*([\+\-]?\d+(\.\d+)?)\%\s*/.exec(b))?(b=Math.round(a.lineCount()*Number(c[1])/100),/^[-+]/.test(c[1])&&(b=d.line+b+1),a.setCursor(b-1,d.ch)):(c=/^\s*\:?\s*([\+\-]?\d+)\s*/.exec(b))&&a.setCursor(f(a,c[1]),d.ch)}})};e.keyMap["default"]["Alt-G"]="jumpToLine"});
assets/codemirror/addon/search/match-highlighter.js ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ 'use strict';(function(f){"object"==typeof exports&&"object"==typeof module?f(require("../../lib/codemirror"),require("./matchesonscrollbar")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","./matchesonscrollbar"],f):f(CodeMirror)})(function(f){function q(a){this.options={};for(var b in g)this.options[b]=(a&&a.hasOwnProperty(b)?a:g)[b];this.matchesonscroll=this.overlay=this.timeout=null;this.active=!1}function h(a){var b=a.state.matchHighlighter;(b.active||a.hasFocus())&&k(a,
2
+ b)}function l(a){var b=a.state.matchHighlighter;b.active||(b.active=!0,k(a,b))}function k(a,b){clearTimeout(b.timeout);b.timeout=setTimeout(function(){m(a)},b.options.delay)}function n(a,b,d,c){var e=a.state.matchHighlighter;a.addOverlay(e.overlay=r(b,d,c));e.options.annotateScrollbar&&a.showMatchesOnScrollbar&&(e.matchesonscroll=a.showMatchesOnScrollbar(d?new RegExp("\\b"+b+"\\b"):b,!1,{className:"CodeMirror-selection-highlight-scrollbar"}))}function p(a){var b=a.state.matchHighlighter;b.overlay&&
3
+ (a.removeOverlay(b.overlay),b.overlay=null,b.matchesonscroll&&(b.matchesonscroll.clear(),b.matchesonscroll=null))}function m(a){a.operation(function(){var b=a.state.matchHighlighter;p(a);if(!a.somethingSelected()&&b.options.showToken){for(var d=!0===b.options.showToken?/[\w$]/:b.options.showToken,c=a.getCursor(),e=a.getLine(c.line),f=c=c.ch;c&&d.test(e.charAt(c-1));)--c;for(;f<e.length&&d.test(e.charAt(f));)++f;c<f&&n(a,e.slice(c,f),d,b.options.style)}else if(d=a.getCursor("from"),e=a.getCursor("to"),
4
+ d.line==e.line){if(c=b.options.wordsOnly){a:if(null!==a.getRange(d,e).match(/^\w+$/)){if(0<d.ch&&(c={line:d.line,ch:d.ch-1},c=a.getRange(c,d),null===c.match(/\W/))){c=!1;break a}if(e.ch<a.getLine(d.line).length&&(c={line:e.line,ch:e.ch+1},c=a.getRange(e,c),null===c.match(/\W/))){c=!1;break a}c=!0}else c=!1;c=!c}c||(d=a.getRange(d,e),b.options.trim&&(d=d.replace(/^\s+|\s+$/g,"")),d.length>=b.options.minChars&&n(a,d,!1,b.options.style))}})}function r(a,b,d){return{token:function(c){var e;if(e=c.match(a))(e=
5
+ !b)||(e=(!c.start||!b.test(c.string.charAt(c.start-1)))&&(c.pos==c.string.length||!b.test(c.string.charAt(c.pos))));if(e)return d;c.next();c.skipTo(a.charAt(0))||c.skipToEnd()}}}var g={style:"matchhighlight",minChars:2,delay:100,wordsOnly:!1,annotateScrollbar:!1,showToken:!1,trim:!0};f.defineOption("highlightSelectionMatches",!1,function(a,b,d){d&&d!=f.Init&&(p(a),clearTimeout(a.state.matchHighlighter.timeout),a.state.matchHighlighter=null,a.off("cursorActivity",h),a.off("focus",l));if(b){b=a.state.matchHighlighter=
6
+ new q(b);if(a.hasFocus())b.active=!0,m(a);else a.on("focus",l);a.on("cursorActivity",h)}})});
assets/codemirror/addon/search/matchesonscrollbar.css ADDED
@@ -0,0 +1 @@
 
1
+ .CodeMirror-search-match{background:gold;border-top:1px solid orange;border-bottom:1px solid orange;-moz-box-sizing:border-box;box-sizing:border-box;opacity:.5}
assets/codemirror/addon/search/matchesonscrollbar.js ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ 'use strict';(function(d){"object"==typeof exports&&"object"==typeof module?d(require("../../lib/codemirror"),require("./searchcursor"),require("../scroll/annotatescrollbar")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","./searchcursor","../scroll/annotatescrollbar"],d):d(CodeMirror)})(function(d){function g(a,c,b,e){this.cm=a;this.options=e;var f={listenForChanges:!1},d;for(d in e)f[d]=e[d];f.className||(f.className="CodeMirror-search-match");this.annotation=a.annotateScrollbar(f);
2
+ this.query=c;this.caseFold=b;this.gap={from:a.firstLine(),to:a.lastLine()+1};this.matches=[];this.update=null;this.findMatches();this.annotation.update(this.matches);var g=this;a.on("change",this.changeHandler=function(a,b){g.onChange(b)})}function h(a,c,b){return a<=c?a:Math.max(c,a+b)}d.defineExtension("showMatchesOnScrollbar",function(a,c,b){"string"==typeof b&&(b={className:b});b||(b={});return new g(this,a,c,b)});g.prototype.findMatches=function(){if(this.gap){for(var a=0;a<this.matches.length;a++){var c=
3
+ this.matches[a];if(c.from.line>=this.gap.to)break;c.to.line>=this.gap.from&&this.matches.splice(a--,1)}for(var b=this.cm.getSearchCursor(this.query,d.Pos(this.gap.from,0),this.caseFold),e=this.options&&this.options.maxMatches||1E3;b.findNext();){c={from:b.from(),to:b.to()};if(c.from.line>=this.gap.to)break;this.matches.splice(a++,0,c);if(this.matches.length>e)break}this.gap=null}};g.prototype.onChange=function(a){var c=a.from.line,b=d.changeEnd(a).line,e=b-a.to.line;this.gap?(this.gap.from=Math.min(h(this.gap.from,
4
+ c,e),a.from.line),this.gap.to=Math.max(h(this.gap.to,c,e),a.from.line)):this.gap={from:a.from.line,to:b+1};if(e)for(a=0;a<this.matches.length;a++){var b=this.matches[a],f=h(b.from.line,c,e);f!=b.from.line&&(b.from=d.Pos(f,b.from.ch));f=h(b.to.line,c,e);f!=b.to.line&&(b.to=d.Pos(f,b.to.ch))}clearTimeout(this.update);var g=this;this.update=setTimeout(function(){g.updateAfterChange()},250)};g.prototype.updateAfterChange=function(){this.findMatches();this.annotation.update(this.matches)};g.prototype.clear=
5
+ function(){this.cm.off("change",this.changeHandler);this.annotation.clear()}});
assets/codemirror/addon/search/search.js ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 'use strict';var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(b,h,e){b instanceof String&&(b=String(b));for(var k=b.length,g=0;g<k;g++){var l=b[g];if(h.call(e,l,g,b))return{i:g,v:l}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(b,h,e){b!=Array.prototype&&b!=Object.prototype&&(b[h]=e.value)};
2
+ $jscomp.getGlobal=function(b){return"undefined"!=typeof window&&window===b?b:"undefined"!=typeof global&&null!=global?global:b};$jscomp.global=$jscomp.getGlobal(this);$jscomp.polyfill=function(b,h,e,k){if(h){e=$jscomp.global;b=b.split(".");for(k=0;k<b.length-1;k++){var g=b[k];g in e||(e[g]={});e=e[g]}b=b[b.length-1];k=e[b];h=h(k);h!=k&&null!=h&&$jscomp.defineProperty(e,b,{configurable:!0,writable:!0,value:h})}};
3
+ $jscomp.polyfill("Array.prototype.find",function(b){return b?b:function(b,e){return $jscomp.findInternal(this,b,e).v}},"es6-impl","es3");
4
+ (function(b){"object"==typeof exports&&"object"==typeof module?b(require("../../lib/codemirror"),require("./searchcursor"),require("../dialog/dialog")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","./searchcursor","../dialog/dialog"],b):b(CodeMirror)})(function(b){function h(a,c){"string"==typeof a?a=new RegExp(a.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"),c?"gi":"g"):a.global||(a=new RegExp(a.source,a.ignoreCase?"gi":"g"));return{token:function(c){a.lastIndex=c.pos;
5
+ var b=a.exec(c.string);if(b&&b.index==c.pos)return c.pos+=b[0].length||1,"searching";b?c.pos=b.index:c.skipToEnd()}}}function e(){this.overlay=this.posFrom=this.posTo=this.lastQuery=this.query=null}function k(a){return a.state.search||(a.state.search=new e)}function g(a){return"string"==typeof a&&a==a.toLowerCase()}function l(a,c,b){return a.getSearchCursor(c,b,{caseFold:g(c),multiline:!0})}function y(a,c,b,f,d){a.openDialog(c,f,{value:b,selectValueOnOpen:!0,closeOnEnter:!1,onClose:function(){n(a)},
6
+ onKeyDown:d})}function r(a,c,b,f,d){a.openDialog?a.openDialog(c,d,{value:f,selectValueOnOpen:!0}):d(prompt(b,f))}function z(a,c,b,f){if(a.openConfirm)a.openConfirm(c,f);else if(confirm(b))f[0]()}function u(a){return a.replace(/\\(.)/g,function(a,b){return"n"==b?"\n":"r"==b?"\r":b})}function v(a){var b=a.match(/^\/(.*)\/([a-z]*)$/);if(b)try{a=new RegExp(b[1],-1==b[2].indexOf("i")?"":"i")}catch(A){}else a=u(a);if("string"==typeof a?""==a:a.test(""))a=/x^/;return a}function p(a,b,e){b.queryText=e;b.query=
7
+ v(e);a.removeOverlay(b.overlay,g(b.query));b.overlay=h(b.query,g(b.query));a.addOverlay(b.overlay);a.showMatchesOnScrollbar&&(b.annotate&&(b.annotate.clear(),b.annotate=null),b.annotate=a.showMatchesOnScrollbar(b.query,g(b.query)))}function m(a,c,e,f){var d=k(a);if(d.query)return q(a,c);var g=a.getSelection()||d.lastQuery;if(e&&a.openDialog){var t=null,h=function(c,f){b.e_stop(f);c&&(c!=d.queryText&&(p(a,d,c),d.posFrom=d.posTo=a.getCursor()),t&&(t.style.opacity=1),q(a,f.shiftKey,function(b,c){var d;
8
+ 3>c.line&&document.querySelector&&(d=a.display.wrapper.querySelector(".CodeMirror-dialog"))&&d.getBoundingClientRect().bottom-4>a.cursorCoords(c,"window").top&&((t=d).style.opacity=.4)}))};y(a,'<span class="CodeMirror-search-label">Search:</span> <input type="text" style="width: 10em" class="CodeMirror-search-field"/> <span style="color: #888" class="CodeMirror-search-hint">(Use /re/ syntax for regexp search)</span>',g,h,function(c,d){var f=b.keyName(c),e=b.keyMap[a.getOption("keyMap")][f];e||(e=
9
+ a.getOption("extraKeys")[f]);if("findNext"==e||"findPrev"==e||"findPersistentNext"==e||"findPersistentPrev"==e)b.e_stop(c),p(a,k(a),d),a.execCommand(e);else if("find"==e||"findPersistent"==e)b.e_stop(c),h(d,c)});f&&g&&(p(a,d,g),q(a,c))}else r(a,'<span class="CodeMirror-search-label">Search:</span> <input type="text" style="width: 10em" class="CodeMirror-search-field"/> <span style="color: #888" class="CodeMirror-search-hint">(Use /re/ syntax for regexp search)</span>',"Search for:",g,function(b){b&&
10
+ !d.query&&a.operation(function(){p(a,d,b);d.posFrom=d.posTo=a.getCursor();q(a,c)})})}function q(a,c,e){a.operation(function(){var f=k(a),d=l(a,f.query,c?f.posFrom:f.posTo);if(!d.find(c)&&(d=l(a,f.query,c?b.Pos(a.lastLine()):b.Pos(a.firstLine(),0)),!d.find(c)))return;a.setSelection(d.from(),d.to());a.scrollIntoView({from:d.from(),to:d.to()},20);f.posFrom=d.from();f.posTo=d.to();e&&e(d.from(),d.to())})}function n(a){a.operation(function(){var b=k(a);if(b.lastQuery=b.query)b.query=b.queryText=null,a.removeOverlay(b.overlay),
11
+ b.annotate&&(b.annotate.clear(),b.annotate=null)})}function w(a,b,e){a.operation(function(){for(var c=l(a,b);c.findNext();)if("string"!=typeof b){var d=a.getRange(c.from(),c.to()).match(b);c.replace(e.replace(/\$(\d)/g,function(a,b){return d[b]}))}else c.replace(e)})}function x(a,b){if(!a.getOption("readOnly")){var c=a.getSelection()||k(a).lastQuery,e='<span class="CodeMirror-search-label">'+(b?"Replace all:":"Replace:")+"</span>";r(a,e+' <input type="text" style="width: 10em" class="CodeMirror-search-field"/> <span style="color: #888" class="CodeMirror-search-hint">(Use /re/ syntax for regexp search)</span>',
12
+ e,c,function(c){c&&(c=v(c),r(a,'<span class="CodeMirror-search-label">With:</span> <input type="text" style="width: 10em" class="CodeMirror-search-field"/>',"Replace with:","",function(e){e=u(e);if(b)w(a,c,e);else{n(a);var d=l(a,c,a.getCursor("from")),f=function(){var b=d.from(),h;if(!(h=d.findNext())&&(d=l(a,c),!(h=d.findNext())||b&&d.from().line==b.line&&d.from().ch==b.ch))return;a.setSelection(d.from(),d.to());a.scrollIntoView({from:d.from(),to:d.to()});z(a,'<span class="CodeMirror-search-label">Replace?</span> <button>Yes</button> <button>No</button> <button>All</button> <button>Stop</button>',
13
+ "Replace?",[function(){g(h)},f,function(){w(a,c,e)}])},g=function(a){d.replace("string"==typeof c?e:e.replace(/\$(\d)/g,function(b,c){return a[c]}));f()};f()}}))})}}b.commands.find=function(a){n(a);m(a)};b.commands.findPersistent=function(a){n(a);m(a,!1,!0)};b.commands.findPersistentNext=function(a){m(a,!1,!0,!0)};b.commands.findPersistentPrev=function(a){m(a,!0,!0,!0)};b.commands.findNext=m;b.commands.findPrev=function(a){m(a,!0)};b.commands.clearSearch=n;b.commands.replace=x;b.commands.replaceAll=
14
+ function(a){x(a,!0)}});
assets/codemirror/addon/search/searchcursor.js ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 'use strict';var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(b,l,f){b instanceof String&&(b=String(b));for(var r=b.length,q=0;q<r;q++){var u=b[q];if(l.call(f,u,q,b))return{i:q,v:u}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(b,l,f){b!=Array.prototype&&b!=Object.prototype&&(b[l]=f.value)};
2
+ $jscomp.getGlobal=function(b){return"undefined"!=typeof window&&window===b?b:"undefined"!=typeof global&&null!=global?global:b};$jscomp.global=$jscomp.getGlobal(this);$jscomp.polyfill=function(b,l,f,r){if(l){f=$jscomp.global;b=b.split(".");for(r=0;r<b.length-1;r++){var q=b[r];q in f||(f[q]={});f=f[q]}b=b[b.length-1];r=f[b];l=l(r);l!=r&&null!=l&&$jscomp.defineProperty(f,b,{configurable:!0,writable:!0,value:l})}};
3
+ $jscomp.polyfill("Array.prototype.find",function(b){return b?b:function(b,f){return $jscomp.findInternal(this,b,f).v}},"es6-impl","es3");
4
+ (function(b){"object"==typeof exports&&"object"==typeof module?b(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],b):b(CodeMirror)})(function(b){function l(c){if(!c.global){var a=c.flags;c=new RegExp(c.source,(null!=a?a:(c.ignoreCase?"i":"")+(c.global?"g":"")+(c.multiline?"m":""))+"g")}return c}function f(c,a,d){a=l(a);var e=d.line,k=d.ch;for(d=c.lastLine();e<=d;e++,k=0)if(a.lastIndex=k,k=c.getLine(e),k=a.exec(k))return{from:g(e,k.index),to:g(e,
5
+ k.index+k[0].length),match:k}}function r(c,a,d){if(!/\\s|\\n|\n|\\W|\\D|\[\^/.test(a.source))return f(c,a,d);a=l(a);for(var e,k=1,b=d.line,n=c.lastLine();b<=n;){for(var h=0;h<k;h++){var p=c.getLine(b++);e=null==e?p:e+"\n"+p}k*=2;a.lastIndex=d.ch;if(h=a.exec(e))return a=e.slice(0,h.index).split("\n"),c=h[0].split("\n"),d=d.line+a.length-1,a=a[a.length-1].length,{from:g(d,a),to:g(d+c.length-1,1==c.length?a+c[0].length:c[c.length-1].length),match:h}}}function q(c,a){for(var d=0,e;;){a.lastIndex=d;d=
6
+ a.exec(c);if(!d)return e;e=d;d=e.index+(e[0].length||1);if(d==c.length)return e}}function u(c,a,d){a=l(a);var e=d.line,k=d.ch;for(d=c.firstLine();e>=d;e--,k=-1){var b=c.getLine(e);-1<k&&(b=b.slice(0,k));if(k=q(b,a))return{from:g(e,k.index),to:g(e,k.index+k[0].length),match:k}}}function z(c,a,d){a=l(a);for(var e,k=1,b=d.line,n=c.firstLine();b>=n;){for(var h=0;h<k;h++){var p=c.getLine(b--);e=null==e?p.slice(0,d.ch):p+"\n"+e}k*=2;if(h=q(e,a))return a=e.slice(0,h.index).split("\n"),c=h[0].split("\n"),
7
+ b+=a.length,a=a[a.length-1].length,{from:g(b,a),to:g(b+c.length-1,1==c.length?a+c[0].length:c[c.length-1].length),match:h}}}function t(c,a,d,e){if(c.length==a.length)return d;var b=0;for(a=d+Math.max(0,c.length-a.length);;){if(b==a)return b;var g=b+a>>1,n=e(c.slice(0,g)).length;if(n==d)return g;n>d?a=g:b=g+1}}function A(c,a,d,e){if(!a.length)return null;e=e?v:w;a=e(a).split(/\r|\n\r?/);var b=d.line;d=d.ch;var y=c.lastLine()+1-a.length;a:for(;b<=y;b++,d=0){var n=c.getLine(b).slice(d),h=e(n);if(1==
8
+ a.length){var p=h.indexOf(a[0]);if(-1==p)continue a;t(n,h,p,e);return{from:g(b,t(n,h,p,e)+d),to:g(b,t(n,h,p+a[0].length,e)+d)}}p=h.length-a[0].length;if(h.slice(p)!=a[0])continue a;for(var m=1;m<a.length-1;m++)if(e(c.getLine(b+m))!=a[m])continue a;var m=c.getLine(b+a.length-1),l=e(m),f=a[a.length-1];if(m.slice(0,f.length)!=f)continue a;return{from:g(b,t(n,h,p,e)+d),to:g(b+a.length-1,t(m,l,f.length,e))}}}function B(c,a,b,e){if(!a.length)return null;e=e?v:w;a=e(a).split(/\r|\n\r?/);var d=b.line,f=b.ch,
9
+ n=c.firstLine()-1+a.length;a:for(;d>=n;d--,f=-1){var h=c.getLine(d);-1<f&&(h=h.slice(0,f));f=e(h);if(1==a.length){b=f.lastIndexOf(a[0]);if(-1==b)continue a;return{from:g(d,t(h,f,b,e)),to:g(d,t(h,f,b+a[0].length,e))}}var l=a[a.length-1];if(f.slice(0,l.length)!=l)continue a;var m=1;for(b=d-a.length+1;m<a.length-1;m++)if(e(c.getLine(b+m))!=a[m])continue a;b=c.getLine(d+1-a.length);m=e(b);if(m.slice(m.length-a[0].length)!=a[0])continue a;return{from:g(d+1-a.length,t(b,m,b.length-a[0].length,e)),to:g(d,
10
+ t(h,f,l.length,e))}}}function x(c,a,b,e){this.atOccurrence=!1;this.doc=c;b=b?c.clipPos(b):g(0,0);this.pos={from:b,to:b};if("object"==typeof e)var d=e.caseFold;else d=e,e=null;"string"==typeof a?(null==d&&(d=!1),this.matches=function(b,e){return(b?B:A)(c,a,e,d)}):(a=l(a),this.matches=e&&!1===e.multiline?function(b,d){return(b?u:f)(c,a,d)}:function(b,d){return(b?z:r)(c,a,d)})}var g=b.Pos;if(String.prototype.normalize){var v=function(b){return b.normalize("NFD").toLowerCase()};var w=function(b){return b.normalize("NFD")}}else v=
11
+ function(b){return b.toLowerCase()},w=function(b){return b};x.prototype={findNext:function(){return this.find(!1)},findPrevious:function(){return this.find(!0)},find:function(c){for(var a=this.matches(c,this.doc.clipPos(c?this.pos.from:this.pos.to));a&&0==b.cmpPos(a.from,a.to);)c?a.from.ch?a.from=g(a.from.line,a.from.ch-1):a=a.from.line==this.doc.firstLine()?null:this.matches(c,this.doc.clipPos(g(a.from.line-1))):a.to.ch<this.doc.getLine(a.to.line).length?a.to=g(a.to.line,a.to.ch+1):a=a.to.line==
12
+ this.doc.lastLine()?null:this.matches(c,g(a.to.line+1,0));if(a)return this.pos=a,this.atOccurrence=!0,this.pos.match||!0;c=g(c?this.doc.firstLine():this.doc.lastLine()+1,0);this.pos={from:c,to:c};return this.atOccurrence=!1},from:function(){if(this.atOccurrence)return this.pos.from},to:function(){if(this.atOccurrence)return this.pos.to},replace:function(c,a){this.atOccurrence&&(c=b.splitLines(c),this.doc.replaceRange(c,this.pos.from,this.pos.to,a),this.pos.to=g(this.pos.from.line+c.length-1,c[c.length-
13
+ 1].length+(1==c.length?this.pos.from.ch:0)))}};b.defineExtension("getSearchCursor",function(b,a,d){return new x(this.doc,b,a,d)});b.defineDocExtension("getSearchCursor",function(b,a,d){return new x(this,b,a,d)});b.defineExtension("selectMatches",function(c,a){var d=[];for(c=this.getSearchCursor(c,this.getCursor("from"),a);c.findNext()&&!(0<b.cmpPos(c.to(),this.getCursor("to")));)d.push({anchor:c.from(),head:c.to()});d.length&&this.setSelections(d,0)})});
assets/codemirror/lib/codemirror.css CHANGED
@@ -1,334 +1 @@
1
- /* BASICS */
2
-
3
- .CodeMirror {
4
- /* Set height, width, borders, and global font properties here */
5
- font-family: monospace;
6
- height: 300px;
7
- color: black;
8
- }
9
-
10
- /* PADDING */
11
-
12
- .CodeMirror-lines {
13
- padding: 4px 0; /* Vertical padding around content */
14
- }
15
- .CodeMirror pre {
16
- padding: 0 4px; /* Horizontal padding of content */
17
- }
18
-
19
- .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
20
- background-color: white; /* The little square between H and V scrollbars */
21
- }
22
-
23
- /* GUTTER */
24
-
25
- .CodeMirror-gutters {
26
- border-right: 1px solid #ddd;
27
- background-color: #f7f7f7;
28
- white-space: nowrap;
29
- }
30
- .CodeMirror-linenumbers {}
31
- .CodeMirror-linenumber {
32
- padding: 0 3px 0 5px;
33
- min-width: 20px;
34
- text-align: right;
35
- color: #999;
36
- white-space: nowrap;
37
- }
38
-
39
- .CodeMirror-guttermarker { color: black; }
40
- .CodeMirror-guttermarker-subtle { color: #999; }
41
-
42
- /* CURSOR */
43
-
44
- .CodeMirror-cursor {
45
- border-left: 1px solid black;
46
- border-right: none;
47
- width: 0;
48
- }
49
- /* Shown when moving in bi-directional text */
50
- .CodeMirror div.CodeMirror-secondarycursor {
51
- border-left: 1px solid silver;
52
- }
53
- .cm-fat-cursor .CodeMirror-cursor {
54
- width: auto;
55
- border: 0;
56
- background: #7e7;
57
- }
58
- .cm-fat-cursor div.CodeMirror-cursors {
59
- z-index: 1;
60
- }
61
-
62
- .cm-animate-fat-cursor {
63
- width: auto;
64
- border: 0;
65
- -webkit-animation: blink 1.06s steps(1) infinite;
66
- -moz-animation: blink 1.06s steps(1) infinite;
67
- animation: blink 1.06s steps(1) infinite;
68
- background-color: #7e7;
69
- }
70
- @-moz-keyframes blink {
71
- 0% {}
72
- 50% { background-color: transparent; }
73
- 100% {}
74
- }
75
- @-webkit-keyframes blink {
76
- 0% {}
77
- 50% { background-color: transparent; }
78
- 100% {}
79
- }
80
- @keyframes blink {
81
- 0% {}
82
- 50% { background-color: transparent; }
83
- 100% {}
84
- }
85
-
86
- /* Can style cursor different in overwrite (non-insert) mode */
87
- .CodeMirror-overwrite .CodeMirror-cursor {}
88
-
89
- .cm-tab { display: inline-block; text-decoration: inherit; }
90
-
91
- .CodeMirror-ruler {
92
- border-left: 1px solid #ccc;
93
- position: absolute;
94
- }
95
-
96
- /* DEFAULT THEME */
97
-
98
- .cm-s-default .cm-header {color: blue;}
99
- .cm-s-default .cm-quote {color: #090;}
100
- .cm-negative {color: #d44;}
101
- .cm-positive {color: #292;}
102
- .cm-header, .cm-strong {font-weight: bold;}
103
- .cm-em {font-style: italic;}
104
- .cm-link {text-decoration: underline;}
105
- .cm-strikethrough {text-decoration: line-through;}
106
-
107
- .cm-s-default .cm-keyword {color: #708;}
108
- .cm-s-default .cm-atom {color: #219;}
109
- .cm-s-default .cm-number {color: #164;}
110
- .cm-s-default .cm-def {color: #00f;}
111
- .cm-s-default .cm-variable,
112
- .cm-s-default .cm-punctuation,
113
- .cm-s-default .cm-property,
114
- .cm-s-default .cm-operator {}
115
- .cm-s-default .cm-variable-2 {color: #05a;}
116
- .cm-s-default .cm-variable-3 {color: #085;}
117
- .cm-s-default .cm-comment {color: #a50;}
118
- .cm-s-default .cm-string {color: #a11;}
119
- .cm-s-default .cm-string-2 {color: #f50;}
120
- .cm-s-default .cm-meta {color: #555;}
121
- .cm-s-default .cm-qualifier {color: #555;}
122
- .cm-s-default .cm-builtin {color: #30a;}
123
- .cm-s-default .cm-bracket {color: #997;}
124
- .cm-s-default .cm-tag {color: #170;}
125
- .cm-s-default .cm-attribute {color: #00c;}
126
- .cm-s-default .cm-hr {color: #999;}
127
- .cm-s-default .cm-link {color: #00c;}
128
-
129
- .cm-s-default .cm-error {color: #f00;}
130
- .cm-invalidchar {color: #f00;}
131
-
132
- .CodeMirror-composing { border-bottom: 2px solid; }
133
-
134
- /* Default styles for common addons */
135
-
136
- div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
137
- div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
138
- .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
139
- .CodeMirror-activeline-background {background: #e8f2ff;}
140
-
141
- /* STOP */
142
-
143
- /* The rest of this file contains styles related to the mechanics of
144
- the editor. You probably shouldn't touch them. */
145
-
146
- .CodeMirror {
147
- position: relative;
148
- overflow: hidden;
149
- background: white;
150
- }
151
-
152
- .CodeMirror-scroll {
153
- overflow: scroll !important; /* Things will break if this is overridden */
154
- /* 30px is the magic margin used to hide the element's real scrollbars */
155
- /* See overflow: hidden in .CodeMirror */
156
- margin-bottom: -30px; margin-right: -30px;
157
- padding-bottom: 30px;
158
- height: 100%;
159
- outline: none; /* Prevent dragging from highlighting the element */
160
- position: relative;
161
- }
162
- .CodeMirror-sizer {
163
- position: relative;
164
- border-right: 30px solid transparent;
165
- }
166
-
167
- /* The fake, visible scrollbars. Used to force redraw during scrolling
168
- before actuall scrolling happens, thus preventing shaking and
169
- flickering artifacts. */
170
- .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
171
- position: absolute;
172
- z-index: 6;
173
- display: none;
174
- }
175
- .CodeMirror-vscrollbar {
176
- right: 0; top: 0;
177
- overflow-x: hidden;
178
- overflow-y: scroll;
179
- }
180
- .CodeMirror-hscrollbar {
181
- bottom: 0; left: 0;
182
- overflow-y: hidden;
183
- overflow-x: scroll;
184
- }
185
- .CodeMirror-scrollbar-filler {
186
- right: 0; bottom: 0;
187
- }
188
- .CodeMirror-gutter-filler {
189
- left: 0; bottom: 0;
190
- }
191
-
192
- .CodeMirror-gutters {
193
- position: absolute; left: 0; top: 0;
194
- z-index: 3;
195
- }
196
- .CodeMirror-gutter {
197
- white-space: normal;
198
- height: 100%;
199
- display: inline-block;
200
- margin-bottom: -30px;
201
- /* Hack to make IE7 behave */
202
- *zoom:1;
203
- *display:inline;
204
- }
205
- .CodeMirror-gutter-wrapper {
206
- position: absolute;
207
- z-index: 4;
208
- background: none !important;
209
- border: none !important;
210
- }
211
- .CodeMirror-gutter-background {
212
- position: absolute;
213
- top: 0; bottom: 0;
214
- z-index: 4;
215
- }
216
- .CodeMirror-gutter-elt {
217
- position: absolute;
218
- cursor: default;
219
- z-index: 4;
220
- }
221
- .CodeMirror-gutter-wrapper {
222
- -webkit-user-select: none;
223
- -moz-user-select: none;
224
- user-select: none;
225
- }
226
-
227
- .CodeMirror-lines {
228
- cursor: text;
229
- min-height: 1px; /* prevents collapsing before first draw */
230
- }
231
- .CodeMirror pre {
232
- /* Reset some styles that the rest of the page might have set */
233
- -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
234
- border-width: 0;
235
- background: transparent;
236
- font-family: inherit;
237
- font-size: inherit;
238
- margin: 0;
239
- white-space: pre;
240
- word-wrap: normal;
241
- line-height: inherit;
242
- color: inherit;
243
- z-index: 2;
244
- position: relative;
245
- overflow: visible;
246
- -webkit-tap-highlight-color: transparent;
247
- }
248
- .CodeMirror-wrap pre {
249
- word-wrap: break-word;
250
- white-space: pre-wrap;
251
- word-break: normal;
252
- }
253
-
254
- .CodeMirror-linebackground {
255
- position: absolute;
256
- left: 0; right: 0; top: 0; bottom: 0;
257
- z-index: 0;
258
- }
259
-
260
- .CodeMirror-linewidget {
261
- position: relative;
262
- z-index: 2;
263
- overflow: auto;
264
- }
265
-
266
- .CodeMirror-widget {}
267
-
268
- .CodeMirror-code {
269
- outline: none;
270
- }
271
-
272
- /* Force content-box sizing for the elements where we expect it */
273
- .CodeMirror-scroll,
274
- .CodeMirror-sizer,
275
- .CodeMirror-gutter,
276
- .CodeMirror-gutters,
277
- .CodeMirror-linenumber {
278
- -moz-box-sizing: content-box;
279
- box-sizing: content-box;
280
- }
281
-
282
- .CodeMirror-measure {
283
- position: absolute;
284
- width: 100%;
285
- height: 0;
286
- overflow: hidden;
287
- visibility: hidden;
288
- }
289
-
290
- .CodeMirror-cursor { position: absolute; }
291
- .CodeMirror-measure pre { position: static; }
292
-
293
- div.CodeMirror-cursors {
294
- visibility: hidden;
295
- position: relative;
296
- z-index: 3;
297
- }
298
- div.CodeMirror-dragcursors {
299
- visibility: visible;
300
- }
301
-
302
- .CodeMirror-focused div.CodeMirror-cursors {
303
- visibility: visible;
304
- }
305
-
306
- .CodeMirror-selected { background: #d9d9d9; }
307
- .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
308
- .CodeMirror-crosshair { cursor: crosshair; }
309
- .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
310
- .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
311
-
312
- .cm-searching {
313
- background: #ffa;
314
- background: rgba(255, 255, 0, .4);
315
- }
316
-
317
- /* IE7 hack to prevent it from returning funny offsetTops on the spans */
318
- .CodeMirror span { *vertical-align: text-bottom; }
319
-
320
- /* Used to force a border model for a node */
321
- .cm-force-border { padding-right: .1px; }
322
-
323
- @media print {
324
- /* Hide the cursor when printing */
325
- .CodeMirror div.CodeMirror-cursors {
326
- visibility: hidden;
327
- }
328
- }
329
-
330
- /* See issue #2901 */
331
- .cm-tab-wrap-hack:after { content: ''; }
332
-
333
- /* Help users use markselection to safely style text background */
334
- span.CodeMirror-selectedtext { background: none; }
1
+ .CodeMirror{font-family:monospace;height:300px;color:#000}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-animate-fat-cursor{width:auto;border:0;-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta{color:#555}.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-s-default .cm-error{color:red}.cm-invalidchar{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0f0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#f22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}.CodeMirror-sizer{position:relative;border-right:30px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;overflow:auto}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:0}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background:#ffa;background:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:''}span.CodeMirror-selectedtext{background:0 0}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/lib/codemirror.js CHANGED
@@ -1,8878 +1,317 @@
1
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
- // Distributed under an MIT license: http://codemirror.net/LICENSE
3
-
4
- // This is CodeMirror (http://codemirror.net), a code editor
5
- // implemented in JavaScript on top of the browser's DOM.
6
- //
7
- // You can find some technical background for some of the code below
8
- // at http://marijnhaverbeke.nl/blog/#cm-internals .
9
-
10
- (function(mod) {
11
- if (typeof exports == "object" && typeof module == "object") // CommonJS
12
- module.exports = mod();
13
- else if (typeof define == "function" && define.amd) // AMD
14
- return define([], mod);
15
- else // Plain browser env
16
- this.CodeMirror = mod();
17
- })(function() {
18
- "use strict";
19
-
20
- // BROWSER SNIFFING
21
-
22
- // Kludges for bugs and behavior differences that can't be feature
23
- // detected are enabled based on userAgent etc sniffing.
24
- var userAgent = navigator.userAgent;
25
- var platform = navigator.platform;
26
-
27
- var gecko = /gecko\/\d/i.test(userAgent);
28
- var ie_upto10 = /MSIE \d/.test(userAgent);
29
- var ie_11up = /Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(userAgent);
30
- var ie = ie_upto10 || ie_11up;
31
- var ie_version = ie && (ie_upto10 ? document.documentMode || 6 : ie_11up[1]);
32
- var webkit = /WebKit\//.test(userAgent);
33
- var qtwebkit = webkit && /Qt\/\d+\.\d+/.test(userAgent);
34
- var chrome = /Chrome\//.test(userAgent);
35
- var presto = /Opera\//.test(userAgent);
36
- var safari = /Apple Computer/.test(navigator.vendor);
37
- var mac_geMountainLion = /Mac OS X 1\d\D([8-9]|\d\d)\D/.test(userAgent);
38
- var phantom = /PhantomJS/.test(userAgent);
39
-
40
- var ios = /AppleWebKit/.test(userAgent) && /Mobile\/\w+/.test(userAgent);
41
- // This is woefully incomplete. Suggestions for alternative methods welcome.
42
- var mobile = ios || /Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(userAgent);
43
- var mac = ios || /Mac/.test(platform);
44
- var windows = /win/i.test(platform);
45
-
46
- var presto_version = presto && userAgent.match(/Version\/(\d*\.\d*)/);
47
- if (presto_version) presto_version = Number(presto_version[1]);
48
- if (presto_version && presto_version >= 15) { presto = false; webkit = true; }
49
- // Some browsers use the wrong event properties to signal cmd/ctrl on OS X
50
- var flipCtrlCmd = mac && (qtwebkit || presto && (presto_version == null || presto_version < 12.11));
51
- var captureRightClick = gecko || (ie && ie_version >= 9);
52
-
53
- // Optimize some code when these features are not used.
54
- var sawReadOnlySpans = false, sawCollapsedSpans = false;
55
-
56
- // EDITOR CONSTRUCTOR
57
-
58
- // A CodeMirror instance represents an editor. This is the object
59
- // that user code is usually dealing with.
60
-
61
- function CodeMirror(place, options) {
62
- if (!(this instanceof CodeMirror)) return new CodeMirror(place, options);
63
-
64
- this.options = options = options ? copyObj(options) : {};
65
- // Determine effective options based on given values and defaults.
66
- copyObj(defaults, options, false);
67
- setGuttersForLineNumbers(options);
68
-
69
- var doc = options.value;
70
- if (typeof doc == "string") doc = new Doc(doc, options.mode, null, options.lineSeparator);
71
- this.doc = doc;
72
-
73
- var input = new CodeMirror.inputStyles[options.inputStyle](this);
74
- var display = this.display = new Display(place, doc, input);
75
- display.wrapper.CodeMirror = this;
76
- updateGutters(this);
77
- themeChanged(this);
78
- if (options.lineWrapping)
79
- this.display.wrapper.className += " CodeMirror-wrap";
80
- if (options.autofocus && !mobile) display.input.focus();
81
- initScrollbars(this);
82
-
83
- this.state = {
84
- keyMaps: [], // stores maps added by addKeyMap
85
- overlays: [], // highlighting overlays, as added by addOverlay
86
- modeGen: 0, // bumped when mode/overlay changes, used to invalidate highlighting info
87
- overwrite: false,
88
- delayingBlurEvent: false,
89
- focused: false,
90
- suppressEdits: false, // used to disable editing during key handlers when in readOnly mode
91
- pasteIncoming: false, cutIncoming: false, // help recognize paste/cut edits in input.poll
92
- selectingText: false,
93
- draggingText: false,
94
- highlight: new Delayed(), // stores highlight worker timeout
95
- keySeq: null, // Unfinished key sequence
96
- specialChars: null
97
- };
98
-
99
- var cm = this;
100
-
101
- // Override magic textarea content restore that IE sometimes does
102
- // on our hidden textarea on reload
103
- if (ie && ie_version < 11) setTimeout(function() { cm.display.input.reset(true); }, 20);
104
-
105
- registerEventHandlers(this);
106
- ensureGlobalHandlers();
107
-
108
- startOperation(this);
109
- this.curOp.forceUpdate = true;
110
- attachDoc(this, doc);
111
-
112
- if ((options.autofocus && !mobile) || cm.hasFocus())
113
- setTimeout(bind(onFocus, this), 20);
114
- else
115
- onBlur(this);
116
-
117
- for (var opt in optionHandlers) if (optionHandlers.hasOwnProperty(opt))
118
- optionHandlers[opt](this, options[opt], Init);
119
- maybeUpdateLineNumberWidth(this);
120
- if (options.finishInit) options.finishInit(this);
121
- for (var i = 0; i < initHooks.length; ++i) initHooks[i](this);
122
- endOperation(this);
123
- // Suppress optimizelegibility in Webkit, since it breaks text
124
- // measuring on line wrapping boundaries.
125
- if (webkit && options.lineWrapping &&
126
- getComputedStyle(display.lineDiv).textRendering == "optimizelegibility")
127
- display.lineDiv.style.textRendering = "auto";
128
- }
129
-
130
- // DISPLAY CONSTRUCTOR
131
-
132
- // The display handles the DOM integration, both for input reading
133
- // and content drawing. It holds references to DOM nodes and
134
- // display-related state.
135
-
136
- function Display(place, doc, input) {
137
- var d = this;
138
- this.input = input;
139
-
140
- // Covers bottom-right square when both scrollbars are present.
141
- d.scrollbarFiller = elt("div", null, "CodeMirror-scrollbar-filler");
142
- d.scrollbarFiller.setAttribute("cm-not-content", "true");
143
- // Covers bottom of gutter when coverGutterNextToScrollbar is on
144
- // and h scrollbar is present.
145
- d.gutterFiller = elt("div", null, "CodeMirror-gutter-filler");
146
- d.gutterFiller.setAttribute("cm-not-content", "true");
147
- // Will contain the actual code, positioned to cover the viewport.
148
- d.lineDiv = elt("div", null, "CodeMirror-code");
149
- // Elements are added to these to represent selection and cursors.
150
- d.selectionDiv = elt("div", null, null, "position: relative; z-index: 1");
151
- d.cursorDiv = elt("div", null, "CodeMirror-cursors");
152
- // A visibility: hidden element used to find the size of things.
153
- d.measure = elt("div", null, "CodeMirror-measure");
154
- // When lines outside of the viewport are measured, they are drawn in this.
155
- d.lineMeasure = elt("div", null, "CodeMirror-measure");
156
- // Wraps everything that needs to exist inside the vertically-padded coordinate system
157
- d.lineSpace = elt("div", [d.measure, d.lineMeasure, d.selectionDiv, d.cursorDiv, d.lineDiv],
158
- null, "position: relative; outline: none");
159
- // Moved around its parent to cover visible view.
160
- d.mover = elt("div", [elt("div", [d.lineSpace], "CodeMirror-lines")], null, "position: relative");
161
- // Set to the height of the document, allowing scrolling.
162
- d.sizer = elt("div", [d.mover], "CodeMirror-sizer");
163
- d.sizerWidth = null;
164
- // Behavior of elts with overflow: auto and padding is
165
- // inconsistent across browsers. This is used to ensure the
166
- // scrollable area is big enough.
167
- d.heightForcer = elt("div", null, null, "position: absolute; height: " + scrollerGap + "px; width: 1px;");
168
- // Will contain the gutters, if any.
169
- d.gutters = elt("div", null, "CodeMirror-gutters");
170
- d.lineGutter = null;
171
- // Actual scrollable element.
172
- d.scroller = elt("div", [d.sizer, d.heightForcer, d.gutters], "CodeMirror-scroll");
173
- d.scroller.setAttribute("tabIndex", "-1");
174
- // The element in which the editor lives.
175
- d.wrapper = elt("div", [d.scrollbarFiller, d.gutterFiller, d.scroller], "CodeMirror");
176
-
177
- // Work around IE7 z-index bug (not perfect, hence IE7 not really being supported)
178
- if (ie && ie_version < 8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0; }
179
- if (!webkit && !(gecko && mobile)) d.scroller.draggable = true;
180
-
181
- if (place) {
182
- if (place.appendChild) place.appendChild(d.wrapper);
183
- else place(d.wrapper);
184
- }
185
-
186
- // Current rendered range (may be bigger than the view window).
187
- d.viewFrom = d.viewTo = doc.first;
188
- d.reportedViewFrom = d.reportedViewTo = doc.first;
189
- // Information about the rendered lines.
190
- d.view = [];
191
- d.renderedView = null;
192
- // Holds info about a single rendered line when it was rendered
193
- // for measurement, while not in view.
194
- d.externalMeasured = null;
195
- // Empty space (in pixels) above the view
196
- d.viewOffset = 0;
197
- d.lastWrapHeight = d.lastWrapWidth = 0;
198
- d.updateLineNumbers = null;
199
-
200
- d.nativeBarWidth = d.barHeight = d.barWidth = 0;
201
- d.scrollbarsClipped = false;
202
-
203
- // Used to only resize the line number gutter when necessary (when
204
- // the amount of lines crosses a boundary that makes its width change)
205
- d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null;
206
- // Set to true when a non-horizontal-scrolling line widget is
207
- // added. As an optimization, line widget aligning is skipped when
208
- // this is false.
209
- d.alignWidgets = false;
210
-
211
- d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;
212
-
213
- // Tracks the maximum line length so that the horizontal scrollbar
214
- // can be kept static when scrolling.
215
- d.maxLine = null;
216
- d.maxLineLength = 0;
217
- d.maxLineChanged = false;
218
-
219
- // Used for measuring wheel scrolling granularity
220
- d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null;
221
-
222
- // True when shift is held down.
223
- d.shift = false;
224
-
225
- // Used to track whether anything happened since the context menu
226
- // was opened.
227
- d.selForContextMenu = null;
228
-
229
- d.activeTouch = null;
230
-
231
- input.init(d);
232
- }
233
-
234
- // STATE UPDATES
235
-
236
- // Used to get the editor into a consistent state again when options change.
237
-
238
- function loadMode(cm) {
239
- cm.doc.mode = CodeMirror.getMode(cm.options, cm.doc.modeOption);
240
- resetModeState(cm);
241
- }
242
-
243
- function resetModeState(cm) {
244
- cm.doc.iter(function(line) {
245
- if (line.stateAfter) line.stateAfter = null;
246
- if (line.styles) line.styles = null;
247
- });
248
- cm.doc.frontier = cm.doc.first;
249
- startWorker(cm, 100);
250
- cm.state.modeGen++;
251
- if (cm.curOp) regChange(cm);
252
- }
253
-
254
- function wrappingChanged(cm) {
255
- if (cm.options.lineWrapping) {
256
- addClass(cm.display.wrapper, "CodeMirror-wrap");
257
- cm.display.sizer.style.minWidth = "";
258
- cm.display.sizerWidth = null;
259
- } else {
260
- rmClass(cm.display.wrapper, "CodeMirror-wrap");
261
- findMaxLine(cm);
262
- }
263
- estimateLineHeights(cm);
264
- regChange(cm);
265
- clearCaches(cm);
266
- setTimeout(function(){updateScrollbars(cm);}, 100);
267
- }
268
-
269
- // Returns a function that estimates the height of a line, to use as
270
- // first approximation until the line becomes visible (and is thus
271
- // properly measurable).
272
- function estimateHeight(cm) {
273
- var th = textHeight(cm.display), wrapping = cm.options.lineWrapping;
274
- var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3);
275
- return function(line) {
276
- if (lineIsHidden(cm.doc, line)) return 0;
277
-
278
- var widgetsHeight = 0;
279
- if (line.widgets) for (var i = 0; i < line.widgets.length; i++) {
280
- if (line.widgets[i].height) widgetsHeight += line.widgets[i].height;
281
- }
282
-
283
- if (wrapping)
284
- return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th;
285
- else
286
- return widgetsHeight + th;
287
- };
288
- }
289
-
290
- function estimateLineHeights(cm) {
291
- var doc = cm.doc, est = estimateHeight(cm);
292
- doc.iter(function(line) {
293
- var estHeight = est(line);
294
- if (estHeight != line.height) updateLineHeight(line, estHeight);
295
- });
296
- }
297
-
298
- function themeChanged(cm) {
299
- cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-s-\S+/g, "") +
300
- cm.options.theme.replace(/(^|\s)\s*/g, " cm-s-");
301
- clearCaches(cm);
302
- }
303
-
304
- function guttersChanged(cm) {
305
- updateGutters(cm);
306
- regChange(cm);
307
- setTimeout(function(){alignHorizontally(cm);}, 20);
308
- }
309
-
310
- // Rebuild the gutter elements, ensure the margin to the left of the
311
- // code matches their width.
312
- function updateGutters(cm) {
313
- var gutters = cm.display.gutters, specs = cm.options.gutters;
314
- removeChildren(gutters);
315
- for (var i = 0; i < specs.length; ++i) {
316
- var gutterClass = specs[i];
317
- var gElt = gutters.appendChild(elt("div", null, "CodeMirror-gutter " + gutterClass));
318
- if (gutterClass == "CodeMirror-linenumbers") {
319
- cm.display.lineGutter = gElt;
320
- gElt.style.width = (cm.display.lineNumWidth || 1) + "px";
321
- }
322
- }
323
- gutters.style.display = i ? "" : "none";
324
- updateGutterSpace(cm);
325
- }
326
-
327
- function updateGutterSpace(cm) {
328
- var width = cm.display.gutters.offsetWidth;
329
- cm.display.sizer.style.marginLeft = width + "px";
330
- }
331
-
332
- // Compute the character length of a line, taking into account
333
- // collapsed ranges (see markText) that might hide parts, and join
334
- // other lines onto it.
335
- function lineLength(line) {
336
- if (line.height == 0) return 0;
337
- var len = line.text.length, merged, cur = line;
338
- while (merged = collapsedSpanAtStart(cur)) {
339
- var found = merged.find(0, true);
340
- cur = found.from.line;
341
- len += found.from.ch - found.to.ch;
342
- }
343
- cur = line;
344
- while (merged = collapsedSpanAtEnd(cur)) {
345
- var found = merged.find(0, true);
346
- len -= cur.text.length - found.from.ch;
347
- cur = found.to.line;
348
- len += cur.text.length - found.to.ch;
349
- }
350
- return len;
351
- }
352
-
353
- // Find the longest line in the document.
354
- function findMaxLine(cm) {
355
- var d = cm.display, doc = cm.doc;
356
- d.maxLine = getLine(doc, doc.first);
357
- d.maxLineLength = lineLength(d.maxLine);
358
- d.maxLineChanged = true;
359
- doc.iter(function(line) {
360
- var len = lineLength(line);
361
- if (len > d.maxLineLength) {
362
- d.maxLineLength = len;
363
- d.maxLine = line;
364
- }
365
- });
366
- }
367
-
368
- // Make sure the gutters options contains the element
369
- // "CodeMirror-linenumbers" when the lineNumbers option is true.
370
- function setGuttersForLineNumbers(options) {
371
- var found = indexOf(options.gutters, "CodeMirror-linenumbers");
372
- if (found == -1 && options.lineNumbers) {
373
- options.gutters = options.gutters.concat(["CodeMirror-linenumbers"]);
374
- } else if (found > -1 && !options.lineNumbers) {
375
- options.gutters = options.gutters.slice(0);
376
- options.gutters.splice(found, 1);
377
- }
378
- }
379
-
380
- // SCROLLBARS
381
-
382
- // Prepare DOM reads needed to update the scrollbars. Done in one
383
- // shot to minimize update/measure roundtrips.
384
- function measureForScrollbars(cm) {
385
- var d = cm.display, gutterW = d.gutters.offsetWidth;
386
- var docH = Math.round(cm.doc.height + paddingVert(cm.display));
387
- return {
388
- clientHeight: d.scroller.clientHeight,
389
- viewHeight: d.wrapper.clientHeight,
390
- scrollWidth: d.scroller.scrollWidth, clientWidth: d.scroller.clientWidth,
391
- viewWidth: d.wrapper.clientWidth,
392
- barLeft: cm.options.fixedGutter ? gutterW : 0,
393
- docHeight: docH,
394
- scrollHeight: docH + scrollGap(cm) + d.barHeight,
395
- nativeBarWidth: d.nativeBarWidth,
396
- gutterWidth: gutterW
397
- };
398
- }
399
-
400
- function NativeScrollbars(place, scroll, cm) {
401
- this.cm = cm;
402
- var vert = this.vert = elt("div", [elt("div", null, null, "min-width: 1px")], "CodeMirror-vscrollbar");
403
- var horiz = this.horiz = elt("div", [elt("div", null, null, "height: 100%; min-height: 1px")], "CodeMirror-hscrollbar");
404
- place(vert); place(horiz);
405
-
406
- on(vert, "scroll", function() {
407
- if (vert.clientHeight) scroll(vert.scrollTop, "vertical");
408
- });
409
- on(horiz, "scroll", function() {
410
- if (horiz.clientWidth) scroll(horiz.scrollLeft, "horizontal");
411
- });
412
-
413
- this.checkedZeroWidth = false;
414
- // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8).
415
- if (ie && ie_version < 8) this.horiz.style.minHeight = this.vert.style.minWidth = "18px";
416
- }
417
-
418
- NativeScrollbars.prototype = copyObj({
419
- update: function(measure) {
420
- var needsH = measure.scrollWidth > measure.clientWidth + 1;
421
- var needsV = measure.scrollHeight > measure.clientHeight + 1;
422
- var sWidth = measure.nativeBarWidth;
423
-
424
- if (needsV) {
425
- this.vert.style.display = "block";
426
- this.vert.style.bottom = needsH ? sWidth + "px" : "0";
427
- var totalHeight = measure.viewHeight - (needsH ? sWidth : 0);
428
- // A bug in IE8 can cause this value to be negative, so guard it.
429
- this.vert.firstChild.style.height =
430
- Math.max(0, measure.scrollHeight - measure.clientHeight + totalHeight) + "px";
431
- } else {
432
- this.vert.style.display = "";
433
- this.vert.firstChild.style.height = "0";
434
- }
435
-
436
- if (needsH) {
437
- this.horiz.style.display = "block";
438
- this.horiz.style.right = needsV ? sWidth + "px" : "0";
439
- this.horiz.style.left = measure.barLeft + "px";
440
- var totalWidth = measure.viewWidth - measure.barLeft - (needsV ? sWidth : 0);
441
- this.horiz.firstChild.style.width =
442
- (measure.scrollWidth - measure.clientWidth + totalWidth) + "px";
443
- } else {
444
- this.horiz.style.display = "";
445
- this.horiz.firstChild.style.width = "0";
446
- }
447
-
448
- if (!this.checkedZeroWidth && measure.clientHeight > 0) {
449
- if (sWidth == 0) this.zeroWidthHack();
450
- this.checkedZeroWidth = true;
451
- }
452
-
453
- return {right: needsV ? sWidth : 0, bottom: needsH ? sWidth : 0};
454
- },
455
- setScrollLeft: function(pos) {
456
- if (this.horiz.scrollLeft != pos) this.horiz.scrollLeft = pos;
457
- if (this.disableHoriz) this.enableZeroWidthBar(this.horiz, this.disableHoriz);
458
- },
459
- setScrollTop: function(pos) {
460
- if (this.vert.scrollTop != pos) this.vert.scrollTop = pos;
461
- if (this.disableVert) this.enableZeroWidthBar(this.vert, this.disableVert);
462
- },
463
- zeroWidthHack: function() {
464
- var w = mac && !mac_geMountainLion ? "12px" : "18px";
465
- this.horiz.style.height = this.vert.style.width = w;
466
- this.horiz.style.pointerEvents = this.vert.style.pointerEvents = "none";
467
- this.disableHoriz = new Delayed;
468
- this.disableVert = new Delayed;
469
- },
470
- enableZeroWidthBar: function(bar, delay) {
471
- bar.style.pointerEvents = "auto";
472
- function maybeDisable() {
473
- // To find out whether the scrollbar is still visible, we
474
- // check whether the element under the pixel in the bottom
475
- // left corner of the scrollbar box is the scrollbar box
476
- // itself (when the bar is still visible) or its filler child
477
- // (when the bar is hidden). If it is still visible, we keep
478
- // it enabled, if it's hidden, we disable pointer events.
479
- var box = bar.getBoundingClientRect();
480
- var elt = document.elementFromPoint(box.left + 1, box.bottom - 1);
481
- if (elt != bar) bar.style.pointerEvents = "none";
482
- else delay.set(1000, maybeDisable);
483
- }
484
- delay.set(1000, maybeDisable);
485
- },
486
- clear: function() {
487
- var parent = this.horiz.parentNode;
488
- parent.removeChild(this.horiz);
489
- parent.removeChild(this.vert);
490
- }
491
- }, NativeScrollbars.prototype);
492
-
493
- function NullScrollbars() {}
494
-
495
- NullScrollbars.prototype = copyObj({
496
- update: function() { return {bottom: 0, right: 0}; },
497
- setScrollLeft: function() {},
498
- setScrollTop: function() {},
499
- clear: function() {}
500
- }, NullScrollbars.prototype);
501
-
502
- CodeMirror.scrollbarModel = {"native": NativeScrollbars, "null": NullScrollbars};
503
-
504
- function initScrollbars(cm) {
505
- if (cm.display.scrollbars) {
506
- cm.display.scrollbars.clear();
507
- if (cm.display.scrollbars.addClass)
508
- rmClass(cm.display.wrapper, cm.display.scrollbars.addClass);
509
- }
510
-
511
- cm.display.scrollbars = new CodeMirror.scrollbarModel[cm.options.scrollbarStyle](function(node) {
512
- cm.display.wrapper.insertBefore(node, cm.display.scrollbarFiller);
513
- // Prevent clicks in the scrollbars from killing focus
514
- on(node, "mousedown", function() {
515
- if (cm.state.focused) setTimeout(function() { cm.display.input.focus(); }, 0);
516
- });
517
- node.setAttribute("cm-not-content", "true");
518
- }, function(pos, axis) {
519
- if (axis == "horizontal") setScrollLeft(cm, pos);
520
- else setScrollTop(cm, pos);
521
- }, cm);
522
- if (cm.display.scrollbars.addClass)
523
- addClass(cm.display.wrapper, cm.display.scrollbars.addClass);
524
- }
525
-
526
- function updateScrollbars(cm, measure) {
527
- if (!measure) measure = measureForScrollbars(cm);
528
- var startWidth = cm.display.barWidth, startHeight = cm.display.barHeight;
529
- updateScrollbarsInner(cm, measure);
530
- for (var i = 0; i < 4 && startWidth != cm.display.barWidth || startHeight != cm.display.barHeight; i++) {
531
- if (startWidth != cm.display.barWidth && cm.options.lineWrapping)
532
- updateHeightsInViewport(cm);
533
- updateScrollbarsInner(cm, measureForScrollbars(cm));
534
- startWidth = cm.display.barWidth; startHeight = cm.display.barHeight;
535
- }
536
- }
537
-
538
- // Re-synchronize the fake scrollbars with the actual size of the
539
- // content.
540
- function updateScrollbarsInner(cm, measure) {
541
- var d = cm.display;
542
- var sizes = d.scrollbars.update(measure);
543
-
544
- d.sizer.style.paddingRight = (d.barWidth = sizes.right) + "px";
545
- d.sizer.style.paddingBottom = (d.barHeight = sizes.bottom) + "px";
546
-
547
- if (sizes.right && sizes.bottom) {
548
- d.scrollbarFiller.style.display = "block";
549
- d.scrollbarFiller.style.height = sizes.bottom + "px";
550
- d.scrollbarFiller.style.width = sizes.right + "px";
551
- } else d.scrollbarFiller.style.display = "";
552
- if (sizes.bottom && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) {
553
- d.gutterFiller.style.display = "block";
554
- d.gutterFiller.style.height = sizes.bottom + "px";
555
- d.gutterFiller.style.width = measure.gutterWidth + "px";
556
- } else d.gutterFiller.style.display = "";
557
- }
558
-
559
- // Compute the lines that are visible in a given viewport (defaults
560
- // the the current scroll position). viewport may contain top,
561
- // height, and ensure (see op.scrollToPos) properties.
562
- function visibleLines(display, doc, viewport) {
563
- var top = viewport && viewport.top != null ? Math.max(0, viewport.top) : display.scroller.scrollTop;
564
- top = Math.floor(top - paddingTop(display));
565
- var bottom = viewport && viewport.bottom != null ? viewport.bottom : top + display.wrapper.clientHeight;
566
-
567
- var from = lineAtHeight(doc, top), to = lineAtHeight(doc, bottom);
568
- // Ensure is a {from: {line, ch}, to: {line, ch}} object, and
569
- // forces those lines into the viewport (if possible).
570
- if (viewport && viewport.ensure) {
571
- var ensureFrom = viewport.ensure.from.line, ensureTo = viewport.ensure.to.line;
572
- if (ensureFrom < from) {
573
- from = ensureFrom;
574
- to = lineAtHeight(doc, heightAtLine(getLine(doc, ensureFrom)) + display.wrapper.clientHeight);
575
- } else if (Math.min(ensureTo, doc.lastLine()) >= to) {
576
- from = lineAtHeight(doc, heightAtLine(getLine(doc, ensureTo)) - display.wrapper.clientHeight);
577
- to = ensureTo;
578
- }
579
- }
580
- return {from: from, to: Math.max(to, from + 1)};
581
- }
582
-
583
- // LINE NUMBERS
584
-
585
- // Re-align line numbers and gutter marks to compensate for
586
- // horizontal scrolling.
587
- function alignHorizontally(cm) {
588
- var display = cm.display, view = display.view;
589
- if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) return;
590
- var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft;
591
- var gutterW = display.gutters.offsetWidth, left = comp + "px";
592
- for (var i = 0; i < view.length; i++) if (!view[i].hidden) {
593
- if (cm.options.fixedGutter && view[i].gutter)
594
- view[i].gutter.style.left = left;
595
- var align = view[i].alignable;
596
- if (align) for (var j = 0; j < align.length; j++)
597
- align[j].style.left = left;
598
- }
599
- if (cm.options.fixedGutter)
600
- display.gutters.style.left = (comp + gutterW) + "px";
601
- }
602
-
603
- // Used to ensure that the line number gutter is still the right
604
- // size for the current document size. Returns true when an update
605
- // is needed.
606
- function maybeUpdateLineNumberWidth(cm) {
607
- if (!cm.options.lineNumbers) return false;
608
- var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display;
609
- if (last.length != display.lineNumChars) {
610
- var test = display.measure.appendChild(elt("div", [elt("div", last)],
611
- "CodeMirror-linenumber CodeMirror-gutter-elt"));
612
- var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW;
613
- display.lineGutter.style.width = "";
614
- display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding) + 1;
615
- display.lineNumWidth = display.lineNumInnerWidth + padding;
616
- display.lineNumChars = display.lineNumInnerWidth ? last.length : -1;
617
- display.lineGutter.style.width = display.lineNumWidth + "px";
618
- updateGutterSpace(cm);
619
- return true;
620
- }
621
- return false;
622
- }
623
-
624
- function lineNumberFor(options, i) {
625
- return String(options.lineNumberFormatter(i + options.firstLineNumber));
626
- }
627
-
628
- // Computes display.scroller.scrollLeft + display.gutters.offsetWidth,
629
- // but using getBoundingClientRect to get a sub-pixel-accurate
630
- // result.
631
- function compensateForHScroll(display) {
632
- return display.scroller.getBoundingClientRect().left - display.sizer.getBoundingClientRect().left;
633
- }
634
-
635
- // DISPLAY DRAWING
636
-
637
- function DisplayUpdate(cm, viewport, force) {
638
- var display = cm.display;
639
-
640
- this.viewport = viewport;
641
- // Store some values that we'll need later (but don't want to force a relayout for)
642
- this.visible = visibleLines(display, cm.doc, viewport);
643
- this.editorIsHidden = !display.wrapper.offsetWidth;
644
- this.wrapperHeight = display.wrapper.clientHeight;
645
- this.wrapperWidth = display.wrapper.clientWidth;
646
- this.oldDisplayWidth = displayWidth(cm);
647
- this.force = force;
648
- this.dims = getDimensions(cm);
649
- this.events = [];
650
- }
651
-
652
- DisplayUpdate.prototype.signal = function(emitter, type) {
653
- if (hasHandler(emitter, type))
654
- this.events.push(arguments);
655
- };
656
- DisplayUpdate.prototype.finish = function() {
657
- for (var i = 0; i < this.events.length; i++)
658
- signal.apply(null, this.events[i]);
659
- };
660
-
661
- function maybeClipScrollbars(cm) {
662
- var display = cm.display;
663
- if (!display.scrollbarsClipped && display.scroller.offsetWidth) {
664
- display.nativeBarWidth = display.scroller.offsetWidth - display.scroller.clientWidth;
665
- display.heightForcer.style.height = scrollGap(cm) + "px";
666
- display.sizer.style.marginBottom = -display.nativeBarWidth + "px";
667
- display.sizer.style.borderRightWidth = scrollGap(cm) + "px";
668
- display.scrollbarsClipped = true;
669
- }
670
- }
671
-
672
- // Does the actual updating of the line display. Bails out
673
- // (returning false) when there is nothing to be done and forced is
674
- // false.
675
- function updateDisplayIfNeeded(cm, update) {
676
- var display = cm.display, doc = cm.doc;
677
-
678
- if (update.editorIsHidden) {
679
- resetView(cm);
680
- return false;
681
- }
682
-
683
- // Bail out if the visible area is already rendered and nothing changed.
684
- if (!update.force &&
685
- update.visible.from >= display.viewFrom && update.visible.to <= display.viewTo &&
686
- (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo) &&
687
- display.renderedView == display.view && countDirtyView(cm) == 0)
688
- return false;
689
-
690
- if (maybeUpdateLineNumberWidth(cm)) {
691
- resetView(cm);
692
- update.dims = getDimensions(cm);
693
- }
694
-
695
- // Compute a suitable new viewport (from & to)
696
- var end = doc.first + doc.size;
697
- var from = Math.max(update.visible.from - cm.options.viewportMargin, doc.first);
698
- var to = Math.min(end, update.visible.to + cm.options.viewportMargin);
699
- if (display.viewFrom < from && from - display.viewFrom < 20) from = Math.max(doc.first, display.viewFrom);
700
- if (display.viewTo > to && display.viewTo - to < 20) to = Math.min(end, display.viewTo);
701
- if (sawCollapsedSpans) {
702
- from = visualLineNo(cm.doc, from);
703
- to = visualLineEndNo(cm.doc, to);
704
- }
705
-
706
- var different = from != display.viewFrom || to != display.viewTo ||
707
- display.lastWrapHeight != update.wrapperHeight || display.lastWrapWidth != update.wrapperWidth;
708
- adjustView(cm, from, to);
709
-
710
- display.viewOffset = heightAtLine(getLine(cm.doc, display.viewFrom));
711
- // Position the mover div to align with the current scroll position
712
- cm.display.mover.style.top = display.viewOffset + "px";
713
-
714
- var toUpdate = countDirtyView(cm);
715
- if (!different && toUpdate == 0 && !update.force && display.renderedView == display.view &&
716
- (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo))
717
- return false;
718
-
719
- // For big changes, we hide the enclosing element during the
720
- // update, since that speeds up the operations on most browsers.
721
- var focused = activeElt();
722
- if (toUpdate > 4) display.lineDiv.style.display = "none";
723
- patchDisplay(cm, display.updateLineNumbers, update.dims);
724
- if (toUpdate > 4) display.lineDiv.style.display = "";
725
- display.renderedView = display.view;
726
- // There might have been a widget with a focused element that got
727
- // hidden or updated, if so re-focus it.
728
- if (focused && activeElt() != focused && focused.offsetHeight) focused.focus();
729
-
730
- // Prevent selection and cursors from interfering with the scroll
731
- // width and height.
732
- removeChildren(display.cursorDiv);
733
- removeChildren(display.selectionDiv);
734
- display.gutters.style.height = display.sizer.style.minHeight = 0;
735
-
736
- if (different) {
737
- display.lastWrapHeight = update.wrapperHeight;
738
- display.lastWrapWidth = update.wrapperWidth;
739
- startWorker(cm, 400);
740
- }
741
-
742
- display.updateLineNumbers = null;
743
-
744
- return true;
745
- }
746
-
747
- function postUpdateDisplay(cm, update) {
748
- var viewport = update.viewport;
749
- for (var first = true;; first = false) {
750
- if (!first || !cm.options.lineWrapping || update.oldDisplayWidth == displayWidth(cm)) {
751
- // Clip forced viewport to actual scrollable area.
752
- if (viewport && viewport.top != null)
753
- viewport = {top: Math.min(cm.doc.height + paddingVert(cm.display) - displayHeight(cm), viewport.top)};
754
- // Updated line heights might result in the drawn area not
755
- // actually covering the viewport. Keep looping until it does.
756
- update.visible = visibleLines(cm.display, cm.doc, viewport);
757
- if (update.visible.from >= cm.display.viewFrom && update.visible.to <= cm.display.viewTo)
758
- break;
759
- }
760
- if (!updateDisplayIfNeeded(cm, update)) break;
761
- updateHeightsInViewport(cm);
762
- var barMeasure = measureForScrollbars(cm);
763
- updateSelection(cm);
764
- setDocumentHeight(cm, barMeasure);
765
- updateScrollbars(cm, barMeasure);
766
- }
767
-
768
- update.signal(cm, "update", cm);
769
- if (cm.display.viewFrom != cm.display.reportedViewFrom || cm.display.viewTo != cm.display.reportedViewTo) {
770
- update.signal(cm, "viewportChange", cm, cm.display.viewFrom, cm.display.viewTo);
771
- cm.display.reportedViewFrom = cm.display.viewFrom; cm.display.reportedViewTo = cm.display.viewTo;
772
- }
773
- }
774
-
775
- function updateDisplaySimple(cm, viewport) {
776
- var update = new DisplayUpdate(cm, viewport);
777
- if (updateDisplayIfNeeded(cm, update)) {
778
- updateHeightsInViewport(cm);
779
- postUpdateDisplay(cm, update);
780
- var barMeasure = measureForScrollbars(cm);
781
- updateSelection(cm);
782
- setDocumentHeight(cm, barMeasure);
783
- updateScrollbars(cm, barMeasure);
784
- update.finish();
785
- }
786
- }
787
-
788
- function setDocumentHeight(cm, measure) {
789
- cm.display.sizer.style.minHeight = measure.docHeight + "px";
790
- var total = measure.docHeight + cm.display.barHeight;
791
- cm.display.heightForcer.style.top = total + "px";
792
- cm.display.gutters.style.height = Math.max(total + scrollGap(cm), measure.clientHeight) + "px";
793
- }
794
-
795
- // Read the actual heights of the rendered lines, and update their
796
- // stored heights to match.
797
- function updateHeightsInViewport(cm) {
798
- var display = cm.display;
799
- var prevBottom = display.lineDiv.offsetTop;
800
- for (var i = 0; i < display.view.length; i++) {
801
- var cur = display.view[i], height;
802
- if (cur.hidden) continue;
803
- if (ie && ie_version < 8) {
804
- var bot = cur.node.offsetTop + cur.node.offsetHeight;
805
- height = bot - prevBottom;
806
- prevBottom = bot;
807
- } else {
808
- var box = cur.node.getBoundingClientRect();
809
- height = box.bottom - box.top;
810
- }
811
- var diff = cur.line.height - height;
812
- if (height < 2) height = textHeight(display);
813
- if (diff > .001 || diff < -.001) {
814
- updateLineHeight(cur.line, height);
815
- updateWidgetHeight(cur.line);
816
- if (cur.rest) for (var j = 0; j < cur.rest.length; j++)
817
- updateWidgetHeight(cur.rest[j]);
818
- }
819
- }
820
- }
821
-
822
- // Read and store the height of line widgets associated with the
823
- // given line.
824
- function updateWidgetHeight(line) {
825
- if (line.widgets) for (var i = 0; i < line.widgets.length; ++i)
826
- line.widgets[i].height = line.widgets[i].node.parentNode.offsetHeight;
827
- }
828
-
829
- // Do a bulk-read of the DOM positions and sizes needed to draw the
830
- // view, so that we don't interleave reading and writing to the DOM.
831
- function getDimensions(cm) {
832
- var d = cm.display, left = {}, width = {};
833
- var gutterLeft = d.gutters.clientLeft;
834
- for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) {
835
- left[cm.options.gutters[i]] = n.offsetLeft + n.clientLeft + gutterLeft;
836
- width[cm.options.gutters[i]] = n.clientWidth;
837
- }
838
- return {fixedPos: compensateForHScroll(d),
839
- gutterTotalWidth: d.gutters.offsetWidth,
840
- gutterLeft: left,
841
- gutterWidth: width,
842
- wrapperWidth: d.wrapper.clientWidth};
843
- }
844
-
845
- // Sync the actual display DOM structure with display.view, removing
846
- // nodes for lines that are no longer in view, and creating the ones
847
- // that are not there yet, and updating the ones that are out of
848
- // date.
849
- function patchDisplay(cm, updateNumbersFrom, dims) {
850
- var display = cm.display, lineNumbers = cm.options.lineNumbers;
851
- var container = display.lineDiv, cur = container.firstChild;
852
-
853
- function rm(node) {
854
- var next = node.nextSibling;
855
- // Works around a throw-scroll bug in OS X Webkit
856
- if (webkit && mac && cm.display.currentWheelTarget == node)
857
- node.style.display = "none";
858
- else
859
- node.parentNode.removeChild(node);
860
- return next;
861
- }
862
-
863
- var view = display.view, lineN = display.viewFrom;
864
- // Loop over the elements in the view, syncing cur (the DOM nodes
865
- // in display.lineDiv) with the view as we go.
866
- for (var i = 0; i < view.length; i++) {
867
- var lineView = view[i];
868
- if (lineView.hidden) {
869
- } else if (!lineView.node || lineView.node.parentNode != container) { // Not drawn yet
870
- var node = buildLineElement(cm, lineView, lineN, dims);
871
- container.insertBefore(node, cur);
872
- } else { // Already drawn
873
- while (cur != lineView.node) cur = rm(cur);
874
- var updateNumber = lineNumbers && updateNumbersFrom != null &&
875
- updateNumbersFrom <= lineN && lineView.lineNumber;
876
- if (lineView.changes) {
877
- if (indexOf(lineView.changes, "gutter") > -1) updateNumber = false;
878
- updateLineForChanges(cm, lineView, lineN, dims);
879
- }
880
- if (updateNumber) {
881
- removeChildren(lineView.lineNumber);
882
- lineView.lineNumber.appendChild(document.createTextNode(lineNumberFor(cm.options, lineN)));
883
- }
884
- cur = lineView.node.nextSibling;
885
- }
886
- lineN += lineView.size;
887
- }
888
- while (cur) cur = rm(cur);
889
- }
890
-
891
- // When an aspect of a line changes, a string is added to
892
- // lineView.changes. This updates the relevant part of the line's
893
- // DOM structure.
894
- function updateLineForChanges(cm, lineView, lineN, dims) {
895
- for (var j = 0; j < lineView.changes.length; j++) {
896
- var type = lineView.changes[j];
897
- if (type == "text") updateLineText(cm, lineView);
898
- else if (type == "gutter") updateLineGutter(cm, lineView, lineN, dims);
899
- else if (type == "class") updateLineClasses(lineView);
900
- else if (type == "widget") updateLineWidgets(cm, lineView, dims);
901
- }
902
- lineView.changes = null;
903
- }
904
-
905
- // Lines with gutter elements, widgets or a background class need to
906
- // be wrapped, and have the extra elements added to the wrapper div
907
- function ensureLineWrapped(lineView) {
908
- if (lineView.node == lineView.text) {
909
- lineView.node = elt("div", null, null, "position: relative");
910
- if (lineView.text.parentNode)
911
- lineView.text.parentNode.replaceChild(lineView.node, lineView.text);
912
- lineView.node.appendChild(lineView.text);
913
- if (ie && ie_version < 8) lineView.node.style.zIndex = 2;
914
- }
915
- return lineView.node;
916
- }
917
-
918
- function updateLineBackground(lineView) {
919
- var cls = lineView.bgClass ? lineView.bgClass + " " + (lineView.line.bgClass || "") : lineView.line.bgClass;
920
- if (cls) cls += " CodeMirror-linebackground";
921
- if (lineView.background) {
922
- if (cls) lineView.background.className = cls;
923
- else { lineView.background.parentNode.removeChild(lineView.background); lineView.background = null; }
924
- } else if (cls) {
925
- var wrap = ensureLineWrapped(lineView);
926
- lineView.background = wrap.insertBefore(elt("div", null, cls), wrap.firstChild);
927
- }
928
- }
929
-
930
- // Wrapper around buildLineContent which will reuse the structure
931
- // in display.externalMeasured when possible.
932
- function getLineContent(cm, lineView) {
933
- var ext = cm.display.externalMeasured;
934
- if (ext && ext.line == lineView.line) {
935
- cm.display.externalMeasured = null;
936
- lineView.measure = ext.measure;
937
- return ext.built;
938
- }
939
- return buildLineContent(cm, lineView);
940
- }
941
-
942
- // Redraw the line's text. Interacts with the background and text
943
- // classes because the mode may output tokens that influence these
944
- // classes.
945
- function updateLineText(cm, lineView) {
946
- var cls = lineView.text.className;
947
- var built = getLineContent(cm, lineView);
948
- if (lineView.text == lineView.node) lineView.node = built.pre;
949
- lineView.text.parentNode.replaceChild(built.pre, lineView.text);
950
- lineView.text = built.pre;
951
- if (built.bgClass != lineView.bgClass || built.textClass != lineView.textClass) {
952
- lineView.bgClass = built.bgClass;
953
- lineView.textClass = built.textClass;
954
- updateLineClasses(lineView);
955
- } else if (cls) {
956
- lineView.text.className = cls;
957
- }
958
- }
959
-
960
- function updateLineClasses(lineView) {
961
- updateLineBackground(lineView);
962
- if (lineView.line.wrapClass)
963
- ensureLineWrapped(lineView).className = lineView.line.wrapClass;
964
- else if (lineView.node != lineView.text)
965
- lineView.node.className = "";
966
- var textClass = lineView.textClass ? lineView.textClass + " " + (lineView.line.textClass || "") : lineView.line.textClass;
967
- lineView.text.className = textClass || "";
968
- }
969
-
970
- function updateLineGutter(cm, lineView, lineN, dims) {
971
- if (lineView.gutter) {
972
- lineView.node.removeChild(lineView.gutter);
973
- lineView.gutter = null;
974
- }
975
- if (lineView.gutterBackground) {
976
- lineView.node.removeChild(lineView.gutterBackground);
977
- lineView.gutterBackground = null;
978
- }
979
- if (lineView.line.gutterClass) {
980
- var wrap = ensureLineWrapped(lineView);
981
- lineView.gutterBackground = elt("div", null, "CodeMirror-gutter-background " + lineView.line.gutterClass,
982
- "left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) +
983
- "px; width: " + dims.gutterTotalWidth + "px");
984
- wrap.insertBefore(lineView.gutterBackground, lineView.text);
985
- }
986
- var markers = lineView.line.gutterMarkers;
987
- if (cm.options.lineNumbers || markers) {
988
- var wrap = ensureLineWrapped(lineView);
989
- var gutterWrap = lineView.gutter = elt("div", null, "CodeMirror-gutter-wrapper", "left: " +
990
- (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px");
991
- cm.display.input.setUneditable(gutterWrap);
992
- wrap.insertBefore(gutterWrap, lineView.text);
993
- if (lineView.line.gutterClass)
994
- gutterWrap.className += " " + lineView.line.gutterClass;
995
- if (cm.options.lineNumbers && (!markers || !markers["CodeMirror-linenumbers"]))
996
- lineView.lineNumber = gutterWrap.appendChild(
997
- elt("div", lineNumberFor(cm.options, lineN),
998
- "CodeMirror-linenumber CodeMirror-gutter-elt",
999
- "left: " + dims.gutterLeft["CodeMirror-linenumbers"] + "px; width: "
1000
- + cm.display.lineNumInnerWidth + "px"));
1001
- if (markers) for (var k = 0; k < cm.options.gutters.length; ++k) {
1002
- var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id];
1003
- if (found)
1004
- gutterWrap.appendChild(elt("div", [found], "CodeMirror-gutter-elt", "left: " +
1005
- dims.gutterLeft[id] + "px; width: " + dims.gutterWidth[id] + "px"));
1006
- }
1007
- }
1008
- }
1009
-
1010
- function updateLineWidgets(cm, lineView, dims) {
1011
- if (lineView.alignable) lineView.alignable = null;
1012
- for (var node = lineView.node.firstChild, next; node; node = next) {
1013
- var next = node.nextSibling;
1014
- if (node.className == "CodeMirror-linewidget")
1015
- lineView.node.removeChild(node);
1016
- }
1017
- insertLineWidgets(cm, lineView, dims);
1018
- }
1019
-
1020
- // Build a line's DOM representation from scratch
1021
- function buildLineElement(cm, lineView, lineN, dims) {
1022
- var built = getLineContent(cm, lineView);
1023
- lineView.text = lineView.node = built.pre;
1024
- if (built.bgClass) lineView.bgClass = built.bgClass;
1025
- if (built.textClass) lineView.textClass = built.textClass;
1026
-
1027
- updateLineClasses(lineView);
1028
- updateLineGutter(cm, lineView, lineN, dims);
1029
- insertLineWidgets(cm, lineView, dims);
1030
- return lineView.node;
1031
- }
1032
-
1033
- // A lineView may contain multiple logical lines (when merged by
1034
- // collapsed spans). The widgets for all of them need to be drawn.
1035
- function insertLineWidgets(cm, lineView, dims) {
1036
- insertLineWidgetsFor(cm, lineView.line, lineView, dims, true);
1037
- if (lineView.rest) for (var i = 0; i < lineView.rest.length; i++)
1038
- insertLineWidgetsFor(cm, lineView.rest[i], lineView, dims, false);
1039
- }
1040
-
1041
- function insertLineWidgetsFor(cm, line, lineView, dims, allowAbove) {
1042
- if (!line.widgets) return;
1043
- var wrap = ensureLineWrapped(lineView);
1044
- for (var i = 0, ws = line.widgets; i < ws.length; ++i) {
1045
- var widget = ws[i], node = elt("div", [widget.node], "CodeMirror-linewidget");
1046
- if (!widget.handleMouseEvents) node.setAttribute("cm-ignore-events", "true");
1047
- positionLineWidget(widget, node, lineView, dims);
1048
- cm.display.input.setUneditable(node);
1049
- if (allowAbove && widget.above)
1050
- wrap.insertBefore(node, lineView.gutter || lineView.text);
1051
- else
1052
- wrap.appendChild(node);
1053
- signalLater(widget, "redraw");
1054
- }
1055
- }
1056
-
1057
- function positionLineWidget(widget, node, lineView, dims) {
1058
- if (widget.noHScroll) {
1059
- (lineView.alignable || (lineView.alignable = [])).push(node);
1060
- var width = dims.wrapperWidth;
1061
- node.style.left = dims.fixedPos + "px";
1062
- if (!widget.coverGutter) {
1063
- width -= dims.gutterTotalWidth;
1064
- node.style.paddingLeft = dims.gutterTotalWidth + "px";
1065
- }
1066
- node.style.width = width + "px";
1067
- }
1068
- if (widget.coverGutter) {
1069
- node.style.zIndex = 5;
1070
- node.style.position = "relative";
1071
- if (!widget.noHScroll) node.style.marginLeft = -dims.gutterTotalWidth + "px";
1072
- }
1073
- }
1074
-
1075
- // POSITION OBJECT
1076
-
1077
- // A Pos instance represents a position within the text.
1078
- var Pos = CodeMirror.Pos = function(line, ch) {
1079
- if (!(this instanceof Pos)) return new Pos(line, ch);
1080
- this.line = line; this.ch = ch;
1081
- };
1082
-
1083
- // Compare two positions, return 0 if they are the same, a negative
1084
- // number when a is less, and a positive number otherwise.
1085
- var cmp = CodeMirror.cmpPos = function(a, b) { return a.line - b.line || a.ch - b.ch; };
1086
-
1087
- function copyPos(x) {return Pos(x.line, x.ch);}
1088
- function maxPos(a, b) { return cmp(a, b) < 0 ? b : a; }
1089
- function minPos(a, b) { return cmp(a, b) < 0 ? a : b; }
1090
-
1091
- // INPUT HANDLING
1092
-
1093
- function ensureFocus(cm) {
1094
- if (!cm.state.focused) { cm.display.input.focus(); onFocus(cm); }
1095
- }
1096
-
1097
- function isReadOnly(cm) {
1098
- return cm.options.readOnly || cm.doc.cantEdit;
1099
- }
1100
-
1101
- // This will be set to an array of strings when copying, so that,
1102
- // when pasting, we know what kind of selections the copied text
1103
- // was made out of.
1104
- var lastCopied = null;
1105
-
1106
- function applyTextInput(cm, inserted, deleted, sel, origin) {
1107
- var doc = cm.doc;
1108
- cm.display.shift = false;
1109
- if (!sel) sel = doc.sel;
1110
-
1111
- var paste = cm.state.pasteIncoming || origin == "paste";
1112
- var textLines = doc.splitLines(inserted), multiPaste = null;
1113
- // When pasing N lines into N selections, insert one line per selection
1114
- if (paste && sel.ranges.length > 1) {
1115
- if (lastCopied && lastCopied.join("\n") == inserted) {
1116
- if (sel.ranges.length % lastCopied.length == 0) {
1117
- multiPaste = [];
1118
- for (var i = 0; i < lastCopied.length; i++)
1119
- multiPaste.push(doc.splitLines(lastCopied[i]));
1120
- }
1121
- } else if (textLines.length == sel.ranges.length) {
1122
- multiPaste = map(textLines, function(l) { return [l]; });
1123
- }
1124
- }
1125
-
1126
- // Normal behavior is to insert the new text into every selection
1127
- for (var i = sel.ranges.length - 1; i >= 0; i--) {
1128
- var range = sel.ranges[i];
1129
- var from = range.from(), to = range.to();
1130
- if (range.empty()) {
1131
- if (deleted && deleted > 0) // Handle deletion
1132
- from = Pos(from.line, from.ch - deleted);
1133
- else if (cm.state.overwrite && !paste) // Handle overwrite
1134
- to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + lst(textLines).length));
1135
- }
1136
- var updateInput = cm.curOp.updateInput;
1137
- var changeEvent = {from: from, to: to, text: multiPaste ? multiPaste[i % multiPaste.length] : textLines,
1138
- origin: origin || (paste ? "paste" : cm.state.cutIncoming ? "cut" : "+input")};
1139
- makeChange(cm.doc, changeEvent);
1140
- signalLater(cm, "inputRead", cm, changeEvent);
1141
- }
1142
- if (inserted && !paste)
1143
- triggerElectric(cm, inserted);
1144
-
1145
- ensureCursorVisible(cm);
1146
- cm.curOp.updateInput = updateInput;
1147
- cm.curOp.typing = true;
1148
- cm.state.pasteIncoming = cm.state.cutIncoming = false;
1149
- }
1150
-
1151
- function handlePaste(e, cm) {
1152
- var pasted = e.clipboardData && e.clipboardData.getData("text/plain");
1153
- if (pasted) {
1154
- e.preventDefault();
1155
- if (!isReadOnly(cm) && !cm.options.disableInput)
1156
- runInOp(cm, function() { applyTextInput(cm, pasted, 0, null, "paste"); });
1157
- return true;
1158
- }
1159
- }
1160
-
1161
- function triggerElectric(cm, inserted) {
1162
- // When an 'electric' character is inserted, immediately trigger a reindent
1163
- if (!cm.options.electricChars || !cm.options.smartIndent) return;
1164
- var sel = cm.doc.sel;
1165
-
1166
- for (var i = sel.ranges.length - 1; i >= 0; i--) {
1167
- var range = sel.ranges[i];
1168
- if (range.head.ch > 100 || (i && sel.ranges[i - 1].head.line == range.head.line)) continue;
1169
- var mode = cm.getModeAt(range.head);
1170
- var indented = false;
1171
- if (mode.electricChars) {
1172
- for (var j = 0; j < mode.electricChars.length; j++)
1173
- if (inserted.indexOf(mode.electricChars.charAt(j)) > -1) {
1174
- indented = indentLine(cm, range.head.line, "smart");
1175
- break;
1176
- }
1177
- } else if (mode.electricInput) {
1178
- if (mode.electricInput.test(getLine(cm.doc, range.head.line).text.slice(0, range.head.ch)))
1179
- indented = indentLine(cm, range.head.line, "smart");
1180
- }
1181
- if (indented) signalLater(cm, "electricInput", cm, range.head.line);
1182
- }
1183
- }
1184
-
1185
- function copyableRanges(cm) {
1186
- var text = [], ranges = [];
1187
- for (var i = 0; i < cm.doc.sel.ranges.length; i++) {
1188
- var line = cm.doc.sel.ranges[i].head.line;
1189
- var lineRange = {anchor: Pos(line, 0), head: Pos(line + 1, 0)};
1190
- ranges.push(lineRange);
1191
- text.push(cm.getRange(lineRange.anchor, lineRange.head));
1192
- }
1193
- return {text: text, ranges: ranges};
1194
- }
1195
-
1196
- function disableBrowserMagic(field) {
1197
- field.setAttribute("autocorrect", "off");
1198
- field.setAttribute("autocapitalize", "off");
1199
- field.setAttribute("spellcheck", "false");
1200
- }
1201
-
1202
- // TEXTAREA INPUT STYLE
1203
-
1204
- function TextareaInput(cm) {
1205
- this.cm = cm;
1206
- // See input.poll and input.reset
1207
- this.prevInput = "";
1208
-
1209
- // Flag that indicates whether we expect input to appear real soon
1210
- // now (after some event like 'keypress' or 'input') and are
1211
- // polling intensively.
1212
- this.pollingFast = false;
1213
- // Self-resetting timeout for the poller
1214
- this.polling = new Delayed();
1215
- // Tracks when input.reset has punted to just putting a short
1216
- // string into the textarea instead of the full selection.
1217
- this.inaccurateSelection = false;
1218
- // Used to work around IE issue with selection being forgotten when focus moves away from textarea
1219
- this.hasSelection = false;
1220
- this.composing = null;
1221
- };
1222
-
1223
- function hiddenTextarea() {
1224
- var te = elt("textarea", null, null, "position: absolute; padding: 0; width: 1px; height: 1em; outline: none");
1225
- var div = elt("div", [te], null, "overflow: hidden; position: relative; width: 3px; height: 0px;");
1226
- // The textarea is kept positioned near the cursor to prevent the
1227
- // fact that it'll be scrolled into view on input from scrolling
1228
- // our fake cursor out of view. On webkit, when wrap=off, paste is
1229
- // very slow. So make the area wide instead.
1230
- if (webkit) te.style.width = "1000px";
1231
- else te.setAttribute("wrap", "off");
1232
- // If border: 0; -- iOS fails to open keyboard (issue #1287)
1233
- if (ios) te.style.border = "1px solid black";
1234
- disableBrowserMagic(te);
1235
- return div;
1236
- }
1237
-
1238
- TextareaInput.prototype = copyObj({
1239
- init: function(display) {
1240
- var input = this, cm = this.cm;
1241
-
1242
- // Wraps and hides input textarea
1243
- var div = this.wrapper = hiddenTextarea();
1244
- // The semihidden textarea that is focused when the editor is
1245
- // focused, and receives input.
1246
- var te = this.textarea = div.firstChild;
1247
- display.wrapper.insertBefore(div, display.wrapper.firstChild);
1248
-
1249
- // Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore)
1250
- if (ios) te.style.width = "0px";
1251
-
1252
- on(te, "input", function() {
1253
- if (ie && ie_version >= 9 && input.hasSelection) input.hasSelection = null;
1254
- input.poll();
1255
- });
1256
-
1257
- on(te, "paste", function(e) {
1258
- if (handlePaste(e, cm)) return true;
1259
-
1260
- cm.state.pasteIncoming = true;
1261
- input.fastPoll();
1262
- });
1263
-
1264
- function prepareCopyCut(e) {
1265
- if (cm.somethingSelected()) {
1266
- lastCopied = cm.getSelections();
1267
- if (input.inaccurateSelection) {
1268
- input.prevInput = "";
1269
- input.inaccurateSelection = false;
1270
- te.value = lastCopied.join("\n");
1271
- selectInput(te);
1272
- }
1273
- } else if (!cm.options.lineWiseCopyCut) {
1274
- return;
1275
- } else {
1276
- var ranges = copyableRanges(cm);
1277
- lastCopied = ranges.text;
1278
- if (e.type == "cut") {
1279
- cm.setSelections(ranges.ranges, null, sel_dontScroll);
1280
- } else {
1281
- input.prevInput = "";
1282
- te.value = ranges.text.join("\n");
1283
- selectInput(te);
1284
- }
1285
- }
1286
- if (e.type == "cut") cm.state.cutIncoming = true;
1287
- }
1288
- on(te, "cut", prepareCopyCut);
1289
- on(te, "copy", prepareCopyCut);
1290
-
1291
- on(display.scroller, "paste", function(e) {
1292
- if (eventInWidget(display, e)) return;
1293
- cm.state.pasteIncoming = true;
1294
- input.focus();
1295
- });
1296
-
1297
- // Prevent normal selection in the editor (we handle our own)
1298
- on(display.lineSpace, "selectstart", function(e) {
1299
- if (!eventInWidget(display, e)) e_preventDefault(e);
1300
- });
1301
-
1302
- on(te, "compositionstart", function() {
1303
- var start = cm.getCursor("from");
1304
- if (input.composing) input.composing.range.clear()
1305
- input.composing = {
1306
- start: start,
1307
- range: cm.markText(start, cm.getCursor("to"), {className: "CodeMirror-composing"})
1308
- };
1309
- });
1310
- on(te, "compositionend", function() {
1311
- if (input.composing) {
1312
- input.poll();
1313
- input.composing.range.clear();
1314
- input.composing = null;
1315
- }
1316
- });
1317
- },
1318
-
1319
- prepareSelection: function() {
1320
- // Redraw the selection and/or cursor
1321
- var cm = this.cm, display = cm.display, doc = cm.doc;
1322
- var result = prepareSelection(cm);
1323
-
1324
- // Move the hidden textarea near the cursor to prevent scrolling artifacts
1325
- if (cm.options.moveInputWithCursor) {
1326
- var headPos = cursorCoords(cm, doc.sel.primary().head, "div");
1327
- var wrapOff = display.wrapper.getBoundingClientRect(), lineOff = display.lineDiv.getBoundingClientRect();
1328
- result.teTop = Math.max(0, Math.min(display.wrapper.clientHeight - 10,
1329
- headPos.top + lineOff.top - wrapOff.top));
1330
- result.teLeft = Math.max(0, Math.min(display.wrapper.clientWidth - 10,
1331
- headPos.left + lineOff.left - wrapOff.left));
1332
- }
1333
-
1334
- return result;
1335
- },
1336
-
1337
- showSelection: function(drawn) {
1338
- var cm = this.cm, display = cm.display;
1339
- removeChildrenAndAdd(display.cursorDiv, drawn.cursors);
1340
- removeChildrenAndAdd(display.selectionDiv, drawn.selection);
1341
- if (drawn.teTop != null) {
1342
- this.wrapper.style.top = drawn.teTop + "px";
1343
- this.wrapper.style.left = drawn.teLeft + "px";
1344
- }
1345
- },
1346
-
1347
- // Reset the input to correspond to the selection (or to be empty,
1348
- // when not typing and nothing is selected)
1349
- reset: function(typing) {
1350
- if (this.contextMenuPending) return;
1351
- var minimal, selected, cm = this.cm, doc = cm.doc;
1352
- if (cm.somethingSelected()) {
1353
- this.prevInput = "";
1354
- var range = doc.sel.primary();
1355
- minimal = hasCopyEvent &&
1356
- (range.to().line - range.from().line > 100 || (selected = cm.getSelection()).length > 1000);
1357
- var content = minimal ? "-" : selected || cm.getSelection();
1358
- this.textarea.value = content;
1359
- if (cm.state.focused) selectInput(this.textarea);
1360
- if (ie && ie_version >= 9) this.hasSelection = content;
1361
- } else if (!typing) {
1362
- this.prevInput = this.textarea.value = "";
1363
- if (ie && ie_version >= 9) this.hasSelection = null;
1364
- }
1365
- this.inaccurateSelection = minimal;
1366
- },
1367
-
1368
- getField: function() { return this.textarea; },
1369
-
1370
- supportsTouch: function() { return false; },
1371
-
1372
- focus: function() {
1373
- if (this.cm.options.readOnly != "nocursor" && (!mobile || activeElt() != this.textarea)) {
1374
- try { this.textarea.focus(); }
1375
- catch (e) {} // IE8 will throw if the textarea is display: none or not in DOM
1376
- }
1377
- },
1378
-
1379
- blur: function() { this.textarea.blur(); },
1380
-
1381
- resetPosition: function() {
1382
- this.wrapper.style.top = this.wrapper.style.left = 0;
1383
- },
1384
-
1385
- receivedFocus: function() { this.slowPoll(); },
1386
-
1387
- // Poll for input changes, using the normal rate of polling. This
1388
- // runs as long as the editor is focused.
1389
- slowPoll: function() {
1390
- var input = this;
1391
- if (input.pollingFast) return;
1392
- input.polling.set(this.cm.options.pollInterval, function() {
1393
- input.poll();
1394
- if (input.cm.state.focused) input.slowPoll();
1395
- });
1396
- },
1397
-
1398
- // When an event has just come in that is likely to add or change
1399
- // something in the input textarea, we poll faster, to ensure that
1400
- // the change appears on the screen quickly.
1401
- fastPoll: function() {
1402
- var missed = false, input = this;
1403
- input.pollingFast = true;
1404
- function p() {
1405
- var changed = input.poll();
1406
- if (!changed && !missed) {missed = true; input.polling.set(60, p);}
1407
- else {input.pollingFast = false; input.slowPoll();}
1408
- }
1409
- input.polling.set(20, p);
1410
- },
1411
-
1412
- // Read input from the textarea, and update the document to match.
1413
- // When something is selected, it is present in the textarea, and
1414
- // selected (unless it is huge, in which case a placeholder is
1415
- // used). When nothing is selected, the cursor sits after previously
1416
- // seen text (can be empty), which is stored in prevInput (we must
1417
- // not reset the textarea when typing, because that breaks IME).
1418
- poll: function() {
1419
- var cm = this.cm, input = this.textarea, prevInput = this.prevInput;
1420
- // Since this is called a *lot*, try to bail out as cheaply as
1421
- // possible when it is clear that nothing happened. hasSelection
1422
- // will be the case when there is a lot of text in the textarea,
1423
- // in which case reading its value would be expensive.
1424
- if (this.contextMenuPending || !cm.state.focused ||
1425
- (hasSelection(input) && !prevInput && !this.composing) ||
1426
- isReadOnly(cm) || cm.options.disableInput || cm.state.keySeq)
1427
- return false;
1428
-
1429
- var text = input.value;
1430
- // If nothing changed, bail.
1431
- if (text == prevInput && !cm.somethingSelected()) return false;
1432
- // Work around nonsensical selection resetting in IE9/10, and
1433
- // inexplicable appearance of private area unicode characters on
1434
- // some key combos in Mac (#2689).
1435
- if (ie && ie_version >= 9 && this.hasSelection === text ||
1436
- mac && /[\uf700-\uf7ff]/.test(text)) {
1437
- cm.display.input.reset();
1438
- return false;
1439
- }
1440
-
1441
- if (cm.doc.sel == cm.display.selForContextMenu) {
1442
- var first = text.charCodeAt(0);
1443
- if (first == 0x200b && !prevInput) prevInput = "\u200b";
1444
- if (first == 0x21da) { this.reset(); return this.cm.execCommand("undo"); }
1445
- }
1446
- // Find the part of the input that is actually new
1447
- var same = 0, l = Math.min(prevInput.length, text.length);
1448
- while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) ++same;
1449
-
1450
- var self = this;
1451
- runInOp(cm, function() {
1452
- applyTextInput(cm, text.slice(same), prevInput.length - same,
1453
- null, self.composing ? "*compose" : null);
1454
-
1455
- // Don't leave long text in the textarea, since it makes further polling slow
1456
- if (text.length > 1000 || text.indexOf("\n") > -1) input.value = self.prevInput = "";
1457
- else self.prevInput = text;
1458
-
1459
- if (self.composing) {
1460
- self.composing.range.clear();
1461
- self.composing.range = cm.markText(self.composing.start, cm.getCursor("to"),
1462
- {className: "CodeMirror-composing"});
1463
- }
1464
- });
1465
- return true;
1466
- },
1467
-
1468
- ensurePolled: function() {
1469
- if (this.pollingFast && this.poll()) this.pollingFast = false;
1470
- },
1471
-
1472
- onKeyPress: function() {
1473
- if (ie && ie_version >= 9) this.hasSelection = null;
1474
- this.fastPoll();
1475
- },
1476
-
1477
- onContextMenu: function(e) {
1478
- var input = this, cm = input.cm, display = cm.display, te = input.textarea;
1479
- var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop;
1480
- if (!pos || presto) return; // Opera is difficult.
1481
-
1482
- // Reset the current text selection only if the click is done outside of the selection
1483
- // and 'resetSelectionOnContextMenu' option is true.
1484
- var reset = cm.options.resetSelectionOnContextMenu;
1485
- if (reset && cm.doc.sel.contains(pos) == -1)
1486
- operation(cm, setSelection)(cm.doc, simpleSelection(pos), sel_dontScroll);
1487
-
1488
- var oldCSS = te.style.cssText;
1489
- input.wrapper.style.position = "absolute";
1490
- te.style.cssText = "position: fixed; width: 30px; height: 30px; top: " + (e.clientY - 5) +
1491
- "px; left: " + (e.clientX - 5) + "px; z-index: 1000; background: " +
1492
- (ie ? "rgba(255, 255, 255, .05)" : "transparent") +
1493
- "; outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);";
1494
- if (webkit) var oldScrollY = window.scrollY; // Work around Chrome issue (#2712)
1495
- display.input.focus();
1496
- if (webkit) window.scrollTo(null, oldScrollY);
1497
- display.input.reset();
1498
- // Adds "Select all" to context menu in FF
1499
- if (!cm.somethingSelected()) te.value = input.prevInput = " ";
1500
- input.contextMenuPending = true;
1501
- display.selForContextMenu = cm.doc.sel;
1502
- clearTimeout(display.detectingSelectAll);
1503
-
1504
- // Select-all will be greyed out if there's nothing to select, so
1505
- // this adds a zero-width space so that we can later check whether
1506
- // it got selected.
1507
- function prepareSelectAllHack() {
1508
- if (te.selectionStart != null) {
1509
- var selected = cm.somethingSelected();
1510
- var extval = "\u200b" + (selected ? te.value : "");
1511
- te.value = "\u21da"; // Used to catch context-menu undo
1512
- te.value = extval;
1513
- input.prevInput = selected ? "" : "\u200b";
1514
- te.selectionStart = 1; te.selectionEnd = extval.length;
1515
- // Re-set this, in case some other handler touched the
1516
- // selection in the meantime.
1517
- display.selForContextMenu = cm.doc.sel;
1518
- }
1519
- }
1520
- function rehide() {
1521
- input.contextMenuPending = false;
1522
- input.wrapper.style.position = "relative";
1523
- te.style.cssText = oldCSS;
1524
- if (ie && ie_version < 9) display.scrollbars.setScrollTop(display.scroller.scrollTop = scrollPos);
1525
-
1526
- // Try to detect the user choosing select-all
1527
- if (te.selectionStart != null) {
1528
- if (!ie || (ie && ie_version < 9)) prepareSelectAllHack();
1529
- var i = 0, poll = function() {
1530
- if (display.selForContextMenu == cm.doc.sel && te.selectionStart == 0 &&
1531
- te.selectionEnd > 0 && input.prevInput == "\u200b")
1532
- operation(cm, commands.selectAll)(cm);
1533
- else if (i++ < 10) display.detectingSelectAll = setTimeout(poll, 500);
1534
- else display.input.reset();
1535
- };
1536
- display.detectingSelectAll = setTimeout(poll, 200);
1537
- }
1538
- }
1539
-
1540
- if (ie && ie_version >= 9) prepareSelectAllHack();
1541
- if (captureRightClick) {
1542
- e_stop(e);
1543
- var mouseup = function() {
1544
- off(window, "mouseup", mouseup);
1545
- setTimeout(rehide, 20);
1546
- };
1547
- on(window, "mouseup", mouseup);
1548
- } else {
1549
- setTimeout(rehide, 50);
1550
- }
1551
- },
1552
-
1553
- readOnlyChanged: function(val) {
1554
- if (!val) this.reset();
1555
- },
1556
-
1557
- setUneditable: nothing,
1558
-
1559
- needsContentAttribute: false
1560
- }, TextareaInput.prototype);
1561
-
1562
- // CONTENTEDITABLE INPUT STYLE
1563
-
1564
- function ContentEditableInput(cm) {
1565
- this.cm = cm;
1566
- this.lastAnchorNode = this.lastAnchorOffset = this.lastFocusNode = this.lastFocusOffset = null;
1567
- this.polling = new Delayed();
1568
- this.gracePeriod = false;
1569
- }
1570
-
1571
- ContentEditableInput.prototype = copyObj({
1572
- init: function(display) {
1573
- var input = this, cm = input.cm;
1574
- var div = input.div = display.lineDiv;
1575
- disableBrowserMagic(div);
1576
-
1577
- on(div, "paste", function(e) { handlePaste(e, cm); })
1578
-
1579
- on(div, "compositionstart", function(e) {
1580
- var data = e.data;
1581
- input.composing = {sel: cm.doc.sel, data: data, startData: data};
1582
- if (!data) return;
1583
- var prim = cm.doc.sel.primary();
1584
- var line = cm.getLine(prim.head.line);
1585
- var found = line.indexOf(data, Math.max(0, prim.head.ch - data.length));
1586
- if (found > -1 && found <= prim.head.ch)
1587
- input.composing.sel = simpleSelection(Pos(prim.head.line, found),
1588
- Pos(prim.head.line, found + data.length));
1589
- });
1590
- on(div, "compositionupdate", function(e) {
1591
- input.composing.data = e.data;
1592
- });
1593
- on(div, "compositionend", function(e) {
1594
- var ours = input.composing;
1595
- if (!ours) return;
1596
- if (e.data != ours.startData && !/\u200b/.test(e.data))
1597
- ours.data = e.data;
1598
- // Need a small delay to prevent other code (input event,
1599
- // selection polling) from doing damage when fired right after
1600
- // compositionend.
1601
- setTimeout(function() {
1602
- if (!ours.handled)
1603
- input.applyComposition(ours);
1604
- if (input.composing == ours)
1605
- input.composing = null;
1606
- }, 50);
1607
- });
1608
-
1609
- on(div, "touchstart", function() {
1610
- input.forceCompositionEnd();
1611
- });
1612
-
1613
- on(div, "input", function() {
1614
- if (input.composing) return;
1615
- if (isReadOnly(cm) || !input.pollContent())
1616
- runInOp(input.cm, function() {regChange(cm);});
1617
- });
1618
-
1619
- function onCopyCut(e) {
1620
- if (cm.somethingSelected()) {
1621
- lastCopied = cm.getSelections();
1622
- if (e.type == "cut") cm.replaceSelection("", null, "cut");
1623
- } else if (!cm.options.lineWiseCopyCut) {
1624
- return;
1625
- } else {
1626
- var ranges = copyableRanges(cm);
1627
- lastCopied = ranges.text;
1628
- if (e.type == "cut") {
1629
- cm.operation(function() {
1630
- cm.setSelections(ranges.ranges, 0, sel_dontScroll);
1631
- cm.replaceSelection("", null, "cut");
1632
- });
1633
- }
1634
- }
1635
- // iOS exposes the clipboard API, but seems to discard content inserted into it
1636
- if (e.clipboardData && !ios) {
1637
- e.preventDefault();
1638
- e.clipboardData.clearData();
1639
- e.clipboardData.setData("text/plain", lastCopied.join("\n"));
1640
- } else {
1641
- // Old-fashioned briefly-focus-a-textarea hack
1642
- var kludge = hiddenTextarea(), te = kludge.firstChild;
1643
- cm.display.lineSpace.insertBefore(kludge, cm.display.lineSpace.firstChild);
1644
- te.value = lastCopied.join("\n");
1645
- var hadFocus = document.activeElement;
1646
- selectInput(te);
1647
- setTimeout(function() {
1648
- cm.display.lineSpace.removeChild(kludge);
1649
- hadFocus.focus();
1650
- }, 50);
1651
- }
1652
- }
1653
- on(div, "copy", onCopyCut);
1654
- on(div, "cut", onCopyCut);
1655
- },
1656
-
1657
- prepareSelection: function() {
1658
- var result = prepareSelection(this.cm, false);
1659
- result.focus = this.cm.state.focused;
1660
- return result;
1661
- },
1662
-
1663
- showSelection: function(info) {
1664
- if (!info || !this.cm.display.view.length) return;
1665
- if (info.focus) this.showPrimarySelection();
1666
- this.showMultipleSelections(info);
1667
- },
1668
-
1669
- showPrimarySelection: function() {
1670
- var sel = window.getSelection(), prim = this.cm.doc.sel.primary();
1671
- var curAnchor = domToPos(this.cm, sel.anchorNode, sel.anchorOffset);
1672
- var curFocus = domToPos(this.cm, sel.focusNode, sel.focusOffset);
1673
- if (curAnchor && !curAnchor.bad && curFocus && !curFocus.bad &&
1674
- cmp(minPos(curAnchor, curFocus), prim.from()) == 0 &&
1675
- cmp(maxPos(curAnchor, curFocus), prim.to()) == 0)
1676
- return;
1677
-
1678
- var start = posToDOM(this.cm, prim.from());
1679
- var end = posToDOM(this.cm, prim.to());
1680
- if (!start && !end) return;
1681
-
1682
- var view = this.cm.display.view;
1683
- var old = sel.rangeCount && sel.getRangeAt(0);
1684
- if (!start) {
1685
- start = {node: view[0].measure.map[2], offset: 0};
1686
- } else if (!end) { // FIXME dangerously hacky
1687
- var measure = view[view.length - 1].measure;
1688
- var map = measure.maps ? measure.maps[measure.maps.length - 1] : measure.map;
1689
- end = {node: map[map.length - 1], offset: map[map.length - 2] - map[map.length - 3]};
1690
- }
1691
-
1692
- try { var rng = range(start.node, start.offset, end.offset, end.node); }
1693
- catch(e) {} // Our model of the DOM might be outdated, in which case the range we try to set can be impossible
1694
- if (rng) {
1695
- sel.removeAllRanges();
1696
- sel.addRange(rng);
1697
- if (old && sel.anchorNode == null) sel.addRange(old);
1698
- else if (gecko) this.startGracePeriod();
1699
- }
1700
- this.rememberSelection();
1701
- },
1702
-
1703
- startGracePeriod: function() {
1704
- var input = this;
1705
- clearTimeout(this.gracePeriod);
1706
- this.gracePeriod = setTimeout(function() {
1707
- input.gracePeriod = false;
1708
- if (input.selectionChanged())
1709
- input.cm.operation(function() { input.cm.curOp.selectionChanged = true; });
1710
- }, 20);
1711
- },
1712
-
1713
- showMultipleSelections: function(info) {
1714
- removeChildrenAndAdd(this.cm.display.cursorDiv, info.cursors);
1715
- removeChildrenAndAdd(this.cm.display.selectionDiv, info.selection);
1716
- },
1717
-
1718
- rememberSelection: function() {
1719
- var sel = window.getSelection();
1720
- this.lastAnchorNode = sel.anchorNode; this.lastAnchorOffset = sel.anchorOffset;
1721
- this.lastFocusNode = sel.focusNode; this.lastFocusOffset = sel.focusOffset;
1722
- },
1723
-
1724
- selectionInEditor: function() {
1725
- var sel = window.getSelection();
1726
- if (!sel.rangeCount) return false;
1727
- var node = sel.getRangeAt(0).commonAncestorContainer;
1728
- return contains(this.div, node);
1729
- },
1730
-
1731
- focus: function() {
1732
- if (this.cm.options.readOnly != "nocursor") this.div.focus();
1733
- },
1734
- blur: function() { this.div.blur(); },
1735
- getField: function() { return this.div; },
1736
-
1737
- supportsTouch: function() { return true; },
1738
-
1739
- receivedFocus: function() {
1740
- var input = this;
1741
- if (this.selectionInEditor())
1742
- this.pollSelection();
1743
- else
1744
- runInOp(this.cm, function() { input.cm.curOp.selectionChanged = true; });
1745
-
1746
- function poll() {
1747
- if (input.cm.state.focused) {
1748
- input.pollSelection();
1749
- input.polling.set(input.cm.options.pollInterval, poll);
1750
- }
1751
- }
1752
- this.polling.set(this.cm.options.pollInterval, poll);
1753
- },
1754
-
1755
- selectionChanged: function() {
1756
- var sel = window.getSelection();
1757
- return sel.anchorNode != this.lastAnchorNode || sel.anchorOffset != this.lastAnchorOffset ||
1758
- sel.focusNode != this.lastFocusNode || sel.focusOffset != this.lastFocusOffset;
1759
- },
1760
-
1761
- pollSelection: function() {
1762
- if (!this.composing && !this.gracePeriod && this.selectionChanged()) {
1763
- var sel = window.getSelection(), cm = this.cm;
1764
- this.rememberSelection();
1765
- var anchor = domToPos(cm, sel.anchorNode, sel.anchorOffset);
1766
- var head = domToPos(cm, sel.focusNode, sel.focusOffset);
1767
- if (anchor && head) runInOp(cm, function() {
1768
- setSelection(cm.doc, simpleSelection(anchor, head), sel_dontScroll);
1769
- if (anchor.bad || head.bad) cm.curOp.selectionChanged = true;
1770
- });
1771
- }
1772
- },
1773
-
1774
- pollContent: function() {
1775
- var cm = this.cm, display = cm.display, sel = cm.doc.sel.primary();
1776
- var from = sel.from(), to = sel.to();
1777
- if (from.line < display.viewFrom || to.line > display.viewTo - 1) return false;
1778
-
1779
- var fromIndex;
1780
- if (from.line == display.viewFrom || (fromIndex = findViewIndex(cm, from.line)) == 0) {
1781
- var fromLine = lineNo(display.view[0].line);
1782
- var fromNode = display.view[0].node;
1783
- } else {
1784
- var fromLine = lineNo(display.view[fromIndex].line);
1785
- var fromNode = display.view[fromIndex - 1].node.nextSibling;
1786
- }
1787
- var toIndex = findViewIndex(cm, to.line);
1788
- if (toIndex == display.view.length - 1) {
1789
- var toLine = display.viewTo - 1;
1790
- var toNode = display.lineDiv.lastChild;
1791
- } else {
1792
- var toLine = lineNo(display.view[toIndex + 1].line) - 1;
1793
- var toNode = display.view[toIndex + 1].node.previousSibling;
1794
- }
1795
-
1796
- var newText = cm.doc.splitLines(domTextBetween(cm, fromNode, toNode, fromLine, toLine));
1797
- var oldText = getBetween(cm.doc, Pos(fromLine, 0), Pos(toLine, getLine(cm.doc, toLine).text.length));
1798
- while (newText.length > 1 && oldText.length > 1) {
1799
- if (lst(newText) == lst(oldText)) { newText.pop(); oldText.pop(); toLine--; }
1800
- else if (newText[0] == oldText[0]) { newText.shift(); oldText.shift(); fromLine++; }
1801
- else break;
1802
- }
1803
-
1804
- var cutFront = 0, cutEnd = 0;
1805
- var newTop = newText[0], oldTop = oldText[0], maxCutFront = Math.min(newTop.length, oldTop.length);
1806
- while (cutFront < maxCutFront && newTop.charCodeAt(cutFront) == oldTop.charCodeAt(cutFront))
1807
- ++cutFront;
1808
- var newBot = lst(newText), oldBot = lst(oldText);
1809
- var maxCutEnd = Math.min(newBot.length - (newText.length == 1 ? cutFront : 0),
1810
- oldBot.length - (oldText.length == 1 ? cutFront : 0));
1811
- while (cutEnd < maxCutEnd &&
1812
- newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1))
1813
- ++cutEnd;
1814
-
1815
- newText[newText.length - 1] = newBot.slice(0, newBot.length - cutEnd);
1816
- newText[0] = newText[0].slice(cutFront);
1817
-
1818
- var chFrom = Pos(fromLine, cutFront);
1819
- var chTo = Pos(toLine, oldText.length ? lst(oldText).length - cutEnd : 0);
1820
- if (newText.length > 1 || newText[0] || cmp(chFrom, chTo)) {
1821
- replaceRange(cm.doc, newText, chFrom, chTo, "+input");
1822
- return true;
1823
- }
1824
- },
1825
-
1826
- ensurePolled: function() {
1827
- this.forceCompositionEnd();
1828
- },
1829
- reset: function() {
1830
- this.forceCompositionEnd();
1831
- },
1832
- forceCompositionEnd: function() {
1833
- if (!this.composing || this.composing.handled) return;
1834
- this.applyComposition(this.composing);
1835
- this.composing.handled = true;
1836
- this.div.blur();
1837
- this.div.focus();
1838
- },
1839
- applyComposition: function(composing) {
1840
- if (isReadOnly(this.cm))
1841
- operation(this.cm, regChange)(this.cm)
1842
- else if (composing.data && composing.data != composing.startData)
1843
- operation(this.cm, applyTextInput)(this.cm, composing.data, 0, composing.sel);
1844
- },
1845
-
1846
- setUneditable: function(node) {
1847
- node.contentEditable = "false"
1848
- },
1849
-
1850
- onKeyPress: function(e) {
1851
- e.preventDefault();
1852
- if (!isReadOnly(this.cm))
1853
- operation(this.cm, applyTextInput)(this.cm, String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode), 0);
1854
- },
1855
-
1856
- readOnlyChanged: function(val) {
1857
- this.div.contentEditable = String(val != "nocursor")
1858
- },
1859
-
1860
- onContextMenu: nothing,
1861
- resetPosition: nothing,
1862
-
1863
- needsContentAttribute: true
1864
- }, ContentEditableInput.prototype);
1865
-
1866
- function posToDOM(cm, pos) {
1867
- var view = findViewForLine(cm, pos.line);
1868
- if (!view || view.hidden) return null;
1869
- var line = getLine(cm.doc, pos.line);
1870
- var info = mapFromLineView(view, line, pos.line);
1871
-
1872
- var order = getOrder(line), side = "left";
1873
- if (order) {
1874
- var partPos = getBidiPartAt(order, pos.ch);
1875
- side = partPos % 2 ? "right" : "left";
1876
- }
1877
- var result = nodeAndOffsetInLineMap(info.map, pos.ch, side);
1878
- result.offset = result.collapse == "right" ? result.end : result.start;
1879
- return result;
1880
- }
1881
-
1882
- function badPos(pos, bad) { if (bad) pos.bad = true; return pos; }
1883
-
1884
- function domToPos(cm, node, offset) {
1885
- var lineNode;
1886
- if (node == cm.display.lineDiv) {
1887
- lineNode = cm.display.lineDiv.childNodes[offset];
1888
- if (!lineNode) return badPos(cm.clipPos(Pos(cm.display.viewTo - 1)), true);
1889
- node = null; offset = 0;
1890
- } else {
1891
- for (lineNode = node;; lineNode = lineNode.parentNode) {
1892
- if (!lineNode || lineNode == cm.display.lineDiv) return null;
1893
- if (lineNode.parentNode && lineNode.parentNode == cm.display.lineDiv) break;
1894
- }
1895
- }
1896
- for (var i = 0; i < cm.display.view.length; i++) {
1897
- var lineView = cm.display.view[i];
1898
- if (lineView.node == lineNode)
1899
- return locateNodeInLineView(lineView, node, offset);
1900
- }
1901
- }
1902
-
1903
- function locateNodeInLineView(lineView, node, offset) {
1904
- var wrapper = lineView.text.firstChild, bad = false;
1905
- if (!node || !contains(wrapper, node)) return badPos(Pos(lineNo(lineView.line), 0), true);
1906
- if (node == wrapper) {
1907
- bad = true;
1908
- node = wrapper.childNodes[offset];
1909
- offset = 0;
1910
- if (!node) {
1911
- var line = lineView.rest ? lst(lineView.rest) : lineView.line;
1912
- return badPos(Pos(lineNo(line), line.text.length), bad);
1913
- }
1914
- }
1915
-
1916
- var textNode = node.nodeType == 3 ? node : null, topNode = node;
1917
- if (!textNode && node.childNodes.length == 1 && node.firstChild.nodeType == 3) {
1918
- textNode = node.firstChild;
1919
- if (offset) offset = textNode.nodeValue.length;
1920
- }
1921
- while (topNode.parentNode != wrapper) topNode = topNode.parentNode;
1922
- var measure = lineView.measure, maps = measure.maps;
1923
-
1924
- function find(textNode, topNode, offset) {
1925
- for (var i = -1; i < (maps ? maps.length : 0); i++) {
1926
- var map = i < 0 ? measure.map : maps[i];
1927
- for (var j = 0; j < map.length; j += 3) {
1928
- var curNode = map[j + 2];
1929
- if (curNode == textNode || curNode == topNode) {
1930
- var line = lineNo(i < 0 ? lineView.line : lineView.rest[i]);
1931
- var ch = map[j] + offset;
1932
- if (offset < 0 || curNode != textNode) ch = map[j + (offset ? 1 : 0)];
1933
- return Pos(line, ch);
1934
- }
1935
- }
1936
- }
1937
- }
1938
- var found = find(textNode, topNode, offset);
1939
- if (found) return badPos(found, bad);
1940
-
1941
- // FIXME this is all really shaky. might handle the few cases it needs to handle, but likely to cause problems
1942
- for (var after = topNode.nextSibling, dist = textNode ? textNode.nodeValue.length - offset : 0; after; after = after.nextSibling) {
1943
- found = find(after, after.firstChild, 0);
1944
- if (found)
1945
- return badPos(Pos(found.line, found.ch - dist), bad);
1946
- else
1947
- dist += after.textContent.length;
1948
- }
1949
- for (var before = topNode.previousSibling, dist = offset; before; before = before.previousSibling) {
1950
- found = find(before, before.firstChild, -1);
1951
- if (found)
1952
- return badPos(Pos(found.line, found.ch + dist), bad);
1953
- else
1954
- dist += after.textContent.length;
1955
- }
1956
- }
1957
-
1958
- function domTextBetween(cm, from, to, fromLine, toLine) {
1959
- var text = "", closing = false, lineSep = cm.doc.lineSeparator();
1960
- function recognizeMarker(id) { return function(marker) { return marker.id == id; }; }
1961
- function walk(node) {
1962
- if (node.nodeType == 1) {
1963
- var cmText = node.getAttribute("cm-text");
1964
- if (cmText != null) {
1965
- if (cmText == "") cmText = node.textContent.replace(/\u200b/g, "");
1966
- text += cmText;
1967
- return;
1968
- }
1969
- var markerID = node.getAttribute("cm-marker"), range;
1970
- if (markerID) {
1971
- var found = cm.findMarks(Pos(fromLine, 0), Pos(toLine + 1, 0), recognizeMarker(+markerID));
1972
- if (found.length && (range = found[0].find()))
1973
- text += getBetween(cm.doc, range.from, range.to).join(lineSep);
1974
- return;
1975
- }
1976
- if (node.getAttribute("contenteditable") == "false") return;
1977
- for (var i = 0; i < node.childNodes.length; i++)
1978
- walk(node.childNodes[i]);
1979
- if (/^(pre|div|p)$/i.test(node.nodeName))
1980
- closing = true;
1981
- } else if (node.nodeType == 3) {
1982
- var val = node.nodeValue;
1983
- if (!val) return;
1984
- if (closing) {
1985
- text += lineSep;
1986
- closing = false;
1987
- }
1988
- text += val;
1989
- }
1990
- }
1991
- for (;;) {
1992
- walk(from);
1993
- if (from == to) break;
1994
- from = from.nextSibling;
1995
- }
1996
- return text;
1997
- }
1998
-
1999
- CodeMirror.inputStyles = {"textarea": TextareaInput, "contenteditable": ContentEditableInput};
2000
-
2001
- // SELECTION / CURSOR
2002
-
2003
- // Selection objects are immutable. A new one is created every time
2004
- // the selection changes. A selection is one or more non-overlapping
2005
- // (and non-touching) ranges, sorted, and an integer that indicates
2006
- // which one is the primary selection (the one that's scrolled into
2007
- // view, that getCursor returns, etc).
2008
- function Selection(ranges, primIndex) {
2009
- this.ranges = ranges;
2010
- this.primIndex = primIndex;
2011
- }
2012
-
2013
- Selection.prototype = {
2014
- primary: function() { return this.ranges[this.primIndex]; },
2015
- equals: function(other) {
2016
- if (other == this) return true;
2017
- if (other.primIndex != this.primIndex || other.ranges.length != this.ranges.length) return false;
2018
- for (var i = 0; i < this.ranges.length; i++) {
2019
- var here = this.ranges[i], there = other.ranges[i];
2020
- if (cmp(here.anchor, there.anchor) != 0 || cmp(here.head, there.head) != 0) return false;
2021
- }
2022
- return true;
2023
- },
2024
- deepCopy: function() {
2025
- for (var out = [], i = 0; i < this.ranges.length; i++)
2026
- out[i] = new Range(copyPos(this.ranges[i].anchor), copyPos(this.ranges[i].head));
2027
- return new Selection(out, this.primIndex);
2028
- },
2029
- somethingSelected: function() {
2030
- for (var i = 0; i < this.ranges.length; i++)
2031
- if (!this.ranges[i].empty()) return true;
2032
- return false;
2033
- },
2034
- contains: function(pos, end) {
2035
- if (!end) end = pos;
2036
- for (var i = 0; i < this.ranges.length; i++) {
2037
- var range = this.ranges[i];
2038
- if (cmp(end, range.from()) >= 0 && cmp(pos, range.to()) <= 0)
2039
- return i;
2040
- }
2041
- return -1;
2042
- }
2043
- };
2044
-
2045
- function Range(anchor, head) {
2046
- this.anchor = anchor; this.head = head;
2047
- }
2048
-
2049
- Range.prototype = {
2050
- from: function() { return minPos(this.anchor, this.head); },
2051
- to: function() { return maxPos(this.anchor, this.head); },
2052
- empty: function() {
2053
- return this.head.line == this.anchor.line && this.head.ch == this.anchor.ch;
2054
- }
2055
- };
2056
-
2057
- // Take an unsorted, potentially overlapping set of ranges, and
2058
- // build a selection out of it. 'Consumes' ranges array (modifying
2059
- // it).
2060
- function normalizeSelection(ranges, primIndex) {
2061
- var prim = ranges[primIndex];
2062
- ranges.sort(function(a, b) { return cmp(a.from(), b.from()); });
2063
- primIndex = indexOf(ranges, prim);
2064
- for (var i = 1; i < ranges.length; i++) {
2065
- var cur = ranges[i], prev = ranges[i - 1];
2066
- if (cmp(prev.to(), cur.from()) >= 0) {
2067
- var from = minPos(prev.from(), cur.from()), to = maxPos(prev.to(), cur.to());
2068
- var inv = prev.empty() ? cur.from() == cur.head : prev.from() == prev.head;
2069
- if (i <= primIndex) --primIndex;
2070
- ranges.splice(--i, 2, new Range(inv ? to : from, inv ? from : to));
2071
- }
2072
- }
2073
- return new Selection(ranges, primIndex);
2074
- }
2075
-
2076
- function simpleSelection(anchor, head) {
2077
- return new Selection([new Range(anchor, head || anchor)], 0);
2078
- }
2079
-
2080
- // Most of the external API clips given positions to make sure they
2081
- // actually exist within the document.
2082
- function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1));}
2083
- function clipPos(doc, pos) {
2084
- if (pos.line < doc.first) return Pos(doc.first, 0);
2085
- var last = doc.first + doc.size - 1;
2086
- if (pos.line > last) return Pos(last, getLine(doc, last).text.length);
2087
- return clipToLen(pos, getLine(doc, pos.line).text.length);
2088
- }
2089
- function clipToLen(pos, linelen) {
2090
- var ch = pos.ch;
2091
- if (ch == null || ch > linelen) return Pos(pos.line, linelen);
2092
- else if (ch < 0) return Pos(pos.line, 0);
2093
- else return pos;
2094
- }
2095
- function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size;}
2096
- function clipPosArray(doc, array) {
2097
- for (var out = [], i = 0; i < array.length; i++) out[i] = clipPos(doc, array[i]);
2098
- return out;
2099
- }
2100
-
2101
- // SELECTION UPDATES
2102
-
2103
- // The 'scroll' parameter given to many of these indicated whether
2104
- // the new cursor position should be scrolled into view after
2105
- // modifying the selection.
2106
-
2107
- // If shift is held or the extend flag is set, extends a range to
2108
- // include a given position (and optionally a second position).
2109
- // Otherwise, simply returns the range between the given positions.
2110
- // Used for cursor motion and such.
2111
- function extendRange(doc, range, head, other) {
2112
- if (doc.cm && doc.cm.display.shift || doc.extend) {
2113
- var anchor = range.anchor;
2114
- if (other) {
2115
- var posBefore = cmp(head, anchor) < 0;
2116
- if (posBefore != (cmp(other, anchor) < 0)) {
2117
- anchor = head;
2118
- head = other;
2119
- } else if (posBefore != (cmp(head, other) < 0)) {
2120
- head = other;
2121
- }
2122
- }
2123
- return new Range(anchor, head);
2124
- } else {
2125
- return new Range(other || head, head);
2126
- }
2127
- }
2128
-
2129
- // Extend the primary selection range, discard the rest.
2130
- function extendSelection(doc, head, other, options) {
2131
- setSelection(doc, new Selection([extendRange(doc, doc.sel.primary(), head, other)], 0), options);
2132
- }
2133
-
2134
- // Extend all selections (pos is an array of selections with length
2135
- // equal the number of selections)
2136
- function extendSelections(doc, heads, options) {
2137
- for (var out = [], i = 0; i < doc.sel.ranges.length; i++)
2138
- out[i] = extendRange(doc, doc.sel.ranges[i], heads[i], null);
2139
- var newSel = normalizeSelection(out, doc.sel.primIndex);
2140
- setSelection(doc, newSel, options);
2141
- }
2142
-
2143
- // Updates a single range in the selection.
2144
- function replaceOneSelection(doc, i, range, options) {
2145
- var ranges = doc.sel.ranges.slice(0);
2146
- ranges[i] = range;
2147
- setSelection(doc, normalizeSelection(ranges, doc.sel.primIndex), options);
2148
- }
2149
-
2150
- // Reset the selection to a single range.
2151
- function setSimpleSelection(doc, anchor, head, options) {
2152
- setSelection(doc, simpleSelection(anchor, head), options);
2153
- }
2154
-
2155
- // Give beforeSelectionChange handlers a change to influence a
2156
- // selection update.
2157
- function filterSelectionChange(doc, sel) {
2158
- var obj = {
2159
- ranges: sel.ranges,
2160
- update: function(ranges) {
2161
- this.ranges = [];
2162
- for (var i = 0; i < ranges.length; i++)
2163
- this.ranges[i] = new Range(clipPos(doc, ranges[i].anchor),
2164
- clipPos(doc, ranges[i].head));
2165
- }
2166
- };
2167
- signal(doc, "beforeSelectionChange", doc, obj);
2168
- if (doc.cm) signal(doc.cm, "beforeSelectionChange", doc.cm, obj);
2169
- if (obj.ranges != sel.ranges) return normalizeSelection(obj.ranges, obj.ranges.length - 1);
2170
- else return sel;
2171
- }
2172
-
2173
- function setSelectionReplaceHistory(doc, sel, options) {
2174
- var done = doc.history.done, last = lst(done);
2175
- if (last && last.ranges) {
2176
- done[done.length - 1] = sel;
2177
- setSelectionNoUndo(doc, sel, options);
2178
- } else {
2179
- setSelection(doc, sel, options);
2180
- }
2181
- }
2182
-
2183
- // Set a new selection.
2184
- function setSelection(doc, sel, options) {
2185
- setSelectionNoUndo(doc, sel, options);
2186
- addSelectionToHistory(doc, doc.sel, doc.cm ? doc.cm.curOp.id : NaN, options);
2187
- }
2188
-
2189
- function setSelectionNoUndo(doc, sel, options) {
2190
- if (hasHandler(doc, "beforeSelectionChange") || doc.cm && hasHandler(doc.cm, "beforeSelectionChange"))
2191
- sel = filterSelectionChange(doc, sel);
2192
-
2193
- var bias = options && options.bias ||
2194
- (cmp(sel.primary().head, doc.sel.primary().head) < 0 ? -1 : 1);
2195
- setSelectionInner(doc, skipAtomicInSelection(doc, sel, bias, true));
2196
-
2197
- if (!(options && options.scroll === false) && doc.cm)
2198
- ensureCursorVisible(doc.cm);
2199
- }
2200
-
2201
- function setSelectionInner(doc, sel) {
2202
- if (sel.equals(doc.sel)) return;
2203
-
2204
- doc.sel = sel;
2205
-
2206
- if (doc.cm) {
2207
- doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged = true;
2208
- signalCursorActivity(doc.cm);
2209
- }
2210
- signalLater(doc, "cursorActivity", doc);
2211
- }
2212
-
2213
- // Verify that the selection does not partially select any atomic
2214
- // marked ranges.
2215
- function reCheckSelection(doc) {
2216
- setSelectionInner(doc, skipAtomicInSelection(doc, doc.sel, null, false), sel_dontScroll);
2217
- }
2218
-
2219
- // Return a selection that does not partially select any atomic
2220
- // ranges.
2221
- function skipAtomicInSelection(doc, sel, bias, mayClear) {
2222
- var out;
2223
- for (var i = 0; i < sel.ranges.length; i++) {
2224
- var range = sel.ranges[i];
2225
- var old = sel.ranges.length == doc.sel.ranges.length && doc.sel.ranges[i];
2226
- var newAnchor = skipAtomic(doc, range.anchor, old && old.anchor, bias, mayClear);
2227
- var newHead = skipAtomic(doc, range.head, old && old.head, bias, mayClear);
2228
- if (out || newAnchor != range.anchor || newHead != range.head) {
2229
- if (!out) out = sel.ranges.slice(0, i);
2230
- out[i] = new Range(newAnchor, newHead);
2231
- }
2232
- }
2233
- return out ? normalizeSelection(out, sel.primIndex) : sel;
2234
- }
2235
-
2236
- function skipAtomicInner(doc, pos, oldPos, dir, mayClear) {
2237
- var line = getLine(doc, pos.line);
2238
- if (line.markedSpans) for (var i = 0; i < line.markedSpans.length; ++i) {
2239
- var sp = line.markedSpans[i], m = sp.marker;
2240
- if ((sp.from == null || (m.inclusiveLeft ? sp.from <= pos.ch : sp.from < pos.ch)) &&
2241
- (sp.to == null || (m.inclusiveRight ? sp.to >= pos.ch : sp.to > pos.ch))) {
2242
- if (mayClear) {
2243
- signal(m, "beforeCursorEnter");
2244
- if (m.explicitlyCleared) {
2245
- if (!line.markedSpans) break;
2246
- else {--i; continue;}
2247
- }
2248
- }
2249
- if (!m.atomic) continue;
2250
-
2251
- if (oldPos) {
2252
- var near = m.find(dir < 0 ? 1 : -1), diff;
2253
- if (dir < 0 ? m.inclusiveRight : m.inclusiveLeft) near = movePos(doc, near, -dir, line);
2254
- if (near && near.line == pos.line && (diff = cmp(near, oldPos)) && (dir < 0 ? diff < 0 : diff > 0))
2255
- return skipAtomicInner(doc, near, pos, dir, mayClear);
2256
- }
2257
-
2258
- var far = m.find(dir < 0 ? -1 : 1);
2259
- if (dir < 0 ? m.inclusiveLeft : m.inclusiveRight) far = movePos(doc, far, dir, line);
2260
- return far ? skipAtomicInner(doc, far, pos, dir, mayClear) : null;
2261
- }
2262
- }
2263
- return pos;
2264
- }
2265
-
2266
- // Ensure a given position is not inside an atomic range.
2267
- function skipAtomic(doc, pos, oldPos, bias, mayClear) {
2268
- var dir = bias || 1;
2269
- var found = skipAtomicInner(doc, pos, oldPos, dir, mayClear) ||
2270
- (!mayClear && skipAtomicInner(doc, pos, oldPos, dir, true)) ||
2271
- skipAtomicInner(doc, pos, oldPos, -dir, mayClear) ||
2272
- (!mayClear && skipAtomicInner(doc, pos, oldPos, -dir, true));
2273
- if (!found) {
2274
- doc.cantEdit = true;
2275
- return Pos(doc.first, 0);
2276
- }
2277
- return found;
2278
- }
2279
-
2280
- function movePos(doc, pos, dir, line) {
2281
- if (dir < 0 && pos.ch == 0) {
2282
- if (pos.line > doc.first) return clipPos(doc, Pos(pos.line - 1));
2283
- else return null;
2284
- } else if (dir > 0 && pos.ch == (line || getLine(doc, pos.line)).text.length) {
2285
- if (pos.line < doc.first + doc.size - 1) return Pos(pos.line + 1, 0);
2286
- else return null;
2287
- } else {
2288
- return new Pos(pos.line, pos.ch + dir);
2289
- }
2290
- }
2291
-
2292
- // SELECTION DRAWING
2293
-
2294
- function updateSelection(cm) {
2295
- cm.display.input.showSelection(cm.display.input.prepareSelection());
2296
- }
2297
-
2298
- function prepareSelection(cm, primary) {
2299
- var doc = cm.doc, result = {};
2300
- var curFragment = result.cursors = document.createDocumentFragment();
2301
- var selFragment = result.selection = document.createDocumentFragment();
2302
-
2303
- for (var i = 0; i < doc.sel.ranges.length; i++) {
2304
- if (primary === false && i == doc.sel.primIndex) continue;
2305
- var range = doc.sel.ranges[i];
2306
- var collapsed = range.empty();
2307
- if (collapsed || cm.options.showCursorWhenSelecting)
2308
- drawSelectionCursor(cm, range.head, curFragment);
2309
- if (!collapsed)
2310
- drawSelectionRange(cm, range, selFragment);
2311
- }
2312
- return result;
2313
- }
2314
-
2315
- // Draws a cursor for the given range
2316
- function drawSelectionCursor(cm, head, output) {
2317
- var pos = cursorCoords(cm, head, "div", null, null, !cm.options.singleCursorHeightPerLine);
2318
-
2319
- var cursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor"));
2320
- cursor.style.left = pos.left + "px";
2321
- cursor.style.top = pos.top + "px";
2322
- cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px";
2323
-
2324
- if (pos.other) {
2325
- // Secondary cursor, shown when on a 'jump' in bi-directional text
2326
- var otherCursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor CodeMirror-secondarycursor"));
2327
- otherCursor.style.display = "";
2328
- otherCursor.style.left = pos.other.left + "px";
2329
- otherCursor.style.top = pos.other.top + "px";
2330
- otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + "px";
2331
- }
2332
- }
2333
-
2334
- // Draws the given range as a highlighted selection
2335
- function drawSelectionRange(cm, range, output) {
2336
- var display = cm.display, doc = cm.doc;
2337
- var fragment = document.createDocumentFragment();
2338
- var padding = paddingH(cm.display), leftSide = padding.left;
2339
- var rightSide = Math.max(display.sizerWidth, displayWidth(cm) - display.sizer.offsetLeft) - padding.right;
2340
-
2341
- function add(left, top, width, bottom) {
2342
- if (top < 0) top = 0;
2343
- top = Math.round(top);
2344
- bottom = Math.round(bottom);
2345
- fragment.appendChild(elt("div", null, "CodeMirror-selected", "position: absolute; left: " + left +
2346
- "px; top: " + top + "px; width: " + (width == null ? rightSide - left : width) +
2347
- "px; height: " + (bottom - top) + "px"));
2348
- }
2349
-
2350
- function drawForLine(line, fromArg, toArg) {
2351
- var lineObj = getLine(doc, line);
2352
- var lineLen = lineObj.text.length;
2353
- var start, end;
2354
- function coords(ch, bias) {
2355
- return charCoords(cm, Pos(line, ch), "div", lineObj, bias);
2356
- }
2357
-
2358
- iterateBidiSections(getOrder(lineObj), fromArg || 0, toArg == null ? lineLen : toArg, function(from, to, dir) {
2359
- var leftPos = coords(from, "left"), rightPos, left, right;
2360
- if (from == to) {
2361
- rightPos = leftPos;
2362
- left = right = leftPos.left;
2363
- } else {
2364
- rightPos = coords(to - 1, "right");
2365
- if (dir == "rtl") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp; }
2366
- left = leftPos.left;
2367
- right = rightPos.right;
2368
- }
2369
- if (fromArg == null && from == 0) left = leftSide;
2370
- if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part
2371
- add(left, leftPos.top, null, leftPos.bottom);
2372
- left = leftSide;
2373
- if (leftPos.bottom < rightPos.top) add(left, leftPos.bottom, null, rightPos.top);
2374
- }
2375
- if (toArg == null && to == lineLen) right = rightSide;
2376
- if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left)
2377
- start = leftPos;
2378
- if (!end || rightPos.bottom > end.bottom || rightPos.bottom == end.bottom && rightPos.right > end.right)
2379
- end = rightPos;
2380
- if (left < leftSide + 1) left = leftSide;
2381
- add(left, rightPos.top, right - left, rightPos.bottom);
2382
- });
2383
- return {start: start, end: end};
2384
- }
2385
-
2386
- var sFrom = range.from(), sTo = range.to();
2387
- if (sFrom.line == sTo.line) {
2388
- drawForLine(sFrom.line, sFrom.ch, sTo.ch);
2389
- } else {
2390
- var fromLine = getLine(doc, sFrom.line), toLine = getLine(doc, sTo.line);
2391
- var singleVLine = visualLine(fromLine) == visualLine(toLine);
2392
- var leftEnd = drawForLine(sFrom.line, sFrom.ch, singleVLine ? fromLine.text.length + 1 : null).end;
2393
- var rightStart = drawForLine(sTo.line, singleVLine ? 0 : null, sTo.ch).start;
2394
- if (singleVLine) {
2395
- if (leftEnd.top < rightStart.top - 2) {
2396
- add(leftEnd.right, leftEnd.top, null, leftEnd.bottom);
2397
- add(leftSide, rightStart.top, rightStart.left, rightStart.bottom);
2398
- } else {
2399
- add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom);
2400
- }
2401
- }
2402
- if (leftEnd.bottom < rightStart.top)
2403
- add(leftSide, leftEnd.bottom, null, rightStart.top);
2404
- }
2405
-
2406
- output.appendChild(fragment);
2407
- }
2408
-
2409
- // Cursor-blinking
2410
- function restartBlink(cm) {
2411
- if (!cm.state.focused) return;
2412
- var display = cm.display;
2413
- clearInterval(display.blinker);
2414
- var on = true;
2415
- display.cursorDiv.style.visibility = "";
2416
- if (cm.options.cursorBlinkRate > 0)
2417
- display.blinker = setInterval(function() {
2418
- display.cursorDiv.style.visibility = (on = !on) ? "" : "hidden";
2419
- }, cm.options.cursorBlinkRate);
2420
- else if (cm.options.cursorBlinkRate < 0)
2421
- display.cursorDiv.style.visibility = "hidden";
2422
- }
2423
-
2424
- // HIGHLIGHT WORKER
2425
-
2426
- function startWorker(cm, time) {
2427
- if (cm.doc.mode.startState && cm.doc.frontier < cm.display.viewTo)
2428
- cm.state.highlight.set(time, bind(highlightWorker, cm));
2429
- }
2430
-
2431
- function highlightWorker(cm) {
2432
- var doc = cm.doc;
2433
- if (doc.frontier < doc.first) doc.frontier = doc.first;
2434
- if (doc.frontier >= cm.display.viewTo) return;
2435
- var end = +new Date + cm.options.workTime;
2436
- var state = copyState(doc.mode, getStateBefore(cm, doc.frontier));
2437
- var changedLines = [];
2438
-
2439
- doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function(line) {
2440
- if (doc.frontier >= cm.display.viewFrom) { // Visible
2441
- var oldStyles = line.styles, tooLong = line.text.length > cm.options.maxHighlightLength;
2442
- var highlighted = highlightLine(cm, line, tooLong ? copyState(doc.mode, state) : state, true);
2443
- line.styles = highlighted.styles;
2444
- var oldCls = line.styleClasses, newCls = highlighted.classes;
2445
- if (newCls) line.styleClasses = newCls;
2446
- else if (oldCls) line.styleClasses = null;
2447
- var ischange = !oldStyles || oldStyles.length != line.styles.length ||
2448
- oldCls != newCls && (!oldCls || !newCls || oldCls.bgClass != newCls.bgClass || oldCls.textClass != newCls.textClass);
2449
- for (var i = 0; !ischange && i < oldStyles.length; ++i) ischange = oldStyles[i] != line.styles[i];
2450
- if (ischange) changedLines.push(doc.frontier);
2451
- line.stateAfter = tooLong ? state : copyState(doc.mode, state);
2452
- } else {
2453
- if (line.text.length <= cm.options.maxHighlightLength)
2454
- processLine(cm, line.text, state);
2455
- line.stateAfter = doc.frontier % 5 == 0 ? copyState(doc.mode, state) : null;
2456
- }
2457
- ++doc.frontier;
2458
- if (+new Date > end) {
2459
- startWorker(cm, cm.options.workDelay);
2460
- return true;
2461
- }
2462
- });
2463
- if (changedLines.length) runInOp(cm, function() {
2464
- for (var i = 0; i < changedLines.length; i++)
2465
- regLineChange(cm, changedLines[i], "text");
2466
- });
2467
- }
2468
-
2469
- // Finds the line to start with when starting a parse. Tries to
2470
- // find a line with a stateAfter, so that it can start with a
2471
- // valid state. If that fails, it returns the line with the
2472
- // smallest indentation, which tends to need the least context to
2473
- // parse correctly.
2474
- function findStartLine(cm, n, precise) {
2475
- var minindent, minline, doc = cm.doc;
2476
- var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100);
2477
- for (var search = n; search > lim; --search) {
2478
- if (search <= doc.first) return doc.first;
2479
- var line = getLine(doc, search - 1);
2480
- if (line.stateAfter && (!precise || search <= doc.frontier)) return search;
2481
- var indented = countColumn(line.text, null, cm.options.tabSize);
2482
- if (minline == null || minindent > indented) {
2483
- minline = search - 1;
2484
- minindent = indented;
2485
- }
2486
- }
2487
- return minline;
2488
- }
2489
-
2490
- function getStateBefore(cm, n, precise) {
2491
- var doc = cm.doc, display = cm.display;
2492
- if (!doc.mode.startState) return true;
2493
- var pos = findStartLine(cm, n, precise), state = pos > doc.first && getLine(doc, pos-1).stateAfter;
2494
- if (!state) state = startState(doc.mode);
2495
- else state = copyState(doc.mode, state);
2496
- doc.iter(pos, n, function(line) {
2497
- processLine(cm, line.text, state);
2498
- var save = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo;
2499
- line.stateAfter = save ? copyState(doc.mode, state) : null;
2500
- ++pos;
2501
- });
2502
- if (precise) doc.frontier = pos;
2503
- return state;
2504
- }
2505
-
2506
- // POSITION MEASUREMENT
2507
-
2508
- function paddingTop(display) {return display.lineSpace.offsetTop;}
2509
- function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight;}
2510
- function paddingH(display) {
2511
- if (display.cachedPaddingH) return display.cachedPaddingH;
2512
- var e = removeChildrenAndAdd(display.measure, elt("pre", "x"));
2513
- var style = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle;
2514
- var data = {left: parseInt(style.paddingLeft), right: parseInt(style.paddingRight)};
2515
- if (!isNaN(data.left) && !isNaN(data.right)) display.cachedPaddingH = data;
2516
- return data;
2517
- }
2518
-
2519
- function scrollGap(cm) { return scrollerGap - cm.display.nativeBarWidth; }
2520
- function displayWidth(cm) {
2521
- return cm.display.scroller.clientWidth - scrollGap(cm) - cm.display.barWidth;
2522
- }
2523
- function displayHeight(cm) {
2524
- return cm.display.scroller.clientHeight - scrollGap(cm) - cm.display.barHeight;
2525
- }
2526
-
2527
- // Ensure the lineView.wrapping.heights array is populated. This is
2528
- // an array of bottom offsets for the lines that make up a drawn
2529
- // line. When lineWrapping is on, there might be more than one
2530
- // height.
2531
- function ensureLineHeights(cm, lineView, rect) {
2532
- var wrapping = cm.options.lineWrapping;
2533
- var curWidth = wrapping && displayWidth(cm);
2534
- if (!lineView.measure.heights || wrapping && lineView.measure.width != curWidth) {
2535
- var heights = lineView.measure.heights = [];
2536
- if (wrapping) {
2537
- lineView.measure.width = curWidth;
2538
- var rects = lineView.text.firstChild.getClientRects();
2539
- for (var i = 0; i < rects.length - 1; i++) {
2540
- var cur = rects[i], next = rects[i + 1];
2541
- if (Math.abs(cur.bottom - next.bottom) > 2)
2542
- heights.push((cur.bottom + next.top) / 2 - rect.top);
2543
- }
2544
- }
2545
- heights.push(rect.bottom - rect.top);
2546
- }
2547
- }
2548
-
2549
- // Find a line map (mapping character offsets to text nodes) and a
2550
- // measurement cache for the given line number. (A line view might
2551
- // contain multiple lines when collapsed ranges are present.)
2552
- function mapFromLineView(lineView, line, lineN) {
2553
- if (lineView.line == line)
2554
- return {map: lineView.measure.map, cache: lineView.measure.cache};
2555
- for (var i = 0; i < lineView.rest.length; i++)
2556
- if (lineView.rest[i] == line)
2557
- return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]};
2558
- for (var i = 0; i < lineView.rest.length; i++)
2559
- if (lineNo(lineView.rest[i]) > lineN)
2560
- return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i], before: true};
2561
- }
2562
-
2563
- // Render a line into the hidden node display.externalMeasured. Used
2564
- // when measurement is needed for a line that's not in the viewport.
2565
- function updateExternalMeasurement(cm, line) {
2566
- line = visualLine(line);
2567
- var lineN = lineNo(line);
2568
- var view = cm.display.externalMeasured = new LineView(cm.doc, line, lineN);
2569
- view.lineN = lineN;
2570
- var built = view.built = buildLineContent(cm, view);
2571
- view.text = built.pre;
2572
- removeChildrenAndAdd(cm.display.lineMeasure, built.pre);
2573
- return view;
2574
- }
2575
-
2576
- // Get a {top, bottom, left, right} box (in line-local coordinates)
2577
- // for a given character.
2578
- function measureChar(cm, line, ch, bias) {
2579
- return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias);
2580
- }
2581
-
2582
- // Find a line view that corresponds to the given line number.
2583
- function findViewForLine(cm, lineN) {
2584
- if (lineN >= cm.display.viewFrom && lineN < cm.display.viewTo)
2585
- return cm.display.view[findViewIndex(cm, lineN)];
2586
- var ext = cm.display.externalMeasured;
2587
- if (ext && lineN >= ext.lineN && lineN < ext.lineN + ext.size)
2588
- return ext;
2589
- }
2590
-
2591
- // Measurement can be split in two steps, the set-up work that
2592
- // applies to the whole line, and the measurement of the actual
2593
- // character. Functions like coordsChar, that need to do a lot of
2594
- // measurements in a row, can thus ensure that the set-up work is
2595
- // only done once.
2596
- function prepareMeasureForLine(cm, line) {
2597
- var lineN = lineNo(line);
2598
- var view = findViewForLine(cm, lineN);
2599
- if (view && !view.text) {
2600
- view = null;
2601
- } else if (view && view.changes) {
2602
- updateLineForChanges(cm, view, lineN, getDimensions(cm));
2603
- cm.curOp.forceUpdate = true;
2604
- }
2605
- if (!view)
2606
- view = updateExternalMeasurement(cm, line);
2607
-
2608
- var info = mapFromLineView(view, line, lineN);
2609
- return {
2610
- line: line, view: view, rect: null,
2611
- map: info.map, cache: info.cache, before: info.before,
2612
- hasHeights: false
2613
- };
2614
- }
2615
-
2616
- // Given a prepared measurement object, measures the position of an
2617
- // actual character (or fetches it from the cache).
2618
- function measureCharPrepared(cm, prepared, ch, bias, varHeight) {
2619
- if (prepared.before) ch = -1;
2620
- var key = ch + (bias || ""), found;
2621
- if (prepared.cache.hasOwnProperty(key)) {
2622
- found = prepared.cache[key];
2623
- } else {
2624
- if (!prepared.rect)
2625
- prepared.rect = prepared.view.text.getBoundingClientRect();
2626
- if (!prepared.hasHeights) {
2627
- ensureLineHeights(cm, prepared.view, prepared.rect);
2628
- prepared.hasHeights = true;
2629
- }
2630
- found = measureCharInner(cm, prepared, ch, bias);
2631
- if (!found.bogus) prepared.cache[key] = found;
2632
- }
2633
- return {left: found.left, right: found.right,
2634
- top: varHeight ? found.rtop : found.top,
2635
- bottom: varHeight ? found.rbottom : found.bottom};
2636
- }
2637
-
2638
- var nullRect = {left: 0, right: 0, top: 0, bottom: 0};
2639
-
2640
- function nodeAndOffsetInLineMap(map, ch, bias) {
2641
- var node, start, end, collapse;
2642
- // First, search the line map for the text node corresponding to,
2643
- // or closest to, the target character.
2644
- for (var i = 0; i < map.length; i += 3) {
2645
- var mStart = map[i], mEnd = map[i + 1];
2646
- if (ch < mStart) {
2647
- start = 0; end = 1;
2648
- collapse = "left";
2649
- } else if (ch < mEnd) {
2650
- start = ch - mStart;
2651
- end = start + 1;
2652
- } else if (i == map.length - 3 || ch == mEnd && map[i + 3] > ch) {
2653
- end = mEnd - mStart;
2654
- start = end - 1;
2655
- if (ch >= mEnd) collapse = "right";
2656
- }
2657
- if (start != null) {
2658
- node = map[i + 2];
2659
- if (mStart == mEnd && bias == (node.insertLeft ? "left" : "right"))
2660
- collapse = bias;
2661
- if (bias == "left" && start == 0)
2662
- while (i && map[i - 2] == map[i - 3] && map[i - 1].insertLeft) {
2663
- node = map[(i -= 3) + 2];
2664
- collapse = "left";
2665
- }
2666
- if (bias == "right" && start == mEnd - mStart)
2667
- while (i < map.length - 3 && map[i + 3] == map[i + 4] && !map[i + 5].insertLeft) {
2668
- node = map[(i += 3) + 2];
2669
- collapse = "right";
2670
- }
2671
- break;
2672
- }
2673
- }
2674
- return {node: node, start: start, end: end, collapse: collapse, coverStart: mStart, coverEnd: mEnd};
2675
- }
2676
-
2677
- function measureCharInner(cm, prepared, ch, bias) {
2678
- var place = nodeAndOffsetInLineMap(prepared.map, ch, bias);
2679
- var node = place.node, start = place.start, end = place.end, collapse = place.collapse;
2680
-
2681
- var rect;
2682
- if (node.nodeType == 3) { // If it is a text node, use a range to retrieve the coordinates.
2683
- for (var i = 0; i < 4; i++) { // Retry a maximum of 4 times when nonsense rectangles are returned
2684
- while (start && isExtendingChar(prepared.line.text.charAt(place.coverStart + start))) --start;
2685
- while (place.coverStart + end < place.coverEnd && isExtendingChar(prepared.line.text.charAt(place.coverStart + end))) ++end;
2686
- if (ie && ie_version < 9 && start == 0 && end == place.coverEnd - place.coverStart) {
2687
- rect = node.parentNode.getBoundingClientRect();
2688
- } else if (ie && cm.options.lineWrapping) {
2689
- var rects = range(node, start, end).getClientRects();
2690
- if (rects.length)
2691
- rect = rects[bias == "right" ? rects.length - 1 : 0];
2692
- else
2693
- rect = nullRect;
2694
- } else {
2695
- rect = range(node, start, end).getBoundingClientRect() || nullRect;
2696
- }
2697
- if (rect.left || rect.right || start == 0) break;
2698
- end = start;
2699
- start = start - 1;
2700
- collapse = "right";
2701
- }
2702
- if (ie && ie_version < 11) rect = maybeUpdateRectForZooming(cm.display.measure, rect);
2703
- } else { // If it is a widget, simply get the box for the whole widget.
2704
- if (start > 0) collapse = bias = "right";
2705
- var rects;
2706
- if (cm.options.lineWrapping && (rects = node.getClientRects()).length > 1)
2707
- rect = rects[bias == "right" ? rects.length - 1 : 0];
2708
- else
2709
- rect = node.getBoundingClientRect();
2710
- }
2711
- if (ie && ie_version < 9 && !start && (!rect || !rect.left && !rect.right)) {
2712
- var rSpan = node.parentNode.getClientRects()[0];
2713
- if (rSpan)
2714
- rect = {left: rSpan.left, right: rSpan.left + charWidth(cm.display), top: rSpan.top, bottom: rSpan.bottom};
2715
- else
2716
- rect = nullRect;
2717
- }
2718
-
2719
- var rtop = rect.top - prepared.rect.top, rbot = rect.bottom - prepared.rect.top;
2720
- var mid = (rtop + rbot) / 2;
2721
- var heights = prepared.view.measure.heights;
2722
- for (var i = 0; i < heights.length - 1; i++)
2723
- if (mid < heights[i]) break;
2724
- var top = i ? heights[i - 1] : 0, bot = heights[i];
2725
- var result = {left: (collapse == "right" ? rect.right : rect.left) - prepared.rect.left,
2726
- right: (collapse == "left" ? rect.left : rect.right) - prepared.rect.left,
2727
- top: top, bottom: bot};
2728
- if (!rect.left && !rect.right) result.bogus = true;
2729
- if (!cm.options.singleCursorHeightPerLine) { result.rtop = rtop; result.rbottom = rbot; }
2730
-
2731
- return result;
2732
- }
2733
-
2734
- // Work around problem with bounding client rects on ranges being
2735
- // returned incorrectly when zoomed on IE10 and below.
2736
- function maybeUpdateRectForZooming(measure, rect) {
2737
- if (!window.screen || screen.logicalXDPI == null ||
2738
- screen.logicalXDPI == screen.deviceXDPI || !hasBadZoomedRects(measure))
2739
- return rect;
2740
- var scaleX = screen.logicalXDPI / screen.deviceXDPI;
2741
- var scaleY = screen.logicalYDPI / screen.deviceYDPI;
2742
- return {left: rect.left * scaleX, right: rect.right * scaleX,
2743
- top: rect.top * scaleY, bottom: rect.bottom * scaleY};
2744
- }
2745
-
2746
- function clearLineMeasurementCacheFor(lineView) {
2747
- if (lineView.measure) {
2748
- lineView.measure.cache = {};
2749
- lineView.measure.heights = null;
2750
- if (lineView.rest) for (var i = 0; i < lineView.rest.length; i++)
2751
- lineView.measure.caches[i] = {};
2752
- }
2753
- }
2754
-
2755
- function clearLineMeasurementCache(cm) {
2756
- cm.display.externalMeasure = null;
2757
- removeChildren(cm.display.lineMeasure);
2758
- for (var i = 0; i < cm.display.view.length; i++)
2759
- clearLineMeasurementCacheFor(cm.display.view[i]);
2760
- }
2761
-
2762
- function clearCaches(cm) {
2763
- clearLineMeasurementCache(cm);
2764
- cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null;
2765
- if (!cm.options.lineWrapping) cm.display.maxLineChanged = true;
2766
- cm.display.lineNumChars = null;
2767
- }
2768
-
2769
- function pageScrollX() { return window.pageXOffset || (document.documentElement || document.body).scrollLeft; }
2770
- function pageScrollY() { return window.pageYOffset || (document.documentElement || document.body).scrollTop; }
2771
-
2772
- // Converts a {top, bottom, left, right} box from line-local
2773
- // coordinates into another coordinate system. Context may be one of
2774
- // "line", "div" (display.lineDiv), "local"/null (editor), "window",
2775
- // or "page".
2776
- function intoCoordSystem(cm, lineObj, rect, context) {
2777
- if (lineObj.widgets) for (var i = 0; i < lineObj.widgets.length; ++i) if (lineObj.widgets[i].above) {
2778
- var size = widgetHeight(lineObj.widgets[i]);
2779
- rect.top += size; rect.bottom += size;
2780
- }
2781
- if (context == "line") return rect;
2782
- if (!context) context = "local";
2783
- var yOff = heightAtLine(lineObj);
2784
- if (context == "local") yOff += paddingTop(cm.display);
2785
- else yOff -= cm.display.viewOffset;
2786
- if (context == "page" || context == "window") {
2787
- var lOff = cm.display.lineSpace.getBoundingClientRect();
2788
- yOff += lOff.top + (context == "window" ? 0 : pageScrollY());
2789
- var xOff = lOff.left + (context == "window" ? 0 : pageScrollX());
2790
- rect.left += xOff; rect.right += xOff;
2791
- }
2792
- rect.top += yOff; rect.bottom += yOff;
2793
- return rect;
2794
- }
2795
-
2796
- // Coverts a box from "div" coords to another coordinate system.
2797
- // Context may be "window", "page", "div", or "local"/null.
2798
- function fromCoordSystem(cm, coords, context) {
2799
- if (context == "div") return coords;
2800
- var left = coords.left, top = coords.top;
2801
- // First move into "page" coordinate system
2802
- if (context == "page") {
2803
- left -= pageScrollX();
2804
- top -= pageScrollY();
2805
- } else if (context == "local" || !context) {
2806
- var localBox = cm.display.sizer.getBoundingClientRect();
2807
- left += localBox.left;
2808
- top += localBox.top;
2809
- }
2810
-
2811
- var lineSpaceBox = cm.display.lineSpace.getBoundingClientRect();
2812
- return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top};
2813
- }
2814
-
2815
- function charCoords(cm, pos, context, lineObj, bias) {
2816
- if (!lineObj) lineObj = getLine(cm.doc, pos.line);
2817
- return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context);
2818
- }
2819
-
2820
- // Returns a box for a given cursor position, which may have an
2821
- // 'other' property containing the position of the secondary cursor
2822
- // on a bidi boundary.
2823
- function cursorCoords(cm, pos, context, lineObj, preparedMeasure, varHeight) {
2824
- lineObj = lineObj || getLine(cm.doc, pos.line);
2825
- if (!preparedMeasure) preparedMeasure = prepareMeasureForLine(cm, lineObj);
2826
- function get(ch, right) {
2827
- var m = measureCharPrepared(cm, preparedMeasure, ch, right ? "right" : "left", varHeight);
2828
- if (right) m.left = m.right; else m.right = m.left;
2829
- return intoCoordSystem(cm, lineObj, m, context);
2830
- }
2831
- function getBidi(ch, partPos) {
2832
- var part = order[partPos], right = part.level % 2;
2833
- if (ch == bidiLeft(part) && partPos && part.level < order[partPos - 1].level) {
2834
- part = order[--partPos];
2835
- ch = bidiRight(part) - (part.level % 2 ? 0 : 1);
2836
- right = true;
2837
- } else if (ch == bidiRight(part) && partPos < order.length - 1 && part.level < order[partPos + 1].level) {
2838
- part = order[++partPos];
2839
- ch = bidiLeft(part) - part.level % 2;
2840
- right = false;
2841
- }
2842
- if (right && ch == part.to && ch > part.from) return get(ch - 1);
2843
- return get(ch, right);
2844
- }
2845
- var order = getOrder(lineObj), ch = pos.ch;
2846
- if (!order) return get(ch);
2847
- var partPos = getBidiPartAt(order, ch);
2848
- var val = getBidi(ch, partPos);
2849
- if (bidiOther != null) val.other = getBidi(ch, bidiOther);
2850
- return val;
2851
- }
2852
-
2853
- // Used to cheaply estimate the coordinates for a position. Used for
2854
- // intermediate scroll updates.
2855
- function estimateCoords(cm, pos) {
2856
- var left = 0, pos = clipPos(cm.doc, pos);
2857
- if (!cm.options.lineWrapping) left = charWidth(cm.display) * pos.ch;
2858
- var lineObj = getLine(cm.doc, pos.line);
2859
- var top = heightAtLine(lineObj) + paddingTop(cm.display);
2860
- return {left: left, right: left, top: top, bottom: top + lineObj.height};
2861
- }
2862
-
2863
- // Positions returned by coordsChar contain some extra information.
2864
- // xRel is the relative x position of the input coordinates compared
2865
- // to the found position (so xRel > 0 means the coordinates are to
2866
- // the right of the character position, for example). When outside
2867
- // is true, that means the coordinates lie outside the line's
2868
- // vertical range.
2869
- function PosWithInfo(line, ch, outside, xRel) {
2870
- var pos = Pos(line, ch);
2871
- pos.xRel = xRel;
2872
- if (outside) pos.outside = true;
2873
- return pos;
2874
- }
2875
-
2876
- // Compute the character position closest to the given coordinates.
2877
- // Input must be lineSpace-local ("div" coordinate system).
2878
- function coordsChar(cm, x, y) {
2879
- var doc = cm.doc;
2880
- y += cm.display.viewOffset;
2881
- if (y < 0) return PosWithInfo(doc.first, 0, true, -1);
2882
- var lineN = lineAtHeight(doc, y), last = doc.first + doc.size - 1;
2883
- if (lineN > last)
2884
- return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, true, 1);
2885
- if (x < 0) x = 0;
2886
-
2887
- var lineObj = getLine(doc, lineN);
2888
- for (;;) {
2889
- var found = coordsCharInner(cm, lineObj, lineN, x, y);
2890
- var merged = collapsedSpanAtEnd(lineObj);
2891
- var mergedPos = merged && merged.find(0, true);
2892
- if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0))
2893
- lineN = lineNo(lineObj = mergedPos.to.line);
2894
- else
2895
- return found;
2896
- }
2897
- }
2898
-
2899
- function coordsCharInner(cm, lineObj, lineNo, x, y) {
2900
- var innerOff = y - heightAtLine(lineObj);
2901
- var wrongLine = false, adjust = 2 * cm.display.wrapper.clientWidth;
2902
- var preparedMeasure = prepareMeasureForLine(cm, lineObj);
2903
-
2904
- function getX(ch) {
2905
- var sp = cursorCoords(cm, Pos(lineNo, ch), "line", lineObj, preparedMeasure);
2906
- wrongLine = true;
2907
- if (innerOff > sp.bottom) return sp.left - adjust;
2908
- else if (innerOff < sp.top) return sp.left + adjust;
2909
- else wrongLine = false;
2910
- return sp.left;
2911
- }
2912
-
2913
- var bidi = getOrder(lineObj), dist = lineObj.text.length;
2914
- var from = lineLeft(lineObj), to = lineRight(lineObj);
2915
- var fromX = getX(from), fromOutside = wrongLine, toX = getX(to), toOutside = wrongLine;
2916
-
2917
- if (x > toX) return PosWithInfo(lineNo, to, toOutside, 1);
2918
- // Do a binary search between these bounds.
2919
- for (;;) {
2920
- if (bidi ? to == from || to == moveVisually(lineObj, from, 1) : to - from <= 1) {
2921
- var ch = x < fromX || x - fromX <= toX - x ? from : to;
2922
- var xDiff = x - (ch == from ? fromX : toX);
2923
- while (isExtendingChar(lineObj.text.charAt(ch))) ++ch;
2924
- var pos = PosWithInfo(lineNo, ch, ch == from ? fromOutside : toOutside,
2925
- xDiff < -1 ? -1 : xDiff > 1 ? 1 : 0);
2926
- return pos;
2927
- }
2928
- var step = Math.ceil(dist / 2), middle = from + step;
2929
- if (bidi) {
2930
- middle = from;
2931
- for (var i = 0; i < step; ++i) middle = moveVisually(lineObj, middle, 1);
2932
- }
2933
- var middleX = getX(middle);
2934
- if (middleX > x) {to = middle; toX = middleX; if (toOutside = wrongLine) toX += 1000; dist = step;}
2935
- else {from = middle; fromX = middleX; fromOutside = wrongLine; dist -= step;}
2936
- }
2937
- }
2938
-
2939
- var measureText;
2940
- // Compute the default text height.
2941
- function textHeight(display) {
2942
- if (display.cachedTextHeight != null) return display.cachedTextHeight;
2943
- if (measureText == null) {
2944
- measureText = elt("pre");
2945
- // Measure a bunch of lines, for browsers that compute
2946
- // fractional heights.
2947
- for (var i = 0; i < 49; ++i) {
2948
- measureText.appendChild(document.createTextNode("x"));
2949
- measureText.appendChild(elt("br"));
2950
- }
2951
- measureText.appendChild(document.createTextNode("x"));
2952
- }
2953
- removeChildrenAndAdd(display.measure, measureText);
2954
- var height = measureText.offsetHeight / 50;
2955
- if (height > 3) display.cachedTextHeight = height;
2956
- removeChildren(display.measure);
2957
- return height || 1;
2958
- }
2959
-
2960
- // Compute the default character width.
2961
- function charWidth(display) {
2962
- if (display.cachedCharWidth != null) return display.cachedCharWidth;
2963
- var anchor = elt("span", "xxxxxxxxxx");
2964
- var pre = elt("pre", [anchor]);
2965
- removeChildrenAndAdd(display.measure, pre);
2966
- var rect = anchor.getBoundingClientRect(), width = (rect.right - rect.left) / 10;
2967
- if (width > 2) display.cachedCharWidth = width;
2968
- return width || 10;
2969
- }
2970
-
2971
- // OPERATIONS
2972
-
2973
- // Operations are used to wrap a series of changes to the editor
2974
- // state in such a way that each change won't have to update the
2975
- // cursor and display (which would be awkward, slow, and
2976
- // error-prone). Instead, display updates are batched and then all
2977
- // combined and executed at once.
2978
-
2979
- var operationGroup = null;
2980
-
2981
- var nextOpId = 0;
2982
- // Start a new operation.
2983
- function startOperation(cm) {
2984
- cm.curOp = {
2985
- cm: cm,
2986
- viewChanged: false, // Flag that indicates that lines might need to be redrawn
2987
- startHeight: cm.doc.height, // Used to detect need to update scrollbar
2988
- forceUpdate: false, // Used to force a redraw
2989
- updateInput: null, // Whether to reset the input textarea
2990
- typing: false, // Whether this reset should be careful to leave existing text (for compositing)
2991
- changeObjs: null, // Accumulated changes, for firing change events
2992
- cursorActivityHandlers: null, // Set of handlers to fire cursorActivity on
2993
- cursorActivityCalled: 0, // Tracks which cursorActivity handlers have been called already
2994
- selectionChanged: false, // Whether the selection needs to be redrawn
2995
- updateMaxLine: false, // Set when the widest line needs to be determined anew
2996
- scrollLeft: null, scrollTop: null, // Intermediate scroll position, not pushed to DOM yet
2997
- scrollToPos: null, // Used to scroll to a specific position
2998
- focus: false,
2999
- id: ++nextOpId // Unique ID
3000
- };
3001
- if (operationGroup) {
3002
- operationGroup.ops.push(cm.curOp);
3003
- } else {
3004
- cm.curOp.ownsGroup = operationGroup = {
3005
- ops: [cm.curOp],
3006
- delayedCallbacks: []
3007
- };
3008
- }
3009
- }
3010
-
3011
- function fireCallbacksForOps(group) {
3012
- // Calls delayed callbacks and cursorActivity handlers until no
3013
- // new ones appear
3014
- var callbacks = group.delayedCallbacks, i = 0;
3015
- do {
3016
- for (; i < callbacks.length; i++)
3017
- callbacks[i].call(null);
3018
- for (var j = 0; j < group.ops.length; j++) {
3019
- var op = group.ops[j];
3020
- if (op.cursorActivityHandlers)
3021
- while (op.cursorActivityCalled < op.cursorActivityHandlers.length)
3022
- op.cursorActivityHandlers[op.cursorActivityCalled++].call(null, op.cm);
3023
- }
3024
- } while (i < callbacks.length);
3025
- }
3026
-
3027
- // Finish an operation, updating the display and signalling delayed events
3028
- function endOperation(cm) {
3029
- var op = cm.curOp, group = op.ownsGroup;
3030
- if (!group) return;
3031
-
3032
- try { fireCallbacksForOps(group); }
3033
- finally {
3034
- operationGroup = null;
3035
- for (var i = 0; i < group.ops.length; i++)
3036
- group.ops[i].cm.curOp = null;
3037
- endOperations(group);
3038
- }
3039
- }
3040
-
3041
- // The DOM updates done when an operation finishes are batched so
3042
- // that the minimum number of relayouts are required.
3043
- function endOperations(group) {
3044
- var ops = group.ops;
3045
- for (var i = 0; i < ops.length; i++) // Read DOM
3046
- endOperation_R1(ops[i]);
3047
- for (var i = 0; i < ops.length; i++) // Write DOM (maybe)
3048
- endOperation_W1(ops[i]);
3049
- for (var i = 0; i < ops.length; i++) // Read DOM
3050
- endOperation_R2(ops[i]);
3051
- for (var i = 0; i < ops.length; i++) // Write DOM (maybe)
3052
- endOperation_W2(ops[i]);
3053
- for (var i = 0; i < ops.length; i++) // Read DOM
3054
- endOperation_finish(ops[i]);
3055
- }
3056
-
3057
- function endOperation_R1(op) {
3058
- var cm = op.cm, display = cm.display;
3059
- maybeClipScrollbars(cm);
3060
- if (op.updateMaxLine) findMaxLine(cm);
3061
-
3062
- op.mustUpdate = op.viewChanged || op.forceUpdate || op.scrollTop != null ||
3063
- op.scrollToPos && (op.scrollToPos.from.line < display.viewFrom ||
3064
- op.scrollToPos.to.line >= display.viewTo) ||
3065
- display.maxLineChanged && cm.options.lineWrapping;
3066
- op.update = op.mustUpdate &&
3067
- new DisplayUpdate(cm, op.mustUpdate && {top: op.scrollTop, ensure: op.scrollToPos}, op.forceUpdate);
3068
- }
3069
-
3070
- function endOperation_W1(op) {
3071
- op.updatedDisplay = op.mustUpdate && updateDisplayIfNeeded(op.cm, op.update);
3072
- }
3073
-
3074
- function endOperation_R2(op) {
3075
- var cm = op.cm, display = cm.display;
3076
- if (op.updatedDisplay) updateHeightsInViewport(cm);
3077
-
3078
- op.barMeasure = measureForScrollbars(cm);
3079
-
3080
- // If the max line changed since it was last measured, measure it,
3081
- // and ensure the document's width matches it.
3082
- // updateDisplay_W2 will use these properties to do the actual resizing
3083
- if (display.maxLineChanged && !cm.options.lineWrapping) {
3084
- op.adjustWidthTo = measureChar(cm, display.maxLine, display.maxLine.text.length).left + 3;
3085
- cm.display.sizerWidth = op.adjustWidthTo;
3086
- op.barMeasure.scrollWidth =
3087
- Math.max(display.scroller.clientWidth, display.sizer.offsetLeft + op.adjustWidthTo + scrollGap(cm) + cm.display.barWidth);
3088
- op.maxScrollLeft = Math.max(0, display.sizer.offsetLeft + op.adjustWidthTo - displayWidth(cm));
3089
- }
3090
-
3091
- if (op.updatedDisplay || op.selectionChanged)
3092
- op.preparedSelection = display.input.prepareSelection();
3093
- }
3094
-
3095
- function endOperation_W2(op) {
3096
- var cm = op.cm;
3097
-
3098
- if (op.adjustWidthTo != null) {
3099
- cm.display.sizer.style.minWidth = op.adjustWidthTo + "px";
3100
- if (op.maxScrollLeft < cm.doc.scrollLeft)
3101
- setScrollLeft(cm, Math.min(cm.display.scroller.scrollLeft, op.maxScrollLeft), true);
3102
- cm.display.maxLineChanged = false;
3103
- }
3104
-
3105
- if (op.preparedSelection)
3106
- cm.display.input.showSelection(op.preparedSelection);
3107
- if (op.updatedDisplay)
3108
- setDocumentHeight(cm, op.barMeasure);
3109
- if (op.updatedDisplay || op.startHeight != cm.doc.height)
3110
- updateScrollbars(cm, op.barMeasure);
3111
-
3112
- if (op.selectionChanged) restartBlink(cm);
3113
-
3114
- if (cm.state.focused && op.updateInput)
3115
- cm.display.input.reset(op.typing);
3116
- if (op.focus && op.focus == activeElt() && (!document.hasFocus || document.hasFocus()))
3117
- ensureFocus(op.cm);
3118
- }
3119
-
3120
- function endOperation_finish(op) {
3121
- var cm = op.cm, display = cm.display, doc = cm.doc;
3122
-
3123
- if (op.updatedDisplay) postUpdateDisplay(cm, op.update);
3124
-
3125
- // Abort mouse wheel delta measurement, when scrolling explicitly
3126
- if (display.wheelStartX != null && (op.scrollTop != null || op.scrollLeft != null || op.scrollToPos))
3127
- display.wheelStartX = display.wheelStartY = null;
3128
-
3129
- // Propagate the scroll position to the actual DOM scroller
3130
- if (op.scrollTop != null && (display.scroller.scrollTop != op.scrollTop || op.forceScroll)) {
3131
- doc.scrollTop = Math.max(0, Math.min(display.scroller.scrollHeight - display.scroller.clientHeight, op.scrollTop));
3132
- display.scrollbars.setScrollTop(doc.scrollTop);
3133
- display.scroller.scrollTop = doc.scrollTop;
3134
- }
3135
- if (op.scrollLeft != null && (display.scroller.scrollLeft != op.scrollLeft || op.forceScroll)) {
3136
- doc.scrollLeft = Math.max(0, Math.min(display.scroller.scrollWidth - displayWidth(cm), op.scrollLeft));
3137
- display.scrollbars.setScrollLeft(doc.scrollLeft);
3138
- display.scroller.scrollLeft = doc.scrollLeft;
3139
- alignHorizontally(cm);
3140
- }
3141
- // If we need to scroll a specific position into view, do so.
3142
- if (op.scrollToPos) {
3143
- var coords = scrollPosIntoView(cm, clipPos(doc, op.scrollToPos.from),
3144
- clipPos(doc, op.scrollToPos.to), op.scrollToPos.margin);
3145
- if (op.scrollToPos.isCursor && cm.state.focused) maybeScrollWindow(cm, coords);
3146
- }
3147
-
3148
- // Fire events for markers that are hidden/unidden by editing or
3149
- // undoing
3150
- var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers;
3151
- if (hidden) for (var i = 0; i < hidden.length; ++i)
3152
- if (!hidden[i].lines.length) signal(hidden[i], "hide");
3153
- if (unhidden) for (var i = 0; i < unhidden.length; ++i)
3154
- if (unhidden[i].lines.length) signal(unhidden[i], "unhide");
3155
-
3156
- if (display.wrapper.offsetHeight)
3157
- doc.scrollTop = cm.display.scroller.scrollTop;
3158
-
3159
- // Fire change events, and delayed event handlers
3160
- if (op.changeObjs)
3161
- signal(cm, "changes", cm, op.changeObjs);
3162
- if (op.update)
3163
- op.update.finish();
3164
- }
3165
-
3166
- // Run the given function in an operation
3167
- function runInOp(cm, f) {
3168
- if (cm.curOp) return f();
3169
- startOperation(cm);
3170
- try { return f(); }
3171
- finally { endOperation(cm); }
3172
- }
3173
- // Wraps a function in an operation. Returns the wrapped function.
3174
- function operation(cm, f) {
3175
- return function() {
3176
- if (cm.curOp) return f.apply(cm, arguments);
3177
- startOperation(cm);
3178
- try { return f.apply(cm, arguments); }
3179
- finally { endOperation(cm); }
3180
- };
3181
- }
3182
- // Used to add methods to editor and doc instances, wrapping them in
3183
- // operations.
3184
- function methodOp(f) {
3185
- return function() {
3186
- if (this.curOp) return f.apply(this, arguments);
3187
- startOperation(this);
3188
- try { return f.apply(this, arguments); }
3189
- finally { endOperation(this); }
3190
- };
3191
- }
3192
- function docMethodOp(f) {
3193
- return function() {
3194
- var cm = this.cm;
3195
- if (!cm || cm.curOp) return f.apply(this, arguments);
3196
- startOperation(cm);
3197
- try { return f.apply(this, arguments); }
3198
- finally { endOperation(cm); }
3199
- };
3200
- }
3201
-
3202
- // VIEW TRACKING
3203
-
3204
- // These objects are used to represent the visible (currently drawn)
3205
- // part of the document. A LineView may correspond to multiple
3206
- // logical lines, if those are connected by collapsed ranges.
3207
- function LineView(doc, line, lineN) {
3208
- // The starting line
3209
- this.line = line;
3210
- // Continuing lines, if any
3211
- this.rest = visualLineContinued(line);
3212
- // Number of logical lines in this visual line
3213
- this.size = this.rest ? lineNo(lst(this.rest)) - lineN + 1 : 1;
3214
- this.node = this.text = null;
3215
- this.hidden = lineIsHidden(doc, line);
3216
- }
3217
-
3218
- // Create a range of LineView objects for the given lines.
3219
- function buildViewArray(cm, from, to) {
3220
- var array = [], nextPos;
3221
- for (var pos = from; pos < to; pos = nextPos) {
3222
- var view = new LineView(cm.doc, getLine(cm.doc, pos), pos);
3223
- nextPos = pos + view.size;
3224
- array.push(view);
3225
- }
3226
- return array;
3227
- }
3228
-
3229
- // Updates the display.view data structure for a given change to the
3230
- // document. From and to are in pre-change coordinates. Lendiff is
3231
- // the amount of lines added or subtracted by the change. This is
3232
- // used for changes that span multiple lines, or change the way
3233
- // lines are divided into visual lines. regLineChange (below)
3234
- // registers single-line changes.
3235
- function regChange(cm, from, to, lendiff) {
3236
- if (from == null) from = cm.doc.first;
3237
- if (to == null) to = cm.doc.first + cm.doc.size;
3238
- if (!lendiff) lendiff = 0;
3239
-
3240
- var display = cm.display;
3241
- if (lendiff && to < display.viewTo &&
3242
- (display.updateLineNumbers == null || display.updateLineNumbers > from))
3243
- display.updateLineNumbers = from;
3244
-
3245
- cm.curOp.viewChanged = true;
3246
-
3247
- if (from >= display.viewTo) { // Change after
3248
- if (sawCollapsedSpans && visualLineNo(cm.doc, from) < display.viewTo)
3249
- resetView(cm);
3250
- } else if (to <= display.viewFrom) { // Change before
3251
- if (sawCollapsedSpans && visualLineEndNo(cm.doc, to + lendiff) > display.viewFrom) {
3252
- resetView(cm);
3253
- } else {
3254
- display.viewFrom += lendiff;
3255
- display.viewTo += lendiff;
3256
- }
3257
- } else if (from <= display.viewFrom && to >= display.viewTo) { // Full overlap
3258
- resetView(cm);
3259
- } else if (from <= display.viewFrom) { // Top overlap
3260
- var cut = viewCuttingPoint(cm, to, to + lendiff, 1);
3261
- if (cut) {
3262
- display.view = display.view.slice(cut.index);
3263
- display.viewFrom = cut.lineN;
3264
- display.viewTo += lendiff;
3265
- } else {
3266
- resetView(cm);
3267
- }
3268
- } else if (to >= display.viewTo) { // Bottom overlap
3269
- var cut = viewCuttingPoint(cm, from, from, -1);
3270
- if (cut) {
3271
- display.view = display.view.slice(0, cut.index);
3272
- display.viewTo = cut.lineN;
3273
- } else {
3274
- resetView(cm);
3275
- }
3276
- } else { // Gap in the middle
3277
- var cutTop = viewCuttingPoint(cm, from, from, -1);
3278
- var cutBot = viewCuttingPoint(cm, to, to + lendiff, 1);
3279
- if (cutTop && cutBot) {
3280
- display.view = display.view.slice(0, cutTop.index)
3281
- .concat(buildViewArray(cm, cutTop.lineN, cutBot.lineN))
3282
- .concat(display.view.slice(cutBot.index));
3283
- display.viewTo += lendiff;
3284
- } else {
3285
- resetView(cm);
3286
- }
3287
- }
3288
-
3289
- var ext = display.externalMeasured;
3290
- if (ext) {
3291
- if (to < ext.lineN)
3292
- ext.lineN += lendiff;
3293
- else if (from < ext.lineN + ext.size)
3294
- display.externalMeasured = null;
3295
- }
3296
- }
3297
-
3298
- // Register a change to a single line. Type must be one of "text",
3299
- // "gutter", "class", "widget"
3300
- function regLineChange(cm, line, type) {
3301
- cm.curOp.viewChanged = true;
3302
- var display = cm.display, ext = cm.display.externalMeasured;
3303
- if (ext && line >= ext.lineN && line < ext.lineN + ext.size)
3304
- display.externalMeasured = null;
3305
-
3306
- if (line < display.viewFrom || line >= display.viewTo) return;
3307
- var lineView = display.view[findViewIndex(cm, line)];
3308
- if (lineView.node == null) return;
3309
- var arr = lineView.changes || (lineView.changes = []);
3310
- if (indexOf(arr, type) == -1) arr.push(type);
3311
- }
3312
-
3313
- // Clear the view.
3314
- function resetView(cm) {
3315
- cm.display.viewFrom = cm.display.viewTo = cm.doc.first;
3316
- cm.display.view = [];
3317
- cm.display.viewOffset = 0;
3318
- }
3319
-
3320
- // Find the view element corresponding to a given line. Return null
3321
- // when the line isn't visible.
3322
- function findViewIndex(cm, n) {
3323
- if (n >= cm.display.viewTo) return null;
3324
- n -= cm.display.viewFrom;
3325
- if (n < 0) return null;
3326
- var view = cm.display.view;
3327
- for (var i = 0; i < view.length; i++) {
3328
- n -= view[i].size;
3329
- if (n < 0) return i;
3330
- }
3331
- }
3332
-
3333
- function viewCuttingPoint(cm, oldN, newN, dir) {
3334
- var index = findViewIndex(cm, oldN), diff, view = cm.display.view;
3335
- if (!sawCollapsedSpans || newN == cm.doc.first + cm.doc.size)
3336
- return {index: index, lineN: newN};
3337
- for (var i = 0, n = cm.display.viewFrom; i < index; i++)
3338
- n += view[i].size;
3339
- if (n != oldN) {
3340
- if (dir > 0) {
3341
- if (index == view.length - 1) return null;
3342
- diff = (n + view[index].size) - oldN;
3343
- index++;
3344
- } else {
3345
- diff = n - oldN;
3346
- }
3347
- oldN += diff; newN += diff;
3348
- }
3349
- while (visualLineNo(cm.doc, newN) != newN) {
3350
- if (index == (dir < 0 ? 0 : view.length - 1)) return null;
3351
- newN += dir * view[index - (dir < 0 ? 1 : 0)].size;
3352
- index += dir;
3353
- }
3354
- return {index: index, lineN: newN};
3355
- }
3356
-
3357
- // Force the view to cover a given range, adding empty view element
3358
- // or clipping off existing ones as needed.
3359
- function adjustView(cm, from, to) {
3360
- var display = cm.display, view = display.view;
3361
- if (view.length == 0 || from >= display.viewTo || to <= display.viewFrom) {
3362
- display.view = buildViewArray(cm, from, to);
3363
- display.viewFrom = from;
3364
- } else {
3365
- if (display.viewFrom > from)
3366
- display.view = buildViewArray(cm, from, display.viewFrom).concat(display.view);
3367
- else if (display.viewFrom < from)
3368
- display.view = display.view.slice(findViewIndex(cm, from));
3369
- display.viewFrom = from;
3370
- if (display.viewTo < to)
3371
- display.view = display.view.concat(buildViewArray(cm, display.viewTo, to));
3372
- else if (display.viewTo > to)
3373
- display.view = display.view.slice(0, findViewIndex(cm, to));
3374
- }
3375
- display.viewTo = to;
3376
- }
3377
-
3378
- // Count the number of lines in the view whose DOM representation is
3379
- // out of date (or nonexistent).
3380
- function countDirtyView(cm) {
3381
- var view = cm.display.view, dirty = 0;
3382
- for (var i = 0; i < view.length; i++) {
3383
- var lineView = view[i];
3384
- if (!lineView.hidden && (!lineView.node || lineView.changes)) ++dirty;
3385
- }
3386
- return dirty;
3387
- }
3388
-
3389
- // EVENT HANDLERS
3390
-
3391
- // Attach the necessary event handlers when initializing the editor
3392
- function registerEventHandlers(cm) {
3393
- var d = cm.display;
3394
- on(d.scroller, "mousedown", operation(cm, onMouseDown));
3395
- // Older IE's will not fire a second mousedown for a double click
3396
- if (ie && ie_version < 11)
3397
- on(d.scroller, "dblclick", operation(cm, function(e) {
3398
- if (signalDOMEvent(cm, e)) return;
3399
- var pos = posFromMouse(cm, e);
3400
- if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) return;
3401
- e_preventDefault(e);
3402
- var word = cm.findWordAt(pos);
3403
- extendSelection(cm.doc, word.anchor, word.head);
3404
- }));
3405
- else
3406
- on(d.scroller, "dblclick", function(e) { signalDOMEvent(cm, e) || e_preventDefault(e); });
3407
- // Some browsers fire contextmenu *after* opening the menu, at
3408
- // which point we can't mess with it anymore. Context menu is
3409
- // handled in onMouseDown for these browsers.
3410
- if (!captureRightClick) on(d.scroller, "contextmenu", function(e) {onContextMenu(cm, e);});
3411
-
3412
- // Used to suppress mouse event handling when a touch happens
3413
- var touchFinished, prevTouch = {end: 0};
3414
- function finishTouch() {
3415
- if (d.activeTouch) {
3416
- touchFinished = setTimeout(function() {d.activeTouch = null;}, 1000);
3417
- prevTouch = d.activeTouch;
3418
- prevTouch.end = +new Date;
3419
- }
3420
- };
3421
- function isMouseLikeTouchEvent(e) {
3422
- if (e.touches.length != 1) return false;
3423
- var touch = e.touches[0];
3424
- return touch.radiusX <= 1 && touch.radiusY <= 1;
3425
- }
3426
- function farAway(touch, other) {
3427
- if (other.left == null) return true;
3428
- var dx = other.left - touch.left, dy = other.top - touch.top;
3429
- return dx * dx + dy * dy > 20 * 20;
3430
- }
3431
- on(d.scroller, "touchstart", function(e) {
3432
- if (!isMouseLikeTouchEvent(e)) {
3433
- clearTimeout(touchFinished);
3434
- var now = +new Date;
3435
- d.activeTouch = {start: now, moved: false,
3436
- prev: now - prevTouch.end <= 300 ? prevTouch : null};
3437
- if (e.touches.length == 1) {
3438
- d.activeTouch.left = e.touches[0].pageX;
3439
- d.activeTouch.top = e.touches[0].pageY;
3440
- }
3441
- }
3442
- });
3443
- on(d.scroller, "touchmove", function() {
3444
- if (d.activeTouch) d.activeTouch.moved = true;
3445
- });
3446
- on(d.scroller, "touchend", function(e) {
3447
- var touch = d.activeTouch;
3448
- if (touch && !eventInWidget(d, e) && touch.left != null &&
3449
- !touch.moved && new Date - touch.start < 300) {
3450
- var pos = cm.coordsChar(d.activeTouch, "page"), range;
3451
- if (!touch.prev || farAway(touch, touch.prev)) // Single tap
3452
- range = new Range(pos, pos);
3453
- else if (!touch.prev.prev || farAway(touch, touch.prev.prev)) // Double tap
3454
- range = cm.findWordAt(pos);
3455
- else // Triple tap
3456
- range = new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0)));
3457
- cm.setSelection(range.anchor, range.head);
3458
- cm.focus();
3459
- e_preventDefault(e);
3460
- }
3461
- finishTouch();
3462
- });
3463
- on(d.scroller, "touchcancel", finishTouch);
3464
-
3465
- // Sync scrolling between fake scrollbars and real scrollable
3466
- // area, ensure viewport is updated when scrolling.
3467
- on(d.scroller, "scroll", function() {
3468
- if (d.scroller.clientHeight) {
3469
- setScrollTop(cm, d.scroller.scrollTop);
3470
- setScrollLeft(cm, d.scroller.scrollLeft, true);
3471
- signal(cm, "scroll", cm);
3472
- }
3473
- });
3474
-
3475
- // Listen to wheel events in order to try and update the viewport on time.
3476
- on(d.scroller, "mousewheel", function(e){onScrollWheel(cm, e);});
3477
- on(d.scroller, "DOMMouseScroll", function(e){onScrollWheel(cm, e);});
3478
-
3479
- // Prevent wrapper from ever scrolling
3480
- on(d.wrapper, "scroll", function() { d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; });
3481
-
3482
- d.dragFunctions = {
3483
- enter: function(e) {if (!signalDOMEvent(cm, e)) e_stop(e);},
3484
- over: function(e) {if (!signalDOMEvent(cm, e)) { onDragOver(cm, e); e_stop(e); }},
3485
- start: function(e){onDragStart(cm, e);},
3486
- drop: operation(cm, onDrop),
3487
- leave: function() {clearDragCursor(cm);}
3488
- };
3489
-
3490
- var inp = d.input.getField();
3491
- on(inp, "keyup", function(e) { onKeyUp.call(cm, e); });
3492
- on(inp, "keydown", operation(cm, onKeyDown));
3493
- on(inp, "keypress", operation(cm, onKeyPress));
3494
- on(inp, "focus", bind(onFocus, cm));
3495
- on(inp, "blur", bind(onBlur, cm));
3496
- }
3497
-
3498
- function dragDropChanged(cm, value, old) {
3499
- var wasOn = old && old != CodeMirror.Init;
3500
- if (!value != !wasOn) {
3501
- var funcs = cm.display.dragFunctions;
3502
- var toggle = value ? on : off;
3503
- toggle(cm.display.scroller, "dragstart", funcs.start);
3504
- toggle(cm.display.scroller, "dragenter", funcs.enter);
3505
- toggle(cm.display.scroller, "dragover", funcs.over);
3506
- toggle(cm.display.scroller, "dragleave", funcs.leave);
3507
- toggle(cm.display.scroller, "drop", funcs.drop);
3508
- }
3509
- }
3510
-
3511
- // Called when the window resizes
3512
- function onResize(cm) {
3513
- var d = cm.display;
3514
- if (d.lastWrapHeight == d.wrapper.clientHeight && d.lastWrapWidth == d.wrapper.clientWidth)
3515
- return;
3516
- // Might be a text scaling operation, clear size caches.
3517
- d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;
3518
- d.scrollbarsClipped = false;
3519
- cm.setSize();
3520
- }
3521
-
3522
- // MOUSE EVENTS
3523
-
3524
- // Return true when the given mouse event happened in a widget
3525
- function eventInWidget(display, e) {
3526
- for (var n = e_target(e); n != display.wrapper; n = n.parentNode) {
3527
- if (!n || (n.nodeType == 1 && n.getAttribute("cm-ignore-events") == "true") ||
3528
- (n.parentNode == display.sizer && n != display.mover))
3529
- return true;
3530
- }
3531
- }
3532
-
3533
- // Given a mouse event, find the corresponding position. If liberal
3534
- // is false, it checks whether a gutter or scrollbar was clicked,
3535
- // and returns null if it was. forRect is used by rectangular
3536
- // selections, and tries to estimate a character position even for
3537
- // coordinates beyond the right of the text.
3538
- function posFromMouse(cm, e, liberal, forRect) {
3539
- var display = cm.display;
3540
- if (!liberal && e_target(e).getAttribute("cm-not-content") == "true") return null;
3541
-
3542
- var x, y, space = display.lineSpace.getBoundingClientRect();
3543
- // Fails unpredictably on IE[67] when mouse is dragged around quickly.
3544
- try { x = e.clientX - space.left; y = e.clientY - space.top; }
3545
- catch (e) { return null; }
3546
- var coords = coordsChar(cm, x, y), line;
3547
- if (forRect && coords.xRel == 1 && (line = getLine(cm.doc, coords.line).text).length == coords.ch) {
3548
- var colDiff = countColumn(line, line.length, cm.options.tabSize) - line.length;
3549
- coords = Pos(coords.line, Math.max(0, Math.round((x - paddingH(cm.display).left) / charWidth(cm.display)) - colDiff));
3550
- }
3551
- return coords;
3552
- }
3553
-
3554
- // A mouse down can be a single click, double click, triple click,
3555
- // start of selection drag, start of text drag, new cursor
3556
- // (ctrl-click), rectangle drag (alt-drag), or xwin
3557
- // middle-click-paste. Or it might be a click on something we should
3558
- // not interfere with, such as a scrollbar or widget.
3559
- function onMouseDown(e) {
3560
- var cm = this, display = cm.display;
3561
- if (display.activeTouch && display.input.supportsTouch() || signalDOMEvent(cm, e)) return;
3562
- display.shift = e.shiftKey;
3563
-
3564
- if (eventInWidget(display, e)) {
3565
- if (!webkit) {
3566
- // Briefly turn off draggability, to allow widgets to do
3567
- // normal dragging things.
3568
- display.scroller.draggable = false;
3569
- setTimeout(function(){display.scroller.draggable = true;}, 100);
3570
- }
3571
- return;
3572
- }
3573
- if (clickInGutter(cm, e)) return;
3574
- var start = posFromMouse(cm, e);
3575
- window.focus();
3576
-
3577
- switch (e_button(e)) {
3578
- case 1:
3579
- // #3261: make sure, that we're not starting a second selection
3580
- if (cm.state.selectingText)
3581
- cm.state.selectingText(e);
3582
- else if (start)
3583
- leftButtonDown(cm, e, start);
3584
- else if (e_target(e) == display.scroller)
3585
- e_preventDefault(e);
3586
- break;
3587
- case 2:
3588
- if (webkit) cm.state.lastMiddleDown = +new Date;
3589
- if (start) extendSelection(cm.doc, start);
3590
- setTimeout(function() {display.input.focus();}, 20);
3591
- e_preventDefault(e);
3592
- break;
3593
- case 3:
3594
- if (captureRightClick) onContextMenu(cm, e);
3595
- else delayBlurEvent(cm);
3596
- break;
3597
- }
3598
- }
3599
-
3600
- var lastClick, lastDoubleClick;
3601
- function leftButtonDown(cm, e, start) {
3602
- if (ie) setTimeout(bind(ensureFocus, cm), 0);
3603
- else cm.curOp.focus = activeElt();
3604
-
3605
- var now = +new Date, type;
3606
- if (lastDoubleClick && lastDoubleClick.time > now - 400 && cmp(lastDoubleClick.pos, start) == 0) {
3607
- type = "triple";
3608
- } else if (lastClick && lastClick.time > now - 400 && cmp(lastClick.pos, start) == 0) {
3609
- type = "double";
3610
- lastDoubleClick = {time: now, pos: start};
3611
- } else {
3612
- type = "single";
3613
- lastClick = {time: now, pos: start};
3614
- }
3615
-
3616
- var sel = cm.doc.sel, modifier = mac ? e.metaKey : e.ctrlKey, contained;
3617
- if (cm.options.dragDrop && dragAndDrop && !isReadOnly(cm) &&
3618
- type == "single" && (contained = sel.contains(start)) > -1 &&
3619
- (cmp((contained = sel.ranges[contained]).from(), start) < 0 || start.xRel > 0) &&
3620
- (cmp(contained.to(), start) > 0 || start.xRel < 0))
3621
- leftButtonStartDrag(cm, e, start, modifier);
3622
- else
3623
- leftButtonSelect(cm, e, start, type, modifier);
3624
- }
3625
-
3626
- // Start a text drag. When it ends, see if any dragging actually
3627
- // happen, and treat as a click if it didn't.
3628
- function leftButtonStartDrag(cm, e, start, modifier) {
3629
- var display = cm.display, startTime = +new Date;
3630
- var dragEnd = operation(cm, function(e2) {
3631
- if (webkit) display.scroller.draggable = false;
3632
- cm.state.draggingText = false;
3633
- off(document, "mouseup", dragEnd);
3634
- off(display.scroller, "drop", dragEnd);
3635
- if (Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) < 10) {
3636
- e_preventDefault(e2);
3637
- if (!modifier && +new Date - 200 < startTime)
3638
- extendSelection(cm.doc, start);
3639
- // Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081)
3640
- if (webkit || ie && ie_version == 9)
3641
- setTimeout(function() {document.body.focus(); display.input.focus();}, 20);
3642
- else
3643
- display.input.focus();
3644
- }
3645
- });
3646
- // Let the drag handler handle this.
3647
- if (webkit) display.scroller.draggable = true;
3648
- cm.state.draggingText = dragEnd;
3649
- // IE's approach to draggable
3650
- if (display.scroller.dragDrop) display.scroller.dragDrop();
3651
- on(document, "mouseup", dragEnd);
3652
- on(display.scroller, "drop", dragEnd);
3653
- }
3654
-
3655
- // Normal selection, as opposed to text dragging.
3656
- function leftButtonSelect(cm, e, start, type, addNew) {
3657
- var display = cm.display, doc = cm.doc;
3658
- e_preventDefault(e);
3659
-
3660
- var ourRange, ourIndex, startSel = doc.sel, ranges = startSel.ranges;
3661
- if (addNew && !e.shiftKey) {
3662
- ourIndex = doc.sel.contains(start);
3663
- if (ourIndex > -1)
3664
- ourRange = ranges[ourIndex];
3665
- else
3666
- ourRange = new Range(start, start);
3667
- } else {
3668
- ourRange = doc.sel.primary();
3669
- ourIndex = doc.sel.primIndex;
3670
- }
3671
-
3672
- if (e.altKey) {
3673
- type = "rect";
3674
- if (!addNew) ourRange = new Range(start, start);
3675
- start = posFromMouse(cm, e, true, true);
3676
- ourIndex = -1;
3677
- } else if (type == "double") {
3678
- var word = cm.findWordAt(start);
3679
- if (cm.display.shift || doc.extend)
3680
- ourRange = extendRange(doc, ourRange, word.anchor, word.head);
3681
- else
3682
- ourRange = word;
3683
- } else if (type == "triple") {
3684
- var line = new Range(Pos(start.line, 0), clipPos(doc, Pos(start.line + 1, 0)));
3685
- if (cm.display.shift || doc.extend)
3686
- ourRange = extendRange(doc, ourRange, line.anchor, line.head);
3687
- else
3688
- ourRange = line;
3689
- } else {
3690
- ourRange = extendRange(doc, ourRange, start);
3691
- }
3692
-
3693
- if (!addNew) {
3694
- ourIndex = 0;
3695
- setSelection(doc, new Selection([ourRange], 0), sel_mouse);
3696
- startSel = doc.sel;
3697
- } else if (ourIndex == -1) {
3698
- ourIndex = ranges.length;
3699
- setSelection(doc, normalizeSelection(ranges.concat([ourRange]), ourIndex),
3700
- {scroll: false, origin: "*mouse"});
3701
- } else if (ranges.length > 1 && ranges[ourIndex].empty() && type == "single" && !e.shiftKey) {
3702
- setSelection(doc, normalizeSelection(ranges.slice(0, ourIndex).concat(ranges.slice(ourIndex + 1)), 0),
3703
- {scroll: false, origin: "*mouse"});
3704
- startSel = doc.sel;
3705
- } else {
3706
- replaceOneSelection(doc, ourIndex, ourRange, sel_mouse);
3707
- }
3708
-
3709
- var lastPos = start;
3710
- function extendTo(pos) {
3711
- if (cmp(lastPos, pos) == 0) return;
3712
- lastPos = pos;
3713
-
3714
- if (type == "rect") {
3715
- var ranges = [], tabSize = cm.options.tabSize;
3716
- var startCol = countColumn(getLine(doc, start.line).text, start.ch, tabSize);
3717
- var posCol = countColumn(getLine(doc, pos.line).text, pos.ch, tabSize);
3718
- var left = Math.min(startCol, posCol), right = Math.max(startCol, posCol);
3719
- for (var line = Math.min(start.line, pos.line), end = Math.min(cm.lastLine(), Math.max(start.line, pos.line));
3720
- line <= end; line++) {
3721
- var text = getLine(doc, line).text, leftPos = findColumn(text, left, tabSize);
3722
- if (left == right)
3723
- ranges.push(new Range(Pos(line, leftPos), Pos(line, leftPos)));
3724
- else if (text.length > leftPos)
3725
- ranges.push(new Range(Pos(line, leftPos), Pos(line, findColumn(text, right, tabSize))));
3726
- }
3727
- if (!ranges.length) ranges.push(new Range(start, start));
3728
- setSelection(doc, normalizeSelection(startSel.ranges.slice(0, ourIndex).concat(ranges), ourIndex),
3729
- {origin: "*mouse", scroll: false});
3730
- cm.scrollIntoView(pos);
3731
- } else {
3732
- var oldRange = ourRange;
3733
- var anchor = oldRange.anchor, head = pos;
3734
- if (type != "single") {
3735
- if (type == "double")
3736
- var range = cm.findWordAt(pos);
3737
- else
3738
- var range = new Range(Pos(pos.line, 0), clipPos(doc, Pos(pos.line + 1, 0)));
3739
- if (cmp(range.anchor, anchor) > 0) {
3740
- head = range.head;
3741
- anchor = minPos(oldRange.from(), range.anchor);
3742
- } else {
3743
- head = range.anchor;
3744
- anchor = maxPos(oldRange.to(), range.head);
3745
- }
3746
- }
3747
- var ranges = startSel.ranges.slice(0);
3748
- ranges[ourIndex] = new Range(clipPos(doc, anchor), head);
3749
- setSelection(doc, normalizeSelection(ranges, ourIndex), sel_mouse);
3750
- }
3751
- }
3752
-
3753
- var editorSize = display.wrapper.getBoundingClientRect();
3754
- // Used to ensure timeout re-tries don't fire when another extend
3755
- // happened in the meantime (clearTimeout isn't reliable -- at
3756
- // least on Chrome, the timeouts still happen even when cleared,
3757
- // if the clear happens after their scheduled firing time).
3758
- var counter = 0;
3759
-
3760
- function extend(e) {
3761
- var curCount = ++counter;
3762
- var cur = posFromMouse(cm, e, true, type == "rect");
3763
- if (!cur) return;
3764
- if (cmp(cur, lastPos) != 0) {
3765
- cm.curOp.focus = activeElt();
3766
- extendTo(cur);
3767
- var visible = visibleLines(display, doc);
3768
- if (cur.line >= visible.to || cur.line < visible.from)
3769
- setTimeout(operation(cm, function(){if (counter == curCount) extend(e);}), 150);
3770
- } else {
3771
- var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0;
3772
- if (outside) setTimeout(operation(cm, function() {
3773
- if (counter != curCount) return;
3774
- display.scroller.scrollTop += outside;
3775
- extend(e);
3776
- }), 50);
3777
- }
3778
- }
3779
-
3780
- function done(e) {
3781
- cm.state.selectingText = false;
3782
- counter = Infinity;
3783
- e_preventDefault(e);
3784
- display.input.focus();
3785
- off(document, "mousemove", move);
3786
- off(document, "mouseup", up);
3787
- doc.history.lastSelOrigin = null;
3788
- }
3789
-
3790
- var move = operation(cm, function(e) {
3791
- if (!e_button(e)) done(e);
3792
- else extend(e);
3793
- });
3794
- var up = operation(cm, done);
3795
- cm.state.selectingText = up;
3796
- on(document, "mousemove", move);
3797
- on(document, "mouseup", up);
3798
- }
3799
-
3800
- // Determines whether an event happened in the gutter, and fires the
3801
- // handlers for the corresponding event.
3802
- function gutterEvent(cm, e, type, prevent) {
3803
- try { var mX = e.clientX, mY = e.clientY; }
3804
- catch(e) { return false; }
3805
- if (mX >= Math.floor(cm.display.gutters.getBoundingClientRect().right)) return false;
3806
- if (prevent) e_preventDefault(e);
3807
-
3808
- var display = cm.display;
3809
- var lineBox = display.lineDiv.getBoundingClientRect();
3810
-
3811
- if (mY > lineBox.bottom || !hasHandler(cm, type)) return e_defaultPrevented(e);
3812
- mY -= lineBox.top - display.viewOffset;
3813
-
3814
- for (var i = 0; i < cm.options.gutters.length; ++i) {
3815
- var g = display.gutters.childNodes[i];
3816
- if (g && g.getBoundingClientRect().right >= mX) {
3817
- var line = lineAtHeight(cm.doc, mY);
3818
- var gutter = cm.options.gutters[i];
3819
- signal(cm, type, cm, line, gutter, e);
3820
- return e_defaultPrevented(e);
3821
- }
3822
- }
3823
- }
3824
-
3825
- function clickInGutter(cm, e) {
3826
- return gutterEvent(cm, e, "gutterClick", true);
3827
- }
3828
-
3829
- // Kludge to work around strange IE behavior where it'll sometimes
3830
- // re-fire a series of drag-related events right after the drop (#1551)
3831
- var lastDrop = 0;
3832
-
3833
- function onDrop(e) {
3834
- var cm = this;
3835
- clearDragCursor(cm);
3836
- if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e))
3837
- return;
3838
- e_preventDefault(e);
3839
- if (ie) lastDrop = +new Date;
3840
- var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files;
3841
- if (!pos || isReadOnly(cm)) return;
3842
- // Might be a file drop, in which case we simply extract the text
3843
- // and insert it.
3844
- if (files && files.length && window.FileReader && window.File) {
3845
- var n = files.length, text = Array(n), read = 0;
3846
- var loadFile = function(file, i) {
3847
- if (cm.options.allowDropFileTypes &&
3848
- indexOf(cm.options.allowDropFileTypes, file.type) == -1)
3849
- return;
3850
-
3851
- var reader = new FileReader;
3852
- reader.onload = operation(cm, function() {
3853
- var content = reader.result;
3854
- if (/[\x00-\x08\x0e-\x1f]{2}/.test(content)) content = "";
3855
- text[i] = content;
3856
- if (++read == n) {
3857
- pos = clipPos(cm.doc, pos);
3858
- var change = {from: pos, to: pos,
3859
- text: cm.doc.splitLines(text.join(cm.doc.lineSeparator())),
3860
- origin: "paste"};
3861
- makeChange(cm.doc, change);
3862
- setSelectionReplaceHistory(cm.doc, simpleSelection(pos, changeEnd(change)));
3863
- }
3864
- });
3865
- reader.readAsText(file);
3866
- };
3867
- for (var i = 0; i < n; ++i) loadFile(files[i], i);
3868
- } else { // Normal drop
3869
- // Don't do a replace if the drop happened inside of the selected text.
3870
- if (cm.state.draggingText && cm.doc.sel.contains(pos) > -1) {
3871
- cm.state.draggingText(e);
3872
- // Ensure the editor is re-focused
3873
- setTimeout(function() {cm.display.input.focus();}, 20);
3874
- return;
3875
- }
3876
- try {
3877
- var text = e.dataTransfer.getData("Text");
3878
- if (text) {
3879
- if (cm.state.draggingText && !(mac ? e.altKey : e.ctrlKey))
3880
- var selected = cm.listSelections();
3881
- setSelectionNoUndo(cm.doc, simpleSelection(pos, pos));
3882
- if (selected) for (var i = 0; i < selected.length; ++i)
3883
- replaceRange(cm.doc, "", selected[i].anchor, selected[i].head, "drag");
3884
- cm.replaceSelection(text, "around", "paste");
3885
- cm.display.input.focus();
3886
- }
3887
- }
3888
- catch(e){}
3889
- }
3890
- }
3891
-
3892
- function onDragStart(cm, e) {
3893
- if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return; }
3894
- if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) return;
3895
-
3896
- e.dataTransfer.setData("Text", cm.getSelection());
3897
-
3898
- // Use dummy image instead of default browsers image.
3899
- // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there.
3900
- if (e.dataTransfer.setDragImage && !safari) {
3901
- var img = elt("img", null, null, "position: fixed; left: 0; top: 0;");
3902
- img.src = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==";
3903
- if (presto) {
3904
- img.width = img.height = 1;
3905
- cm.display.wrapper.appendChild(img);
3906
- // Force a relayout, or Opera won't use our image for some obscure reason
3907
- img._top = img.offsetTop;
3908
- }
3909
- e.dataTransfer.setDragImage(img, 0, 0);
3910
- if (presto) img.parentNode.removeChild(img);
3911
- }
3912
- }
3913
-
3914
- function onDragOver(cm, e) {
3915
- var pos = posFromMouse(cm, e);
3916
- if (!pos) return;
3917
- var frag = document.createDocumentFragment();
3918
- drawSelectionCursor(cm, pos, frag);
3919
- if (!cm.display.dragCursor) {
3920
- cm.display.dragCursor = elt("div", null, "CodeMirror-cursors CodeMirror-dragcursors");
3921
- cm.display.lineSpace.insertBefore(cm.display.dragCursor, cm.display.cursorDiv);
3922
- }
3923
- removeChildrenAndAdd(cm.display.dragCursor, frag);
3924
- }
3925
-
3926
- function clearDragCursor(cm) {
3927
- if (cm.display.dragCursor) {
3928
- cm.display.lineSpace.removeChild(cm.display.dragCursor);
3929
- cm.display.dragCursor = null;
3930
- }
3931
- }
3932
-
3933
- // SCROLL EVENTS
3934
-
3935
- // Sync the scrollable area and scrollbars, ensure the viewport
3936
- // covers the visible area.
3937
- function setScrollTop(cm, val) {
3938
- if (Math.abs(cm.doc.scrollTop - val) < 2) return;
3939
- cm.doc.scrollTop = val;
3940
- if (!gecko) updateDisplaySimple(cm, {top: val});
3941
- if (cm.display.scroller.scrollTop != val) cm.display.scroller.scrollTop = val;
3942
- cm.display.scrollbars.setScrollTop(val);
3943
- if (gecko) updateDisplaySimple(cm);
3944
- startWorker(cm, 100);
3945
- }
3946
- // Sync scroller and scrollbar, ensure the gutter elements are
3947
- // aligned.
3948
- function setScrollLeft(cm, val, isScroller) {
3949
- if (isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) return;
3950
- val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth);
3951
- cm.doc.scrollLeft = val;
3952
- alignHorizontally(cm);
3953
- if (cm.display.scroller.scrollLeft != val) cm.display.scroller.scrollLeft = val;
3954
- cm.display.scrollbars.setScrollLeft(val);
3955
- }
3956
-
3957
- // Since the delta values reported on mouse wheel events are
3958
- // unstandardized between browsers and even browser versions, and
3959
- // generally horribly unpredictable, this code starts by measuring
3960
- // the scroll effect that the first few mouse wheel events have,
3961
- // and, from that, detects the way it can convert deltas to pixel
3962
- // offsets afterwards.
3963
- //
3964
- // The reason we want to know the amount a wheel event will scroll
3965
- // is that it gives us a chance to update the display before the
3966
- // actual scrolling happens, reducing flickering.
3967
-
3968
- var wheelSamples = 0, wheelPixelsPerUnit = null;
3969
- // Fill in a browser-detected starting value on browsers where we
3970
- // know one. These don't have to be accurate -- the result of them
3971
- // being wrong would just be a slight flicker on the first wheel
3972
- // scroll (if it is large enough).
3973
- if (ie) wheelPixelsPerUnit = -.53;
3974
- else if (gecko) wheelPixelsPerUnit = 15;
3975
- else if (chrome) wheelPixelsPerUnit = -.7;
3976
- else if (safari) wheelPixelsPerUnit = -1/3;
3977
-
3978
- var wheelEventDelta = function(e) {
3979
- var dx = e.wheelDeltaX, dy = e.wheelDeltaY;
3980
- if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) dx = e.detail;
3981
- if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) dy = e.detail;
3982
- else if (dy == null) dy = e.wheelDelta;
3983
- return {x: dx, y: dy};
3984
- };
3985
- CodeMirror.wheelEventPixels = function(e) {
3986
- var delta = wheelEventDelta(e);
3987
- delta.x *= wheelPixelsPerUnit;
3988
- delta.y *= wheelPixelsPerUnit;
3989
- return delta;
3990
- };
3991
-
3992
- function onScrollWheel(cm, e) {
3993
- var delta = wheelEventDelta(e), dx = delta.x, dy = delta.y;
3994
-
3995
- var display = cm.display, scroll = display.scroller;
3996
- // Quit if there's nothing to scroll here
3997
- var canScrollX = scroll.scrollWidth > scroll.clientWidth;
3998
- var canScrollY = scroll.scrollHeight > scroll.clientHeight;
3999
- if (!(dx && canScrollX || dy && canScrollY)) return;
4000
-
4001
- // Webkit browsers on OS X abort momentum scrolls when the target
4002
- // of the scroll event is removed from the scrollable element.
4003
- // This hack (see related code in patchDisplay) makes sure the
4004
- // element is kept around.
4005
- if (dy && mac && webkit) {
4006
- outer: for (var cur = e.target, view = display.view; cur != scroll; cur = cur.parentNode) {
4007
- for (var i = 0; i < view.length; i++) {
4008
- if (view[i].node == cur) {
4009
- cm.display.currentWheelTarget = cur;
4010
- break outer;
4011
- }
4012
- }
4013
- }
4014
- }
4015
-
4016
- // On some browsers, horizontal scrolling will cause redraws to
4017
- // happen before the gutter has been realigned, causing it to
4018
- // wriggle around in a most unseemly way. When we have an
4019
- // estimated pixels/delta value, we just handle horizontal
4020
- // scrolling entirely here. It'll be slightly off from native, but
4021
- // better than glitching out.
4022
- if (dx && !gecko && !presto && wheelPixelsPerUnit != null) {
4023
- if (dy && canScrollY)
4024
- setScrollTop(cm, Math.max(0, Math.min(scroll.scrollTop + dy * wheelPixelsPerUnit, scroll.scrollHeight - scroll.clientHeight)));
4025
- setScrollLeft(cm, Math.max(0, Math.min(scroll.scrollLeft + dx * wheelPixelsPerUnit, scroll.scrollWidth - scroll.clientWidth)));
4026
- // Only prevent default scrolling if vertical scrolling is
4027
- // actually possible. Otherwise, it causes vertical scroll
4028
- // jitter on OSX trackpads when deltaX is small and deltaY
4029
- // is large (issue #3579)
4030
- if (!dy || (dy && canScrollY))
4031
- e_preventDefault(e);
4032
- display.wheelStartX = null; // Abort measurement, if in progress
4033
- return;
4034
- }
4035
-
4036
- // 'Project' the visible viewport to cover the area that is being
4037
- // scrolled into view (if we know enough to estimate it).
4038
- if (dy && wheelPixelsPerUnit != null) {
4039
- var pixels = dy * wheelPixelsPerUnit;
4040
- var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight;
4041
- if (pixels < 0) top = Math.max(0, top + pixels - 50);
4042
- else bot = Math.min(cm.doc.height, bot + pixels + 50);
4043
- updateDisplaySimple(cm, {top: top, bottom: bot});
4044
- }
4045
-
4046
- if (wheelSamples < 20) {
4047
- if (display.wheelStartX == null) {
4048
- display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop;
4049
- display.wheelDX = dx; display.wheelDY = dy;
4050
- setTimeout(function() {
4051
- if (display.wheelStartX == null) return;
4052
- var movedX = scroll.scrollLeft - display.wheelStartX;
4053
- var movedY = scroll.scrollTop - display.wheelStartY;
4054
- var sample = (movedY && display.wheelDY && movedY / display.wheelDY) ||
4055
- (movedX && display.wheelDX && movedX / display.wheelDX);
4056
- display.wheelStartX = display.wheelStartY = null;
4057
- if (!sample) return;
4058
- wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1);
4059
- ++wheelSamples;
4060
- }, 200);
4061
- } else {
4062
- display.wheelDX += dx; display.wheelDY += dy;
4063
- }
4064
- }
4065
- }
4066
-
4067
- // KEY EVENTS
4068
-
4069
- // Run a handler that was bound to a key.
4070
- function doHandleBinding(cm, bound, dropShift) {
4071
- if (typeof bound == "string") {
4072
- bound = commands[bound];
4073
- if (!bound) return false;
4074
- }
4075
- // Ensure previous input has been read, so that the handler sees a
4076
- // consistent view of the document
4077
- cm.display.input.ensurePolled();
4078
- var prevShift = cm.display.shift, done = false;
4079
- try {
4080
- if (isReadOnly(cm)) cm.state.suppressEdits = true;
4081
- if (dropShift) cm.display.shift = false;
4082
- done = bound(cm) != Pass;
4083
- } finally {
4084
- cm.display.shift = prevShift;
4085
- cm.state.suppressEdits = false;
4086
- }
4087
- return done;
4088
- }
4089
-
4090
- function lookupKeyForEditor(cm, name, handle) {
4091
- for (var i = 0; i < cm.state.keyMaps.length; i++) {
4092
- var result = lookupKey(name, cm.state.keyMaps[i], handle, cm);
4093
- if (result) return result;
4094
- }
4095
- return (cm.options.extraKeys && lookupKey(name, cm.options.extraKeys, handle, cm))
4096
- || lookupKey(name, cm.options.keyMap, handle, cm);
4097
- }
4098
-
4099
- var stopSeq = new Delayed;
4100
- function dispatchKey(cm, name, e, handle) {
4101
- var seq = cm.state.keySeq;
4102
- if (seq) {
4103
- if (isModifierKey(name)) return "handled";
4104
- stopSeq.set(50, function() {
4105
- if (cm.state.keySeq == seq) {
4106
- cm.state.keySeq = null;
4107
- cm.display.input.reset();
4108
- }
4109
- });
4110
- name = seq + " " + name;
4111
- }
4112
- var result = lookupKeyForEditor(cm, name, handle);
4113
-
4114
- if (result == "multi")
4115
- cm.state.keySeq = name;
4116
- if (result == "handled")
4117
- signalLater(cm, "keyHandled", cm, name, e);
4118
-
4119
- if (result == "handled" || result == "multi") {
4120
- e_preventDefault(e);
4121
- restartBlink(cm);
4122
- }
4123
-
4124
- if (seq && !result && /\'$/.test(name)) {
4125
- e_preventDefault(e);
4126
- return true;
4127
- }
4128
- return !!result;
4129
- }
4130
-
4131
- // Handle a key from the keydown event.
4132
- function handleKeyBinding(cm, e) {
4133
- var name = keyName(e, true);
4134
- if (!name) return false;
4135
-
4136
- if (e.shiftKey && !cm.state.keySeq) {
4137
- // First try to resolve full name (including 'Shift-'). Failing
4138
- // that, see if there is a cursor-motion command (starting with
4139
- // 'go') bound to the keyname without 'Shift-'.
4140
- return dispatchKey(cm, "Shift-" + name, e, function(b) {return doHandleBinding(cm, b, true);})
4141
- || dispatchKey(cm, name, e, function(b) {
4142
- if (typeof b == "string" ? /^go[A-Z]/.test(b) : b.motion)
4143
- return doHandleBinding(cm, b);
4144
- });
4145
- } else {
4146
- return dispatchKey(cm, name, e, function(b) { return doHandleBinding(cm, b); });
4147
- }
4148
- }
4149
-
4150
- // Handle a key from the keypress event
4151
- function handleCharBinding(cm, e, ch) {
4152
- return dispatchKey(cm, "'" + ch + "'", e,
4153
- function(b) { return doHandleBinding(cm, b, true); });
4154
- }
4155
-
4156
- var lastStoppedKey = null;
4157
- function onKeyDown(e) {
4158
- var cm = this;
4159
- cm.curOp.focus = activeElt();
4160
- if (signalDOMEvent(cm, e)) return;
4161
- // IE does strange things with escape.
4162
- if (ie && ie_version < 11 && e.keyCode == 27) e.returnValue = false;
4163
- var code = e.keyCode;
4164
- cm.display.shift = code == 16 || e.shiftKey;
4165
- var handled = handleKeyBinding(cm, e);
4166
- if (presto) {
4167
- lastStoppedKey = handled ? code : null;
4168
- // Opera has no cut event... we try to at least catch the key combo
4169
- if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey))
4170
- cm.replaceSelection("", null, "cut");
4171
- }
4172
-
4173
- // Turn mouse into crosshair when Alt is held on Mac.
4174
- if (code == 18 && !/\bCodeMirror-crosshair\b/.test(cm.display.lineDiv.className))
4175
- showCrossHair(cm);
4176
- }
4177
-
4178
- function showCrossHair(cm) {
4179
- var lineDiv = cm.display.lineDiv;
4180
- addClass(lineDiv, "CodeMirror-crosshair");
4181
-
4182
- function up(e) {
4183
- if (e.keyCode == 18 || !e.altKey) {
4184
- rmClass(lineDiv, "CodeMirror-crosshair");
4185
- off(document, "keyup", up);
4186
- off(document, "mouseover", up);
4187
- }
4188
- }
4189
- on(document, "keyup", up);
4190
- on(document, "mouseover", up);
4191
- }
4192
-
4193
- function onKeyUp(e) {
4194
- if (e.keyCode == 16) this.doc.sel.shift = false;
4195
- signalDOMEvent(this, e);
4196
- }
4197
-
4198
- function onKeyPress(e) {
4199
- var cm = this;
4200
- if (eventInWidget(cm.display, e) || signalDOMEvent(cm, e) || e.ctrlKey && !e.altKey || mac && e.metaKey) return;
4201
- var keyCode = e.keyCode, charCode = e.charCode;
4202
- if (presto && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return;}
4203
- if ((presto && (!e.which || e.which < 10)) && handleKeyBinding(cm, e)) return;
4204
- var ch = String.fromCharCode(charCode == null ? keyCode : charCode);
4205
- if (handleCharBinding(cm, e, ch)) return;
4206
- cm.display.input.onKeyPress(e);
4207
- }
4208
-
4209
- // FOCUS/BLUR EVENTS
4210
-
4211
- function delayBlurEvent(cm) {
4212
- cm.state.delayingBlurEvent = true;
4213
- setTimeout(function() {
4214
- if (cm.state.delayingBlurEvent) {
4215
- cm.state.delayingBlurEvent = false;
4216
- onBlur(cm);
4217
- }
4218
- }, 100);
4219
- }
4220
-
4221
- function onFocus(cm) {
4222
- if (cm.state.delayingBlurEvent) cm.state.delayingBlurEvent = false;
4223
-
4224
- if (cm.options.readOnly == "nocursor") return;
4225
- if (!cm.state.focused) {
4226
- signal(cm, "focus", cm);
4227
- cm.state.focused = true;
4228
- addClass(cm.display.wrapper, "CodeMirror-focused");
4229
- // This test prevents this from firing when a context
4230
- // menu is closed (since the input reset would kill the
4231
- // select-all detection hack)
4232
- if (!cm.curOp && cm.display.selForContextMenu != cm.doc.sel) {
4233
- cm.display.input.reset();
4234
- if (webkit) setTimeout(function() { cm.display.input.reset(true); }, 20); // Issue #1730
4235
- }
4236
- cm.display.input.receivedFocus();
4237
- }
4238
- restartBlink(cm);
4239
- }
4240
- function onBlur(cm) {
4241
- if (cm.state.delayingBlurEvent) return;
4242
-
4243
- if (cm.state.focused) {
4244
- signal(cm, "blur", cm);
4245
- cm.state.focused = false;
4246
- rmClass(cm.display.wrapper, "CodeMirror-focused");
4247
- }
4248
- clearInterval(cm.display.blinker);
4249
- setTimeout(function() {if (!cm.state.focused) cm.display.shift = false;}, 150);
4250
- }
4251
-
4252
- // CONTEXT MENU HANDLING
4253
-
4254
- // To make the context menu work, we need to briefly unhide the
4255
- // textarea (making it as unobtrusive as possible) to let the
4256
- // right-click take effect on it.
4257
- function onContextMenu(cm, e) {
4258
- if (eventInWidget(cm.display, e) || contextMenuInGutter(cm, e)) return;
4259
- if (signalDOMEvent(cm, e, "contextmenu")) return;
4260
- cm.display.input.onContextMenu(e);
4261
- }
4262
-
4263
- function contextMenuInGutter(cm, e) {
4264
- if (!hasHandler(cm, "gutterContextMenu")) return false;
4265
- return gutterEvent(cm, e, "gutterContextMenu", false);
4266
- }
4267
-
4268
- // UPDATING
4269
-
4270
- // Compute the position of the end of a change (its 'to' property
4271
- // refers to the pre-change end).
4272
- var changeEnd = CodeMirror.changeEnd = function(change) {
4273
- if (!change.text) return change.to;
4274
- return Pos(change.from.line + change.text.length - 1,
4275
- lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0));
4276
- };
4277
-
4278
- // Adjust a position to refer to the post-change position of the
4279
- // same text, or the end of the change if the change covers it.
4280
- function adjustForChange(pos, change) {
4281
- if (cmp(pos, change.from) < 0) return pos;
4282
- if (cmp(pos, change.to) <= 0) return changeEnd(change);
4283
-
4284
- var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch;
4285
- if (pos.line == change.to.line) ch += changeEnd(change).ch - change.to.ch;
4286
- return Pos(line, ch);
4287
- }
4288
-
4289
- function computeSelAfterChange(doc, change) {
4290
- var out = [];
4291
- for (var i = 0; i < doc.sel.ranges.length; i++) {
4292
- var range = doc.sel.ranges[i];
4293
- out.push(new Range(adjustForChange(range.anchor, change),
4294
- adjustForChange(range.head, change)));
4295
- }
4296
- return normalizeSelection(out, doc.sel.primIndex);
4297
- }
4298
-
4299
- function offsetPos(pos, old, nw) {
4300
- if (pos.line == old.line)
4301
- return Pos(nw.line, pos.ch - old.ch + nw.ch);
4302
- else
4303
- return Pos(nw.line + (pos.line - old.line), pos.ch);
4304
- }
4305
-
4306
- // Used by replaceSelections to allow moving the selection to the
4307
- // start or around the replaced test. Hint may be "start" or "around".
4308
- function computeReplacedSel(doc, changes, hint) {
4309
- var out = [];
4310
- var oldPrev = Pos(doc.first, 0), newPrev = oldPrev;
4311
- for (var i = 0; i < changes.length; i++) {
4312
- var change = changes[i];
4313
- var from = offsetPos(change.from, oldPrev, newPrev);
4314
- var to = offsetPos(changeEnd(change), oldPrev, newPrev);
4315
- oldPrev = change.to;
4316
- newPrev = to;
4317
- if (hint == "around") {
4318
- var range = doc.sel.ranges[i], inv = cmp(range.head, range.anchor) < 0;
4319
- out[i] = new Range(inv ? to : from, inv ? from : to);
4320
- } else {
4321
- out[i] = new Range(from, from);
4322
- }
4323
- }
4324
- return new Selection(out, doc.sel.primIndex);
4325
- }
4326
-
4327
- // Allow "beforeChange" event handlers to influence a change
4328
- function filterChange(doc, change, update) {
4329
- var obj = {
4330
- canceled: false,
4331
- from: change.from,
4332
- to: change.to,
4333
- text: change.text,
4334
- origin: change.origin,
4335
- cancel: function() { this.canceled = true; }
4336
- };
4337
- if (update) obj.update = function(from, to, text, origin) {
4338
- if (from) this.from = clipPos(doc, from);
4339
- if (to) this.to = clipPos(doc, to);
4340
- if (text) this.text = text;
4341
- if (origin !== undefined) this.origin = origin;
4342
- };
4343
- signal(doc, "beforeChange", doc, obj);
4344
- if (doc.cm) signal(doc.cm, "beforeChange", doc.cm, obj);
4345
-
4346
- if (obj.canceled) return null;
4347
- return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin};
4348
- }
4349
-
4350
- // Apply a change to a document, and add it to the document's
4351
- // history, and propagating it to all linked documents.
4352
- function makeChange(doc, change, ignoreReadOnly) {
4353
- if (doc.cm) {
4354
- if (!doc.cm.curOp) return operation(doc.cm, makeChange)(doc, change, ignoreReadOnly);
4355
- if (doc.cm.state.suppressEdits) return;
4356
- }
4357
-
4358
- if (hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange")) {
4359
- change = filterChange(doc, change, true);
4360
- if (!change) return;
4361
- }
4362
-
4363
- // Possibly split or suppress the update based on the presence
4364
- // of read-only spans in its range.
4365
- var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to);
4366
- if (split) {
4367
- for (var i = split.length - 1; i >= 0; --i)
4368
- makeChangeInner(doc, {from: split[i].from, to: split[i].to, text: i ? [""] : change.text});
4369
- } else {
4370
- makeChangeInner(doc, change);
4371
- }
4372
- }
4373
-
4374
- function makeChangeInner(doc, change) {
4375
- if (change.text.length == 1 && change.text[0] == "" && cmp(change.from, change.to) == 0) return;
4376
- var selAfter = computeSelAfterChange(doc, change);
4377
- addChangeToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN);
4378
-
4379
- makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change));
4380
- var rebased = [];
4381
-
4382
- linkedDocs(doc, function(doc, sharedHist) {
4383
- if (!sharedHist && indexOf(rebased, doc.history) == -1) {
4384
- rebaseHist(doc.history, change);
4385
- rebased.push(doc.history);
4386
- }
4387
- makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change));
4388
- });
4389
- }
4390
-
4391
- // Revert a change stored in a document's history.
4392
- function makeChangeFromHistory(doc, type, allowSelectionOnly) {
4393
- if (doc.cm && doc.cm.state.suppressEdits) return;
4394
-
4395
- var hist = doc.history, event, selAfter = doc.sel;
4396
- var source = type == "undo" ? hist.done : hist.undone, dest = type == "undo" ? hist.undone : hist.done;
4397
-
4398
- // Verify that there is a useable event (so that ctrl-z won't
4399
- // needlessly clear selection events)
4400
- for (var i = 0; i < source.length; i++) {
4401
- event = source[i];
4402
- if (allowSelectionOnly ? event.ranges && !event.equals(doc.sel) : !event.ranges)
4403
- break;
4404
- }
4405
- if (i == source.length) return;
4406
- hist.lastOrigin = hist.lastSelOrigin = null;
4407
-
4408
- for (;;) {
4409
- event = source.pop();
4410
- if (event.ranges) {
4411
- pushSelectionToHistory(event, dest);
4412
- if (allowSelectionOnly && !event.equals(doc.sel)) {
4413
- setSelection(doc, event, {clearRedo: false});
4414
- return;
4415
- }
4416
- selAfter = event;
4417
- }
4418
- else break;
4419
- }
4420
-
4421
- // Build up a reverse change object to add to the opposite history
4422
- // stack (redo when undoing, and vice versa).
4423
- var antiChanges = [];
4424
- pushSelectionToHistory(selAfter, dest);
4425
- dest.push({changes: antiChanges, generation: hist.generation});
4426
- hist.generation = event.generation || ++hist.maxGeneration;
4427
-
4428
- var filter = hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange");
4429
-
4430
- for (var i = event.changes.length - 1; i >= 0; --i) {
4431
- var change = event.changes[i];
4432
- change.origin = type;
4433
- if (filter && !filterChange(doc, change, false)) {
4434
- source.length = 0;
4435
- return;
4436
- }
4437
-
4438
- antiChanges.push(historyChangeFromChange(doc, change));
4439
-
4440
- var after = i ? computeSelAfterChange(doc, change) : lst(source);
4441
- makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change));
4442
- if (!i && doc.cm) doc.cm.scrollIntoView({from: change.from, to: changeEnd(change)});
4443
- var rebased = [];
4444
-
4445
- // Propagate to the linked documents
4446
- linkedDocs(doc, function(doc, sharedHist) {
4447
- if (!sharedHist && indexOf(rebased, doc.history) == -1) {
4448
- rebaseHist(doc.history, change);
4449
- rebased.push(doc.history);
4450
- }
4451
- makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change));
4452
- });
4453
- }
4454
- }
4455
-
4456
- // Sub-views need their line numbers shifted when text is added
4457
- // above or below them in the parent document.
4458
- function shiftDoc(doc, distance) {
4459
- if (distance == 0) return;
4460
- doc.first += distance;
4461
- doc.sel = new Selection(map(doc.sel.ranges, function(range) {
4462
- return new Range(Pos(range.anchor.line + distance, range.anchor.ch),
4463
- Pos(range.head.line + distance, range.head.ch));
4464
- }), doc.sel.primIndex);
4465
- if (doc.cm) {
4466
- regChange(doc.cm, doc.first, doc.first - distance, distance);
4467
- for (var d = doc.cm.display, l = d.viewFrom; l < d.viewTo; l++)
4468
- regLineChange(doc.cm, l, "gutter");
4469
- }
4470
- }
4471
-
4472
- // More lower-level change function, handling only a single document
4473
- // (not linked ones).
4474
- function makeChangeSingleDoc(doc, change, selAfter, spans) {
4475
- if (doc.cm && !doc.cm.curOp)
4476
- return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans);
4477
-
4478
- if (change.to.line < doc.first) {
4479
- shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line));
4480
- return;
4481
- }
4482
- if (change.from.line > doc.lastLine()) return;
4483
-
4484
- // Clip the change to the size of this doc
4485
- if (change.from.line < doc.first) {
4486
- var shift = change.text.length - 1 - (doc.first - change.from.line);
4487
- shiftDoc(doc, shift);
4488
- change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch),
4489
- text: [lst(change.text)], origin: change.origin};
4490
- }
4491
- var last = doc.lastLine();
4492
- if (change.to.line > last) {
4493
- change = {from: change.from, to: Pos(last, getLine(doc, last).text.length),
4494
- text: [change.text[0]], origin: change.origin};
4495
- }
4496
-
4497
- change.removed = getBetween(doc, change.from, change.to);
4498
-
4499
- if (!selAfter) selAfter = computeSelAfterChange(doc, change);
4500
- if (doc.cm) makeChangeSingleDocInEditor(doc.cm, change, spans);
4501
- else updateDoc(doc, change, spans);
4502
- setSelectionNoUndo(doc, selAfter, sel_dontScroll);
4503
- }
4504
-
4505
- // Handle the interaction of a change to a document with the editor
4506
- // that this document is part of.
4507
- function makeChangeSingleDocInEditor(cm, change, spans) {
4508
- var doc = cm.doc, display = cm.display, from = change.from, to = change.to;
4509
-
4510
- var recomputeMaxLength = false, checkWidthStart = from.line;
4511
- if (!cm.options.lineWrapping) {
4512
- checkWidthStart = lineNo(visualLine(getLine(doc, from.line)));
4513
- doc.iter(checkWidthStart, to.line + 1, function(line) {
4514
- if (line == display.maxLine) {
4515
- recomputeMaxLength = true;
4516
- return true;
4517
- }
4518
- });
4519
- }
4520
-
4521
- if (doc.sel.contains(change.from, change.to) > -1)
4522
- signalCursorActivity(cm);
4523
-
4524
- updateDoc(doc, change, spans, estimateHeight(cm));
4525
-
4526
- if (!cm.options.lineWrapping) {
4527
- doc.iter(checkWidthStart, from.line + change.text.length, function(line) {
4528
- var len = lineLength(line);
4529
- if (len > display.maxLineLength) {
4530
- display.maxLine = line;
4531
- display.maxLineLength = len;
4532
- display.maxLineChanged = true;
4533
- recomputeMaxLength = false;
4534
- }
4535
- });
4536
- if (recomputeMaxLength) cm.curOp.updateMaxLine = true;
4537
- }
4538
-
4539
- // Adjust frontier, schedule worker
4540
- doc.frontier = Math.min(doc.frontier, from.line);
4541
- startWorker(cm, 400);
4542
-
4543
- var lendiff = change.text.length - (to.line - from.line) - 1;
4544
- // Remember that these lines changed, for updating the display
4545
- if (change.full)
4546
- regChange(cm);
4547
- else if (from.line == to.line && change.text.length == 1 && !isWholeLineUpdate(cm.doc, change))
4548
- regLineChange(cm, from.line, "text");
4549
- else
4550
- regChange(cm, from.line, to.line + 1, lendiff);
4551
-
4552
- var changesHandler = hasHandler(cm, "changes"), changeHandler = hasHandler(cm, "change");
4553
- if (changeHandler || changesHandler) {
4554
- var obj = {
4555
- from: from, to: to,
4556
- text: change.text,
4557
- removed: change.removed,
4558
- origin: change.origin
4559
- };
4560
- if (changeHandler) signalLater(cm, "change", cm, obj);
4561
- if (changesHandler) (cm.curOp.changeObjs || (cm.curOp.changeObjs = [])).push(obj);
4562
- }
4563
- cm.display.selForContextMenu = null;
4564
- }
4565
-
4566
- function replaceRange(doc, code, from, to, origin) {
4567
- if (!to) to = from;
4568
- if (cmp(to, from) < 0) { var tmp = to; to = from; from = tmp; }
4569
- if (typeof code == "string") code = doc.splitLines(code);
4570
- makeChange(doc, {from: from, to: to, text: code, origin: origin});
4571
- }
4572
-
4573
- // SCROLLING THINGS INTO VIEW
4574
-
4575
- // If an editor sits on the top or bottom of the window, partially
4576
- // scrolled out of view, this ensures that the cursor is visible.
4577
- function maybeScrollWindow(cm, coords) {
4578
- if (signalDOMEvent(cm, "scrollCursorIntoView")) return;
4579
-
4580
- var display = cm.display, box = display.sizer.getBoundingClientRect(), doScroll = null;
4581
- if (coords.top + box.top < 0) doScroll = true;
4582
- else if (coords.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) doScroll = false;
4583
- if (doScroll != null && !phantom) {
4584
- var scrollNode = elt("div", "\u200b", null, "position: absolute; top: " +
4585
- (coords.top - display.viewOffset - paddingTop(cm.display)) + "px; height: " +
4586
- (coords.bottom - coords.top + scrollGap(cm) + display.barHeight) + "px; left: " +
4587
- coords.left + "px; width: 2px;");
4588
- cm.display.lineSpace.appendChild(scrollNode);
4589
- scrollNode.scrollIntoView(doScroll);
4590
- cm.display.lineSpace.removeChild(scrollNode);
4591
- }
4592
- }
4593
-
4594
- // Scroll a given position into view (immediately), verifying that
4595
- // it actually became visible (as line heights are accurately
4596
- // measured, the position of something may 'drift' during drawing).
4597
- function scrollPosIntoView(cm, pos, end, margin) {
4598
- if (margin == null) margin = 0;
4599
- for (var limit = 0; limit < 5; limit++) {
4600
- var changed = false, coords = cursorCoords(cm, pos);
4601
- var endCoords = !end || end == pos ? coords : cursorCoords(cm, end);
4602
- var scrollPos = calculateScrollPos(cm, Math.min(coords.left, endCoords.left),
4603
- Math.min(coords.top, endCoords.top) - margin,
4604
- Math.max(coords.left, endCoords.left),
4605
- Math.max(coords.bottom, endCoords.bottom) + margin);
4606
- var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft;
4607
- if (scrollPos.scrollTop != null) {
4608
- setScrollTop(cm, scrollPos.scrollTop);
4609
- if (Math.abs(cm.doc.scrollTop - startTop) > 1) changed = true;
4610
- }
4611
- if (scrollPos.scrollLeft != null) {
4612
- setScrollLeft(cm, scrollPos.scrollLeft);
4613
- if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) changed = true;
4614
- }
4615
- if (!changed) break;
4616
- }
4617
- return coords;
4618
- }
4619
-
4620
- // Scroll a given set of coordinates into view (immediately).
4621
- function scrollIntoView(cm, x1, y1, x2, y2) {
4622
- var scrollPos = calculateScrollPos(cm, x1, y1, x2, y2);
4623
- if (scrollPos.scrollTop != null) setScrollTop(cm, scrollPos.scrollTop);
4624
- if (scrollPos.scrollLeft != null) setScrollLeft(cm, scrollPos.scrollLeft);
4625
- }
4626
-
4627
- // Calculate a new scroll position needed to scroll the given
4628
- // rectangle into view. Returns an object with scrollTop and
4629
- // scrollLeft properties. When these are undefined, the
4630
- // vertical/horizontal position does not need to be adjusted.
4631
- function calculateScrollPos(cm, x1, y1, x2, y2) {
4632
- var display = cm.display, snapMargin = textHeight(cm.display);
4633
- if (y1 < 0) y1 = 0;
4634
- var screentop = cm.curOp && cm.curOp.scrollTop != null ? cm.curOp.scrollTop : display.scroller.scrollTop;
4635
- var screen = displayHeight(cm), result = {};
4636
- if (y2 - y1 > screen) y2 = y1 + screen;
4637
- var docBottom = cm.doc.height + paddingVert(display);
4638
- var atTop = y1 < snapMargin, atBottom = y2 > docBottom - snapMargin;
4639
- if (y1 < screentop) {
4640
- result.scrollTop = atTop ? 0 : y1;
4641
- } else if (y2 > screentop + screen) {
4642
- var newTop = Math.min(y1, (atBottom ? docBottom : y2) - screen);
4643
- if (newTop != screentop) result.scrollTop = newTop;
4644
- }
4645
-
4646
- var screenleft = cm.curOp && cm.curOp.scrollLeft != null ? cm.curOp.scrollLeft : display.scroller.scrollLeft;
4647
- var screenw = displayWidth(cm) - (cm.options.fixedGutter ? display.gutters.offsetWidth : 0);
4648
- var tooWide = x2 - x1 > screenw;
4649
- if (tooWide) x2 = x1 + screenw;
4650
- if (x1 < 10)
4651
- result.scrollLeft = 0;
4652
- else if (x1 < screenleft)
4653
- result.scrollLeft = Math.max(0, x1 - (tooWide ? 0 : 10));
4654
- else if (x2 > screenw + screenleft - 3)
4655
- result.scrollLeft = x2 + (tooWide ? 0 : 10) - screenw;
4656
- return result;
4657
- }
4658
-
4659
- // Store a relative adjustment to the scroll position in the current
4660
- // operation (to be applied when the operation finishes).
4661
- function addToScrollPos(cm, left, top) {
4662
- if (left != null || top != null) resolveScrollToPos(cm);
4663
- if (left != null)
4664
- cm.curOp.scrollLeft = (cm.curOp.scrollLeft == null ? cm.doc.scrollLeft : cm.curOp.scrollLeft) + left;
4665
- if (top != null)
4666
- cm.curOp.scrollTop = (cm.curOp.scrollTop == null ? cm.doc.scrollTop : cm.curOp.scrollTop) + top;
4667
- }
4668
-
4669
- // Make sure that at the end of the operation the current cursor is
4670
- // shown.
4671
- function ensureCursorVisible(cm) {
4672
- resolveScrollToPos(cm);
4673
- var cur = cm.getCursor(), from = cur, to = cur;
4674
- if (!cm.options.lineWrapping) {
4675
- from = cur.ch ? Pos(cur.line, cur.ch - 1) : cur;
4676
- to = Pos(cur.line, cur.ch + 1);
4677
- }
4678
- cm.curOp.scrollToPos = {from: from, to: to, margin: cm.options.cursorScrollMargin, isCursor: true};
4679
- }
4680
-
4681
- // When an operation has its scrollToPos property set, and another
4682
- // scroll action is applied before the end of the operation, this
4683
- // 'simulates' scrolling that position into view in a cheap way, so
4684
- // that the effect of intermediate scroll commands is not ignored.
4685
- function resolveScrollToPos(cm) {
4686
- var range = cm.curOp.scrollToPos;
4687
- if (range) {
4688
- cm.curOp.scrollToPos = null;
4689
- var from = estimateCoords(cm, range.from), to = estimateCoords(cm, range.to);
4690
- var sPos = calculateScrollPos(cm, Math.min(from.left, to.left),
4691
- Math.min(from.top, to.top) - range.margin,
4692
- Math.max(from.right, to.right),
4693
- Math.max(from.bottom, to.bottom) + range.margin);
4694
- cm.scrollTo(sPos.scrollLeft, sPos.scrollTop);
4695
- }
4696
- }
4697
-
4698
- // API UTILITIES
4699
-
4700
- // Indent the given line. The how parameter can be "smart",
4701
- // "add"/null, "subtract", or "prev". When aggressive is false
4702
- // (typically set to true for forced single-line indents), empty
4703
- // lines are not indented, and places where the mode returns Pass
4704
- // are left alone.
4705
- function indentLine(cm, n, how, aggressive) {
4706
- var doc = cm.doc, state;
4707
- if (how == null) how = "add";
4708
- if (how == "smart") {
4709
- // Fall back to "prev" when the mode doesn't have an indentation
4710
- // method.
4711
- if (!doc.mode.indent) how = "prev";
4712
- else state = getStateBefore(cm, n);
4713
- }
4714
-
4715
- var tabSize = cm.options.tabSize;
4716
- var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize);
4717
- if (line.stateAfter) line.stateAfter = null;
4718
- var curSpaceString = line.text.match(/^\s*/)[0], indentation;
4719
- if (!aggressive && !/\S/.test(line.text)) {
4720
- indentation = 0;
4721
- how = "not";
4722
- } else if (how == "smart") {
4723
- indentation = doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text);
4724
- if (indentation == Pass || indentation > 150) {
4725
- if (!aggressive) return;
4726
- how = "prev";
4727
- }
4728
- }
4729
- if (how == "prev") {
4730
- if (n > doc.first) indentation = countColumn(getLine(doc, n-1).text, null, tabSize);
4731
- else indentation = 0;
4732
- } else if (how == "add") {
4733
- indentation = curSpace + cm.options.indentUnit;
4734
- } else if (how == "subtract") {
4735
- indentation = curSpace - cm.options.indentUnit;
4736
- } else if (typeof how == "number") {
4737
- indentation = curSpace + how;
4738
- }
4739
- indentation = Math.max(0, indentation);
4740
-
4741
- var indentString = "", pos = 0;
4742
- if (cm.options.indentWithTabs)
4743
- for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t";}
4744
- if (pos < indentation) indentString += spaceStr(indentation - pos);
4745
-
4746
- if (indentString != curSpaceString) {
4747
- replaceRange(doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), "+input");
4748
- line.stateAfter = null;
4749
- return true;
4750
- } else {
4751
- // Ensure that, if the cursor was in the whitespace at the start
4752
- // of the line, it is moved to the end of that space.
4753
- for (var i = 0; i < doc.sel.ranges.length; i++) {
4754
- var range = doc.sel.ranges[i];
4755
- if (range.head.line == n && range.head.ch < curSpaceString.length) {
4756
- var pos = Pos(n, curSpaceString.length);
4757
- replaceOneSelection(doc, i, new Range(pos, pos));
4758
- break;
4759
- }
4760
- }
4761
- }
4762
- }
4763
-
4764
- // Utility for applying a change to a line by handle or number,
4765
- // returning the number and optionally registering the line as
4766
- // changed.
4767
- function changeLine(doc, handle, changeType, op) {
4768
- var no = handle, line = handle;
4769
- if (typeof handle == "number") line = getLine(doc, clipLine(doc, handle));
4770
- else no = lineNo(handle);
4771
- if (no == null) return null;
4772
- if (op(line, no) && doc.cm) regLineChange(doc.cm, no, changeType);
4773
- return line;
4774
- }
4775
-
4776
- // Helper for deleting text near the selection(s), used to implement
4777
- // backspace, delete, and similar functionality.
4778
- function deleteNearSelection(cm, compute) {
4779
- var ranges = cm.doc.sel.ranges, kill = [];
4780
- // Build up a set of ranges to kill first, merging overlapping
4781
- // ranges.
4782
- for (var i = 0; i < ranges.length; i++) {
4783
- var toKill = compute(ranges[i]);
4784
- while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) {
4785
- var replaced = kill.pop();
4786
- if (cmp(replaced.from, toKill.from) < 0) {
4787
- toKill.from = replaced.from;
4788
- break;
4789
- }
4790
- }
4791
- kill.push(toKill);
4792
- }
4793
- // Next, remove those actual ranges.
4794
- runInOp(cm, function() {
4795
- for (var i = kill.length - 1; i >= 0; i--)
4796
- replaceRange(cm.doc, "", kill[i].from, kill[i].to, "+delete");
4797
- ensureCursorVisible(cm);
4798
- });
4799
- }
4800
-
4801
- // Used for horizontal relative motion. Dir is -1 or 1 (left or
4802
- // right), unit can be "char", "column" (like char, but doesn't
4803
- // cross line boundaries), "word" (across next word), or "group" (to
4804
- // the start of next group of word or non-word-non-whitespace
4805
- // chars). The visually param controls whether, in right-to-left
4806
- // text, direction 1 means to move towards the next index in the
4807
- // string, or towards the character to the right of the current
4808
- // position. The resulting position will have a hitSide=true
4809
- // property if it reached the end of the document.
4810
- function findPosH(doc, pos, dir, unit, visually) {
4811
- var line = pos.line, ch = pos.ch, origDir = dir;
4812
- var lineObj = getLine(doc, line);
4813
- var possible = true;
4814
- function findNextLine() {
4815
- var l = line + dir;
4816
- if (l < doc.first || l >= doc.first + doc.size) return (possible = false);
4817
- line = l;
4818
- return lineObj = getLine(doc, l);
4819
- }
4820
- function moveOnce(boundToLine) {
4821
- var next = (visually ? moveVisually : moveLogically)(lineObj, ch, dir, true);
4822
- if (next == null) {
4823
- if (!boundToLine && findNextLine()) {
4824
- if (visually) ch = (dir < 0 ? lineRight : lineLeft)(lineObj);
4825
- else ch = dir < 0 ? lineObj.text.length : 0;
4826
- } else return (possible = false);
4827
- } else ch = next;
4828
- return true;
4829
- }
4830
-
4831
- if (unit == "char") moveOnce();
4832
- else if (unit == "column") moveOnce(true);
4833
- else if (unit == "word" || unit == "group") {
4834
- var sawType = null, group = unit == "group";
4835
- var helper = doc.cm && doc.cm.getHelper(pos, "wordChars");
4836
- for (var first = true;; first = false) {
4837
- if (dir < 0 && !moveOnce(!first)) break;
4838
- var cur = lineObj.text.charAt(ch) || "\n";
4839
- var type = isWordChar(cur, helper) ? "w"
4840
- : group && cur == "\n" ? "n"
4841
- : !group || /\s/.test(cur) ? null
4842
- : "p";
4843
- if (group && !first && !type) type = "s";
4844
- if (sawType && sawType != type) {
4845
- if (dir < 0) {dir = 1; moveOnce();}
4846
- break;
4847
- }
4848
-
4849
- if (type) sawType = type;
4850
- if (dir > 0 && !moveOnce(!first)) break;
4851
- }
4852
- }
4853
- var result = skipAtomic(doc, Pos(line, ch), pos, origDir, true);
4854
- if (!possible) result.hitSide = true;
4855
- return result;
4856
- }
4857
-
4858
- // For relative vertical movement. Dir may be -1 or 1. Unit can be
4859
- // "page" or "line". The resulting position will have a hitSide=true
4860
- // property if it reached the end of the document.
4861
- function findPosV(cm, pos, dir, unit) {
4862
- var doc = cm.doc, x = pos.left, y;
4863
- if (unit == "page") {
4864
- var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight);
4865
- y = pos.top + dir * (pageSize - (dir < 0 ? 1.5 : .5) * textHeight(cm.display));
4866
- } else if (unit == "line") {
4867
- y = dir > 0 ? pos.bottom + 3 : pos.top - 3;
4868
- }
4869
- for (;;) {
4870
- var target = coordsChar(cm, x, y);
4871
- if (!target.outside) break;
4872
- if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break; }
4873
- y += dir * 5;
4874
- }
4875
- return target;
4876
- }
4877
-
4878
- // EDITOR METHODS
4879
-
4880
- // The publicly visible API. Note that methodOp(f) means
4881
- // 'wrap f in an operation, performed on its `this` parameter'.
4882
-
4883
- // This is not the complete set of editor methods. Most of the
4884
- // methods defined on the Doc type are also injected into
4885
- // CodeMirror.prototype, for backwards compatibility and
4886
- // convenience.
4887
-
4888
- CodeMirror.prototype = {
4889
- constructor: CodeMirror,
4890
- focus: function(){window.focus(); this.display.input.focus();},
4891
-
4892
- setOption: function(option, value) {
4893
- var options = this.options, old = options[option];
4894
- if (options[option] == value && option != "mode") return;
4895
- options[option] = value;
4896
- if (optionHandlers.hasOwnProperty(option))
4897
- operation(this, optionHandlers[option])(this, value, old);
4898
- },
4899
-
4900
- getOption: function(option) {return this.options[option];},
4901
- getDoc: function() {return this.doc;},
4902
-
4903
- addKeyMap: function(map, bottom) {
4904
- this.state.keyMaps[bottom ? "push" : "unshift"](getKeyMap(map));
4905
- },
4906
- removeKeyMap: function(map) {
4907
- var maps = this.state.keyMaps;
4908
- for (var i = 0; i < maps.length; ++i)
4909
- if (maps[i] == map || maps[i].name == map) {
4910
- maps.splice(i, 1);
4911
- return true;
4912
- }
4913
- },
4914
-
4915
- addOverlay: methodOp(function(spec, options) {
4916
- var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec);
4917
- if (mode.startState) throw new Error("Overlays may not be stateful.");
4918
- this.state.overlays.push({mode: mode, modeSpec: spec, opaque: options && options.opaque});
4919
- this.state.modeGen++;
4920
- regChange(this);
4921
- }),
4922
- removeOverlay: methodOp(function(spec) {
4923
- var overlays = this.state.overlays;
4924
- for (var i = 0; i < overlays.length; ++i) {
4925
- var cur = overlays[i].modeSpec;
4926
- if (cur == spec || typeof spec == "string" && cur.name == spec) {
4927
- overlays.splice(i, 1);
4928
- this.state.modeGen++;
4929
- regChange(this);
4930
- return;
4931
- }
4932
- }
4933
- }),
4934
-
4935
- indentLine: methodOp(function(n, dir, aggressive) {
4936
- if (typeof dir != "string" && typeof dir != "number") {
4937
- if (dir == null) dir = this.options.smartIndent ? "smart" : "prev";
4938
- else dir = dir ? "add" : "subtract";
4939
- }
4940
- if (isLine(this.doc, n)) indentLine(this, n, dir, aggressive);
4941
- }),
4942
- indentSelection: methodOp(function(how) {
4943
- var ranges = this.doc.sel.ranges, end = -1;
4944
- for (var i = 0; i < ranges.length; i++) {
4945
- var range = ranges[i];
4946
- if (!range.empty()) {
4947
- var from = range.from(), to = range.to();
4948
- var start = Math.max(end, from.line);
4949
- end = Math.min(this.lastLine(), to.line - (to.ch ? 0 : 1)) + 1;
4950
- for (var j = start; j < end; ++j)
4951
- indentLine(this, j, how);
4952
- var newRanges = this.doc.sel.ranges;
4953
- if (from.ch == 0 && ranges.length == newRanges.length && newRanges[i].from().ch > 0)
4954
- replaceOneSelection(this.doc, i, new Range(from, newRanges[i].to()), sel_dontScroll);
4955
- } else if (range.head.line > end) {
4956
- indentLine(this, range.head.line, how, true);
4957
- end = range.head.line;
4958
- if (i == this.doc.sel.primIndex) ensureCursorVisible(this);
4959
- }
4960
- }
4961
- }),
4962
-
4963
- // Fetch the parser token for a given character. Useful for hacks
4964
- // that want to inspect the mode state (say, for completion).
4965
- getTokenAt: function(pos, precise) {
4966
- return takeToken(this, pos, precise);
4967
- },
4968
-
4969
- getLineTokens: function(line, precise) {
4970
- return takeToken(this, Pos(line), precise, true);
4971
- },
4972
-
4973
- getTokenTypeAt: function(pos) {
4974
- pos = clipPos(this.doc, pos);
4975
- var styles = getLineStyles(this, getLine(this.doc, pos.line));
4976
- var before = 0, after = (styles.length - 1) / 2, ch = pos.ch;
4977
- var type;
4978
- if (ch == 0) type = styles[2];
4979
- else for (;;) {
4980
- var mid = (before + after) >> 1;
4981
- if ((mid ? styles[mid * 2 - 1] : 0) >= ch) after = mid;
4982
- else if (styles[mid * 2 + 1] < ch) before = mid + 1;
4983
- else { type = styles[mid * 2 + 2]; break; }
4984
- }
4985
- var cut = type ? type.indexOf("cm-overlay ") : -1;
4986
- return cut < 0 ? type : cut == 0 ? null : type.slice(0, cut - 1);
4987
- },
4988
-
4989
- getModeAt: function(pos) {
4990
- var mode = this.doc.mode;
4991
- if (!mode.innerMode) return mode;
4992
- return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode;
4993
- },
4994
-
4995
- getHelper: function(pos, type) {
4996
- return this.getHelpers(pos, type)[0];
4997
- },
4998
-
4999
- getHelpers: function(pos, type) {
5000
- var found = [];
5001
- if (!helpers.hasOwnProperty(type)) return found;
5002
- var help = helpers[type], mode = this.getModeAt(pos);
5003
- if (typeof mode[type] == "string") {
5004
- if (help[mode[type]]) found.push(help[mode[type]]);
5005
- } else if (mode[type]) {
5006
- for (var i = 0; i < mode[type].length; i++) {
5007
- var val = help[mode[type][i]];
5008
- if (val) found.push(val);
5009
- }
5010
- } else if (mode.helperType && help[mode.helperType]) {
5011
- found.push(help[mode.helperType]);
5012
- } else if (help[mode.name]) {
5013
- found.push(help[mode.name]);
5014
- }
5015
- for (var i = 0; i < help._global.length; i++) {
5016
- var cur = help._global[i];
5017
- if (cur.pred(mode, this) && indexOf(found, cur.val) == -1)
5018
- found.push(cur.val);
5019
- }
5020
- return found;
5021
- },
5022
-
5023
- getStateAfter: function(line, precise) {
5024
- var doc = this.doc;
5025
- line = clipLine(doc, line == null ? doc.first + doc.size - 1: line);
5026
- return getStateBefore(this, line + 1, precise);
5027
- },
5028
-
5029
- cursorCoords: function(start, mode) {
5030
- var pos, range = this.doc.sel.primary();
5031
- if (start == null) pos = range.head;
5032
- else if (typeof start == "object") pos = clipPos(this.doc, start);
5033
- else pos = start ? range.from() : range.to();
5034
- return cursorCoords(this, pos, mode || "page");
5035
- },
5036
-
5037
- charCoords: function(pos, mode) {
5038
- return charCoords(this, clipPos(this.doc, pos), mode || "page");
5039
- },
5040
-
5041
- coordsChar: function(coords, mode) {
5042
- coords = fromCoordSystem(this, coords, mode || "page");
5043
- return coordsChar(this, coords.left, coords.top);
5044
- },
5045
-
5046
- lineAtHeight: function(height, mode) {
5047
- height = fromCoordSystem(this, {top: height, left: 0}, mode || "page").top;
5048
- return lineAtHeight(this.doc, height + this.display.viewOffset);
5049
- },
5050
- heightAtLine: function(line, mode) {
5051
- var end = false, lineObj;
5052
- if (typeof line == "number") {
5053
- var last = this.doc.first + this.doc.size - 1;
5054
- if (line < this.doc.first) line = this.doc.first;
5055
- else if (line > last) { line = last; end = true; }
5056
- lineObj = getLine(this.doc, line);
5057
- } else {
5058
- lineObj = line;
5059
- }
5060
- return intoCoordSystem(this, lineObj, {top: 0, left: 0}, mode || "page").top +
5061
- (end ? this.doc.height - heightAtLine(lineObj) : 0);
5062
- },
5063
-
5064
- defaultTextHeight: function() { return textHeight(this.display); },
5065
- defaultCharWidth: function() { return charWidth(this.display); },
5066
-
5067
- setGutterMarker: methodOp(function(line, gutterID, value) {
5068
- return changeLine(this.doc, line, "gutter", function(line) {
5069
- var markers = line.gutterMarkers || (line.gutterMarkers = {});
5070
- markers[gutterID] = value;
5071
- if (!value && isEmpty(markers)) line.gutterMarkers = null;
5072
- return true;
5073
- });
5074
- }),
5075
-
5076
- clearGutter: methodOp(function(gutterID) {
5077
- var cm = this, doc = cm.doc, i = doc.first;
5078
- doc.iter(function(line) {
5079
- if (line.gutterMarkers && line.gutterMarkers[gutterID]) {
5080
- line.gutterMarkers[gutterID] = null;
5081
- regLineChange(cm, i, "gutter");
5082
- if (isEmpty(line.gutterMarkers)) line.gutterMarkers = null;
5083
- }
5084
- ++i;
5085
- });
5086
- }),
5087
-
5088
- lineInfo: function(line) {
5089
- if (typeof line == "number") {
5090
- if (!isLine(this.doc, line)) return null;
5091
- var n = line;
5092
- line = getLine(this.doc, line);
5093
- if (!line) return null;
5094
- } else {
5095
- var n = lineNo(line);
5096
- if (n == null) return null;
5097
- }
5098
- return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers,
5099
- textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass,
5100
- widgets: line.widgets};
5101
- },
5102
-
5103
- getViewport: function() { return {from: this.display.viewFrom, to: this.display.viewTo};},
5104
-
5105
- addWidget: function(pos, node, scroll, vert, horiz) {
5106
- var display = this.display;
5107
- pos = cursorCoords(this, clipPos(this.doc, pos));
5108
- var top = pos.bottom, left = pos.left;
5109
- node.style.position = "absolute";
5110
- node.setAttribute("cm-ignore-events", "true");
5111
- this.display.input.setUneditable(node);
5112
- display.sizer.appendChild(node);
5113
- if (vert == "over") {
5114
- top = pos.top;
5115
- } else if (vert == "above" || vert == "near") {
5116
- var vspace = Math.max(display.wrapper.clientHeight, this.doc.height),
5117
- hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth);
5118
- // Default to positioning above (if specified and possible); otherwise default to positioning below
5119
- if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight)
5120
- top = pos.top - node.offsetHeight;
5121
- else if (pos.bottom + node.offsetHeight <= vspace)
5122
- top = pos.bottom;
5123
- if (left + node.offsetWidth > hspace)
5124
- left = hspace - node.offsetWidth;
5125
- }
5126
- node.style.top = top + "px";
5127
- node.style.left = node.style.right = "";
5128
- if (horiz == "right") {
5129
- left = display.sizer.clientWidth - node.offsetWidth;
5130
- node.style.right = "0px";
5131
- } else {
5132
- if (horiz == "left") left = 0;
5133
- else if (horiz == "middle") left = (display.sizer.clientWidth - node.offsetWidth) / 2;
5134
- node.style.left = left + "px";
5135
- }
5136
- if (scroll)
5137
- scrollIntoView(this, left, top, left + node.offsetWidth, top + node.offsetHeight);
5138
- },
5139
-
5140
- triggerOnKeyDown: methodOp(onKeyDown),
5141
- triggerOnKeyPress: methodOp(onKeyPress),
5142
- triggerOnKeyUp: onKeyUp,
5143
-
5144
- execCommand: function(cmd) {
5145
- if (commands.hasOwnProperty(cmd))
5146
- return commands[cmd].call(null, this);
5147
- },
5148
-
5149
- triggerElectric: methodOp(function(text) { triggerElectric(this, text); }),
5150
-
5151
- findPosH: function(from, amount, unit, visually) {
5152
- var dir = 1;
5153
- if (amount < 0) { dir = -1; amount = -amount; }
5154
- for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {
5155
- cur = findPosH(this.doc, cur, dir, unit, visually);
5156
- if (cur.hitSide) break;
5157
- }
5158
- return cur;
5159
- },
5160
-
5161
- moveH: methodOp(function(dir, unit) {
5162
- var cm = this;
5163
- cm.extendSelectionsBy(function(range) {
5164
- if (cm.display.shift || cm.doc.extend || range.empty())
5165
- return findPosH(cm.doc, range.head, dir, unit, cm.options.rtlMoveVisually);
5166
- else
5167
- return dir < 0 ? range.from() : range.to();
5168
- }, sel_move);
5169
- }),
5170
-
5171
- deleteH: methodOp(function(dir, unit) {
5172
- var sel = this.doc.sel, doc = this.doc;
5173
- if (sel.somethingSelected())
5174
- doc.replaceSelection("", null, "+delete");
5175
- else
5176
- deleteNearSelection(this, function(range) {
5177
- var other = findPosH(doc, range.head, dir, unit, false);
5178
- return dir < 0 ? {from: other, to: range.head} : {from: range.head, to: other};
5179
- });
5180
- }),
5181
-
5182
- findPosV: function(from, amount, unit, goalColumn) {
5183
- var dir = 1, x = goalColumn;
5184
- if (amount < 0) { dir = -1; amount = -amount; }
5185
- for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {
5186
- var coords = cursorCoords(this, cur, "div");
5187
- if (x == null) x = coords.left;
5188
- else coords.left = x;
5189
- cur = findPosV(this, coords, dir, unit);
5190
- if (cur.hitSide) break;
5191
- }
5192
- return cur;
5193
- },
5194
-
5195
- moveV: methodOp(function(dir, unit) {
5196
- var cm = this, doc = this.doc, goals = [];
5197
- var collapse = !cm.display.shift && !doc.extend && doc.sel.somethingSelected();
5198
- doc.extendSelectionsBy(function(range) {
5199
- if (collapse)
5200
- return dir < 0 ? range.from() : range.to();
5201
- var headPos = cursorCoords(cm, range.head, "div");
5202
- if (range.goalColumn != null) headPos.left = range.goalColumn;
5203
- goals.push(headPos.left);
5204
- var pos = findPosV(cm, headPos, dir, unit);
5205
- if (unit == "page" && range == doc.sel.primary())
5206
- addToScrollPos(cm, null, charCoords(cm, pos, "div").top - headPos.top);
5207
- return pos;
5208
- }, sel_move);
5209
- if (goals.length) for (var i = 0; i < doc.sel.ranges.length; i++)
5210
- doc.sel.ranges[i].goalColumn = goals[i];
5211
- }),
5212
-
5213
- // Find the word at the given position (as returned by coordsChar).
5214
- findWordAt: function(pos) {
5215
- var doc = this.doc, line = getLine(doc, pos.line).text;
5216
- var start = pos.ch, end = pos.ch;
5217
- if (line) {
5218
- var helper = this.getHelper(pos, "wordChars");
5219
- if ((pos.xRel < 0 || end == line.length) && start) --start; else ++end;
5220
- var startChar = line.charAt(start);
5221
- var check = isWordChar(startChar, helper)
5222
- ? function(ch) { return isWordChar(ch, helper); }
5223
- : /\s/.test(startChar) ? function(ch) {return /\s/.test(ch);}
5224
- : function(ch) {return !/\s/.test(ch) && !isWordChar(ch);};
5225
- while (start > 0 && check(line.charAt(start - 1))) --start;
5226
- while (end < line.length && check(line.charAt(end))) ++end;
5227
- }
5228
- return new Range(Pos(pos.line, start), Pos(pos.line, end));
5229
- },
5230
-
5231
- toggleOverwrite: function(value) {
5232
- if (value != null && value == this.state.overwrite) return;
5233
- if (this.state.overwrite = !this.state.overwrite)
5234
- addClass(this.display.cursorDiv, "CodeMirror-overwrite");
5235
- else
5236
- rmClass(this.display.cursorDiv, "CodeMirror-overwrite");
5237
-
5238
- signal(this, "overwriteToggle", this, this.state.overwrite);
5239
- },
5240
- hasFocus: function() { return this.display.input.getField() == activeElt(); },
5241
-
5242
- scrollTo: methodOp(function(x, y) {
5243
- if (x != null || y != null) resolveScrollToPos(this);
5244
- if (x != null) this.curOp.scrollLeft = x;
5245
- if (y != null) this.curOp.scrollTop = y;
5246
- }),
5247
- getScrollInfo: function() {
5248
- var scroller = this.display.scroller;
5249
- return {left: scroller.scrollLeft, top: scroller.scrollTop,
5250
- height: scroller.scrollHeight - scrollGap(this) - this.display.barHeight,
5251
- width: scroller.scrollWidth - scrollGap(this) - this.display.barWidth,
5252
- clientHeight: displayHeight(this), clientWidth: displayWidth(this)};
5253
- },
5254
-
5255
- scrollIntoView: methodOp(function(range, margin) {
5256
- if (range == null) {
5257
- range = {from: this.doc.sel.primary().head, to: null};
5258
- if (margin == null) margin = this.options.cursorScrollMargin;
5259
- } else if (typeof range == "number") {
5260
- range = {from: Pos(range, 0), to: null};
5261
- } else if (range.from == null) {
5262
- range = {from: range, to: null};
5263
- }
5264
- if (!range.to) range.to = range.from;
5265
- range.margin = margin || 0;
5266
-
5267
- if (range.from.line != null) {
5268
- resolveScrollToPos(this);
5269
- this.curOp.scrollToPos = range;
5270
- } else {
5271
- var sPos = calculateScrollPos(this, Math.min(range.from.left, range.to.left),
5272
- Math.min(range.from.top, range.to.top) - range.margin,
5273
- Math.max(range.from.right, range.to.right),
5274
- Math.max(range.from.bottom, range.to.bottom) + range.margin);
5275
- this.scrollTo(sPos.scrollLeft, sPos.scrollTop);
5276
- }
5277
- }),
5278
-
5279
- setSize: methodOp(function(width, height) {
5280
- var cm = this;
5281
- function interpret(val) {
5282
- return typeof val == "number" || /^\d+$/.test(String(val)) ? val + "px" : val;
5283
- }
5284
- if (width != null) cm.display.wrapper.style.width = interpret(width);
5285
- if (height != null) cm.display.wrapper.style.height = interpret(height);
5286
- if (cm.options.lineWrapping) clearLineMeasurementCache(this);
5287
- var lineNo = cm.display.viewFrom;
5288
- cm.doc.iter(lineNo, cm.display.viewTo, function(line) {
5289
- if (line.widgets) for (var i = 0; i < line.widgets.length; i++)
5290
- if (line.widgets[i].noHScroll) { regLineChange(cm, lineNo, "widget"); break; }
5291
- ++lineNo;
5292
- });
5293
- cm.curOp.forceUpdate = true;
5294
- signal(cm, "refresh", this);
5295
- }),
5296
-
5297
- operation: function(f){return runInOp(this, f);},
5298
-
5299
- refresh: methodOp(function() {
5300
- var oldHeight = this.display.cachedTextHeight;
5301
- regChange(this);
5302
- this.curOp.forceUpdate = true;
5303
- clearCaches(this);
5304
- this.scrollTo(this.doc.scrollLeft, this.doc.scrollTop);
5305
- updateGutterSpace(this);
5306
- if (oldHeight == null || Math.abs(oldHeight - textHeight(this.display)) > .5)
5307
- estimateLineHeights(this);
5308
- signal(this, "refresh", this);
5309
- }),
5310
-
5311
- swapDoc: methodOp(function(doc) {
5312
- var old = this.doc;
5313
- old.cm = null;
5314
- attachDoc(this, doc);
5315
- clearCaches(this);
5316
- this.display.input.reset();
5317
- this.scrollTo(doc.scrollLeft, doc.scrollTop);
5318
- this.curOp.forceScroll = true;
5319
- signalLater(this, "swapDoc", this, old);
5320
- return old;
5321
- }),
5322
-
5323
- getInputField: function(){return this.display.input.getField();},
5324
- getWrapperElement: function(){return this.display.wrapper;},
5325
- getScrollerElement: function(){return this.display.scroller;},
5326
- getGutterElement: function(){return this.display.gutters;}
5327
- };
5328
- eventMixin(CodeMirror);
5329
-
5330
- // OPTION DEFAULTS
5331
-
5332
- // The default configuration options.
5333
- var defaults = CodeMirror.defaults = {};
5334
- // Functions to run when options are changed.
5335
- var optionHandlers = CodeMirror.optionHandlers = {};
5336
-
5337
- function option(name, deflt, handle, notOnInit) {
5338
- CodeMirror.defaults[name] = deflt;
5339
- if (handle) optionHandlers[name] =
5340
- notOnInit ? function(cm, val, old) {if (old != Init) handle(cm, val, old);} : handle;
5341
- }
5342
-
5343
- // Passed to option handlers when there is no old value.
5344
- var Init = CodeMirror.Init = {toString: function(){return "CodeMirror.Init";}};
5345
-
5346
- // These two are, on init, called from the constructor because they
5347
- // have to be initialized before the editor can start at all.
5348
- option("value", "", function(cm, val) {
5349
- cm.setValue(val);
5350
- }, true);
5351
- option("mode", null, function(cm, val) {
5352
- cm.doc.modeOption = val;
5353
- loadMode(cm);
5354
- }, true);
5355
-
5356
- option("indentUnit", 2, loadMode, true);
5357
- option("indentWithTabs", false);
5358
- option("smartIndent", true);
5359
- option("tabSize", 4, function(cm) {
5360
- resetModeState(cm);
5361
- clearCaches(cm);
5362
- regChange(cm);
5363
- }, true);
5364
- option("lineSeparator", null, function(cm, val) {
5365
- cm.doc.lineSep = val;
5366
- if (!val) return;
5367
- var newBreaks = [], lineNo = cm.doc.first;
5368
- cm.doc.iter(function(line) {
5369
- for (var pos = 0;;) {
5370
- var found = line.text.indexOf(val, pos);
5371
- if (found == -1) break;
5372
- pos = found + val.length;
5373
- newBreaks.push(Pos(lineNo, found));
5374
- }
5375
- lineNo++;
5376
- });
5377
- for (var i = newBreaks.length - 1; i >= 0; i--)
5378
- replaceRange(cm.doc, val, newBreaks[i], Pos(newBreaks[i].line, newBreaks[i].ch + val.length))
5379
- });
5380
- option("specialChars", /[\t\u0000-\u0019\u00ad\u200b-\u200f\u2028\u2029\ufeff]/g, function(cm, val, old) {
5381
- cm.state.specialChars = new RegExp(val.source + (val.test("\t") ? "" : "|\t"), "g");
5382
- if (old != CodeMirror.Init) cm.refresh();
5383
- });
5384
- option("specialCharPlaceholder", defaultSpecialCharPlaceholder, function(cm) {cm.refresh();}, true);
5385
- option("electricChars", true);
5386
- option("inputStyle", mobile ? "contenteditable" : "textarea", function() {
5387
- throw new Error("inputStyle can not (yet) be changed in a running editor"); // FIXME
5388
- }, true);
5389
- option("rtlMoveVisually", !windows);
5390
- option("wholeLineUpdateBefore", true);
5391
-
5392
- option("theme", "default", function(cm) {
5393
- themeChanged(cm);
5394
- guttersChanged(cm);
5395
- }, true);
5396
- option("keyMap", "default", function(cm, val, old) {
5397
- var next = getKeyMap(val);
5398
- var prev = old != CodeMirror.Init && getKeyMap(old);
5399
- if (prev && prev.detach) prev.detach(cm, next);
5400
- if (next.attach) next.attach(cm, prev || null);
5401
- });
5402
- option("extraKeys", null);
5403
-
5404
- option("lineWrapping", false, wrappingChanged, true);
5405
- option("gutters", [], function(cm) {
5406
- setGuttersForLineNumbers(cm.options);
5407
- guttersChanged(cm);
5408
- }, true);
5409
- option("fixedGutter", true, function(cm, val) {
5410
- cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + "px" : "0";
5411
- cm.refresh();
5412
- }, true);
5413
- option("coverGutterNextToScrollbar", false, function(cm) {updateScrollbars(cm);}, true);
5414
- option("scrollbarStyle", "native", function(cm) {
5415
- initScrollbars(cm);
5416
- updateScrollbars(cm);
5417
- cm.display.scrollbars.setScrollTop(cm.doc.scrollTop);
5418
- cm.display.scrollbars.setScrollLeft(cm.doc.scrollLeft);
5419
- }, true);
5420
- option("lineNumbers", false, function(cm) {
5421
- setGuttersForLineNumbers(cm.options);
5422
- guttersChanged(cm);
5423
- }, true);
5424
- option("firstLineNumber", 1, guttersChanged, true);
5425
- option("lineNumberFormatter", function(integer) {return integer;}, guttersChanged, true);
5426
- option("showCursorWhenSelecting", false, updateSelection, true);
5427
-
5428
- option("resetSelectionOnContextMenu", true);
5429
- option("lineWiseCopyCut", true);
5430
-
5431
- option("readOnly", false, function(cm, val) {
5432
- if (val == "nocursor") {
5433
- onBlur(cm);
5434
- cm.display.input.blur();
5435
- cm.display.disabled = true;
5436
- } else {
5437
- cm.display.disabled = false;
5438
- }
5439
- cm.display.input.readOnlyChanged(val)
5440
- });
5441
- option("disableInput", false, function(cm, val) {if (!val) cm.display.input.reset();}, true);
5442
- option("dragDrop", true, dragDropChanged);
5443
- option("allowDropFileTypes", null);
5444
-
5445
- option("cursorBlinkRate", 530);
5446
- option("cursorScrollMargin", 0);
5447
- option("cursorHeight", 1, updateSelection, true);
5448
- option("singleCursorHeightPerLine", true, updateSelection, true);
5449
- option("workTime", 100);
5450
- option("workDelay", 100);
5451
- option("flattenSpans", true, resetModeState, true);
5452
- option("addModeClass", false, resetModeState, true);
5453
- option("pollInterval", 100);
5454
- option("undoDepth", 200, function(cm, val){cm.doc.history.undoDepth = val;});
5455
- option("historyEventDelay", 1250);
5456
- option("viewportMargin", 10, function(cm){cm.refresh();}, true);
5457
- option("maxHighlightLength", 10000, resetModeState, true);
5458
- option("moveInputWithCursor", true, function(cm, val) {
5459
- if (!val) cm.display.input.resetPosition();
5460
- });
5461
-
5462
- option("tabindex", null, function(cm, val) {
5463
- cm.display.input.getField().tabIndex = val || "";
5464
- });
5465
- option("autofocus", null);
5466
-
5467
- // MODE DEFINITION AND QUERYING
5468
-
5469
- // Known modes, by name and by MIME
5470
- var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {};
5471
-
5472
- // Extra arguments are stored as the mode's dependencies, which is
5473
- // used by (legacy) mechanisms like loadmode.js to automatically
5474
- // load a mode. (Preferred mechanism is the require/define calls.)
5475
- CodeMirror.defineMode = function(name, mode) {
5476
- if (!CodeMirror.defaults.mode && name != "null") CodeMirror.defaults.mode = name;
5477
- if (arguments.length > 2)
5478
- mode.dependencies = Array.prototype.slice.call(arguments, 2);
5479
- modes[name] = mode;
5480
- };
5481
-
5482
- CodeMirror.defineMIME = function(mime, spec) {
5483
- mimeModes[mime] = spec;
5484
- };
5485
-
5486
- // Given a MIME type, a {name, ...options} config object, or a name
5487
- // string, return a mode config object.
5488
- CodeMirror.resolveMode = function(spec) {
5489
- if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) {
5490
- spec = mimeModes[spec];
5491
- } else if (spec && typeof spec.name == "string" && mimeModes.hasOwnProperty(spec.name)) {
5492
- var found = mimeModes[spec.name];
5493
- if (typeof found == "string") found = {name: found};
5494
- spec = createObj(found, spec);
5495
- spec.name = found.name;
5496
- } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec)) {
5497
- return CodeMirror.resolveMode("application/xml");
5498
- }
5499
- if (typeof spec == "string") return {name: spec};
5500
- else return spec || {name: "null"};
5501
- };
5502
-
5503
- // Given a mode spec (anything that resolveMode accepts), find and
5504
- // initialize an actual mode object.
5505
- CodeMirror.getMode = function(options, spec) {
5506
- var spec = CodeMirror.resolveMode(spec);
5507
- var mfactory = modes[spec.name];
5508
- if (!mfactory) return CodeMirror.getMode(options, "text/plain");
5509
- var modeObj = mfactory(options, spec);
5510
- if (modeExtensions.hasOwnProperty(spec.name)) {
5511
- var exts = modeExtensions[spec.name];
5512
- for (var prop in exts) {
5513
- if (!exts.hasOwnProperty(prop)) continue;
5514
- if (modeObj.hasOwnProperty(prop)) modeObj["_" + prop] = modeObj[prop];
5515
- modeObj[prop] = exts[prop];
5516
- }
5517
- }
5518
- modeObj.name = spec.name;
5519
- if (spec.helperType) modeObj.helperType = spec.helperType;
5520
- if (spec.modeProps) for (var prop in spec.modeProps)
5521
- modeObj[prop] = spec.modeProps[prop];
5522
-
5523
- return modeObj;
5524
- };
5525
-
5526
- // Minimal default mode.
5527
- CodeMirror.defineMode("null", function() {
5528
- return {token: function(stream) {stream.skipToEnd();}};
5529
- });
5530
- CodeMirror.defineMIME("text/plain", "null");
5531
-
5532
- // This can be used to attach properties to mode objects from
5533
- // outside the actual mode definition.
5534
- var modeExtensions = CodeMirror.modeExtensions = {};
5535
- CodeMirror.extendMode = function(mode, properties) {
5536
- var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {});
5537
- copyObj(properties, exts);
5538
- };
5539
-
5540
- // EXTENSIONS
5541
-
5542
- CodeMirror.defineExtension = function(name, func) {
5543
- CodeMirror.prototype[name] = func;
5544
- };
5545
- CodeMirror.defineDocExtension = function(name, func) {
5546
- Doc.prototype[name] = func;
5547
- };
5548
- CodeMirror.defineOption = option;
5549
-
5550
- var initHooks = [];
5551
- CodeMirror.defineInitHook = function(f) {initHooks.push(f);};
5552
-
5553
- var helpers = CodeMirror.helpers = {};
5554
- CodeMirror.registerHelper = function(type, name, value) {
5555
- if (!helpers.hasOwnProperty(type)) helpers[type] = CodeMirror[type] = {_global: []};
5556
- helpers[type][name] = value;
5557
- };
5558
- CodeMirror.registerGlobalHelper = function(type, name, predicate, value) {
5559
- CodeMirror.registerHelper(type, name, value);
5560
- helpers[type]._global.push({pred: predicate, val: value});
5561
- };
5562
-
5563
- // MODE STATE HANDLING
5564
-
5565
- // Utility functions for working with state. Exported because nested
5566
- // modes need to do this for their inner modes.
5567
-
5568
- var copyState = CodeMirror.copyState = function(mode, state) {
5569
- if (state === true) return state;
5570
- if (mode.copyState) return mode.copyState(state);
5571
- var nstate = {};
5572
- for (var n in state) {
5573
- var val = state[n];
5574
- if (val instanceof Array) val = val.concat([]);
5575
- nstate[n] = val;
5576
- }
5577
- return nstate;
5578
- };
5579
-
5580
- var startState = CodeMirror.startState = function(mode, a1, a2) {
5581
- return mode.startState ? mode.startState(a1, a2) : true;
5582
- };
5583
-
5584
- // Given a mode and a state (for that mode), find the inner mode and
5585
- // state at the position that the state refers to.
5586
- CodeMirror.innerMode = function(mode, state) {
5587
- while (mode.innerMode) {
5588
- var info = mode.innerMode(state);
5589
- if (!info || info.mode == mode) break;
5590
- state = info.state;
5591
- mode = info.mode;
5592
- }
5593
- return info || {mode: mode, state: state};
5594
- };
5595
-
5596
- // STANDARD COMMANDS
5597
-
5598
- // Commands are parameter-less actions that can be performed on an
5599
- // editor, mostly used for keybindings.
5600
- var commands = CodeMirror.commands = {
5601
- selectAll: function(cm) {cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()), sel_dontScroll);},
5602
- singleSelection: function(cm) {
5603
- cm.setSelection(cm.getCursor("anchor"), cm.getCursor("head"), sel_dontScroll);
5604
- },
5605
- killLine: function(cm) {
5606
- deleteNearSelection(cm, function(range) {
5607
- if (range.empty()) {
5608
- var len = getLine(cm.doc, range.head.line).text.length;
5609
- if (range.head.ch == len && range.head.line < cm.lastLine())
5610
- return {from: range.head, to: Pos(range.head.line + 1, 0)};
5611
- else
5612
- return {from: range.head, to: Pos(range.head.line, len)};
5613
- } else {
5614
- return {from: range.from(), to: range.to()};
5615
- }
5616
- });
5617
- },
5618
- deleteLine: function(cm) {
5619
- deleteNearSelection(cm, function(range) {
5620
- return {from: Pos(range.from().line, 0),
5621
- to: clipPos(cm.doc, Pos(range.to().line + 1, 0))};
5622
- });
5623
- },
5624
- delLineLeft: function(cm) {
5625
- deleteNearSelection(cm, function(range) {
5626
- return {from: Pos(range.from().line, 0), to: range.from()};
5627
- });
5628
- },
5629
- delWrappedLineLeft: function(cm) {
5630
- deleteNearSelection(cm, function(range) {
5631
- var top = cm.charCoords(range.head, "div").top + 5;
5632
- var leftPos = cm.coordsChar({left: 0, top: top}, "div");
5633
- return {from: leftPos, to: range.from()};
5634
- });
5635
- },
5636
- delWrappedLineRight: function(cm) {
5637
- deleteNearSelection(cm, function(range) {
5638
- var top = cm.charCoords(range.head, "div").top + 5;
5639
- var rightPos = cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div");
5640
- return {from: range.from(), to: rightPos };
5641
- });
5642
- },
5643
- undo: function(cm) {cm.undo();},
5644
- redo: function(cm) {cm.redo();},
5645
- undoSelection: function(cm) {cm.undoSelection();},
5646
- redoSelection: function(cm) {cm.redoSelection();},
5647
- goDocStart: function(cm) {cm.extendSelection(Pos(cm.firstLine(), 0));},
5648
- goDocEnd: function(cm) {cm.extendSelection(Pos(cm.lastLine()));},
5649
- goLineStart: function(cm) {
5650
- cm.extendSelectionsBy(function(range) { return lineStart(cm, range.head.line); },
5651
- {origin: "+move", bias: 1});
5652
- },
5653
- goLineStartSmart: function(cm) {
5654
- cm.extendSelectionsBy(function(range) {
5655
- return lineStartSmart(cm, range.head);
5656
- }, {origin: "+move", bias: 1});
5657
- },
5658
- goLineEnd: function(cm) {
5659
- cm.extendSelectionsBy(function(range) { return lineEnd(cm, range.head.line); },
5660
- {origin: "+move", bias: -1});
5661
- },
5662
- goLineRight: function(cm) {
5663
- cm.extendSelectionsBy(function(range) {
5664
- var top = cm.charCoords(range.head, "div").top + 5;
5665
- return cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div");
5666
- }, sel_move);
5667
- },
5668
- goLineLeft: function(cm) {
5669
- cm.extendSelectionsBy(function(range) {
5670
- var top = cm.charCoords(range.head, "div").top + 5;
5671
- return cm.coordsChar({left: 0, top: top}, "div");
5672
- }, sel_move);
5673
- },
5674
- goLineLeftSmart: function(cm) {
5675
- cm.extendSelectionsBy(function(range) {
5676
- var top = cm.charCoords(range.head, "div").top + 5;
5677
- var pos = cm.coordsChar({left: 0, top: top}, "div");
5678
- if (pos.ch < cm.getLine(pos.line).search(/\S/)) return lineStartSmart(cm, range.head);
5679
- return pos;
5680
- }, sel_move);
5681
- },
5682
- goLineUp: function(cm) {cm.moveV(-1, "line");},
5683
- goLineDown: function(cm) {cm.moveV(1, "line");},
5684
- goPageUp: function(cm) {cm.moveV(-1, "page");},
5685
- goPageDown: function(cm) {cm.moveV(1, "page");},
5686
- goCharLeft: function(cm) {cm.moveH(-1, "char");},
5687
- goCharRight: function(cm) {cm.moveH(1, "char");},
5688
- goColumnLeft: function(cm) {cm.moveH(-1, "column");},
5689
- goColumnRight: function(cm) {cm.moveH(1, "column");},
5690
- goWordLeft: function(cm) {cm.moveH(-1, "word");},
5691
- goGroupRight: function(cm) {cm.moveH(1, "group");},
5692
- goGroupLeft: function(cm) {cm.moveH(-1, "group");},
5693
- goWordRight: function(cm) {cm.moveH(1, "word");},
5694
- delCharBefore: function(cm) {cm.deleteH(-1, "char");},
5695
- delCharAfter: function(cm) {cm.deleteH(1, "char");},
5696
- delWordBefore: function(cm) {cm.deleteH(-1, "word");},
5697
- delWordAfter: function(cm) {cm.deleteH(1, "word");},
5698
- delGroupBefore: function(cm) {cm.deleteH(-1, "group");},
5699
- delGroupAfter: function(cm) {cm.deleteH(1, "group");},
5700
- indentAuto: function(cm) {cm.indentSelection("smart");},
5701
- indentMore: function(cm) {cm.indentSelection("add");},
5702
- indentLess: function(cm) {cm.indentSelection("subtract");},
5703
- insertTab: function(cm) {cm.replaceSelection("\t");},
5704
- insertSoftTab: function(cm) {
5705
- var spaces = [], ranges = cm.listSelections(), tabSize = cm.options.tabSize;
5706
- for (var i = 0; i < ranges.length; i++) {
5707
- var pos = ranges[i].from();
5708
- var col = countColumn(cm.getLine(pos.line), pos.ch, tabSize);
5709
- spaces.push(new Array(tabSize - col % tabSize + 1).join(" "));
5710
- }
5711
- cm.replaceSelections(spaces);
5712
- },
5713
- defaultTab: function(cm) {
5714
- if (cm.somethingSelected()) cm.indentSelection("add");
5715
- else cm.execCommand("insertTab");
5716
- },
5717
- transposeChars: function(cm) {
5718
- runInOp(cm, function() {
5719
- var ranges = cm.listSelections(), newSel = [];
5720
- for (var i = 0; i < ranges.length; i++) {
5721
- var cur = ranges[i].head, line = getLine(cm.doc, cur.line).text;
5722
- if (line) {
5723
- if (cur.ch == line.length) cur = new Pos(cur.line, cur.ch - 1);
5724
- if (cur.ch > 0) {
5725
- cur = new Pos(cur.line, cur.ch + 1);
5726
- cm.replaceRange(line.charAt(cur.ch - 1) + line.charAt(cur.ch - 2),
5727
- Pos(cur.line, cur.ch - 2), cur, "+transpose");
5728
- } else if (cur.line > cm.doc.first) {
5729
- var prev = getLine(cm.doc, cur.line - 1).text;
5730
- if (prev)
5731
- cm.replaceRange(line.charAt(0) + cm.doc.lineSeparator() +
5732
- prev.charAt(prev.length - 1),
5733
- Pos(cur.line - 1, prev.length - 1), Pos(cur.line, 1), "+transpose");
5734
- }
5735
- }
5736
- newSel.push(new Range(cur, cur));
5737
- }
5738
- cm.setSelections(newSel);
5739
- });
5740
- },
5741
- newlineAndIndent: function(cm) {
5742
- runInOp(cm, function() {
5743
- var len = cm.listSelections().length;
5744
- for (var i = 0; i < len; i++) {
5745
- var range = cm.listSelections()[i];
5746
- cm.replaceRange(cm.doc.lineSeparator(), range.anchor, range.head, "+input");
5747
- cm.indentLine(range.from().line + 1, null, true);
5748
- }
5749
- ensureCursorVisible(cm);
5750
- });
5751
- },
5752
- toggleOverwrite: function(cm) {cm.toggleOverwrite();}
5753
- };
5754
-
5755
-
5756
- // STANDARD KEYMAPS
5757
-
5758
- var keyMap = CodeMirror.keyMap = {};
5759
-
5760
- keyMap.basic = {
5761
- "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown",
5762
- "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown",
5763
- "Delete": "delCharAfter", "Backspace": "delCharBefore", "Shift-Backspace": "delCharBefore",
5764
- "Tab": "defaultTab", "Shift-Tab": "indentAuto",
5765
- "Enter": "newlineAndIndent", "Insert": "toggleOverwrite",
5766
- "Esc": "singleSelection"
5767
- };
5768
- // Note that the save and find-related commands aren't defined by
5769
- // default. User code or addons can define them. Unknown commands
5770
- // are simply ignored.
5771
- keyMap.pcDefault = {
5772
- "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo",
5773
- "Ctrl-Home": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Up": "goLineUp", "Ctrl-Down": "goLineDown",
5774
- "Ctrl-Left": "goGroupLeft", "Ctrl-Right": "goGroupRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd",
5775
- "Ctrl-Backspace": "delGroupBefore", "Ctrl-Delete": "delGroupAfter", "Ctrl-S": "save", "Ctrl-F": "find",
5776
- "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll",
5777
- "Ctrl-[": "indentLess", "Ctrl-]": "indentMore",
5778
- "Ctrl-U": "undoSelection", "Shift-Ctrl-U": "redoSelection", "Alt-U": "redoSelection",
5779
- fallthrough: "basic"
5780
- };
5781
- // Very basic readline/emacs-style bindings, which are standard on Mac.
5782
- keyMap.emacsy = {
5783
- "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown",
5784
- "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd",
5785
- "Ctrl-V": "goPageDown", "Shift-Ctrl-V": "goPageUp", "Ctrl-D": "delCharAfter", "Ctrl-H": "delCharBefore",
5786
- "Alt-D": "delWordAfter", "Alt-Backspace": "delWordBefore", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars"
5787
- };
5788
- keyMap.macDefault = {
5789
- "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo",
5790
- "Cmd-Home": "goDocStart", "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goGroupLeft",
5791
- "Alt-Right": "goGroupRight", "Cmd-Left": "goLineLeft", "Cmd-Right": "goLineRight", "Alt-Backspace": "delGroupBefore",
5792
- "Ctrl-Alt-Backspace": "delGroupAfter", "Alt-Delete": "delGroupAfter", "Cmd-S": "save", "Cmd-F": "find",
5793
- "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll",
5794
- "Cmd-[": "indentLess", "Cmd-]": "indentMore", "Cmd-Backspace": "delWrappedLineLeft", "Cmd-Delete": "delWrappedLineRight",
5795
- "Cmd-U": "undoSelection", "Shift-Cmd-U": "redoSelection", "Ctrl-Up": "goDocStart", "Ctrl-Down": "goDocEnd",
5796
- fallthrough: ["basic", "emacsy"]
5797
- };
5798
- keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault;
5799
-
5800
- // KEYMAP DISPATCH
5801
-
5802
- function normalizeKeyName(name) {
5803
- var parts = name.split(/-(?!$)/), name = parts[parts.length - 1];
5804
- var alt, ctrl, shift, cmd;
5805
- for (var i = 0; i < parts.length - 1; i++) {
5806
- var mod = parts[i];
5807
- if (/^(cmd|meta|m)$/i.test(mod)) cmd = true;
5808
- else if (/^a(lt)?$/i.test(mod)) alt = true;
5809
- else if (/^(c|ctrl|control)$/i.test(mod)) ctrl = true;
5810
- else if (/^s(hift)$/i.test(mod)) shift = true;
5811
- else throw new Error("Unrecognized modifier name: " + mod);
5812
- }
5813
- if (alt) name = "Alt-" + name;
5814
- if (ctrl) name = "Ctrl-" + name;
5815
- if (cmd) name = "Cmd-" + name;
5816
- if (shift) name = "Shift-" + name;
5817
- return name;
5818
- }
5819
-
5820
- // This is a kludge to keep keymaps mostly working as raw objects
5821
- // (backwards compatibility) while at the same time support features
5822
- // like normalization and multi-stroke key bindings. It compiles a
5823
- // new normalized keymap, and then updates the old object to reflect
5824
- // this.
5825
- CodeMirror.normalizeKeyMap = function(keymap) {
5826
- var copy = {};
5827
- for (var keyname in keymap) if (keymap.hasOwnProperty(keyname)) {
5828
- var value = keymap[keyname];
5829
- if (/^(name|fallthrough|(de|at)tach)$/.test(keyname)) continue;
5830
- if (value == "...") { delete keymap[keyname]; continue; }
5831
-
5832
- var keys = map(keyname.split(" "), normalizeKeyName);
5833
- for (var i = 0; i < keys.length; i++) {
5834
- var val, name;
5835
- if (i == keys.length - 1) {
5836
- name = keys.join(" ");
5837
- val = value;
5838
- } else {
5839
- name = keys.slice(0, i + 1).join(" ");
5840
- val = "...";
5841
- }
5842
- var prev = copy[name];
5843
- if (!prev) copy[name] = val;
5844
- else if (prev != val) throw new Error("Inconsistent bindings for " + name);
5845
- }
5846
- delete keymap[keyname];
5847
- }
5848
- for (var prop in copy) keymap[prop] = copy[prop];
5849
- return keymap;
5850
- };
5851
-
5852
- var lookupKey = CodeMirror.lookupKey = function(key, map, handle, context) {
5853
- map = getKeyMap(map);
5854
- var found = map.call ? map.call(key, context) : map[key];
5855
- if (found === false) return "nothing";
5856
- if (found === "...") return "multi";
5857
- if (found != null && handle(found)) return "handled";
5858
-
5859
- if (map.fallthrough) {
5860
- if (Object.prototype.toString.call(map.fallthrough) != "[object Array]")
5861
- return lookupKey(key, map.fallthrough, handle, context);
5862
- for (var i = 0; i < map.fallthrough.length; i++) {
5863
- var result = lookupKey(key, map.fallthrough[i], handle, context);
5864
- if (result) return result;
5865
- }
5866
- }
5867
- };
5868
-
5869
- // Modifier key presses don't count as 'real' key presses for the
5870
- // purpose of keymap fallthrough.
5871
- var isModifierKey = CodeMirror.isModifierKey = function(value) {
5872
- var name = typeof value == "string" ? value : keyNames[value.keyCode];
5873
- return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod";
5874
- };
5875
-
5876
- // Look up the name of a key as indicated by an event object.
5877
- var keyName = CodeMirror.keyName = function(event, noShift) {
5878
- if (presto && event.keyCode == 34 && event["char"]) return false;
5879
- var base = keyNames[event.keyCode], name = base;
5880
- if (name == null || event.altGraphKey) return false;
5881
- if (event.altKey && base != "Alt") name = "Alt-" + name;
5882
- if ((flipCtrlCmd ? event.metaKey : event.ctrlKey) && base != "Ctrl") name = "Ctrl-" + name;
5883
- if ((flipCtrlCmd ? event.ctrlKey : event.metaKey) && base != "Cmd") name = "Cmd-" + name;
5884
- if (!noShift && event.shiftKey && base != "Shift") name = "Shift-" + name;
5885
- return name;
5886
- };
5887
-
5888
- function getKeyMap(val) {
5889
- return typeof val == "string" ? keyMap[val] : val;
5890
- }
5891
-
5892
- // FROMTEXTAREA
5893
-
5894
- CodeMirror.fromTextArea = function(textarea, options) {
5895
- options = options ? copyObj(options) : {};
5896
- options.value = textarea.value;
5897
- if (!options.tabindex && textarea.tabIndex)
5898
- options.tabindex = textarea.tabIndex;
5899
- if (!options.placeholder && textarea.placeholder)
5900
- options.placeholder = textarea.placeholder;
5901
- // Set autofocus to true if this textarea is focused, or if it has
5902
- // autofocus and no other element is focused.
5903
- if (options.autofocus == null) {
5904
- var hasFocus = activeElt();
5905
- options.autofocus = hasFocus == textarea ||
5906
- textarea.getAttribute("autofocus") != null && hasFocus == document.body;
5907
- }
5908
-
5909
- function save() {textarea.value = cm.getValue();}
5910
- if (textarea.form) {
5911
- on(textarea.form, "submit", save);
5912
- // Deplorable hack to make the submit method do the right thing.
5913
- if (!options.leaveSubmitMethodAlone) {
5914
- var form = textarea.form, realSubmit = form.submit;
5915
- try {
5916
- var wrappedSubmit = form.submit = function() {
5917
- save();
5918
- form.submit = realSubmit;
5919
- form.submit();
5920
- form.submit = wrappedSubmit;
5921
- };
5922
- } catch(e) {}
5923
- }
5924
- }
5925
-
5926
- options.finishInit = function(cm) {
5927
- cm.save = save;
5928
- cm.getTextArea = function() { return textarea; };
5929
- cm.toTextArea = function() {
5930
- cm.toTextArea = isNaN; // Prevent this from being ran twice
5931
- save();
5932
- textarea.parentNode.removeChild(cm.getWrapperElement());
5933
- textarea.style.display = "";
5934
- if (textarea.form) {
5935
- off(textarea.form, "submit", save);
5936
- if (typeof textarea.form.submit == "function")
5937
- textarea.form.submit = realSubmit;
5938
- }
5939
- };
5940
- };
5941
-
5942
- textarea.style.display = "none";
5943
- var cm = CodeMirror(function(node) {
5944
- textarea.parentNode.insertBefore(node, textarea.nextSibling);
5945
- }, options);
5946
- return cm;
5947
- };
5948
-
5949
- // STRING STREAM
5950
-
5951
- // Fed to the mode parsers, provides helper functions to make
5952
- // parsers more succinct.
5953
-
5954
- var StringStream = CodeMirror.StringStream = function(string, tabSize) {
5955
- this.pos = this.start = 0;
5956
- this.string = string;
5957
- this.tabSize = tabSize || 8;
5958
- this.lastColumnPos = this.lastColumnValue = 0;
5959
- this.lineStart = 0;
5960
- };
5961
-
5962
- StringStream.prototype = {
5963
- eol: function() {return this.pos >= this.string.length;},
5964
- sol: function() {return this.pos == this.lineStart;},
5965
- peek: function() {return this.string.charAt(this.pos) || undefined;},
5966
- next: function() {
5967
- if (this.pos < this.string.length)
5968
- return this.string.charAt(this.pos++);
5969
- },
5970
- eat: function(match) {
5971
- var ch = this.string.charAt(this.pos);
5972
- if (typeof match == "string") var ok = ch == match;
5973
- else var ok = ch && (match.test ? match.test(ch) : match(ch));
5974
- if (ok) {++this.pos; return ch;}
5975
- },
5976
- eatWhile: function(match) {
5977
- var start = this.pos;
5978
- while (this.eat(match)){}
5979
- return this.pos > start;
5980
- },
5981
- eatSpace: function() {
5982
- var start = this.pos;
5983
- while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos;
5984
- return this.pos > start;
5985
- },
5986
- skipToEnd: function() {this.pos = this.string.length;},
5987
- skipTo: function(ch) {
5988
- var found = this.string.indexOf(ch, this.pos);
5989
- if (found > -1) {this.pos = found; return true;}
5990
- },
5991
- backUp: function(n) {this.pos -= n;},
5992
- column: function() {
5993
- if (this.lastColumnPos < this.start) {
5994
- this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue);
5995
- this.lastColumnPos = this.start;
5996
- }
5997
- return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0);
5998
- },
5999
- indentation: function() {
6000
- return countColumn(this.string, null, this.tabSize) -
6001
- (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0);
6002
- },
6003
- match: function(pattern, consume, caseInsensitive) {
6004
- if (typeof pattern == "string") {
6005
- var cased = function(str) {return caseInsensitive ? str.toLowerCase() : str;};
6006
- var substr = this.string.substr(this.pos, pattern.length);
6007
- if (cased(substr) == cased(pattern)) {
6008
- if (consume !== false) this.pos += pattern.length;
6009
- return true;
6010
- }
6011
- } else {
6012
- var match = this.string.slice(this.pos).match(pattern);
6013
- if (match && match.index > 0) return null;
6014
- if (match && consume !== false) this.pos += match[0].length;
6015
- return match;
6016
- }
6017
- },
6018
- current: function(){return this.string.slice(this.start, this.pos);},
6019
- hideFirstChars: function(n, inner) {
6020
- this.lineStart += n;
6021
- try { return inner(); }
6022
- finally { this.lineStart -= n; }
6023
- }
6024
- };
6025
-
6026
- // TEXTMARKERS
6027
-
6028
- // Created with markText and setBookmark methods. A TextMarker is a
6029
- // handle that can be used to clear or find a marked position in the
6030
- // document. Line objects hold arrays (markedSpans) containing
6031
- // {from, to, marker} object pointing to such marker objects, and
6032
- // indicating that such a marker is present on that line. Multiple
6033
- // lines may point to the same marker when it spans across lines.
6034
- // The spans will have null for their from/to properties when the
6035
- // marker continues beyond the start/end of the line. Markers have
6036
- // links back to the lines they currently touch.
6037
-
6038
- var nextMarkerId = 0;
6039
-
6040
- var TextMarker = CodeMirror.TextMarker = function(doc, type) {
6041
- this.lines = [];
6042
- this.type = type;
6043
- this.doc = doc;
6044
- this.id = ++nextMarkerId;
6045
- };
6046
- eventMixin(TextMarker);
6047
-
6048
- // Clear the marker.
6049
- TextMarker.prototype.clear = function() {
6050
- if (this.explicitlyCleared) return;
6051
- var cm = this.doc.cm, withOp = cm && !cm.curOp;
6052
- if (withOp) startOperation(cm);
6053
- if (hasHandler(this, "clear")) {
6054
- var found = this.find();
6055
- if (found) signalLater(this, "clear", found.from, found.to);
6056
- }
6057
- var min = null, max = null;
6058
- for (var i = 0; i < this.lines.length; ++i) {
6059
- var line = this.lines[i];
6060
- var span = getMarkedSpanFor(line.markedSpans, this);
6061
- if (cm && !this.collapsed) regLineChange(cm, lineNo(line), "text");
6062
- else if (cm) {
6063
- if (span.to != null) max = lineNo(line);
6064
- if (span.from != null) min = lineNo(line);
6065
- }
6066
- line.markedSpans = removeMarkedSpan(line.markedSpans, span);
6067
- if (span.from == null && this.collapsed && !lineIsHidden(this.doc, line) && cm)
6068
- updateLineHeight(line, textHeight(cm.display));
6069
- }
6070
- if (cm && this.collapsed && !cm.options.lineWrapping) for (var i = 0; i < this.lines.length; ++i) {
6071
- var visual = visualLine(this.lines[i]), len = lineLength(visual);
6072
- if (len > cm.display.maxLineLength) {
6073
- cm.display.maxLine = visual;
6074
- cm.display.maxLineLength = len;
6075
- cm.display.maxLineChanged = true;
6076
- }
6077
- }
6078
-
6079
- if (min != null && cm && this.collapsed) regChange(cm, min, max + 1);
6080
- this.lines.length = 0;
6081
- this.explicitlyCleared = true;
6082
- if (this.atomic && this.doc.cantEdit) {
6083
- this.doc.cantEdit = false;
6084
- if (cm) reCheckSelection(cm.doc);
6085
- }
6086
- if (cm) signalLater(cm, "markerCleared", cm, this);
6087
- if (withOp) endOperation(cm);
6088
- if (this.parent) this.parent.clear();
6089
- };
6090
-
6091
- // Find the position of the marker in the document. Returns a {from,
6092
- // to} object by default. Side can be passed to get a specific side
6093
- // -- 0 (both), -1 (left), or 1 (right). When lineObj is true, the
6094
- // Pos objects returned contain a line object, rather than a line
6095
- // number (used to prevent looking up the same line twice).
6096
- TextMarker.prototype.find = function(side, lineObj) {
6097
- if (side == null && this.type == "bookmark") side = 1;
6098
- var from, to;
6099
- for (var i = 0; i < this.lines.length; ++i) {
6100
- var line = this.lines[i];
6101
- var span = getMarkedSpanFor(line.markedSpans, this);
6102
- if (span.from != null) {
6103
- from = Pos(lineObj ? line : lineNo(line), span.from);
6104
- if (side == -1) return from;
6105
- }
6106
- if (span.to != null) {
6107
- to = Pos(lineObj ? line : lineNo(line), span.to);
6108
- if (side == 1) return to;
6109
- }
6110
- }
6111
- return from && {from: from, to: to};
6112
- };
6113
-
6114
- // Signals that the marker's widget changed, and surrounding layout
6115
- // should be recomputed.
6116
- TextMarker.prototype.changed = function() {
6117
- var pos = this.find(-1, true), widget = this, cm = this.doc.cm;
6118
- if (!pos || !cm) return;
6119
- runInOp(cm, function() {
6120
- var line = pos.line, lineN = lineNo(pos.line);
6121
- var view = findViewForLine(cm, lineN);
6122
- if (view) {
6123
- clearLineMeasurementCacheFor(view);
6124
- cm.curOp.selectionChanged = cm.curOp.forceUpdate = true;
6125
- }
6126
- cm.curOp.updateMaxLine = true;
6127
- if (!lineIsHidden(widget.doc, line) && widget.height != null) {
6128
- var oldHeight = widget.height;
6129
- widget.height = null;
6130
- var dHeight = widgetHeight(widget) - oldHeight;
6131
- if (dHeight)
6132
- updateLineHeight(line, line.height + dHeight);
6133
- }
6134
- });
6135
- };
6136
-
6137
- TextMarker.prototype.attachLine = function(line) {
6138
- if (!this.lines.length && this.doc.cm) {
6139
- var op = this.doc.cm.curOp;
6140
- if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1)
6141
- (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this);
6142
- }
6143
- this.lines.push(line);
6144
- };
6145
- TextMarker.prototype.detachLine = function(line) {
6146
- this.lines.splice(indexOf(this.lines, line), 1);
6147
- if (!this.lines.length && this.doc.cm) {
6148
- var op = this.doc.cm.curOp;
6149
- (op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this);
6150
- }
6151
- };
6152
-
6153
- // Collapsed markers have unique ids, in order to be able to order
6154
- // them, which is needed for uniquely determining an outer marker
6155
- // when they overlap (they may nest, but not partially overlap).
6156
- var nextMarkerId = 0;
6157
-
6158
- // Create a marker, wire it up to the right lines, and
6159
- function markText(doc, from, to, options, type) {
6160
- // Shared markers (across linked documents) are handled separately
6161
- // (markTextShared will call out to this again, once per
6162
- // document).
6163
- if (options && options.shared) return markTextShared(doc, from, to, options, type);
6164
- // Ensure we are in an operation.
6165
- if (doc.cm && !doc.cm.curOp) return operation(doc.cm, markText)(doc, from, to, options, type);
6166
-
6167
- var marker = new TextMarker(doc, type), diff = cmp(from, to);
6168
- if (options) copyObj(options, marker, false);
6169
- // Don't connect empty markers unless clearWhenEmpty is false
6170
- if (diff > 0 || diff == 0 && marker.clearWhenEmpty !== false)
6171
- return marker;
6172
- if (marker.replacedWith) {
6173
- // Showing up as a widget implies collapsed (widget replaces text)
6174
- marker.collapsed = true;
6175
- marker.widgetNode = elt("span", [marker.replacedWith], "CodeMirror-widget");
6176
- if (!options.handleMouseEvents) marker.widgetNode.setAttribute("cm-ignore-events", "true");
6177
- if (options.insertLeft) marker.widgetNode.insertLeft = true;
6178
- }
6179
- if (marker.collapsed) {
6180
- if (conflictingCollapsedRange(doc, from.line, from, to, marker) ||
6181
- from.line != to.line && conflictingCollapsedRange(doc, to.line, from, to, marker))
6182
- throw new Error("Inserting collapsed marker partially overlapping an existing one");
6183
- sawCollapsedSpans = true;
6184
- }
6185
-
6186
- if (marker.addToHistory)
6187
- addChangeToHistory(doc, {from: from, to: to, origin: "markText"}, doc.sel, NaN);
6188
-
6189
- var curLine = from.line, cm = doc.cm, updateMaxLine;
6190
- doc.iter(curLine, to.line + 1, function(line) {
6191
- if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(line) == cm.display.maxLine)
6192
- updateMaxLine = true;
6193
- if (marker.collapsed && curLine != from.line) updateLineHeight(line, 0);
6194
- addMarkedSpan(line, new MarkedSpan(marker,
6195
- curLine == from.line ? from.ch : null,
6196
- curLine == to.line ? to.ch : null));
6197
- ++curLine;
6198
- });
6199
- // lineIsHidden depends on the presence of the spans, so needs a second pass
6200
- if (marker.collapsed) doc.iter(from.line, to.line + 1, function(line) {
6201
- if (lineIsHidden(doc, line)) updateLineHeight(line, 0);
6202
- });
6203
-
6204
- if (marker.clearOnEnter) on(marker, "beforeCursorEnter", function() { marker.clear(); });
6205
-
6206
- if (marker.readOnly) {
6207
- sawReadOnlySpans = true;
6208
- if (doc.history.done.length || doc.history.undone.length)
6209
- doc.clearHistory();
6210
- }
6211
- if (marker.collapsed) {
6212
- marker.id = ++nextMarkerId;
6213
- marker.atomic = true;
6214
- }
6215
- if (cm) {
6216
- // Sync editor state
6217
- if (updateMaxLine) cm.curOp.updateMaxLine = true;
6218
- if (marker.collapsed)
6219
- regChange(cm, from.line, to.line + 1);
6220
- else if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.css)
6221
- for (var i = from.line; i <= to.line; i++) regLineChange(cm, i, "text");
6222
- if (marker.atomic) reCheckSelection(cm.doc);
6223
- signalLater(cm, "markerAdded", cm, marker);
6224
- }
6225
- return marker;
6226
- }
6227
-
6228
- // SHARED TEXTMARKERS
6229
-
6230
- // A shared marker spans multiple linked documents. It is
6231
- // implemented as a meta-marker-object controlling multiple normal
6232
- // markers.
6233
- var SharedTextMarker = CodeMirror.SharedTextMarker = function(markers, primary) {
6234
- this.markers = markers;
6235
- this.primary = primary;
6236
- for (var i = 0; i < markers.length; ++i)
6237
- markers[i].parent = this;
6238
- };
6239
- eventMixin(SharedTextMarker);
6240
-
6241
- SharedTextMarker.prototype.clear = function() {
6242
- if (this.explicitlyCleared) return;
6243
- this.explicitlyCleared = true;
6244
- for (var i = 0; i < this.markers.length; ++i)
6245
- this.markers[i].clear();
6246
- signalLater(this, "clear");
6247
- };
6248
- SharedTextMarker.prototype.find = function(side, lineObj) {
6249
- return this.primary.find(side, lineObj);
6250
- };
6251
-
6252
- function markTextShared(doc, from, to, options, type) {
6253
- options = copyObj(options);
6254
- options.shared = false;
6255
- var markers = [markText(doc, from, to, options, type)], primary = markers[0];
6256
- var widget = options.widgetNode;
6257
- linkedDocs(doc, function(doc) {
6258
- if (widget) options.widgetNode = widget.cloneNode(true);
6259
- markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type));
6260
- for (var i = 0; i < doc.linked.length; ++i)
6261
- if (doc.linked[i].isParent) return;
6262
- primary = lst(markers);
6263
- });
6264
- return new SharedTextMarker(markers, primary);
6265
- }
6266
-
6267
- function findSharedMarkers(doc) {
6268
- return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())),
6269
- function(m) { return m.parent; });
6270
- }
6271
-
6272
- function copySharedMarkers(doc, markers) {
6273
- for (var i = 0; i < markers.length; i++) {
6274
- var marker = markers[i], pos = marker.find();
6275
- var mFrom = doc.clipPos(pos.from), mTo = doc.clipPos(pos.to);
6276
- if (cmp(mFrom, mTo)) {
6277
- var subMark = markText(doc, mFrom, mTo, marker.primary, marker.primary.type);
6278
- marker.markers.push(subMark);
6279
- subMark.parent = marker;
6280
- }
6281
- }
6282
- }
6283
-
6284
- function detachSharedMarkers(markers) {
6285
- for (var i = 0; i < markers.length; i++) {
6286
- var marker = markers[i], linked = [marker.primary.doc];;
6287
- linkedDocs(marker.primary.doc, function(d) { linked.push(d); });
6288
- for (var j = 0; j < marker.markers.length; j++) {
6289
- var subMarker = marker.markers[j];
6290
- if (indexOf(linked, subMarker.doc) == -1) {
6291
- subMarker.parent = null;
6292
- marker.markers.splice(j--, 1);
6293
- }
6294
- }
6295
- }
6296
- }
6297
-
6298
- // TEXTMARKER SPANS
6299
-
6300
- function MarkedSpan(marker, from, to) {
6301
- this.marker = marker;
6302
- this.from = from; this.to = to;
6303
- }
6304
-
6305
- // Search an array of spans for a span matching the given marker.
6306
- function getMarkedSpanFor(spans, marker) {
6307
- if (spans) for (var i = 0; i < spans.length; ++i) {
6308
- var span = spans[i];
6309
- if (span.marker == marker) return span;
6310
- }
6311
- }
6312
- // Remove a span from an array, returning undefined if no spans are
6313
- // left (we don't store arrays for lines without spans).
6314
- function removeMarkedSpan(spans, span) {
6315
- for (var r, i = 0; i < spans.length; ++i)
6316
- if (spans[i] != span) (r || (r = [])).push(spans[i]);
6317
- return r;
6318
- }
6319
- // Add a span to a line.
6320
- function addMarkedSpan(line, span) {
6321
- line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span];
6322
- span.marker.attachLine(line);
6323
- }
6324
-
6325
- // Used for the algorithm that adjusts markers for a change in the
6326
- // document. These functions cut an array of spans at a given
6327
- // character position, returning an array of remaining chunks (or
6328
- // undefined if nothing remains).
6329
- function markedSpansBefore(old, startCh, isInsert) {
6330
- if (old) for (var i = 0, nw; i < old.length; ++i) {
6331
- var span = old[i], marker = span.marker;
6332
- var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh);
6333
- if (startsBefore || span.from == startCh && marker.type == "bookmark" && (!isInsert || !span.marker.insertLeft)) {
6334
- var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh);
6335
- (nw || (nw = [])).push(new MarkedSpan(marker, span.from, endsAfter ? null : span.to));
6336
- }
6337
- }
6338
- return nw;
6339
- }
6340
- function markedSpansAfter(old, endCh, isInsert) {
6341
- if (old) for (var i = 0, nw; i < old.length; ++i) {
6342
- var span = old[i], marker = span.marker;
6343
- var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh);
6344
- if (endsAfter || span.from == endCh && marker.type == "bookmark" && (!isInsert || span.marker.insertLeft)) {
6345
- var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh);
6346
- (nw || (nw = [])).push(new MarkedSpan(marker, startsBefore ? null : span.from - endCh,
6347
- span.to == null ? null : span.to - endCh));
6348
- }
6349
- }
6350
- return nw;
6351
- }
6352
-
6353
- // Given a change object, compute the new set of marker spans that
6354
- // cover the line in which the change took place. Removes spans
6355
- // entirely within the change, reconnects spans belonging to the
6356
- // same marker that appear on both sides of the change, and cuts off
6357
- // spans partially within the change. Returns an array of span
6358
- // arrays with one element for each line in (after) the change.
6359
- function stretchSpansOverChange(doc, change) {
6360
- if (change.full) return null;
6361
- var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans;
6362
- var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans;
6363
- if (!oldFirst && !oldLast) return null;
6364
-
6365
- var startCh = change.from.ch, endCh = change.to.ch, isInsert = cmp(change.from, change.to) == 0;
6366
- // Get the spans that 'stick out' on both sides
6367
- var first = markedSpansBefore(oldFirst, startCh, isInsert);
6368
- var last = markedSpansAfter(oldLast, endCh, isInsert);
6369
-
6370
- // Next, merge those two ends
6371
- var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0);
6372
- if (first) {
6373
- // Fix up .to properties of first
6374
- for (var i = 0; i < first.length; ++i) {
6375
- var span = first[i];
6376
- if (span.to == null) {
6377
- var found = getMarkedSpanFor(last, span.marker);
6378
- if (!found) span.to = startCh;
6379
- else if (sameLine) span.to = found.to == null ? null : found.to + offset;
6380
- }
6381
- }
6382
- }
6383
- if (last) {
6384
- // Fix up .from in last (or move them into first in case of sameLine)
6385
- for (var i = 0; i < last.length; ++i) {
6386
- var span = last[i];
6387
- if (span.to != null) span.to += offset;
6388
- if (span.from == null) {
6389
- var found = getMarkedSpanFor(first, span.marker);
6390
- if (!found) {
6391
- span.from = offset;
6392
- if (sameLine) (first || (first = [])).push(span);
6393
- }
6394
- } else {
6395
- span.from += offset;
6396
- if (sameLine) (first || (first = [])).push(span);
6397
- }
6398
- }
6399
- }
6400
- // Make sure we didn't create any zero-length spans
6401
- if (first) first = clearEmptySpans(first);
6402
- if (last && last != first) last = clearEmptySpans(last);
6403
-
6404
- var newMarkers = [first];
6405
- if (!sameLine) {
6406
- // Fill gap with whole-line-spans
6407
- var gap = change.text.length - 2, gapMarkers;
6408
- if (gap > 0 && first)
6409
- for (var i = 0; i < first.length; ++i)
6410
- if (first[i].to == null)
6411
- (gapMarkers || (gapMarkers = [])).push(new MarkedSpan(first[i].marker, null, null));
6412
- for (var i = 0; i < gap; ++i)
6413
- newMarkers.push(gapMarkers);
6414
- newMarkers.push(last);
6415
- }
6416
- return newMarkers;
6417
- }
6418
-
6419
- // Remove spans that are empty and don't have a clearWhenEmpty
6420
- // option of false.
6421
- function clearEmptySpans(spans) {
6422
- for (var i = 0; i < spans.length; ++i) {
6423
- var span = spans[i];
6424
- if (span.from != null && span.from == span.to && span.marker.clearWhenEmpty !== false)
6425
- spans.splice(i--, 1);
6426
- }
6427
- if (!spans.length) return null;
6428
- return spans;
6429
- }
6430
-
6431
- // Used for un/re-doing changes from the history. Combines the
6432
- // result of computing the existing spans with the set of spans that
6433
- // existed in the history (so that deleting around a span and then
6434
- // undoing brings back the span).
6435
- function mergeOldSpans(doc, change) {
6436
- var old = getOldSpans(doc, change);
6437
- var stretched = stretchSpansOverChange(doc, change);
6438
- if (!old) return stretched;
6439
- if (!stretched) return old;
6440
-
6441
- for (var i = 0; i < old.length; ++i) {
6442
- var oldCur = old[i], stretchCur = stretched[i];
6443
- if (oldCur && stretchCur) {
6444
- spans: for (var j = 0; j < stretchCur.length; ++j) {
6445
- var span = stretchCur[j];
6446
- for (var k = 0; k < oldCur.length; ++k)
6447
- if (oldCur[k].marker == span.marker) continue spans;
6448
- oldCur.push(span);
6449
- }
6450
- } else if (stretchCur) {
6451
- old[i] = stretchCur;
6452
- }
6453
- }
6454
- return old;
6455
- }
6456
-
6457
- // Used to 'clip' out readOnly ranges when making a change.
6458
- function removeReadOnlyRanges(doc, from, to) {
6459
- var markers = null;
6460
- doc.iter(from.line, to.line + 1, function(line) {
6461
- if (line.markedSpans) for (var i = 0; i < line.markedSpans.length; ++i) {
6462
- var mark = line.markedSpans[i].marker;
6463
- if (mark.readOnly && (!markers || indexOf(markers, mark) == -1))
6464
- (markers || (markers = [])).push(mark);
6465
- }
6466
- });
6467
- if (!markers) return null;
6468
- var parts = [{from: from, to: to}];
6469
- for (var i = 0; i < markers.length; ++i) {
6470
- var mk = markers[i], m = mk.find(0);
6471
- for (var j = 0; j < parts.length; ++j) {
6472
- var p = parts[j];
6473
- if (cmp(p.to, m.from) < 0 || cmp(p.from, m.to) > 0) continue;
6474
- var newParts = [j, 1], dfrom = cmp(p.from, m.from), dto = cmp(p.to, m.to);
6475
- if (dfrom < 0 || !mk.inclusiveLeft && !dfrom)
6476
- newParts.push({from: p.from, to: m.from});
6477
- if (dto > 0 || !mk.inclusiveRight && !dto)
6478
- newParts.push({from: m.to, to: p.to});
6479
- parts.splice.apply(parts, newParts);
6480
- j += newParts.length - 1;
6481
- }
6482
- }
6483
- return parts;
6484
- }
6485
-
6486
- // Connect or disconnect spans from a line.
6487
- function detachMarkedSpans(line) {
6488
- var spans = line.markedSpans;
6489
- if (!spans) return;
6490
- for (var i = 0; i < spans.length; ++i)
6491
- spans[i].marker.detachLine(line);
6492
- line.markedSpans = null;
6493
- }
6494
- function attachMarkedSpans(line, spans) {
6495
- if (!spans) return;
6496
- for (var i = 0; i < spans.length; ++i)
6497
- spans[i].marker.attachLine(line);
6498
- line.markedSpans = spans;
6499
- }
6500
-
6501
- // Helpers used when computing which overlapping collapsed span
6502
- // counts as the larger one.
6503
- function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0; }
6504
- function extraRight(marker) { return marker.inclusiveRight ? 1 : 0; }
6505
-
6506
- // Returns a number indicating which of two overlapping collapsed
6507
- // spans is larger (and thus includes the other). Falls back to
6508
- // comparing ids when the spans cover exactly the same range.
6509
- function compareCollapsedMarkers(a, b) {
6510
- var lenDiff = a.lines.length - b.lines.length;
6511
- if (lenDiff != 0) return lenDiff;
6512
- var aPos = a.find(), bPos = b.find();
6513
- var fromCmp = cmp(aPos.from, bPos.from) || extraLeft(a) - extraLeft(b);
6514
- if (fromCmp) return -fromCmp;
6515
- var toCmp = cmp(aPos.to, bPos.to) || extraRight(a) - extraRight(b);
6516
- if (toCmp) return toCmp;
6517
- return b.id - a.id;
6518
- }
6519
-
6520
- // Find out whether a line ends or starts in a collapsed span. If
6521
- // so, return the marker for that span.
6522
- function collapsedSpanAtSide(line, start) {
6523
- var sps = sawCollapsedSpans && line.markedSpans, found;
6524
- if (sps) for (var sp, i = 0; i < sps.length; ++i) {
6525
- sp = sps[i];
6526
- if (sp.marker.collapsed && (start ? sp.from : sp.to) == null &&
6527
- (!found || compareCollapsedMarkers(found, sp.marker) < 0))
6528
- found = sp.marker;
6529
- }
6530
- return found;
6531
- }
6532
- function collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, true); }
6533
- function collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, false); }
6534
-
6535
- // Test whether there exists a collapsed span that partially
6536
- // overlaps (covers the start or end, but not both) of a new span.
6537
- // Such overlap is not allowed.
6538
- function conflictingCollapsedRange(doc, lineNo, from, to, marker) {
6539
- var line = getLine(doc, lineNo);
6540
- var sps = sawCollapsedSpans && line.markedSpans;
6541
- if (sps) for (var i = 0; i < sps.length; ++i) {
6542
- var sp = sps[i];
6543
- if (!sp.marker.collapsed) continue;
6544
- var found = sp.marker.find(0);
6545
- var fromCmp = cmp(found.from, from) || extraLeft(sp.marker) - extraLeft(marker);
6546
- var toCmp = cmp(found.to, to) || extraRight(sp.marker) - extraRight(marker);
6547
- if (fromCmp >= 0 && toCmp <= 0 || fromCmp <= 0 && toCmp >= 0) continue;
6548
- if (fromCmp <= 0 && (cmp(found.to, from) > 0 || (sp.marker.inclusiveRight && marker.inclusiveLeft)) ||
6549
- fromCmp >= 0 && (cmp(found.from, to) < 0 || (sp.marker.inclusiveLeft && marker.inclusiveRight)))
6550
- return true;
6551
- }
6552
- }
6553
-
6554
- // A visual line is a line as drawn on the screen. Folding, for
6555
- // example, can cause multiple logical lines to appear on the same
6556
- // visual line. This finds the start of the visual line that the
6557
- // given line is part of (usually that is the line itself).
6558
- function visualLine(line) {
6559
- var merged;
6560
- while (merged = collapsedSpanAtStart(line))
6561
- line = merged.find(-1, true).line;
6562
- return line;
6563
- }
6564
-
6565
- // Returns an array of logical lines that continue the visual line
6566
- // started by the argument, or undefined if there are no such lines.
6567
- function visualLineContinued(line) {
6568
- var merged, lines;
6569
- while (merged = collapsedSpanAtEnd(line)) {
6570
- line = merged.find(1, true).line;
6571
- (lines || (lines = [])).push(line);
6572
- }
6573
- return lines;
6574
- }
6575
-
6576
- // Get the line number of the start of the visual line that the
6577
- // given line number is part of.
6578
- function visualLineNo(doc, lineN) {
6579
- var line = getLine(doc, lineN), vis = visualLine(line);
6580
- if (line == vis) return lineN;
6581
- return lineNo(vis);
6582
- }
6583
- // Get the line number of the start of the next visual line after
6584
- // the given line.
6585
- function visualLineEndNo(doc, lineN) {
6586
- if (lineN > doc.lastLine()) return lineN;
6587
- var line = getLine(doc, lineN), merged;
6588
- if (!lineIsHidden(doc, line)) return lineN;
6589
- while (merged = collapsedSpanAtEnd(line))
6590
- line = merged.find(1, true).line;
6591
- return lineNo(line) + 1;
6592
- }
6593
-
6594
- // Compute whether a line is hidden. Lines count as hidden when they
6595
- // are part of a visual line that starts with another line, or when
6596
- // they are entirely covered by collapsed, non-widget span.
6597
- function lineIsHidden(doc, line) {
6598
- var sps = sawCollapsedSpans && line.markedSpans;
6599
- if (sps) for (var sp, i = 0; i < sps.length; ++i) {
6600
- sp = sps[i];
6601
- if (!sp.marker.collapsed) continue;
6602
- if (sp.from == null) return true;
6603
- if (sp.marker.widgetNode) continue;
6604
- if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp))
6605
- return true;
6606
- }
6607
- }
6608
- function lineIsHiddenInner(doc, line, span) {
6609
- if (span.to == null) {
6610
- var end = span.marker.find(1, true);
6611
- return lineIsHiddenInner(doc, end.line, getMarkedSpanFor(end.line.markedSpans, span.marker));
6612
- }
6613
- if (span.marker.inclusiveRight && span.to == line.text.length)
6614
- return true;
6615
- for (var sp, i = 0; i < line.markedSpans.length; ++i) {
6616
- sp = line.markedSpans[i];
6617
- if (sp.marker.collapsed && !sp.marker.widgetNode && sp.from == span.to &&
6618
- (sp.to == null || sp.to != span.from) &&
6619
- (sp.marker.inclusiveLeft || span.marker.inclusiveRight) &&
6620
- lineIsHiddenInner(doc, line, sp)) return true;
6621
- }
6622
- }
6623
-
6624
- // LINE WIDGETS
6625
-
6626
- // Line widgets are block elements displayed above or below a line.
6627
-
6628
- var LineWidget = CodeMirror.LineWidget = function(doc, node, options) {
6629
- if (options) for (var opt in options) if (options.hasOwnProperty(opt))
6630
- this[opt] = options[opt];
6631
- this.doc = doc;
6632
- this.node = node;
6633
- };
6634
- eventMixin(LineWidget);
6635
-
6636
- function adjustScrollWhenAboveVisible(cm, line, diff) {
6637
- if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop))
6638
- addToScrollPos(cm, null, diff);
6639
- }
6640
-
6641
- LineWidget.prototype.clear = function() {
6642
- var cm = this.doc.cm, ws = this.line.widgets, line = this.line, no = lineNo(line);
6643
- if (no == null || !ws) return;
6644
- for (var i = 0; i < ws.length; ++i) if (ws[i] == this) ws.splice(i--, 1);
6645
- if (!ws.length) line.widgets = null;
6646
- var height = widgetHeight(this);
6647
- updateLineHeight(line, Math.max(0, line.height - height));
6648
- if (cm) runInOp(cm, function() {
6649
- adjustScrollWhenAboveVisible(cm, line, -height);
6650
- regLineChange(cm, no, "widget");
6651
- });
6652
- };
6653
- LineWidget.prototype.changed = function() {
6654
- var oldH = this.height, cm = this.doc.cm, line = this.line;
6655
- this.height = null;
6656
- var diff = widgetHeight(this) - oldH;
6657
- if (!diff) return;
6658
- updateLineHeight(line, line.height + diff);
6659
- if (cm) runInOp(cm, function() {
6660
- cm.curOp.forceUpdate = true;
6661
- adjustScrollWhenAboveVisible(cm, line, diff);
6662
- });
6663
- };
6664
-
6665
- function widgetHeight(widget) {
6666
- if (widget.height != null) return widget.height;
6667
- var cm = widget.doc.cm;
6668
- if (!cm) return 0;
6669
- if (!contains(document.body, widget.node)) {
6670
- var parentStyle = "position: relative;";
6671
- if (widget.coverGutter)
6672
- parentStyle += "margin-left: -" + cm.display.gutters.offsetWidth + "px;";
6673
- if (widget.noHScroll)
6674
- parentStyle += "width: " + cm.display.wrapper.clientWidth + "px;";
6675
- removeChildrenAndAdd(cm.display.measure, elt("div", [widget.node], null, parentStyle));
6676
- }
6677
- return widget.height = widget.node.parentNode.offsetHeight;
6678
- }
6679
-
6680
- function addLineWidget(doc, handle, node, options) {
6681
- var widget = new LineWidget(doc, node, options);
6682
- var cm = doc.cm;
6683
- if (cm && widget.noHScroll) cm.display.alignWidgets = true;
6684
- changeLine(doc, handle, "widget", function(line) {
6685
- var widgets = line.widgets || (line.widgets = []);
6686
- if (widget.insertAt == null) widgets.push(widget);
6687
- else widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget);
6688
- widget.line = line;
6689
- if (cm && !lineIsHidden(doc, line)) {
6690
- var aboveVisible = heightAtLine(line) < doc.scrollTop;
6691
- updateLineHeight(line, line.height + widgetHeight(widget));
6692
- if (aboveVisible) addToScrollPos(cm, null, widget.height);
6693
- cm.curOp.forceUpdate = true;
6694
- }
6695
- return true;
6696
- });
6697
- return widget;
6698
- }
6699
-
6700
- // LINE DATA STRUCTURE
6701
-
6702
- // Line objects. These hold state related to a line, including
6703
- // highlighting info (the styles array).
6704
- var Line = CodeMirror.Line = function(text, markedSpans, estimateHeight) {
6705
- this.text = text;
6706
- attachMarkedSpans(this, markedSpans);
6707
- this.height = estimateHeight ? estimateHeight(this) : 1;
6708
- };
6709
- eventMixin(Line);
6710
- Line.prototype.lineNo = function() { return lineNo(this); };
6711
-
6712
- // Change the content (text, markers) of a line. Automatically
6713
- // invalidates cached information and tries to re-estimate the
6714
- // line's height.
6715
- function updateLine(line, text, markedSpans, estimateHeight) {
6716
- line.text = text;
6717
- if (line.stateAfter) line.stateAfter = null;
6718
- if (line.styles) line.styles = null;
6719
- if (line.order != null) line.order = null;
6720
- detachMarkedSpans(line);
6721
- attachMarkedSpans(line, markedSpans);
6722
- var estHeight = estimateHeight ? estimateHeight(line) : 1;
6723
- if (estHeight != line.height) updateLineHeight(line, estHeight);
6724
- }
6725
-
6726
- // Detach a line from the document tree and its markers.
6727
- function cleanUpLine(line) {
6728
- line.parent = null;
6729
- detachMarkedSpans(line);
6730
- }
6731
-
6732
- function extractLineClasses(type, output) {
6733
- if (type) for (;;) {
6734
- var lineClass = type.match(/(?:^|\s+)line-(background-)?(\S+)/);
6735
- if (!lineClass) break;
6736
- type = type.slice(0, lineClass.index) + type.slice(lineClass.index + lineClass[0].length);
6737
- var prop = lineClass[1] ? "bgClass" : "textClass";
6738
- if (output[prop] == null)
6739
- output[prop] = lineClass[2];
6740
- else if (!(new RegExp("(?:^|\s)" + lineClass[2] + "(?:$|\s)")).test(output[prop]))
6741
- output[prop] += " " + lineClass[2];
6742
- }
6743
- return type;
6744
- }
6745
-
6746
- function callBlankLine(mode, state) {
6747
- if (mode.blankLine) return mode.blankLine(state);
6748
- if (!mode.innerMode) return;
6749
- var inner = CodeMirror.innerMode(mode, state);
6750
- if (inner.mode.blankLine) return inner.mode.blankLine(inner.state);
6751
- }
6752
-
6753
- function readToken(mode, stream, state, inner) {
6754
- for (var i = 0; i < 10; i++) {
6755
- if (inner) inner[0] = CodeMirror.innerMode(mode, state).mode;
6756
- var style = mode.token(stream, state);
6757
- if (stream.pos > stream.start) return style;
6758
- }
6759
- throw new Error("Mode " + mode.name + " failed to advance stream.");
6760
- }
6761
-
6762
- // Utility for getTokenAt and getLineTokens
6763
- function takeToken(cm, pos, precise, asArray) {
6764
- function getObj(copy) {
6765
- return {start: stream.start, end: stream.pos,
6766
- string: stream.current(),
6767
- type: style || null,
6768
- state: copy ? copyState(doc.mode, state) : state};
6769
- }
6770
-
6771
- var doc = cm.doc, mode = doc.mode, style;
6772
- pos = clipPos(doc, pos);
6773
- var line = getLine(doc, pos.line), state = getStateBefore(cm, pos.line, precise);
6774
- var stream = new StringStream(line.text, cm.options.tabSize), tokens;
6775
- if (asArray) tokens = [];
6776
- while ((asArray || stream.pos < pos.ch) && !stream.eol()) {
6777
- stream.start = stream.pos;
6778
- style = readToken(mode, stream, state);
6779
- if (asArray) tokens.push(getObj(true));
6780
- }
6781
- return asArray ? tokens : getObj();
6782
- }
6783
-
6784
- // Run the given mode's parser over a line, calling f for each token.
6785
- function runMode(cm, text, mode, state, f, lineClasses, forceToEnd) {
6786
- var flattenSpans = mode.flattenSpans;
6787
- if (flattenSpans == null) flattenSpans = cm.options.flattenSpans;
6788
- var curStart = 0, curStyle = null;
6789
- var stream = new StringStream(text, cm.options.tabSize), style;
6790
- var inner = cm.options.addModeClass && [null];
6791
- if (text == "") extractLineClasses(callBlankLine(mode, state), lineClasses);
6792
- while (!stream.eol()) {
6793
- if (stream.pos > cm.options.maxHighlightLength) {
6794
- flattenSpans = false;
6795
- if (forceToEnd) processLine(cm, text, state, stream.pos);
6796
- stream.pos = text.length;
6797
- style = null;
6798
- } else {
6799
- style = extractLineClasses(readToken(mode, stream, state, inner), lineClasses);
6800
- }
6801
- if (inner) {
6802
- var mName = inner[0].name;
6803
- if (mName) style = "m-" + (style ? mName + " " + style : mName);
6804
- }
6805
- if (!flattenSpans || curStyle != style) {
6806
- while (curStart < stream.start) {
6807
- curStart = Math.min(stream.start, curStart + 50000);
6808
- f(curStart, curStyle);
6809
- }
6810
- curStyle = style;
6811
- }
6812
- stream.start = stream.pos;
6813
- }
6814
- while (curStart < stream.pos) {
6815
- // Webkit seems to refuse to render text nodes longer than 57444 characters
6816
- var pos = Math.min(stream.pos, curStart + 50000);
6817
- f(pos, curStyle);
6818
- curStart = pos;
6819
- }
6820
- }
6821
-
6822
- // Compute a style array (an array starting with a mode generation
6823
- // -- for invalidation -- followed by pairs of end positions and
6824
- // style strings), which is used to highlight the tokens on the
6825
- // line.
6826
- function highlightLine(cm, line, state, forceToEnd) {
6827
- // A styles array always starts with a number identifying the
6828
- // mode/overlays that it is based on (for easy invalidation).
6829
- var st = [cm.state.modeGen], lineClasses = {};
6830
- // Compute the base array of styles
6831
- runMode(cm, line.text, cm.doc.mode, state, function(end, style) {
6832
- st.push(end, style);
6833
- }, lineClasses, forceToEnd);
6834
-
6835
- // Run overlays, adjust style array.
6836
- for (var o = 0; o < cm.state.overlays.length; ++o) {
6837
- var overlay = cm.state.overlays[o], i = 1, at = 0;
6838
- runMode(cm, line.text, overlay.mode, true, function(end, style) {
6839
- var start = i;
6840
- // Ensure there's a token end at the current position, and that i points at it
6841
- while (at < end) {
6842
- var i_end = st[i];
6843
- if (i_end > end)
6844
- st.splice(i, 1, end, st[i+1], i_end);
6845
- i += 2;
6846
- at = Math.min(end, i_end);
6847
- }
6848
- if (!style) return;
6849
- if (overlay.opaque) {
6850
- st.splice(start, i - start, end, "cm-overlay " + style);
6851
- i = start + 2;
6852
- } else {
6853
- for (; start < i; start += 2) {
6854
- var cur = st[start+1];
6855
- st[start+1] = (cur ? cur + " " : "") + "cm-overlay " + style;
6856
- }
6857
- }
6858
- }, lineClasses);
6859
- }
6860
-
6861
- return {styles: st, classes: lineClasses.bgClass || lineClasses.textClass ? lineClasses : null};
6862
- }
6863
-
6864
- function getLineStyles(cm, line, updateFrontier) {
6865
- if (!line.styles || line.styles[0] != cm.state.modeGen) {
6866
- var state = getStateBefore(cm, lineNo(line));
6867
- var result = highlightLine(cm, line, line.text.length > cm.options.maxHighlightLength ? copyState(cm.doc.mode, state) : state);
6868
- line.stateAfter = state;
6869
- line.styles = result.styles;
6870
- if (result.classes) line.styleClasses = result.classes;
6871
- else if (line.styleClasses) line.styleClasses = null;
6872
- if (updateFrontier === cm.doc.frontier) cm.doc.frontier++;
6873
- }
6874
- return line.styles;
6875
- }
6876
-
6877
- // Lightweight form of highlight -- proceed over this line and
6878
- // update state, but don't save a style array. Used for lines that
6879
- // aren't currently visible.
6880
- function processLine(cm, text, state, startAt) {
6881
- var mode = cm.doc.mode;
6882
- var stream = new StringStream(text, cm.options.tabSize);
6883
- stream.start = stream.pos = startAt || 0;
6884
- if (text == "") callBlankLine(mode, state);
6885
- while (!stream.eol()) {
6886
- readToken(mode, stream, state);
6887
- stream.start = stream.pos;
6888
- }
6889
- }
6890
-
6891
- // Convert a style as returned by a mode (either null, or a string
6892
- // containing one or more styles) to a CSS style. This is cached,
6893
- // and also looks for line-wide styles.
6894
- var styleToClassCache = {}, styleToClassCacheWithMode = {};
6895
- function interpretTokenStyle(style, options) {
6896
- if (!style || /^\s*$/.test(style)) return null;
6897
- var cache = options.addModeClass ? styleToClassCacheWithMode : styleToClassCache;
6898
- return cache[style] ||
6899
- (cache[style] = style.replace(/\S+/g, "cm-$&"));
6900
- }
6901
-
6902
- // Render the DOM representation of the text of a line. Also builds
6903
- // up a 'line map', which points at the DOM nodes that represent
6904
- // specific stretches of text, and is used by the measuring code.
6905
- // The returned object contains the DOM node, this map, and
6906
- // information about line-wide styles that were set by the mode.
6907
- function buildLineContent(cm, lineView) {
6908
- // The padding-right forces the element to have a 'border', which
6909
- // is needed on Webkit to be able to get line-level bounding
6910
- // rectangles for it (in measureChar).
6911
- var content = elt("span", null, null, webkit ? "padding-right: .1px" : null);
6912
- var builder = {pre: elt("pre", [content], "CodeMirror-line"), content: content,
6913
- col: 0, pos: 0, cm: cm,
6914
- splitSpaces: (ie || webkit) && cm.getOption("lineWrapping")};
6915
- lineView.measure = {};
6916
-
6917
- // Iterate over the logical lines that make up this visual line.
6918
- for (var i = 0; i <= (lineView.rest ? lineView.rest.length : 0); i++) {
6919
- var line = i ? lineView.rest[i - 1] : lineView.line, order;
6920
- builder.pos = 0;
6921
- builder.addToken = buildToken;
6922
- // Optionally wire in some hacks into the token-rendering
6923
- // algorithm, to deal with browser quirks.
6924
- if (hasBadBidiRects(cm.display.measure) && (order = getOrder(line)))
6925
- builder.addToken = buildTokenBadBidi(builder.addToken, order);
6926
- builder.map = [];
6927
- var allowFrontierUpdate = lineView != cm.display.externalMeasured && lineNo(line);
6928
- insertLineContent(line, builder, getLineStyles(cm, line, allowFrontierUpdate));
6929
- if (line.styleClasses) {
6930
- if (line.styleClasses.bgClass)
6931
- builder.bgClass = joinClasses(line.styleClasses.bgClass, builder.bgClass || "");
6932
- if (line.styleClasses.textClass)
6933
- builder.textClass = joinClasses(line.styleClasses.textClass, builder.textClass || "");
6934
- }
6935
-
6936
- // Ensure at least a single node is present, for measuring.
6937
- if (builder.map.length == 0)
6938
- builder.map.push(0, 0, builder.content.appendChild(zeroWidthElement(cm.display.measure)));
6939
-
6940
- // Store the map and a cache object for the current logical line
6941
- if (i == 0) {
6942
- lineView.measure.map = builder.map;
6943
- lineView.measure.cache = {};
6944
- } else {
6945
- (lineView.measure.maps || (lineView.measure.maps = [])).push(builder.map);
6946
- (lineView.measure.caches || (lineView.measure.caches = [])).push({});
6947
- }
6948
- }
6949
-
6950
- // See issue #2901
6951
- if (webkit && /\bcm-tab\b/.test(builder.content.lastChild.className))
6952
- builder.content.className = "cm-tab-wrap-hack";
6953
-
6954
- signal(cm, "renderLine", cm, lineView.line, builder.pre);
6955
- if (builder.pre.className)
6956
- builder.textClass = joinClasses(builder.pre.className, builder.textClass || "");
6957
-
6958
- return builder;
6959
- }
6960
-
6961
- function defaultSpecialCharPlaceholder(ch) {
6962
- var token = elt("span", "\u2022", "cm-invalidchar");
6963
- token.title = "\\u" + ch.charCodeAt(0).toString(16);
6964
- token.setAttribute("aria-label", token.title);
6965
- return token;
6966
- }
6967
-
6968
- // Build up the DOM representation for a single token, and add it to
6969
- // the line map. Takes care to render special characters separately.
6970
- function buildToken(builder, text, style, startStyle, endStyle, title, css) {
6971
- if (!text) return;
6972
- var displayText = builder.splitSpaces ? text.replace(/ {3,}/g, splitSpaces) : text;
6973
- var special = builder.cm.state.specialChars, mustWrap = false;
6974
- if (!special.test(text)) {
6975
- builder.col += text.length;
6976
- var content = document.createTextNode(displayText);
6977
- builder.map.push(builder.pos, builder.pos + text.length, content);
6978
- if (ie && ie_version < 9) mustWrap = true;
6979
- builder.pos += text.length;
6980
- } else {
6981
- var content = document.createDocumentFragment(), pos = 0;
6982
- while (true) {
6983
- special.lastIndex = pos;
6984
- var m = special.exec(text);
6985
- var skipped = m ? m.index - pos : text.length - pos;
6986
- if (skipped) {
6987
- var txt = document.createTextNode(displayText.slice(pos, pos + skipped));
6988
- if (ie && ie_version < 9) content.appendChild(elt("span", [txt]));
6989
- else content.appendChild(txt);
6990
- builder.map.push(builder.pos, builder.pos + skipped, txt);
6991
- builder.col += skipped;
6992
- builder.pos += skipped;
6993
- }
6994
- if (!m) break;
6995
- pos += skipped + 1;
6996
- if (m[0] == "\t") {
6997
- var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize;
6998
- var txt = content.appendChild(elt("span", spaceStr(tabWidth), "cm-tab"));
6999
- txt.setAttribute("role", "presentation");
7000
- txt.setAttribute("cm-text", "\t");
7001
- builder.col += tabWidth;
7002
- } else if (m[0] == "\r" || m[0] == "\n") {
7003
- var txt = content.appendChild(elt("span", m[0] == "\r" ? "\u240d" : "\u2424", "cm-invalidchar"));
7004
- txt.setAttribute("cm-text", m[0]);
7005
- builder.col += 1;
7006
- } else {
7007
- var txt = builder.cm.options.specialCharPlaceholder(m[0]);
7008
- txt.setAttribute("cm-text", m[0]);
7009
- if (ie && ie_version < 9) content.appendChild(elt("span", [txt]));
7010
- else content.appendChild(txt);
7011
- builder.col += 1;
7012
- }
7013
- builder.map.push(builder.pos, builder.pos + 1, txt);
7014
- builder.pos++;
7015
- }
7016
- }
7017
- if (style || startStyle || endStyle || mustWrap || css) {
7018
- var fullStyle = style || "";
7019
- if (startStyle) fullStyle += startStyle;
7020
- if (endStyle) fullStyle += endStyle;
7021
- var token = elt("span", [content], fullStyle, css);
7022
- if (title) token.title = title;
7023
- return builder.content.appendChild(token);
7024
- }
7025
- builder.content.appendChild(content);
7026
- }
7027
-
7028
- function splitSpaces(old) {
7029
- var out = " ";
7030
- for (var i = 0; i < old.length - 2; ++i) out += i % 2 ? " " : "\u00a0";
7031
- out += " ";
7032
- return out;
7033
- }
7034
-
7035
- // Work around nonsense dimensions being reported for stretches of
7036
- // right-to-left text.
7037
- function buildTokenBadBidi(inner, order) {
7038
- return function(builder, text, style, startStyle, endStyle, title, css) {
7039
- style = style ? style + " cm-force-border" : "cm-force-border";
7040
- var start = builder.pos, end = start + text.length;
7041
- for (;;) {
7042
- // Find the part that overlaps with the start of this text
7043
- for (var i = 0; i < order.length; i++) {
7044
- var part = order[i];
7045
- if (part.to > start && part.from <= start) break;
7046
- }
7047
- if (part.to >= end) return inner(builder, text, style, startStyle, endStyle, title, css);
7048
- inner(builder, text.slice(0, part.to - start), style, startStyle, null, title, css);
7049
- startStyle = null;
7050
- text = text.slice(part.to - start);
7051
- start = part.to;
7052
- }
7053
- };
7054
- }
7055
-
7056
- function buildCollapsedSpan(builder, size, marker, ignoreWidget) {
7057
- var widget = !ignoreWidget && marker.widgetNode;
7058
- if (widget) builder.map.push(builder.pos, builder.pos + size, widget);
7059
- if (!ignoreWidget && builder.cm.display.input.needsContentAttribute) {
7060
- if (!widget)
7061
- widget = builder.content.appendChild(document.createElement("span"));
7062
- widget.setAttribute("cm-marker", marker.id);
7063
- }
7064
- if (widget) {
7065
- builder.cm.display.input.setUneditable(widget);
7066
- builder.content.appendChild(widget);
7067
- }
7068
- builder.pos += size;
7069
- }
7070
-
7071
- // Outputs a number of spans to make up a line, taking highlighting
7072
- // and marked text into account.
7073
- function insertLineContent(line, builder, styles) {
7074
- var spans = line.markedSpans, allText = line.text, at = 0;
7075
- if (!spans) {
7076
- for (var i = 1; i < styles.length; i+=2)
7077
- builder.addToken(builder, allText.slice(at, at = styles[i]), interpretTokenStyle(styles[i+1], builder.cm.options));
7078
- return;
7079
- }
7080
-
7081
- var len = allText.length, pos = 0, i = 1, text = "", style, css;
7082
- var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed;
7083
- for (;;) {
7084
- if (nextChange == pos) { // Update current marker set
7085
- spanStyle = spanEndStyle = spanStartStyle = title = css = "";
7086
- collapsed = null; nextChange = Infinity;
7087
- var foundBookmarks = [];
7088
- for (var j = 0; j < spans.length; ++j) {
7089
- var sp = spans[j], m = sp.marker;
7090
- if (m.type == "bookmark" && sp.from == pos && m.widgetNode) {
7091
- foundBookmarks.push(m);
7092
- } else if (sp.from <= pos && (sp.to == null || sp.to > pos || m.collapsed && sp.to == pos && sp.from == pos)) {
7093
- if (sp.to != null && sp.to != pos && nextChange > sp.to) {
7094
- nextChange = sp.to;
7095
- spanEndStyle = "";
7096
- }
7097
- if (m.className) spanStyle += " " + m.className;
7098
- if (m.css) css = (css ? css + ";" : "") + m.css;
7099
- if (m.startStyle && sp.from == pos) spanStartStyle += " " + m.startStyle;
7100
- if (m.endStyle && sp.to == nextChange) spanEndStyle += " " + m.endStyle;
7101
- if (m.title && !title) title = m.title;
7102
- if (m.collapsed && (!collapsed || compareCollapsedMarkers(collapsed.marker, m) < 0))
7103
- collapsed = sp;
7104
- } else if (sp.from > pos && nextChange > sp.from) {
7105
- nextChange = sp.from;
7106
- }
7107
- }
7108
- if (collapsed && (collapsed.from || 0) == pos) {
7109
- buildCollapsedSpan(builder, (collapsed.to == null ? len + 1 : collapsed.to) - pos,
7110
- collapsed.marker, collapsed.from == null);
7111
- if (collapsed.to == null) return;
7112
- if (collapsed.to == pos) collapsed = false;
7113
- }
7114
- if (!collapsed && foundBookmarks.length) for (var j = 0; j < foundBookmarks.length; ++j)
7115
- buildCollapsedSpan(builder, 0, foundBookmarks[j]);
7116
- }
7117
- if (pos >= len) break;
7118
-
7119
- var upto = Math.min(len, nextChange);
7120
- while (true) {
7121
- if (text) {
7122
- var end = pos + text.length;
7123
- if (!collapsed) {
7124
- var tokenText = end > upto ? text.slice(0, upto - pos) : text;
7125
- builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle,
7126
- spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : "", title, css);
7127
- }
7128
- if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;}
7129
- pos = end;
7130
- spanStartStyle = "";
7131
- }
7132
- text = allText.slice(at, at = styles[i++]);
7133
- style = interpretTokenStyle(styles[i++], builder.cm.options);
7134
- }
7135
- }
7136
- }
7137
-
7138
- // DOCUMENT DATA STRUCTURE
7139
-
7140
- // By default, updates that start and end at the beginning of a line
7141
- // are treated specially, in order to make the association of line
7142
- // widgets and marker elements with the text behave more intuitive.
7143
- function isWholeLineUpdate(doc, change) {
7144
- return change.from.ch == 0 && change.to.ch == 0 && lst(change.text) == "" &&
7145
- (!doc.cm || doc.cm.options.wholeLineUpdateBefore);
7146
- }
7147
-
7148
- // Perform a change on the document data structure.
7149
- function updateDoc(doc, change, markedSpans, estimateHeight) {
7150
- function spansFor(n) {return markedSpans ? markedSpans[n] : null;}
7151
- function update(line, text, spans) {
7152
- updateLine(line, text, spans, estimateHeight);
7153
- signalLater(line, "change", line, change);
7154
- }
7155
- function linesFor(start, end) {
7156
- for (var i = start, result = []; i < end; ++i)
7157
- result.push(new Line(text[i], spansFor(i), estimateHeight));
7158
- return result;
7159
- }
7160
-
7161
- var from = change.from, to = change.to, text = change.text;
7162
- var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line);
7163
- var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line;
7164
-
7165
- // Adjust the line structure
7166
- if (change.full) {
7167
- doc.insert(0, linesFor(0, text.length));
7168
- doc.remove(text.length, doc.size - text.length);
7169
- } else if (isWholeLineUpdate(doc, change)) {
7170
- // This is a whole-line replace. Treated specially to make
7171
- // sure line objects move the way they are supposed to.
7172
- var added = linesFor(0, text.length - 1);
7173
- update(lastLine, lastLine.text, lastSpans);
7174
- if (nlines) doc.remove(from.line, nlines);
7175
- if (added.length) doc.insert(from.line, added);
7176
- } else if (firstLine == lastLine) {
7177
- if (text.length == 1) {
7178
- update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans);
7179
- } else {
7180
- var added = linesFor(1, text.length - 1);
7181
- added.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight));
7182
- update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
7183
- doc.insert(from.line + 1, added);
7184
- }
7185
- } else if (text.length == 1) {
7186
- update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0));
7187
- doc.remove(from.line + 1, nlines);
7188
- } else {
7189
- update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
7190
- update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans);
7191
- var added = linesFor(1, text.length - 1);
7192
- if (nlines > 1) doc.remove(from.line + 1, nlines - 1);
7193
- doc.insert(from.line + 1, added);
7194
- }
7195
-
7196
- signalLater(doc, "change", doc, change);
7197
- }
7198
-
7199
- // The document is represented as a BTree consisting of leaves, with
7200
- // chunk of lines in them, and branches, with up to ten leaves or
7201
- // other branch nodes below them. The top node is always a branch
7202
- // node, and is the document object itself (meaning it has
7203
- // additional methods and properties).
7204
- //
7205
- // All nodes have parent links. The tree is used both to go from
7206
- // line numbers to line objects, and to go from objects to numbers.
7207
- // It also indexes by height, and is used to convert between height
7208
- // and line object, and to find the total height of the document.
7209
- //
7210
- // See also http://marijnhaverbeke.nl/blog/codemirror-line-tree.html
7211
-
7212
- function LeafChunk(lines) {
7213
- this.lines = lines;
7214
- this.parent = null;
7215
- for (var i = 0, height = 0; i < lines.length; ++i) {
7216
- lines[i].parent = this;
7217
- height += lines[i].height;
7218
- }
7219
- this.height = height;
7220
- }
7221
-
7222
- LeafChunk.prototype = {
7223
- chunkSize: function() { return this.lines.length; },
7224
- // Remove the n lines at offset 'at'.
7225
- removeInner: function(at, n) {
7226
- for (var i = at, e = at + n; i < e; ++i) {
7227
- var line = this.lines[i];
7228
- this.height -= line.height;
7229
- cleanUpLine(line);
7230
- signalLater(line, "delete");
7231
- }
7232
- this.lines.splice(at, n);
7233
- },
7234
- // Helper used to collapse a small branch into a single leaf.
7235
- collapse: function(lines) {
7236
- lines.push.apply(lines, this.lines);
7237
- },
7238
- // Insert the given array of lines at offset 'at', count them as
7239
- // having the given height.
7240
- insertInner: function(at, lines, height) {
7241
- this.height += height;
7242
- this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at));
7243
- for (var i = 0; i < lines.length; ++i) lines[i].parent = this;
7244
- },
7245
- // Used to iterate over a part of the tree.
7246
- iterN: function(at, n, op) {
7247
- for (var e = at + n; at < e; ++at)
7248
- if (op(this.lines[at])) return true;
7249
- }
7250
- };
7251
-
7252
- function BranchChunk(children) {
7253
- this.children = children;
7254
- var size = 0, height = 0;
7255
- for (var i = 0; i < children.length; ++i) {
7256
- var ch = children[i];
7257
- size += ch.chunkSize(); height += ch.height;
7258
- ch.parent = this;
7259
- }
7260
- this.size = size;
7261
- this.height = height;
7262
- this.parent = null;
7263
- }
7264
-
7265
- BranchChunk.prototype = {
7266
- chunkSize: function() { return this.size; },
7267
- removeInner: function(at, n) {
7268
- this.size -= n;
7269
- for (var i = 0; i < this.children.length; ++i) {
7270
- var child = this.children[i], sz = child.chunkSize();
7271
- if (at < sz) {
7272
- var rm = Math.min(n, sz - at), oldHeight = child.height;
7273
- child.removeInner(at, rm);
7274
- this.height -= oldHeight - child.height;
7275
- if (sz == rm) { this.children.splice(i--, 1); child.parent = null; }
7276
- if ((n -= rm) == 0) break;
7277
- at = 0;
7278
- } else at -= sz;
7279
- }
7280
- // If the result is smaller than 25 lines, ensure that it is a
7281
- // single leaf node.
7282
- if (this.size - n < 25 &&
7283
- (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) {
7284
- var lines = [];
7285
- this.collapse(lines);
7286
- this.children = [new LeafChunk(lines)];
7287
- this.children[0].parent = this;
7288
- }
7289
- },
7290
- collapse: function(lines) {
7291
- for (var i = 0; i < this.children.length; ++i) this.children[i].collapse(lines);
7292
- },
7293
- insertInner: function(at, lines, height) {
7294
- this.size += lines.length;
7295
- this.height += height;
7296
- for (var i = 0; i < this.children.length; ++i) {
7297
- var child = this.children[i], sz = child.chunkSize();
7298
- if (at <= sz) {
7299
- child.insertInner(at, lines, height);
7300
- if (child.lines && child.lines.length > 50) {
7301
- while (child.lines.length > 50) {
7302
- var spilled = child.lines.splice(child.lines.length - 25, 25);
7303
- var newleaf = new LeafChunk(spilled);
7304
- child.height -= newleaf.height;
7305
- this.children.splice(i + 1, 0, newleaf);
7306
- newleaf.parent = this;
7307
- }
7308
- this.maybeSpill();
7309
- }
7310
- break;
7311
- }
7312
- at -= sz;
7313
- }
7314
- },
7315
- // When a node has grown, check whether it should be split.
7316
- maybeSpill: function() {
7317
- if (this.children.length <= 10) return;
7318
- var me = this;
7319
- do {
7320
- var spilled = me.children.splice(me.children.length - 5, 5);
7321
- var sibling = new BranchChunk(spilled);
7322
- if (!me.parent) { // Become the parent node
7323
- var copy = new BranchChunk(me.children);
7324
- copy.parent = me;
7325
- me.children = [copy, sibling];
7326
- me = copy;
7327
- } else {
7328
- me.size -= sibling.size;
7329
- me.height -= sibling.height;
7330
- var myIndex = indexOf(me.parent.children, me);
7331
- me.parent.children.splice(myIndex + 1, 0, sibling);
7332
- }
7333
- sibling.parent = me.parent;
7334
- } while (me.children.length > 10);
7335
- me.parent.maybeSpill();
7336
- },
7337
- iterN: function(at, n, op) {
7338
- for (var i = 0; i < this.children.length; ++i) {
7339
- var child = this.children[i], sz = child.chunkSize();
7340
- if (at < sz) {
7341
- var used = Math.min(n, sz - at);
7342
- if (child.iterN(at, used, op)) return true;
7343
- if ((n -= used) == 0) break;
7344
- at = 0;
7345
- } else at -= sz;
7346
- }
7347
- }
7348
- };
7349
-
7350
- var nextDocId = 0;
7351
- var Doc = CodeMirror.Doc = function(text, mode, firstLine, lineSep) {
7352
- if (!(this instanceof Doc)) return new Doc(text, mode, firstLine, lineSep);
7353
- if (firstLine == null) firstLine = 0;
7354
-
7355
- BranchChunk.call(this, [new LeafChunk([new Line("", null)])]);
7356
- this.first = firstLine;
7357
- this.scrollTop = this.scrollLeft = 0;
7358
- this.cantEdit = false;
7359
- this.cleanGeneration = 1;
7360
- this.frontier = firstLine;
7361
- var start = Pos(firstLine, 0);
7362
- this.sel = simpleSelection(start);
7363
- this.history = new History(null);
7364
- this.id = ++nextDocId;
7365
- this.modeOption = mode;
7366
- this.lineSep = lineSep;
7367
- this.extend = false;
7368
-
7369
- if (typeof text == "string") text = this.splitLines(text);
7370
- updateDoc(this, {from: start, to: start, text: text});
7371
- setSelection(this, simpleSelection(start), sel_dontScroll);
7372
- };
7373
-
7374
- Doc.prototype = createObj(BranchChunk.prototype, {
7375
- constructor: Doc,
7376
- // Iterate over the document. Supports two forms -- with only one
7377
- // argument, it calls that for each line in the document. With
7378
- // three, it iterates over the range given by the first two (with
7379
- // the second being non-inclusive).
7380
- iter: function(from, to, op) {
7381
- if (op) this.iterN(from - this.first, to - from, op);
7382
- else this.iterN(this.first, this.first + this.size, from);
7383
- },
7384
-
7385
- // Non-public interface for adding and removing lines.
7386
- insert: function(at, lines) {
7387
- var height = 0;
7388
- for (var i = 0; i < lines.length; ++i) height += lines[i].height;
7389
- this.insertInner(at - this.first, lines, height);
7390
- },
7391
- remove: function(at, n) { this.removeInner(at - this.first, n); },
7392
-
7393
- // From here, the methods are part of the public interface. Most
7394
- // are also available from CodeMirror (editor) instances.
7395
-
7396
- getValue: function(lineSep) {
7397
- var lines = getLines(this, this.first, this.first + this.size);
7398
- if (lineSep === false) return lines;
7399
- return lines.join(lineSep || this.lineSeparator());
7400
- },
7401
- setValue: docMethodOp(function(code) {
7402
- var top = Pos(this.first, 0), last = this.first + this.size - 1;
7403
- makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length),
7404
- text: this.splitLines(code), origin: "setValue", full: true}, true);
7405
- setSelection(this, simpleSelection(top));
7406
- }),
7407
- replaceRange: function(code, from, to, origin) {
7408
- from = clipPos(this, from);
7409
- to = to ? clipPos(this, to) : from;
7410
- replaceRange(this, code, from, to, origin);
7411
- },
7412
- getRange: function(from, to, lineSep) {
7413
- var lines = getBetween(this, clipPos(this, from), clipPos(this, to));
7414
- if (lineSep === false) return lines;
7415
- return lines.join(lineSep || this.lineSeparator());
7416
- },
7417
-
7418
- getLine: function(line) {var l = this.getLineHandle(line); return l && l.text;},
7419
-
7420
- getLineHandle: function(line) {if (isLine(this, line)) return getLine(this, line);},
7421
- getLineNumber: function(line) {return lineNo(line);},
7422
-
7423
- getLineHandleVisualStart: function(line) {
7424
- if (typeof line == "number") line = getLine(this, line);
7425
- return visualLine(line);
7426
- },
7427
-
7428
- lineCount: function() {return this.size;},
7429
- firstLine: function() {return this.first;},
7430
- lastLine: function() {return this.first + this.size - 1;},
7431
-
7432
- clipPos: function(pos) {return clipPos(this, pos);},
7433
-
7434
- getCursor: function(start) {
7435
- var range = this.sel.primary(), pos;
7436
- if (start == null || start == "head") pos = range.head;
7437
- else if (start == "anchor") pos = range.anchor;
7438
- else if (start == "end" || start == "to" || start === false) pos = range.to();
7439
- else pos = range.from();
7440
- return pos;
7441
- },
7442
- listSelections: function() { return this.sel.ranges; },
7443
- somethingSelected: function() {return this.sel.somethingSelected();},
7444
-
7445
- setCursor: docMethodOp(function(line, ch, options) {
7446
- setSimpleSelection(this, clipPos(this, typeof line == "number" ? Pos(line, ch || 0) : line), null, options);
7447
- }),
7448
- setSelection: docMethodOp(function(anchor, head, options) {
7449
- setSimpleSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), options);
7450
- }),
7451
- extendSelection: docMethodOp(function(head, other, options) {
7452
- extendSelection(this, clipPos(this, head), other && clipPos(this, other), options);
7453
- }),
7454
- extendSelections: docMethodOp(function(heads, options) {
7455
- extendSelections(this, clipPosArray(this, heads, options));
7456
- }),
7457
- extendSelectionsBy: docMethodOp(function(f, options) {
7458
- extendSelections(this, map(this.sel.ranges, f), options);
7459
- }),
7460
- setSelections: docMethodOp(function(ranges, primary, options) {
7461
- if (!ranges.length) return;
7462
- for (var i = 0, out = []; i < ranges.length; i++)
7463
- out[i] = new Range(clipPos(this, ranges[i].anchor),
7464
- clipPos(this, ranges[i].head));
7465
- if (primary == null) primary = Math.min(ranges.length - 1, this.sel.primIndex);
7466
- setSelection(this, normalizeSelection(out, primary), options);
7467
- }),
7468
- addSelection: docMethodOp(function(anchor, head, options) {
7469
- var ranges = this.sel.ranges.slice(0);
7470
- ranges.push(new Range(clipPos(this, anchor), clipPos(this, head || anchor)));
7471
- setSelection(this, normalizeSelection(ranges, ranges.length - 1), options);
7472
- }),
7473
-
7474
- getSelection: function(lineSep) {
7475
- var ranges = this.sel.ranges, lines;
7476
- for (var i = 0; i < ranges.length; i++) {
7477
- var sel = getBetween(this, ranges[i].from(), ranges[i].to());
7478
- lines = lines ? lines.concat(sel) : sel;
7479
- }
7480
- if (lineSep === false) return lines;
7481
- else return lines.join(lineSep || this.lineSeparator());
7482
- },
7483
- getSelections: function(lineSep) {
7484
- var parts = [], ranges = this.sel.ranges;
7485
- for (var i = 0; i < ranges.length; i++) {
7486
- var sel = getBetween(this, ranges[i].from(), ranges[i].to());
7487
- if (lineSep !== false) sel = sel.join(lineSep || this.lineSeparator());
7488
- parts[i] = sel;
7489
- }
7490
- return parts;
7491
- },
7492
- replaceSelection: function(code, collapse, origin) {
7493
- var dup = [];
7494
- for (var i = 0; i < this.sel.ranges.length; i++)
7495
- dup[i] = code;
7496
- this.replaceSelections(dup, collapse, origin || "+input");
7497
- },
7498
- replaceSelections: docMethodOp(function(code, collapse, origin) {
7499
- var changes = [], sel = this.sel;
7500
- for (var i = 0; i < sel.ranges.length; i++) {
7501
- var range = sel.ranges[i];
7502
- changes[i] = {from: range.from(), to: range.to(), text: this.splitLines(code[i]), origin: origin};
7503
- }
7504
- var newSel = collapse && collapse != "end" && computeReplacedSel(this, changes, collapse);
7505
- for (var i = changes.length - 1; i >= 0; i--)
7506
- makeChange(this, changes[i]);
7507
- if (newSel) setSelectionReplaceHistory(this, newSel);
7508
- else if (this.cm) ensureCursorVisible(this.cm);
7509
- }),
7510
- undo: docMethodOp(function() {makeChangeFromHistory(this, "undo");}),
7511
- redo: docMethodOp(function() {makeChangeFromHistory(this, "redo");}),
7512
- undoSelection: docMethodOp(function() {makeChangeFromHistory(this, "undo", true);}),
7513
- redoSelection: docMethodOp(function() {makeChangeFromHistory(this, "redo", true);}),
7514
-
7515
- setExtending: function(val) {this.extend = val;},
7516
- getExtending: function() {return this.extend;},
7517
-
7518
- historySize: function() {
7519
- var hist = this.history, done = 0, undone = 0;
7520
- for (var i = 0; i < hist.done.length; i++) if (!hist.done[i].ranges) ++done;
7521
- for (var i = 0; i < hist.undone.length; i++) if (!hist.undone[i].ranges) ++undone;
7522
- return {undo: done, redo: undone};
7523
- },
7524
- clearHistory: function() {this.history = new History(this.history.maxGeneration);},
7525
-
7526
- markClean: function() {
7527
- this.cleanGeneration = this.changeGeneration(true);
7528
- },
7529
- changeGeneration: function(forceSplit) {
7530
- if (forceSplit)
7531
- this.history.lastOp = this.history.lastSelOp = this.history.lastOrigin = null;
7532
- return this.history.generation;
7533
- },
7534
- isClean: function (gen) {
7535
- return this.history.generation == (gen || this.cleanGeneration);
7536
- },
7537
-
7538
- getHistory: function() {
7539
- return {done: copyHistoryArray(this.history.done),
7540
- undone: copyHistoryArray(this.history.undone)};
7541
- },
7542
- setHistory: function(histData) {
7543
- var hist = this.history = new History(this.history.maxGeneration);
7544
- hist.done = copyHistoryArray(histData.done.slice(0), null, true);
7545
- hist.undone = copyHistoryArray(histData.undone.slice(0), null, true);
7546
- },
7547
-
7548
- addLineClass: docMethodOp(function(handle, where, cls) {
7549
- return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function(line) {
7550
- var prop = where == "text" ? "textClass"
7551
- : where == "background" ? "bgClass"
7552
- : where == "gutter" ? "gutterClass" : "wrapClass";
7553
- if (!line[prop]) line[prop] = cls;
7554
- else if (classTest(cls).test(line[prop])) return false;
7555
- else line[prop] += " " + cls;
7556
- return true;
7557
- });
7558
- }),
7559
- removeLineClass: docMethodOp(function(handle, where, cls) {
7560
- return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function(line) {
7561
- var prop = where == "text" ? "textClass"
7562
- : where == "background" ? "bgClass"
7563
- : where == "gutter" ? "gutterClass" : "wrapClass";
7564
- var cur = line[prop];
7565
- if (!cur) return false;
7566
- else if (cls == null) line[prop] = null;
7567
- else {
7568
- var found = cur.match(classTest(cls));
7569
- if (!found) return false;
7570
- var end = found.index + found[0].length;
7571
- line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? "" : " ") + cur.slice(end) || null;
7572
- }
7573
- return true;
7574
- });
7575
- }),
7576
-
7577
- addLineWidget: docMethodOp(function(handle, node, options) {
7578
- return addLineWidget(this, handle, node, options);
7579
- }),
7580
- removeLineWidget: function(widget) { widget.clear(); },
7581
-
7582
- markText: function(from, to, options) {
7583
- return markText(this, clipPos(this, from), clipPos(this, to), options, options && options.type || "range");
7584
- },
7585
- setBookmark: function(pos, options) {
7586
- var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options),
7587
- insertLeft: options && options.insertLeft,
7588
- clearWhenEmpty: false, shared: options && options.shared,
7589
- handleMouseEvents: options && options.handleMouseEvents};
7590
- pos = clipPos(this, pos);
7591
- return markText(this, pos, pos, realOpts, "bookmark");
7592
- },
7593
- findMarksAt: function(pos) {
7594
- pos = clipPos(this, pos);
7595
- var markers = [], spans = getLine(this, pos.line).markedSpans;
7596
- if (spans) for (var i = 0; i < spans.length; ++i) {
7597
- var span = spans[i];
7598
- if ((span.from == null || span.from <= pos.ch) &&
7599
- (span.to == null || span.to >= pos.ch))
7600
- markers.push(span.marker.parent || span.marker);
7601
- }
7602
- return markers;
7603
- },
7604
- findMarks: function(from, to, filter) {
7605
- from = clipPos(this, from); to = clipPos(this, to);
7606
- var found = [], lineNo = from.line;
7607
- this.iter(from.line, to.line + 1, function(line) {
7608
- var spans = line.markedSpans;
7609
- if (spans) for (var i = 0; i < spans.length; i++) {
7610
- var span = spans[i];
7611
- if (!(lineNo == from.line && from.ch > span.to ||
7612
- span.from == null && lineNo != from.line||
7613
- lineNo == to.line && span.from > to.ch) &&
7614
- (!filter || filter(span.marker)))
7615
- found.push(span.marker.parent || span.marker);
7616
- }
7617
- ++lineNo;
7618
- });
7619
- return found;
7620
- },
7621
- getAllMarks: function() {
7622
- var markers = [];
7623
- this.iter(function(line) {
7624
- var sps = line.markedSpans;
7625
- if (sps) for (var i = 0; i < sps.length; ++i)
7626
- if (sps[i].from != null) markers.push(sps[i].marker);
7627
- });
7628
- return markers;
7629
- },
7630
-
7631
- posFromIndex: function(off) {
7632
- var ch, lineNo = this.first;
7633
- this.iter(function(line) {
7634
- var sz = line.text.length + 1;
7635
- if (sz > off) { ch = off; return true; }
7636
- off -= sz;
7637
- ++lineNo;
7638
- });
7639
- return clipPos(this, Pos(lineNo, ch));
7640
- },
7641
- indexFromPos: function (coords) {
7642
- coords = clipPos(this, coords);
7643
- var index = coords.ch;
7644
- if (coords.line < this.first || coords.ch < 0) return 0;
7645
- this.iter(this.first, coords.line, function (line) {
7646
- index += line.text.length + 1;
7647
- });
7648
- return index;
7649
- },
7650
-
7651
- copy: function(copyHistory) {
7652
- var doc = new Doc(getLines(this, this.first, this.first + this.size),
7653
- this.modeOption, this.first, this.lineSep);
7654
- doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft;
7655
- doc.sel = this.sel;
7656
- doc.extend = false;
7657
- if (copyHistory) {
7658
- doc.history.undoDepth = this.history.undoDepth;
7659
- doc.setHistory(this.getHistory());
7660
- }
7661
- return doc;
7662
- },
7663
-
7664
- linkedDoc: function(options) {
7665
- if (!options) options = {};
7666
- var from = this.first, to = this.first + this.size;
7667
- if (options.from != null && options.from > from) from = options.from;
7668
- if (options.to != null && options.to < to) to = options.to;
7669
- var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from, this.lineSep);
7670
- if (options.sharedHist) copy.history = this.history;
7671
- (this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist});
7672
- copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}];
7673
- copySharedMarkers(copy, findSharedMarkers(this));
7674
- return copy;
7675
- },
7676
- unlinkDoc: function(other) {
7677
- if (other instanceof CodeMirror) other = other.doc;
7678
- if (this.linked) for (var i = 0; i < this.linked.length; ++i) {
7679
- var link = this.linked[i];
7680
- if (link.doc != other) continue;
7681
- this.linked.splice(i, 1);
7682
- other.unlinkDoc(this);
7683
- detachSharedMarkers(findSharedMarkers(this));
7684
- break;
7685
- }
7686
- // If the histories were shared, split them again
7687
- if (other.history == this.history) {
7688
- var splitIds = [other.id];
7689
- linkedDocs(other, function(doc) {splitIds.push(doc.id);}, true);
7690
- other.history = new History(null);
7691
- other.history.done = copyHistoryArray(this.history.done, splitIds);
7692
- other.history.undone = copyHistoryArray(this.history.undone, splitIds);
7693
- }
7694
- },
7695
- iterLinkedDocs: function(f) {linkedDocs(this, f);},
7696
-
7697
- getMode: function() {return this.mode;},
7698
- getEditor: function() {return this.cm;},
7699
-
7700
- splitLines: function(str) {
7701
- if (this.lineSep) return str.split(this.lineSep);
7702
- return splitLinesAuto(str);
7703
- },
7704
- lineSeparator: function() { return this.lineSep || "\n"; }
7705
- });
7706
-
7707
- // Public alias.
7708
- Doc.prototype.eachLine = Doc.prototype.iter;
7709
-
7710
- // Set up methods on CodeMirror's prototype to redirect to the editor's document.
7711
- var dontDelegate = "iter insert remove copy getEditor constructor".split(" ");
7712
- for (var prop in Doc.prototype) if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0)
7713
- CodeMirror.prototype[prop] = (function(method) {
7714
- return function() {return method.apply(this.doc, arguments);};
7715
- })(Doc.prototype[prop]);
7716
-
7717
- eventMixin(Doc);
7718
-
7719
- // Call f for all linked documents.
7720
- function linkedDocs(doc, f, sharedHistOnly) {
7721
- function propagate(doc, skip, sharedHist) {
7722
- if (doc.linked) for (var i = 0; i < doc.linked.length; ++i) {
7723
- var rel = doc.linked[i];
7724
- if (rel.doc == skip) continue;
7725
- var shared = sharedHist && rel.sharedHist;
7726
- if (sharedHistOnly && !shared) continue;
7727
- f(rel.doc, shared);
7728
- propagate(rel.doc, doc, shared);
7729
- }
7730
- }
7731
- propagate(doc, null, true);
7732
- }
7733
-
7734
- // Attach a document to an editor.
7735
- function attachDoc(cm, doc) {
7736
- if (doc.cm) throw new Error("This document is already in use.");
7737
- cm.doc = doc;
7738
- doc.cm = cm;
7739
- estimateLineHeights(cm);
7740
- loadMode(cm);
7741
- if (!cm.options.lineWrapping) findMaxLine(cm);
7742
- cm.options.mode = doc.modeOption;
7743
- regChange(cm);
7744
- }
7745
-
7746
- // LINE UTILITIES
7747
-
7748
- // Find the line object corresponding to the given line number.
7749
- function getLine(doc, n) {
7750
- n -= doc.first;
7751
- if (n < 0 || n >= doc.size) throw new Error("There is no line " + (n + doc.first) + " in the document.");
7752
- for (var chunk = doc; !chunk.lines;) {
7753
- for (var i = 0;; ++i) {
7754
- var child = chunk.children[i], sz = child.chunkSize();
7755
- if (n < sz) { chunk = child; break; }
7756
- n -= sz;
7757
- }
7758
- }
7759
- return chunk.lines[n];
7760
- }
7761
-
7762
- // Get the part of a document between two positions, as an array of
7763
- // strings.
7764
- function getBetween(doc, start, end) {
7765
- var out = [], n = start.line;
7766
- doc.iter(start.line, end.line + 1, function(line) {
7767
- var text = line.text;
7768
- if (n == end.line) text = text.slice(0, end.ch);
7769
- if (n == start.line) text = text.slice(start.ch);
7770
- out.push(text);
7771
- ++n;
7772
- });
7773
- return out;
7774
- }
7775
- // Get the lines between from and to, as array of strings.
7776
- function getLines(doc, from, to) {
7777
- var out = [];
7778
- doc.iter(from, to, function(line) { out.push(line.text); });
7779
- return out;
7780
- }
7781
-
7782
- // Update the height of a line, propagating the height change
7783
- // upwards to parent nodes.
7784
- function updateLineHeight(line, height) {
7785
- var diff = height - line.height;
7786
- if (diff) for (var n = line; n; n = n.parent) n.height += diff;
7787
- }
7788
-
7789
- // Given a line object, find its line number by walking up through
7790
- // its parent links.
7791
- function lineNo(line) {
7792
- if (line.parent == null) return null;
7793
- var cur = line.parent, no = indexOf(cur.lines, line);
7794
- for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {
7795
- for (var i = 0;; ++i) {
7796
- if (chunk.children[i] == cur) break;
7797
- no += chunk.children[i].chunkSize();
7798
- }
7799
- }
7800
- return no + cur.first;
7801
- }
7802
-
7803
- // Find the line at the given vertical position, using the height
7804
- // information in the document tree.
7805
- function lineAtHeight(chunk, h) {
7806
- var n = chunk.first;
7807
- outer: do {
7808
- for (var i = 0; i < chunk.children.length; ++i) {
7809
- var child = chunk.children[i], ch = child.height;
7810
- if (h < ch) { chunk = child; continue outer; }
7811
- h -= ch;
7812
- n += child.chunkSize();
7813
- }
7814
- return n;
7815
- } while (!chunk.lines);
7816
- for (var i = 0; i < chunk.lines.length; ++i) {
7817
- var line = chunk.lines[i], lh = line.height;
7818
- if (h < lh) break;
7819
- h -= lh;
7820
- }
7821
- return n + i;
7822
- }
7823
-
7824
-
7825
- // Find the height above the given line.
7826
- function heightAtLine(lineObj) {
7827
- lineObj = visualLine(lineObj);
7828
-
7829
- var h = 0, chunk = lineObj.parent;
7830
- for (var i = 0; i < chunk.lines.length; ++i) {
7831
- var line = chunk.lines[i];
7832
- if (line == lineObj) break;
7833
- else h += line.height;
7834
- }
7835
- for (var p = chunk.parent; p; chunk = p, p = chunk.parent) {
7836
- for (var i = 0; i < p.children.length; ++i) {
7837
- var cur = p.children[i];
7838
- if (cur == chunk) break;
7839
- else h += cur.height;
7840
- }
7841
- }
7842
- return h;
7843
- }
7844
-
7845
- // Get the bidi ordering for the given line (and cache it). Returns
7846
- // false for lines that are fully left-to-right, and an array of
7847
- // BidiSpan objects otherwise.
7848
- function getOrder(line) {
7849
- var order = line.order;
7850
- if (order == null) order = line.order = bidiOrdering(line.text);
7851
- return order;
7852
- }
7853
-
7854
- // HISTORY
7855
-
7856
- function History(startGen) {
7857
- // Arrays of change events and selections. Doing something adds an
7858
- // event to done and clears undo. Undoing moves events from done
7859
- // to undone, redoing moves them in the other direction.
7860
- this.done = []; this.undone = [];
7861
- this.undoDepth = Infinity;
7862
- // Used to track when changes can be merged into a single undo
7863
- // event
7864
- this.lastModTime = this.lastSelTime = 0;
7865
- this.lastOp = this.lastSelOp = null;
7866
- this.lastOrigin = this.lastSelOrigin = null;
7867
- // Used by the isClean() method
7868
- this.generation = this.maxGeneration = startGen || 1;
7869
- }
7870
-
7871
- // Create a history change event from an updateDoc-style change
7872
- // object.
7873
- function historyChangeFromChange(doc, change) {
7874
- var histChange = {from: copyPos(change.from), to: changeEnd(change), text: getBetween(doc, change.from, change.to)};
7875
- attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);
7876
- linkedDocs(doc, function(doc) {attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);}, true);
7877
- return histChange;
7878
- }
7879
-
7880
- // Pop all selection events off the end of a history array. Stop at
7881
- // a change event.
7882
- function clearSelectionEvents(array) {
7883
- while (array.length) {
7884
- var last = lst(array);
7885
- if (last.ranges) array.pop();
7886
- else break;
7887
- }
7888
- }
7889
-
7890
- // Find the top change event in the history. Pop off selection
7891
- // events that are in the way.
7892
- function lastChangeEvent(hist, force) {
7893
- if (force) {
7894
- clearSelectionEvents(hist.done);
7895
- return lst(hist.done);
7896
- } else if (hist.done.length && !lst(hist.done).ranges) {
7897
- return lst(hist.done);
7898
- } else if (hist.done.length > 1 && !hist.done[hist.done.length - 2].ranges) {
7899
- hist.done.pop();
7900
- return lst(hist.done);
7901
- }
7902
- }
7903
-
7904
- // Register a change in the history. Merges changes that are within
7905
- // a single operation, ore are close together with an origin that
7906
- // allows merging (starting with "+") into a single event.
7907
- function addChangeToHistory(doc, change, selAfter, opId) {
7908
- var hist = doc.history;
7909
- hist.undone.length = 0;
7910
- var time = +new Date, cur;
7911
-
7912
- if ((hist.lastOp == opId ||
7913
- hist.lastOrigin == change.origin && change.origin &&
7914
- ((change.origin.charAt(0) == "+" && doc.cm && hist.lastModTime > time - doc.cm.options.historyEventDelay) ||
7915
- change.origin.charAt(0) == "*")) &&
7916
- (cur = lastChangeEvent(hist, hist.lastOp == opId))) {
7917
- // Merge this change into the last event
7918
- var last = lst(cur.changes);
7919
- if (cmp(change.from, change.to) == 0 && cmp(change.from, last.to) == 0) {
7920
- // Optimized case for simple insertion -- don't want to add
7921
- // new changesets for every character typed
7922
- last.to = changeEnd(change);
7923
- } else {
7924
- // Add new sub-event
7925
- cur.changes.push(historyChangeFromChange(doc, change));
7926
- }
7927
- } else {
7928
- // Can not be merged, start a new event.
7929
- var before = lst(hist.done);
7930
- if (!before || !before.ranges)
7931
- pushSelectionToHistory(doc.sel, hist.done);
7932
- cur = {changes: [historyChangeFromChange(doc, change)],
7933
- generation: hist.generation};
7934
- hist.done.push(cur);
7935
- while (hist.done.length > hist.undoDepth) {
7936
- hist.done.shift();
7937
- if (!hist.done[0].ranges) hist.done.shift();
7938
- }
7939
- }
7940
- hist.done.push(selAfter);
7941
- hist.generation = ++hist.maxGeneration;
7942
- hist.lastModTime = hist.lastSelTime = time;
7943
- hist.lastOp = hist.lastSelOp = opId;
7944
- hist.lastOrigin = hist.lastSelOrigin = change.origin;
7945
-
7946
- if (!last) signal(doc, "historyAdded");
7947
- }
7948
-
7949
- function selectionEventCanBeMerged(doc, origin, prev, sel) {
7950
- var ch = origin.charAt(0);
7951
- return ch == "*" ||
7952
- ch == "+" &&
7953
- prev.ranges.length == sel.ranges.length &&
7954
- prev.somethingSelected() == sel.somethingSelected() &&
7955
- new Date - doc.history.lastSelTime <= (doc.cm ? doc.cm.options.historyEventDelay : 500);
7956
- }
7957
-
7958
- // Called whenever the selection changes, sets the new selection as
7959
- // the pending selection in the history, and pushes the old pending
7960
- // selection into the 'done' array when it was significantly
7961
- // different (in number of selected ranges, emptiness, or time).
7962
- function addSelectionToHistory(doc, sel, opId, options) {
7963
- var hist = doc.history, origin = options && options.origin;
7964
-
7965
- // A new event is started when the previous origin does not match
7966
- // the current, or the origins don't allow matching. Origins
7967
- // starting with * are always merged, those starting with + are
7968
- // merged when similar and close together in time.
7969
- if (opId == hist.lastSelOp ||
7970
- (origin && hist.lastSelOrigin == origin &&
7971
- (hist.lastModTime == hist.lastSelTime && hist.lastOrigin == origin ||
7972
- selectionEventCanBeMerged(doc, origin, lst(hist.done), sel))))
7973
- hist.done[hist.done.length - 1] = sel;
7974
- else
7975
- pushSelectionToHistory(sel, hist.done);
7976
-
7977
- hist.lastSelTime = +new Date;
7978
- hist.lastSelOrigin = origin;
7979
- hist.lastSelOp = opId;
7980
- if (options && options.clearRedo !== false)
7981
- clearSelectionEvents(hist.undone);
7982
- }
7983
-
7984
- function pushSelectionToHistory(sel, dest) {
7985
- var top = lst(dest);
7986
- if (!(top && top.ranges && top.equals(sel)))
7987
- dest.push(sel);
7988
- }
7989
-
7990
- // Used to store marked span information in the history.
7991
- function attachLocalSpans(doc, change, from, to) {
7992
- var existing = change["spans_" + doc.id], n = 0;
7993
- doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function(line) {
7994
- if (line.markedSpans)
7995
- (existing || (existing = change["spans_" + doc.id] = {}))[n] = line.markedSpans;
7996
- ++n;
7997
- });
7998
- }
7999
-
8000
- // When un/re-doing restores text containing marked spans, those
8001
- // that have been explicitly cleared should not be restored.
8002
- function removeClearedSpans(spans) {
8003
- if (!spans) return null;
8004
- for (var i = 0, out; i < spans.length; ++i) {
8005
- if (spans[i].marker.explicitlyCleared) { if (!out) out = spans.slice(0, i); }
8006
- else if (out) out.push(spans[i]);
8007
- }
8008
- return !out ? spans : out.length ? out : null;
8009
- }
8010
-
8011
- // Retrieve and filter the old marked spans stored in a change event.
8012
- function getOldSpans(doc, change) {
8013
- var found = change["spans_" + doc.id];
8014
- if (!found) return null;
8015
- for (var i = 0, nw = []; i < change.text.length; ++i)
8016
- nw.push(removeClearedSpans(found[i]));
8017
- return nw;
8018
- }
8019
-
8020
- // Used both to provide a JSON-safe object in .getHistory, and, when
8021
- // detaching a document, to split the history in two
8022
- function copyHistoryArray(events, newGroup, instantiateSel) {
8023
- for (var i = 0, copy = []; i < events.length; ++i) {
8024
- var event = events[i];
8025
- if (event.ranges) {
8026
- copy.push(instantiateSel ? Selection.prototype.deepCopy.call(event) : event);
8027
- continue;
8028
- }
8029
- var changes = event.changes, newChanges = [];
8030
- copy.push({changes: newChanges});
8031
- for (var j = 0; j < changes.length; ++j) {
8032
- var change = changes[j], m;
8033
- newChanges.push({from: change.from, to: change.to, text: change.text});
8034
- if (newGroup) for (var prop in change) if (m = prop.match(/^spans_(\d+)$/)) {
8035
- if (indexOf(newGroup, Number(m[1])) > -1) {
8036
- lst(newChanges)[prop] = change[prop];
8037
- delete change[prop];
8038
- }
8039
- }
8040
- }
8041
- }
8042
- return copy;
8043
- }
8044
-
8045
- // Rebasing/resetting history to deal with externally-sourced changes
8046
-
8047
- function rebaseHistSelSingle(pos, from, to, diff) {
8048
- if (to < pos.line) {
8049
- pos.line += diff;
8050
- } else if (from < pos.line) {
8051
- pos.line = from;
8052
- pos.ch = 0;
8053
- }
8054
- }
8055
-
8056
- // Tries to rebase an array of history events given a change in the
8057
- // document. If the change touches the same lines as the event, the
8058
- // event, and everything 'behind' it, is discarded. If the change is
8059
- // before the event, the event's positions are updated. Uses a
8060
- // copy-on-write scheme for the positions, to avoid having to
8061
- // reallocate them all on every rebase, but also avoid problems with
8062
- // shared position objects being unsafely updated.
8063
- function rebaseHistArray(array, from, to, diff) {
8064
- for (var i = 0; i < array.length; ++i) {
8065
- var sub = array[i], ok = true;
8066
- if (sub.ranges) {
8067
- if (!sub.copied) { sub = array[i] = sub.deepCopy(); sub.copied = true; }
8068
- for (var j = 0; j < sub.ranges.length; j++) {
8069
- rebaseHistSelSingle(sub.ranges[j].anchor, from, to, diff);
8070
- rebaseHistSelSingle(sub.ranges[j].head, from, to, diff);
8071
- }
8072
- continue;
8073
- }
8074
- for (var j = 0; j < sub.changes.length; ++j) {
8075
- var cur = sub.changes[j];
8076
- if (to < cur.from.line) {
8077
- cur.from = Pos(cur.from.line + diff, cur.from.ch);
8078
- cur.to = Pos(cur.to.line + diff, cur.to.ch);
8079
- } else if (from <= cur.to.line) {
8080
- ok = false;
8081
- break;
8082
- }
8083
- }
8084
- if (!ok) {
8085
- array.splice(0, i + 1);
8086
- i = 0;
8087
- }
8088
- }
8089
- }
8090
-
8091
- function rebaseHist(hist, change) {
8092
- var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1;
8093
- rebaseHistArray(hist.done, from, to, diff);
8094
- rebaseHistArray(hist.undone, from, to, diff);
8095
- }
8096
-
8097
- // EVENT UTILITIES
8098
-
8099
- // Due to the fact that we still support jurassic IE versions, some
8100
- // compatibility wrappers are needed.
8101
-
8102
- var e_preventDefault = CodeMirror.e_preventDefault = function(e) {
8103
- if (e.preventDefault) e.preventDefault();
8104
- else e.returnValue = false;
8105
- };
8106
- var e_stopPropagation = CodeMirror.e_stopPropagation = function(e) {
8107
- if (e.stopPropagation) e.stopPropagation();
8108
- else e.cancelBubble = true;
8109
- };
8110
- function e_defaultPrevented(e) {
8111
- return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false;
8112
- }
8113
- var e_stop = CodeMirror.e_stop = function(e) {e_preventDefault(e); e_stopPropagation(e);};
8114
-
8115
- function e_target(e) {return e.target || e.srcElement;}
8116
- function e_button(e) {
8117
- var b = e.which;
8118
- if (b == null) {
8119
- if (e.button & 1) b = 1;
8120
- else if (e.button & 2) b = 3;
8121
- else if (e.button & 4) b = 2;
8122
- }
8123
- if (mac && e.ctrlKey && b == 1) b = 3;
8124
- return b;
8125
- }
8126
-
8127
- // EVENT HANDLING
8128
-
8129
- // Lightweight event framework. on/off also work on DOM nodes,
8130
- // registering native DOM handlers.
8131
-
8132
- var on = CodeMirror.on = function(emitter, type, f) {
8133
- if (emitter.addEventListener)
8134
- emitter.addEventListener(type, f, false);
8135
- else if (emitter.attachEvent)
8136
- emitter.attachEvent("on" + type, f);
8137
- else {
8138
- var map = emitter._handlers || (emitter._handlers = {});
8139
- var arr = map[type] || (map[type] = []);
8140
- arr.push(f);
8141
- }
8142
- };
8143
-
8144
- var noHandlers = []
8145
- function getHandlers(emitter, type, copy) {
8146
- var arr = emitter._handlers && emitter._handlers[type]
8147
- if (copy) return arr && arr.length > 0 ? arr.slice() : noHandlers
8148
- else return arr || noHandlers
8149
- }
8150
-
8151
- var off = CodeMirror.off = function(emitter, type, f) {
8152
- if (emitter.removeEventListener)
8153
- emitter.removeEventListener(type, f, false);
8154
- else if (emitter.detachEvent)
8155
- emitter.detachEvent("on" + type, f);
8156
- else {
8157
- var handlers = getHandlers(emitter, type, false)
8158
- for (var i = 0; i < handlers.length; ++i)
8159
- if (handlers[i] == f) { handlers.splice(i, 1); break; }
8160
- }
8161
- };
8162
-
8163
- var signal = CodeMirror.signal = function(emitter, type /*, values...*/) {
8164
- var handlers = getHandlers(emitter, type, true)
8165
- if (!handlers.length) return;
8166
- var args = Array.prototype.slice.call(arguments, 2);
8167
- for (var i = 0; i < handlers.length; ++i) handlers[i].apply(null, args);
8168
- };
8169
-
8170
- var orphanDelayedCallbacks = null;
8171
-
8172
- // Often, we want to signal events at a point where we are in the
8173
- // middle of some work, but don't want the handler to start calling
8174
- // other methods on the editor, which might be in an inconsistent
8175
- // state or simply not expect any other events to happen.
8176
- // signalLater looks whether there are any handlers, and schedules
8177
- // them to be executed when the last operation ends, or, if no
8178
- // operation is active, when a timeout fires.
8179
- function signalLater(emitter, type /*, values...*/) {
8180
- var arr = getHandlers(emitter, type, false)
8181
- if (!arr.length) return;
8182
- var args = Array.prototype.slice.call(arguments, 2), list;
8183
- if (operationGroup) {
8184
- list = operationGroup.delayedCallbacks;
8185
- } else if (orphanDelayedCallbacks) {
8186
- list = orphanDelayedCallbacks;
8187
- } else {
8188
- list = orphanDelayedCallbacks = [];
8189
- setTimeout(fireOrphanDelayed, 0);
8190
- }
8191
- function bnd(f) {return function(){f.apply(null, args);};};
8192
- for (var i = 0; i < arr.length; ++i)
8193
- list.push(bnd(arr[i]));
8194
- }
8195
-
8196
- function fireOrphanDelayed() {
8197
- var delayed = orphanDelayedCallbacks;
8198
- orphanDelayedCallbacks = null;
8199
- for (var i = 0; i < delayed.length; ++i) delayed[i]();
8200
- }
8201
-
8202
- // The DOM events that CodeMirror handles can be overridden by
8203
- // registering a (non-DOM) handler on the editor for the event name,
8204
- // and preventDefault-ing the event in that handler.
8205
- function signalDOMEvent(cm, e, override) {
8206
- if (typeof e == "string")
8207
- e = {type: e, preventDefault: function() { this.defaultPrevented = true; }};
8208
- signal(cm, override || e.type, cm, e);
8209
- return e_defaultPrevented(e) || e.codemirrorIgnore;
8210
- }
8211
-
8212
- function signalCursorActivity(cm) {
8213
- var arr = cm._handlers && cm._handlers.cursorActivity;
8214
- if (!arr) return;
8215
- var set = cm.curOp.cursorActivityHandlers || (cm.curOp.cursorActivityHandlers = []);
8216
- for (var i = 0; i < arr.length; ++i) if (indexOf(set, arr[i]) == -1)
8217
- set.push(arr[i]);
8218
- }
8219
-
8220
- function hasHandler(emitter, type) {
8221
- return getHandlers(emitter, type).length > 0
8222
- }
8223
-
8224
- // Add on and off methods to a constructor's prototype, to make
8225
- // registering events on such objects more convenient.
8226
- function eventMixin(ctor) {
8227
- ctor.prototype.on = function(type, f) {on(this, type, f);};
8228
- ctor.prototype.off = function(type, f) {off(this, type, f);};
8229
- }
8230
-
8231
- // MISC UTILITIES
8232
-
8233
- // Number of pixels added to scroller and sizer to hide scrollbar
8234
- var scrollerGap = 30;
8235
-
8236
- // Returned or thrown by various protocols to signal 'I'm not
8237
- // handling this'.
8238
- var Pass = CodeMirror.Pass = {toString: function(){return "CodeMirror.Pass";}};
8239
-
8240
- // Reused option objects for setSelection & friends
8241
- var sel_dontScroll = {scroll: false}, sel_mouse = {origin: "*mouse"}, sel_move = {origin: "+move"};
8242
-
8243
- function Delayed() {this.id = null;}
8244
- Delayed.prototype.set = function(ms, f) {
8245
- clearTimeout(this.id);
8246
- this.id = setTimeout(f, ms);
8247
- };
8248
-
8249
- // Counts the column offset in a string, taking tabs into account.
8250
- // Used mostly to find indentation.
8251
- var countColumn = CodeMirror.countColumn = function(string, end, tabSize, startIndex, startValue) {
8252
- if (end == null) {
8253
- end = string.search(/[^\s\u00a0]/);
8254
- if (end == -1) end = string.length;
8255
- }
8256
- for (var i = startIndex || 0, n = startValue || 0;;) {
8257
- var nextTab = string.indexOf("\t", i);
8258
- if (nextTab < 0 || nextTab >= end)
8259
- return n + (end - i);
8260
- n += nextTab - i;
8261
- n += tabSize - (n % tabSize);
8262
- i = nextTab + 1;
8263
- }
8264
- };
8265
-
8266
- // The inverse of countColumn -- find the offset that corresponds to
8267
- // a particular column.
8268
- var findColumn = CodeMirror.findColumn = function(string, goal, tabSize) {
8269
- for (var pos = 0, col = 0;;) {
8270
- var nextTab = string.indexOf("\t", pos);
8271
- if (nextTab == -1) nextTab = string.length;
8272
- var skipped = nextTab - pos;
8273
- if (nextTab == string.length || col + skipped >= goal)
8274
- return pos + Math.min(skipped, goal - col);
8275
- col += nextTab - pos;
8276
- col += tabSize - (col % tabSize);
8277
- pos = nextTab + 1;
8278
- if (col >= goal) return pos;
8279
- }
8280
- }
8281
-
8282
- var spaceStrs = [""];
8283
- function spaceStr(n) {
8284
- while (spaceStrs.length <= n)
8285
- spaceStrs.push(lst(spaceStrs) + " ");
8286
- return spaceStrs[n];
8287
- }
8288
-
8289
- function lst(arr) { return arr[arr.length-1]; }
8290
-
8291
- var selectInput = function(node) { node.select(); };
8292
- if (ios) // Mobile Safari apparently has a bug where select() is broken.
8293
- selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; };
8294
- else if (ie) // Suppress mysterious IE10 errors
8295
- selectInput = function(node) { try { node.select(); } catch(_e) {} };
8296
-
8297
- function indexOf(array, elt) {
8298
- for (var i = 0; i < array.length; ++i)
8299
- if (array[i] == elt) return i;
8300
- return -1;
8301
- }
8302
- function map(array, f) {
8303
- var out = [];
8304
- for (var i = 0; i < array.length; i++) out[i] = f(array[i], i);
8305
- return out;
8306
- }
8307
-
8308
- function nothing() {}
8309
-
8310
- function createObj(base, props) {
8311
- var inst;
8312
- if (Object.create) {
8313
- inst = Object.create(base);
8314
- } else {
8315
- nothing.prototype = base;
8316
- inst = new nothing();
8317
- }
8318
- if (props) copyObj(props, inst);
8319
- return inst;
8320
- };
8321
-
8322
- function copyObj(obj, target, overwrite) {
8323
- if (!target) target = {};
8324
- for (var prop in obj)
8325
- if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))
8326
- target[prop] = obj[prop];
8327
- return target;
8328
- }
8329
-
8330
- function bind(f) {
8331
- var args = Array.prototype.slice.call(arguments, 1);
8332
- return function(){return f.apply(null, args);};
8333
- }
8334
-
8335
- var nonASCIISingleCaseWordChar = /[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;
8336
- var isWordCharBasic = CodeMirror.isWordChar = function(ch) {
8337
- return /\w/.test(ch) || ch > "\x80" &&
8338
- (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch));
8339
- };
8340
- function isWordChar(ch, helper) {
8341
- if (!helper) return isWordCharBasic(ch);
8342
- if (helper.source.indexOf("\\w") > -1 && isWordCharBasic(ch)) return true;
8343
- return helper.test(ch);
8344
- }
8345
-
8346
- function isEmpty(obj) {
8347
- for (var n in obj) if (obj.hasOwnProperty(n) && obj[n]) return false;
8348
- return true;
8349
- }
8350
-
8351
- // Extending unicode characters. A series of a non-extending char +
8352
- // any number of extending chars is treated as a single unit as far
8353
- // as editing and measuring is concerned. This is not fully correct,
8354
- // since some scripts/fonts/browsers also treat other configurations
8355
- // of code points as a group.
8356
- var extendingChars = /[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;
8357
- function isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendingChars.test(ch); }
8358
-
8359
- // DOM UTILITIES
8360
-
8361
- function elt(tag, content, className, style) {
8362
- var e = document.createElement(tag);
8363
- if (className) e.className = className;
8364
- if (style) e.style.cssText = style;
8365
- if (typeof content == "string") e.appendChild(document.createTextNode(content));
8366
- else if (content) for (var i = 0; i < content.length; ++i) e.appendChild(content[i]);
8367
- return e;
8368
- }
8369
-
8370
- var range;
8371
- if (document.createRange) range = function(node, start, end, endNode) {
8372
- var r = document.createRange();
8373
- r.setEnd(endNode || node, end);
8374
- r.setStart(node, start);
8375
- return r;
8376
- };
8377
- else range = function(node, start, end) {
8378
- var r = document.body.createTextRange();
8379
- try { r.moveToElementText(node.parentNode); }
8380
- catch(e) { return r; }
8381
- r.collapse(true);
8382
- r.moveEnd("character", end);
8383
- r.moveStart("character", start);
8384
- return r;
8385
- };
8386
-
8387
- function removeChildren(e) {
8388
- for (var count = e.childNodes.length; count > 0; --count)
8389
- e.removeChild(e.firstChild);
8390
- return e;
8391
- }
8392
-
8393
- function removeChildrenAndAdd(parent, e) {
8394
- return removeChildren(parent).appendChild(e);
8395
- }
8396
-
8397
- var contains = CodeMirror.contains = function(parent, child) {
8398
- if (child.nodeType == 3) // Android browser always returns false when child is a textnode
8399
- child = child.parentNode;
8400
- if (parent.contains)
8401
- return parent.contains(child);
8402
- do {
8403
- if (child.nodeType == 11) child = child.host;
8404
- if (child == parent) return true;
8405
- } while (child = child.parentNode);
8406
- };
8407
-
8408
- function activeElt() {
8409
- var activeElement = document.activeElement;
8410
- while (activeElement && activeElement.root && activeElement.root.activeElement)
8411
- activeElement = activeElement.root.activeElement;
8412
- return activeElement;
8413
- }
8414
- // Older versions of IE throws unspecified error when touching
8415
- // document.activeElement in some cases (during loading, in iframe)
8416
- if (ie && ie_version < 11) activeElt = function() {
8417
- try { return document.activeElement; }
8418
- catch(e) { return document.body; }
8419
- };
8420
-
8421
- function classTest(cls) { return new RegExp("(^|\\s)" + cls + "(?:$|\\s)\\s*"); }
8422
- var rmClass = CodeMirror.rmClass = function(node, cls) {
8423
- var current = node.className;
8424
- var match = classTest(cls).exec(current);
8425
- if (match) {
8426
- var after = current.slice(match.index + match[0].length);
8427
- node.className = current.slice(0, match.index) + (after ? match[1] + after : "");
8428
- }
8429
- };
8430
- var addClass = CodeMirror.addClass = function(node, cls) {
8431
- var current = node.className;
8432
- if (!classTest(cls).test(current)) node.className += (current ? " " : "") + cls;
8433
- };
8434
- function joinClasses(a, b) {
8435
- var as = a.split(" ");
8436
- for (var i = 0; i < as.length; i++)
8437
- if (as[i] && !classTest(as[i]).test(b)) b += " " + as[i];
8438
- return b;
8439
- }
8440
-
8441
- // WINDOW-WIDE EVENTS
8442
-
8443
- // These must be handled carefully, because naively registering a
8444
- // handler for each editor will cause the editors to never be
8445
- // garbage collected.
8446
-
8447
- function forEachCodeMirror(f) {
8448
- if (!document.body.getElementsByClassName) return;
8449
- var byClass = document.body.getElementsByClassName("CodeMirror");
8450
- for (var i = 0; i < byClass.length; i++) {
8451
- var cm = byClass[i].CodeMirror;
8452
- if (cm) f(cm);
8453
- }
8454
- }
8455
-
8456
- var globalsRegistered = false;
8457
- function ensureGlobalHandlers() {
8458
- if (globalsRegistered) return;
8459
- registerGlobalHandlers();
8460
- globalsRegistered = true;
8461
- }
8462
- function registerGlobalHandlers() {
8463
- // When the window resizes, we need to refresh active editors.
8464
- var resizeTimer;
8465
- on(window, "resize", function() {
8466
- if (resizeTimer == null) resizeTimer = setTimeout(function() {
8467
- resizeTimer = null;
8468
- forEachCodeMirror(onResize);
8469
- }, 100);
8470
- });
8471
- // When the window loses focus, we want to show the editor as blurred
8472
- on(window, "blur", function() {
8473
- forEachCodeMirror(onBlur);
8474
- });
8475
- }
8476
-
8477
- // FEATURE DETECTION
8478
-
8479
- // Detect drag-and-drop
8480
- var dragAndDrop = function() {
8481
- // There is *some* kind of drag-and-drop support in IE6-8, but I
8482
- // couldn't get it to work yet.
8483
- if (ie && ie_version < 9) return false;
8484
- var div = elt('div');
8485
- return "draggable" in div || "dragDrop" in div;
8486
- }();
8487
-
8488
- var zwspSupported;
8489
- function zeroWidthElement(measure) {
8490
- if (zwspSupported == null) {
8491
- var test = elt("span", "\u200b");
8492
- removeChildrenAndAdd(measure, elt("span", [test, document.createTextNode("x")]));
8493
- if (measure.firstChild.offsetHeight != 0)
8494
- zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !(ie && ie_version < 8);
8495
- }
8496
- var node = zwspSupported ? elt("span", "\u200b") :
8497
- elt("span", "\u00a0", null, "display: inline-block; width: 1px; margin-right: -1px");
8498
- node.setAttribute("cm-text", "");
8499
- return node;
8500
- }
8501
-
8502
- // Feature-detect IE's crummy client rect reporting for bidi text
8503
- var badBidiRects;
8504
- function hasBadBidiRects(measure) {
8505
- if (badBidiRects != null) return badBidiRects;
8506
- var txt = removeChildrenAndAdd(measure, document.createTextNode("A\u062eA"));
8507
- var r0 = range(txt, 0, 1).getBoundingClientRect();
8508
- if (!r0 || r0.left == r0.right) return false; // Safari returns null in some cases (#2780)
8509
- var r1 = range(txt, 1, 2).getBoundingClientRect();
8510
- return badBidiRects = (r1.right - r0.right < 3);
8511
- }
8512
-
8513
- // See if "".split is the broken IE version, if so, provide an
8514
- // alternative way to split lines.
8515
- var splitLinesAuto = CodeMirror.splitLines = "\n\nb".split(/\n/).length != 3 ? function(string) {
8516
- var pos = 0, result = [], l = string.length;
8517
- while (pos <= l) {
8518
- var nl = string.indexOf("\n", pos);
8519
- if (nl == -1) nl = string.length;
8520
- var line = string.slice(pos, string.charAt(nl - 1) == "\r" ? nl - 1 : nl);
8521
- var rt = line.indexOf("\r");
8522
- if (rt != -1) {
8523
- result.push(line.slice(0, rt));
8524
- pos += rt + 1;
8525
- } else {
8526
- result.push(line);
8527
- pos = nl + 1;
8528
- }
8529
- }
8530
- return result;
8531
- } : function(string){return string.split(/\r\n?|\n/);};
8532
-
8533
- var hasSelection = window.getSelection ? function(te) {
8534
- try { return te.selectionStart != te.selectionEnd; }
8535
- catch(e) { return false; }
8536
- } : function(te) {
8537
- try {var range = te.ownerDocument.selection.createRange();}
8538
- catch(e) {}
8539
- if (!range || range.parentElement() != te) return false;
8540
- return range.compareEndPoints("StartToEnd", range) != 0;
8541
- };
8542
-
8543
- var hasCopyEvent = (function() {
8544
- var e = elt("div");
8545
- if ("oncopy" in e) return true;
8546
- e.setAttribute("oncopy", "return;");
8547
- return typeof e.oncopy == "function";
8548
- })();
8549
-
8550
- var badZoomedRects = null;
8551
- function hasBadZoomedRects(measure) {
8552
- if (badZoomedRects != null) return badZoomedRects;
8553
- var node = removeChildrenAndAdd(measure, elt("span", "x"));
8554
- var normal = node.getBoundingClientRect();
8555
- var fromRange = range(node, 0, 1).getBoundingClientRect();
8556
- return badZoomedRects = Math.abs(normal.left - fromRange.left) > 1;
8557
- }
8558
-
8559
- // KEY NAMES
8560
-
8561
- var keyNames = CodeMirror.keyNames = {
8562
- 3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt",
8563
- 19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End",
8564
- 36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert",
8565
- 46: "Delete", 59: ";", 61: "=", 91: "Mod", 92: "Mod", 93: "Mod",
8566
- 106: "*", 107: "=", 109: "-", 110: ".", 111: "/", 127: "Delete",
8567
- 173: "-", 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\",
8568
- 221: "]", 222: "'", 63232: "Up", 63233: "Down", 63234: "Left", 63235: "Right", 63272: "Delete",
8569
- 63273: "Home", 63275: "End", 63276: "PageUp", 63277: "PageDown", 63302: "Insert"
8570
- };
8571
- (function() {
8572
- // Number keys
8573
- for (var i = 0; i < 10; i++) keyNames[i + 48] = keyNames[i + 96] = String(i);
8574
- // Alphabetic keys
8575
- for (var i = 65; i <= 90; i++) keyNames[i] = String.fromCharCode(i);
8576
- // Function keys
8577
- for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = "F" + i;
8578
- })();
8579
-
8580
- // BIDI HELPERS
8581
-
8582
- function iterateBidiSections(order, from, to, f) {
8583
- if (!order) return f(from, to, "ltr");
8584
- var found = false;
8585
- for (var i = 0; i < order.length; ++i) {
8586
- var part = order[i];
8587
- if (part.from < to && part.to > from || from == to && part.to == from) {
8588
- f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? "rtl" : "ltr");
8589
- found = true;
8590
- }
8591
- }
8592
- if (!found) f(from, to, "ltr");
8593
- }
8594
-
8595
- function bidiLeft(part) { return part.level % 2 ? part.to : part.from; }
8596
- function bidiRight(part) { return part.level % 2 ? part.from : part.to; }
8597
-
8598
- function lineLeft(line) { var order = getOrder(line); return order ? bidiLeft(order[0]) : 0; }
8599
- function lineRight(line) {
8600
- var order = getOrder(line);
8601
- if (!order) return line.text.length;
8602
- return bidiRight(lst(order));
8603
- }
8604
-
8605
- function lineStart(cm, lineN) {
8606
- var line = getLine(cm.doc, lineN);
8607
- var visual = visualLine(line);
8608
- if (visual != line) lineN = lineNo(visual);
8609
- var order = getOrder(visual);
8610
- var ch = !order ? 0 : order[0].level % 2 ? lineRight(visual) : lineLeft(visual);
8611
- return Pos(lineN, ch);
8612
- }
8613
- function lineEnd(cm, lineN) {
8614
- var merged, line = getLine(cm.doc, lineN);
8615
- while (merged = collapsedSpanAtEnd(line)) {
8616
- line = merged.find(1, true).line;
8617
- lineN = null;
8618
- }
8619
- var order = getOrder(line);
8620
- var ch = !order ? line.text.length : order[0].level % 2 ? lineLeft(line) : lineRight(line);
8621
- return Pos(lineN == null ? lineNo(line) : lineN, ch);
8622
- }
8623
- function lineStartSmart(cm, pos) {
8624
- var start = lineStart(cm, pos.line);
8625
- var line = getLine(cm.doc, start.line);
8626
- var order = getOrder(line);
8627
- if (!order || order[0].level == 0) {
8628
- var firstNonWS = Math.max(0, line.text.search(/\S/));
8629
- var inWS = pos.line == start.line && pos.ch <= firstNonWS && pos.ch;
8630
- return Pos(start.line, inWS ? 0 : firstNonWS);
8631
- }
8632
- return start;
8633
- }
8634
-
8635
- function compareBidiLevel(order, a, b) {
8636
- var linedir = order[0].level;
8637
- if (a == linedir) return true;
8638
- if (b == linedir) return false;
8639
- return a < b;
8640
- }
8641
- var bidiOther;
8642
- function getBidiPartAt(order, pos) {
8643
- bidiOther = null;
8644
- for (var i = 0, found; i < order.length; ++i) {
8645
- var cur = order[i];
8646
- if (cur.from < pos && cur.to > pos) return i;
8647
- if ((cur.from == pos || cur.to == pos)) {
8648
- if (found == null) {
8649
- found = i;
8650
- } else if (compareBidiLevel(order, cur.level, order[found].level)) {
8651
- if (cur.from != cur.to) bidiOther = found;
8652
- return i;
8653
- } else {
8654
- if (cur.from != cur.to) bidiOther = i;
8655
- return found;
8656
- }
8657
- }
8658
- }
8659
- return found;
8660
- }
8661
-
8662
- function moveInLine(line, pos, dir, byUnit) {
8663
- if (!byUnit) return pos + dir;
8664
- do pos += dir;
8665
- while (pos > 0 && isExtendingChar(line.text.charAt(pos)));
8666
- return pos;
8667
- }
8668
-
8669
- // This is needed in order to move 'visually' through bi-directional
8670
- // text -- i.e., pressing left should make the cursor go left, even
8671
- // when in RTL text. The tricky part is the 'jumps', where RTL and
8672
- // LTR text touch each other. This often requires the cursor offset
8673
- // to move more than one unit, in order to visually move one unit.
8674
- function moveVisually(line, start, dir, byUnit) {
8675
- var bidi = getOrder(line);
8676
- if (!bidi) return moveLogically(line, start, dir, byUnit);
8677
- var pos = getBidiPartAt(bidi, start), part = bidi[pos];
8678
- var target = moveInLine(line, start, part.level % 2 ? -dir : dir, byUnit);
8679
-
8680
- for (;;) {
8681
- if (target > part.from && target < part.to) return target;
8682
- if (target == part.from || target == part.to) {
8683
- if (getBidiPartAt(bidi, target) == pos) return target;
8684
- part = bidi[pos += dir];
8685
- return (dir > 0) == part.level % 2 ? part.to : part.from;
8686
- } else {
8687
- part = bidi[pos += dir];
8688
- if (!part) return null;
8689
- if ((dir > 0) == part.level % 2)
8690
- target = moveInLine(line, part.to, -1, byUnit);
8691
- else
8692
- target = moveInLine(line, part.from, 1, byUnit);
8693
- }
8694
- }
8695
- }
8696
-
8697
- function moveLogically(line, start, dir, byUnit) {
8698
- var target = start + dir;
8699
- if (byUnit) while (target > 0 && isExtendingChar(line.text.charAt(target))) target += dir;
8700
- return target < 0 || target > line.text.length ? null : target;
8701
- }
8702
-
8703
- // Bidirectional ordering algorithm
8704
- // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm
8705
- // that this (partially) implements.
8706
-
8707
- // One-char codes used for character types:
8708
- // L (L): Left-to-Right
8709
- // R (R): Right-to-Left
8710
- // r (AL): Right-to-Left Arabic
8711
- // 1 (EN): European Number
8712
- // + (ES): European Number Separator
8713
- // % (ET): European Number Terminator
8714
- // n (AN): Arabic Number
8715
- // , (CS): Common Number Separator
8716
- // m (NSM): Non-Spacing Mark
8717
- // b (BN): Boundary Neutral
8718
- // s (B): Paragraph Separator
8719
- // t (S): Segment Separator
8720
- // w (WS): Whitespace
8721
- // N (ON): Other Neutrals
8722
-
8723
- // Returns null if characters are ordered as they appear
8724
- // (left-to-right), or an array of sections ({from, to, level}
8725
- // objects) in the order in which they occur visually.
8726
- var bidiOrdering = (function() {
8727
- // Character types for codepoints 0 to 0xff
8728
- var lowTypes = "bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN";
8729
- // Character types for codepoints 0x600 to 0x6ff
8730
- var arabicTypes = "rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmm";
8731
- function charType(code) {
8732
- if (code <= 0xf7) return lowTypes.charAt(code);
8733
- else if (0x590 <= code && code <= 0x5f4) return "R";
8734
- else if (0x600 <= code && code <= 0x6ed) return arabicTypes.charAt(code - 0x600);
8735
- else if (0x6ee <= code && code <= 0x8ac) return "r";
8736
- else if (0x2000 <= code && code <= 0x200b) return "w";
8737
- else if (code == 0x200c) return "b";
8738
- else return "L";
8739
- }
8740
-
8741
- var bidiRE = /[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/;
8742
- var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/;
8743
- // Browsers seem to always treat the boundaries of block elements as being L.
8744
- var outerType = "L";
8745
-
8746
- function BidiSpan(level, from, to) {
8747
- this.level = level;
8748
- this.from = from; this.to = to;
8749
- }
8750
-
8751
- return function(str) {
8752
- if (!bidiRE.test(str)) return false;
8753
- var len = str.length, types = [];
8754
- for (var i = 0, type; i < len; ++i)
8755
- types.push(type = charType(str.charCodeAt(i)));
8756
-
8757
- // W1. Examine each non-spacing mark (NSM) in the level run, and
8758
- // change the type of the NSM to the type of the previous
8759
- // character. If the NSM is at the start of the level run, it will
8760
- // get the type of sor.
8761
- for (var i = 0, prev = outerType; i < len; ++i) {
8762
- var type = types[i];
8763
- if (type == "m") types[i] = prev;
8764
- else prev = type;
8765
- }
8766
-
8767
- // W2. Search backwards from each instance of a European number
8768
- // until the first strong type (R, L, AL, or sor) is found. If an
8769
- // AL is found, change the type of the European number to Arabic
8770
- // number.
8771
- // W3. Change all ALs to R.
8772
- for (var i = 0, cur = outerType; i < len; ++i) {
8773
- var type = types[i];
8774
- if (type == "1" && cur == "r") types[i] = "n";
8775
- else if (isStrong.test(type)) { cur = type; if (type == "r") types[i] = "R"; }
8776
- }
8777
-
8778
- // W4. A single European separator between two European numbers
8779
- // changes to a European number. A single common separator between
8780
- // two numbers of the same type changes to that type.
8781
- for (var i = 1, prev = types[0]; i < len - 1; ++i) {
8782
- var type = types[i];
8783
- if (type == "+" && prev == "1" && types[i+1] == "1") types[i] = "1";
8784
- else if (type == "," && prev == types[i+1] &&
8785
- (prev == "1" || prev == "n")) types[i] = prev;
8786
- prev = type;
8787
- }
8788
-
8789
- // W5. A sequence of European terminators adjacent to European
8790
- // numbers changes to all European numbers.
8791
- // W6. Otherwise, separators and terminators change to Other
8792
- // Neutral.
8793
- for (var i = 0; i < len; ++i) {
8794
- var type = types[i];
8795
- if (type == ",") types[i] = "N";
8796
- else if (type == "%") {
8797
- for (var end = i + 1; end < len && types[end] == "%"; ++end) {}
8798
- var replace = (i && types[i-1] == "!") || (end < len && types[end] == "1") ? "1" : "N";
8799
- for (var j = i; j < end; ++j) types[j] = replace;
8800
- i = end - 1;
8801
- }
8802
- }
8803
-
8804
- // W7. Search backwards from each instance of a European number
8805
- // until the first strong type (R, L, or sor) is found. If an L is
8806
- // found, then change the type of the European number to L.
8807
- for (var i = 0, cur = outerType; i < len; ++i) {
8808
- var type = types[i];
8809
- if (cur == "L" && type == "1") types[i] = "L";
8810
- else if (isStrong.test(type)) cur = type;
8811
- }
8812
-
8813
- // N1. A sequence of neutrals takes the direction of the
8814
- // surrounding strong text if the text on both sides has the same
8815
- // direction. European and Arabic numbers act as if they were R in
8816
- // terms of their influence on neutrals. Start-of-level-run (sor)
8817
- // and end-of-level-run (eor) are used at level run boundaries.
8818
- // N2. Any remaining neutrals take the embedding direction.
8819
- for (var i = 0; i < len; ++i) {
8820
- if (isNeutral.test(types[i])) {
8821
- for (var end = i + 1; end < len && isNeutral.test(types[end]); ++end) {}
8822
- var before = (i ? types[i-1] : outerType) == "L";
8823
- var after = (end < len ? types[end] : outerType) == "L";
8824
- var replace = before || after ? "L" : "R";
8825
- for (var j = i; j < end; ++j) types[j] = replace;
8826
- i = end - 1;
8827
- }
8828
- }
8829
-
8830
- // Here we depart from the documented algorithm, in order to avoid
8831
- // building up an actual levels array. Since there are only three
8832
- // levels (0, 1, 2) in an implementation that doesn't take
8833
- // explicit embedding into account, we can build up the order on
8834
- // the fly, without following the level-based algorithm.
8835
- var order = [], m;
8836
- for (var i = 0; i < len;) {
8837
- if (countsAsLeft.test(types[i])) {
8838
- var start = i;
8839
- for (++i; i < len && countsAsLeft.test(types[i]); ++i) {}
8840
- order.push(new BidiSpan(0, start, i));
8841
- } else {
8842
- var pos = i, at = order.length;
8843
- for (++i; i < len && types[i] != "L"; ++i) {}
8844
- for (var j = pos; j < i;) {
8845
- if (countsAsNum.test(types[j])) {
8846
- if (pos < j) order.splice(at, 0, new BidiSpan(1, pos, j));
8847
- var nstart = j;
8848
- for (++j; j < i && countsAsNum.test(types[j]); ++j) {}
8849
- order.splice(at, 0, new BidiSpan(2, nstart, j));
8850
- pos = j;
8851
- } else ++j;
8852
- }
8853
- if (pos < i) order.splice(at, 0, new BidiSpan(1, pos, i));
8854
- }
8855
- }
8856
- if (order[0].level == 1 && (m = str.match(/^\s+/))) {
8857
- order[0].from = m[0].length;
8858
- order.unshift(new BidiSpan(0, 0, m[0].length));
8859
- }
8860
- if (lst(order).level == 1 && (m = str.match(/\s+$/))) {
8861
- lst(order).to -= m[0].length;
8862
- order.push(new BidiSpan(0, len - m[0].length, len));
8863
- }
8864
- if (order[0].level == 2)
8865
- order.unshift(new BidiSpan(1, order[0].to, order[0].to));
8866
- if (order[0].level != lst(order).level)
8867
- order.push(new BidiSpan(order[0].level, len, len));
8868
-
8869
- return order;
8870
- };
8871
- })();
8872
-
8873
- // THE END
8874
-
8875
- CodeMirror.version = "5.9.1";
8876
-
8877
- return CodeMirror;
8878
- });
1
+ 'use strict';var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(w,H,F){w instanceof String&&(w=String(w));for(var t=w.length,U=0;U<t;U++){var ha=w[U];if(H.call(F,ha,U,w))return{i:U,v:ha}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(w,H,F){w!=Array.prototype&&w!=Object.prototype&&(w[H]=F.value)};
2
+ $jscomp.getGlobal=function(w){return"undefined"!=typeof window&&window===w?w:"undefined"!=typeof global&&null!=global?global:w};$jscomp.global=$jscomp.getGlobal(this);$jscomp.polyfill=function(w,H,F,t){if(H){F=$jscomp.global;w=w.split(".");for(t=0;t<w.length-1;t++){var U=w[t];U in F||(F[U]={});F=F[U]}w=w[w.length-1];t=F[w];H=H(t);H!=t&&null!=H&&$jscomp.defineProperty(F,w,{configurable:!0,writable:!0,value:H})}};
3
+ $jscomp.polyfill("Array.prototype.find",function(w){return w?w:function(w,F){return $jscomp.findInternal(this,w,F).v}},"es6-impl","es3");
4
+ (function(w,H){"object"===typeof exports&&"undefined"!==typeof module?module.exports=H():"function"===typeof define&&define.amd?define(H):w.CodeMirror=H()})(this,function(){function w(a){return new RegExp("(^|\\s)"+a+"(?:$|\\s)\\s*")}function H(a){for(var b=a.childNodes.length;0<b;--b)a.removeChild(a.firstChild);return a}function F(a,b){return H(a).appendChild(b)}function t(a,b,c,d){a=document.createElement(a);c&&(a.className=c);d&&(a.style.cssText=d);if("string"==typeof b)a.appendChild(document.createTextNode(b));
5
+ else if(b)for(c=0;c<b.length;++c)a.appendChild(b[c]);return a}function U(a,b,c,d){a=t(a,b,c,d);a.setAttribute("role","presentation");return a}function ha(a,b){3==b.nodeType&&(b=b.parentNode);if(a.contains)return a.contains(b);do if(11==b.nodeType&&(b=b.host),b==a)return!0;while(b=b.parentNode)}function ra(){try{var a=document.activeElement}catch(b){a=document.body||null}for(;a&&a.shadowRoot&&a.shadowRoot.activeElement;)a=a.shadowRoot.activeElement;return a}function Fa(a,b){var c=a.className;w(b).test(c)||
6
+ (a.className+=(c?" ":"")+b)}function Jc(a,b){a=a.split(" ");for(var c=0;c<a.length;c++)a[c]&&!w(a[c]).test(b)&&(b+=" "+a[c]);return b}function Kc(a){var b=Array.prototype.slice.call(arguments,1);return function(){return a.apply(null,b)}}function Ga(a,b,c){b||(b={});for(var d in a)!a.hasOwnProperty(d)||!1===c&&b.hasOwnProperty(d)||(b[d]=a[d]);return b}function fa(a,b,c,d,e){null==b&&(b=a.search(/[^\s\u00a0]/),-1==b&&(b=a.length));d=d||0;for(e=e||0;;){var f=a.indexOf("\t",d);if(0>f||f>=b)return e+(b-
7
+ d);e+=f-d;e+=c-e%c;d=f+1}}function Q(a,b){for(var c=0;c<a.length;++c)if(a[c]==b)return c;return-1}function Lc(a,b,c){for(var d=0,e=0;;){var f=a.indexOf("\t",d);-1==f&&(f=a.length);var g=f-d;if(f==a.length||e+g>=b)return d+Math.min(g,b-e);e+=f-d;e+=c-e%c;d=f+1;if(e>=b)return d}}function Mc(a){for(;dc.length<=a;)dc.push(y(dc)+" ");return dc[a]}function y(a){return a[a.length-1]}function ec(a,b){for(var c=[],d=0;d<a.length;d++)c[d]=b(a[d],d);return c}function ag(a,b,c){for(var d=0,e=c(b);d<a.length&&
8
+ c(a[d])<=e;)d++;a.splice(d,0,b)}function Qd(){}function Rd(a,b){Object.create?a=Object.create(a):(Qd.prototype=a,a=new Qd);b&&Ga(b,a);return a}function Nc(a){return/\w/.test(a)||"\u0080"<a&&(a.toUpperCase()!=a.toLowerCase()||bg.test(a))}function fc(a,b){return b?-1<b.source.indexOf("\\w")&&Nc(a)?!0:b.test(a):Nc(a)}function Sd(a){for(var b in a)if(a.hasOwnProperty(b)&&a[b])return!1;return!0}function Oc(a){return 768<=a.charCodeAt(0)&&cg.test(a)}function Td(a,b,c){for(;(0>c?0<b:b<a.length)&&Oc(a.charAt(b));)b+=
9
+ c;return b}function gc(a,b,c){for(;;){if(1>=Math.abs(b-c))return a(b)?b:c;var d=Math.floor((b+c)/2);a(d)?c=d:b=d}}function dg(a,b,c){this.input=c;this.scrollbarFiller=t("div",null,"CodeMirror-scrollbar-filler");this.scrollbarFiller.setAttribute("cm-not-content","true");this.gutterFiller=t("div",null,"CodeMirror-gutter-filler");this.gutterFiller.setAttribute("cm-not-content","true");this.lineDiv=U("div",null,"CodeMirror-code");this.selectionDiv=t("div",null,null,"position: relative; z-index: 1");this.cursorDiv=
10
+ t("div",null,"CodeMirror-cursors");this.measure=t("div",null,"CodeMirror-measure");this.lineMeasure=t("div",null,"CodeMirror-measure");this.lineSpace=U("div",[this.measure,this.lineMeasure,this.selectionDiv,this.cursorDiv,this.lineDiv],null,"position: relative; outline: none");var d=U("div",[this.lineSpace],"CodeMirror-lines");this.mover=t("div",[d],null,"position: relative");this.sizer=t("div",[this.mover],"CodeMirror-sizer");this.sizerWidth=null;this.heightForcer=t("div",null,null,"position: absolute; height: 30px; width: 1px;");
11
+ this.gutters=t("div",null,"CodeMirror-gutters");this.lineGutter=null;this.scroller=t("div",[this.sizer,this.heightForcer,this.gutters],"CodeMirror-scroll");this.scroller.setAttribute("tabIndex","-1");this.wrapper=t("div",[this.scrollbarFiller,this.gutterFiller,this.scroller],"CodeMirror");D&&8>B&&(this.gutters.style.zIndex=-1,this.scroller.style.paddingRight=0);T||xa&&qb||(this.scroller.draggable=!0);a&&(a.appendChild?a.appendChild(this.wrapper):a(this.wrapper));this.reportedViewFrom=this.reportedViewTo=
12
+ this.viewFrom=this.viewTo=b.first;this.view=[];this.externalMeasured=this.renderedView=null;this.lastWrapHeight=this.lastWrapWidth=this.viewOffset=0;this.updateLineNumbers=null;this.nativeBarWidth=this.barHeight=this.barWidth=0;this.scrollbarsClipped=!1;this.lineNumWidth=this.lineNumInnerWidth=this.lineNumChars=null;this.alignWidgets=!1;this.maxLine=this.cachedCharWidth=this.cachedTextHeight=this.cachedPaddingH=null;this.maxLineLength=0;this.maxLineChanged=!1;this.wheelDX=this.wheelDY=this.wheelStartX=
13
+ this.wheelStartY=null;this.shift=!1;this.activeTouch=this.selForContextMenu=null;c.init(this)}function u(a,b){b-=a.first;if(0>b||b>=a.size)throw Error("There is no line "+(b+a.first)+" in the document.");for(;!a.lines;)for(var c=0;;++c){var d=a.children[c],e=d.chunkSize();if(b<e){a=d;break}b-=e}return a.lines[b]}function Ha(a,b,c){var d=[],e=b.line;a.iter(b.line,c.line+1,function(a){a=a.text;e==c.line&&(a=a.slice(0,c.ch));e==b.line&&(a=a.slice(b.ch));d.push(a);++e});return d}function Pc(a,b,c){var d=
14
+ [];a.iter(b,c,function(a){d.push(a.text)});return d}function ma(a,b){if(b-=a.height)for(;a;a=a.parent)a.height+=b}function E(a){if(null==a.parent)return null;var b=a.parent;a=Q(b.lines,a);for(var c=b.parent;c;b=c,c=c.parent)for(var d=0;c.children[d]!=b;++d)a+=c.children[d].chunkSize();return a+b.first}function Ia(a,b){var c=a.first;a:do{for(var d=0;d<a.children.length;++d){var e=a.children[d],f=e.height;if(b<f){a=e;continue a}b-=f;c+=e.chunkSize()}return c}while(!a.lines);for(d=0;d<a.lines.length;++d){e=
15
+ a.lines[d].height;if(b<e)break;b-=e}return c+d}function rb(a,b){return b>=a.first&&b<a.first+a.size}function Qc(a,b){return String(a.lineNumberFormatter(b+a.firstLineNumber))}function r(a,b,c){void 0===c&&(c=null);if(!(this instanceof r))return new r(a,b,c);this.line=a;this.ch=b;this.sticky=c}function A(a,b){return a.line-b.line||a.ch-b.ch}function Rc(a,b){return a.sticky==b.sticky&&0==A(a,b)}function Sc(a){return r(a.line,a.ch)}function hc(a,b){return 0>A(a,b)?b:a}function ic(a,b){return 0>A(a,b)?
16
+ a:b}function x(a,b){if(b.line<a.first)return r(a.first,0);var c=a.first+a.size-1;if(b.line>c)return r(c,u(a,c).text.length);a=u(a,b.line).text.length;c=b.ch;b=null==c||c>a?r(b.line,a):0>c?r(b.line,0):b;return b}function Ud(a,b){for(var c=[],d=0;d<b.length;d++)c[d]=x(a,b[d]);return c}function jc(a,b,c){this.marker=a;this.from=b;this.to=c}function sb(a,b){if(a)for(var c=0;c<a.length;++c){var d=a[c];if(d.marker==b)return d}}function Tc(a,b){if(b.full)return null;var c=rb(a,b.from.line)&&u(a,b.from.line).markedSpans,
17
+ d=rb(a,b.to.line)&&u(a,b.to.line).markedSpans;if(!c&&!d)return null;a=b.from.ch;var e=b.to.ch,f=0==A(b.from,b.to),g;if(c)for(var h=0;h<c.length;++h){var k=c[h],l=k.marker;if(null==k.from||(l.inclusiveLeft?k.from<=a:k.from<a)||!(k.from!=a||"bookmark"!=l.type||f&&k.marker.insertLeft)){var m=null==k.to||(l.inclusiveRight?k.to>=a:k.to>a);(g||(g=[])).push(new jc(l,k.from,m?null:k.to))}}var c=g,p;if(d)for(g=0;g<d.length;++g)if(h=d[g],k=h.marker,null==h.to||(k.inclusiveRight?h.to>=e:h.to>e)||h.from==e&&
18
+ "bookmark"==k.type&&(!f||h.marker.insertLeft))l=null==h.from||(k.inclusiveLeft?h.from<=e:h.from<e),(p||(p=[])).push(new jc(k,l?null:h.from-e,null==h.to?null:h.to-e));d=1==b.text.length;e=y(b.text).length+(d?a:0);if(c)for(f=0;f<c.length;++f)if(g=c[f],null==g.to)(h=sb(p,g.marker),h)?d&&(g.to=null==h.to?null:h.to+e):g.to=a;if(p)for(a=0;a<p.length;++a)f=p[a],null!=f.to&&(f.to+=e),null==f.from?sb(c,f.marker)||(f.from=e,d&&(c||(c=[])).push(f)):(f.from+=e,d&&(c||(c=[])).push(f));c&&(c=Vd(c));p&&p!=c&&(p=
19
+ Vd(p));a=[c];if(!d){b=b.text.length-2;var n;if(0<b&&c)for(d=0;d<c.length;++d)null==c[d].to&&(n||(n=[])).push(new jc(c[d].marker,null,null));for(c=0;c<b;++c)a.push(n);a.push(p)}return a}function Vd(a){for(var b=0;b<a.length;++b){var c=a[b];null!=c.from&&c.from==c.to&&!1!==c.marker.clearWhenEmpty&&a.splice(b--,1)}return a.length?a:null}function eg(a,b,c){var d=null;a.iter(b.line,c.line+1,function(a){if(a.markedSpans)for(var b=0;b<a.markedSpans.length;++b){var c=a.markedSpans[b].marker;!c.readOnly||
20
+ d&&-1!=Q(d,c)||(d||(d=[])).push(c)}});if(!d)return null;a=[{from:b,to:c}];for(b=0;b<d.length;++b){c=d[b];for(var e=c.find(0),f=0;f<a.length;++f){var g=a[f];if(!(0>A(g.to,e.from)||0<A(g.from,e.to))){var h=[f,1],k=A(g.from,e.from),l=A(g.to,e.to);(0>k||!c.inclusiveLeft&&!k)&&h.push({from:g.from,to:e.from});(0<l||!c.inclusiveRight&&!l)&&h.push({from:e.to,to:g.to});a.splice.apply(a,h);f+=h.length-3}}}return a}function Wd(a){var b=a.markedSpans;if(b){for(var c=0;c<b.length;++c)b[c].marker.detachLine(a);
21
+ a.markedSpans=null}}function Xd(a,b){if(b){for(var c=0;c<b.length;++c)b[c].marker.attachLine(a);a.markedSpans=b}}function Yd(a,b){var c=a.lines.length-b.lines.length;if(0!=c)return c;var c=a.find(),d=b.find(),e=A(c.from,d.from)||(a.inclusiveLeft?-1:0)-(b.inclusiveLeft?-1:0);return e?-e:(c=A(c.to,d.to)||(a.inclusiveRight?1:0)-(b.inclusiveRight?1:0))?c:b.id-a.id}function Ja(a,b){a=ya&&a.markedSpans;if(a)for(var c,d=0;d<a.length;++d)if(c=a[d],c.marker.collapsed&&null==(b?c.from:c.to)&&(!e||0>Yd(e,c.marker)))var e=
22
+ c.marker;return e}function Zd(a,b,c,d,e){a=u(a,b);if(a=ya&&a.markedSpans)for(b=0;b<a.length;++b){var f=a[b];if(f.marker.collapsed){var g=f.marker.find(0),h=A(g.from,c)||(f.marker.inclusiveLeft?-1:0)-(e.inclusiveLeft?-1:0),k=A(g.to,d)||(f.marker.inclusiveRight?1:0)-(e.inclusiveRight?1:0);if(!(0<=h&&0>=k||0>=h&&0<=k)&&(0>=h&&(f.marker.inclusiveRight&&e.inclusiveLeft?0<=A(g.to,c):0<A(g.to,c))||0<=h&&(f.marker.inclusiveRight&&e.inclusiveLeft?0>=A(g.from,d):0>A(g.from,d))))return!0}}}function na(a){for(var b;b=
23
+ Ja(a,!0);)a=b.find(-1,!0).line;return a}function Uc(a,b){a=u(a,b);var c=na(a);return a==c?b:E(c)}function $d(a,b){if(b>a.lastLine())return b;var c=u(a,b);if(!Ka(a,c))return b;for(;a=Ja(c,!1);)c=a.find(1,!0).line;return E(c)+1}function Ka(a,b){var c=ya&&b.markedSpans;if(c)for(var d,e=0;e<c.length;++e)if(d=c[e],d.marker.collapsed&&(null==d.from||!d.marker.widgetNode&&0==d.from&&d.marker.inclusiveLeft&&Vc(a,b,d)))return!0}function Vc(a,b,c){if(null==c.to)return b=c.marker.find(1,!0),Vc(a,b.line,sb(b.line.markedSpans,
24
+ c.marker));if(c.marker.inclusiveRight&&c.to==b.text.length)return!0;for(var d,e=0;e<b.markedSpans.length;++e)if(d=b.markedSpans[e],d.marker.collapsed&&!d.marker.widgetNode&&d.from==c.to&&(null==d.to||d.to!=c.from)&&(d.marker.inclusiveLeft||c.marker.inclusiveRight)&&Vc(a,b,d))return!0}function oa(a){a=na(a);for(var b=0,c=a.parent,d=0;d<c.lines.length;++d){var e=c.lines[d];if(e==a)break;else b+=e.height}for(a=c.parent;a;c=a,a=c.parent)for(d=0;d<a.children.length&&(e=a.children[d],e!=c);++d)b+=e.height;
25
+ return b}function kc(a){if(0==a.height)return 0;for(var b=a.text.length,c,d=a;c=Ja(d,!0);)c=c.find(0,!0),d=c.from.line,b+=c.from.ch-c.to.ch;for(d=a;c=Ja(d,!1);)a=c.find(0,!0),b-=d.text.length-a.from.ch,d=a.to.line,b+=d.text.length-a.to.ch;return b}function Wc(a){var b=a.display;a=a.doc;b.maxLine=u(a,a.first);b.maxLineLength=kc(b.maxLine);b.maxLineChanged=!0;a.iter(function(a){var d=kc(a);d>b.maxLineLength&&(b.maxLineLength=d,b.maxLine=a)})}function fg(a,b,c,d){if(!a)return d(b,c,"ltr");for(var e=
26
+ !1,f=0;f<a.length;++f){var g=a[f];if(g.from<c&&g.to>b||b==c&&g.to==b)d(Math.max(g.from,b),Math.min(g.to,c),1==g.level?"rtl":"ltr"),e=!0}e||d(b,c,"ltr")}function Xc(a,b,c){var d;tb=null;for(var e=0;e<a.length;++e){var f=a[e];if(f.from<b&&f.to>b)return e;f.to==b&&(f.from!=f.to&&"before"==c?d=e:tb=e);f.from==b&&(f.from!=f.to&&"before"!=c?d=e:tb=e)}return null!=d?d:tb}function za(a,b){var c=a.order;null==c&&(c=a.order=gg(a.text,b));return c}function Yc(a,b,c){b=Td(a.text,b+c,c);return 0>b||b>a.text.length?
27
+ null:b}function Zc(a,b,c){a=Yc(a,b.ch,c);return null==a?null:new r(b.line,a,0>c?"after":"before")}function $c(a,b,c,d,e){if(a&&(a=za(c,b.doc.direction))){a=0>e?y(a):a[0];var f=0>e==(1==a.level)?"after":"before";if(0<a.level){var g=$a(b,c);var h=0>e?c.text.length-1:0;var k=sa(b,g,h).top;h=gc(function(a){return sa(b,g,a).top==k},0>e==(1==a.level)?a.from:a.to-1,h);"before"==f&&(h=Yc(c,h,1))}else h=0>e?a.to:a.from;return new r(d,h,f)}return new r(d,0>e?c.text.length:0,0>e?"before":"after")}function ae(a,
28
+ b,c,d){var e=za(b,a.doc.direction);if(!e)return Zc(b,c,d);c.ch>=b.text.length?(c.ch=b.text.length,c.sticky="before"):0>=c.ch&&(c.ch=0,c.sticky="after");var f=Xc(e,c.ch,c.sticky),g=e[f];if("ltr"==a.doc.direction&&0==g.level%2&&(0<d?g.to>c.ch:g.from<c.ch))return Zc(b,c,d);var h=function(a,d){return Yc(b,a instanceof r?a.ch:a,d)},k,l=function(d){if(!a.options.lineWrapping)return{begin:0,end:b.text.length};var c=k=k||$a(a,b);d=La(a,b,sa(a,c,d),"line").top;return be(a,b,c,d)},m=l("before"==c.sticky?h(c,
29
+ -1):c.ch);if("rtl"==a.doc.direction||1==g.level){var p=1==g.level==0>d,n=h(c,p?1:-1);if(null!=n&&(p?n<=g.to&&n<=m.end:n>=g.from&&n>=m.begin))return new r(c.line,n,p?"before":"after")}g=function(a,b,d){for(var f=function(a,b){return b?new r(c.line,h(a,1),"before"):new r(c.line,a,"after")};0<=a&&a<e.length;a+=b){var g=e[a],k=0<b==(1!=g.level),l=k?d.begin:h(d.end,-1);if(g.from<=l&&l<g.to)return f(l,k);l=k?g.from:h(g.to,-1);if(d.begin<=l&&l<d.end)return f(l,k)}};if(f=g(f+d,d,m))return f;m=0<d?m.end:h(m.begin,
30
+ -1);return null==m||0<d&&m==b.text.length||!(f=g(0<d?0:e.length-1,d,l(m)))?null:f}function ca(a,b,c){if(a.removeEventListener)a.removeEventListener(b,c,!1);else if(a.detachEvent)a.detachEvent("on"+b,c);else{var d=(a=a._handlers)&&a[b];d&&(c=Q(d,c),-1<c&&(a[b]=d.slice(0,c).concat(d.slice(c+1))))}}function J(a,b){var c=a._handlers&&a._handlers[b]||lc;if(c.length)for(var d=Array.prototype.slice.call(arguments,2),e=0;e<c.length;++e)c[e].apply(null,d)}function N(a,b,c){"string"==typeof b&&(b={type:b,preventDefault:function(){this.defaultPrevented=
31
+ !0}});J(a,c||b.type,a,b);return ad(b)||b.codemirrorIgnore}function ce(a){var b=a._handlers&&a._handlers.cursorActivity;if(b){a=a.curOp.cursorActivityHandlers||(a.curOp.cursorActivityHandlers=[]);for(var c=0;c<b.length;++c)-1==Q(a,b[c])&&a.push(b[c])}}function ga(a,b){return 0<(a._handlers&&a._handlers[b]||lc).length}function ab(a){a.prototype.on=function(a,c){v(this,a,c)};a.prototype.off=function(a,c){ca(this,a,c)}}function V(a){a.preventDefault?a.preventDefault():a.returnValue=!1}function de(a){a.stopPropagation?
32
+ a.stopPropagation():a.cancelBubble=!0}function ad(a){return null!=a.defaultPrevented?a.defaultPrevented:0==a.returnValue}function ub(a){V(a);de(a)}function ee(a){var b=a.which;null==b&&(a.button&1?b=1:a.button&2?b=3:a.button&4&&(b=2));ia&&a.ctrlKey&&1==b&&(b=3);return b}function hg(a){if(null==bd){var b=t("span","\u200b");F(a,t("span",[b,document.createTextNode("x")]));0!=a.firstChild.offsetHeight&&(bd=1>=b.offsetWidth&&2<b.offsetHeight&&!(D&&8>B))}a=bd?t("span","\u200b"):t("span","\u00a0",null,"display: inline-block; width: 1px; margin-right: -1px");
33
+ a.setAttribute("cm-text","");return a}function ig(a,b){2<arguments.length&&(b.dependencies=Array.prototype.slice.call(arguments,2));cd[a]=b}function mc(a){if("string"==typeof a&&bb.hasOwnProperty(a))a=bb[a];else if(a&&"string"==typeof a.name&&bb.hasOwnProperty(a.name)){var b=bb[a.name];"string"==typeof b&&(b={name:b});a=Rd(b,a);a.name=b.name}else{if("string"==typeof a&&/^[\w\-]+\/[\w\-]+\+xml$/.test(a))return mc("application/xml");if("string"==typeof a&&/^[\w\-]+\/[\w\-]+\+json$/.test(a))return mc("application/json")}return"string"==
34
+ typeof a?{name:a}:a||{name:"null"}}function dd(a,b){b=mc(b);var c=cd[b.name];if(!c)return dd(a,"text/plain");a=c(a,b);if(cb.hasOwnProperty(b.name)){var c=cb[b.name],d;for(d in c)c.hasOwnProperty(d)&&(a.hasOwnProperty(d)&&(a["_"+d]=a[d]),a[d]=c[d])}a.name=b.name;b.helperType&&(a.helperType=b.helperType);if(b.modeProps)for(var e in b.modeProps)a[e]=b.modeProps[e];return a}function jg(a,b){a=cb.hasOwnProperty(a)?cb[a]:cb[a]={};Ga(b,a)}function Ma(a,b){if(!0===b)return b;if(a.copyState)return a.copyState(b);
35
+ a={};for(var c in b){var d=b[c];d instanceof Array&&(d=d.concat([]));a[c]=d}return a}function ed(a,b){for(var c;a.innerMode;){c=a.innerMode(b);if(!c||c.mode==a)break;b=c.state;a=c.mode}return c||{mode:a,state:b}}function fe(a,b,c){return a.startState?a.startState(b,c):!0}function ge(a,b,c,d){var e=[a.state.modeGen],f={};he(a,b.text,a.doc.mode,c,function(a,b){return e.push(a,b)},f,d);d=c.state;for(var g=function(d){var g=a.state.overlays[d],h=1,k=0;c.state=!0;he(a,b.text,g.mode,c,function(a,b){for(var d=
36
+ h;k<a;){var c=e[h];c>a&&e.splice(h,1,a,e[h+1],c);h+=2;k=Math.min(a,c)}if(b)if(g.opaque)e.splice(d,h-d,a,"overlay "+b),h=d+2;else for(;d<h;d+=2)a=e[d+1],e[d+1]=(a?a+" ":"")+"overlay "+b},f)},h=0;h<a.state.overlays.length;++h)g(h);c.state=d;return{styles:e,classes:f.bgClass||f.textClass?f:null}}function ie(a,b,c){if(!b.styles||b.styles[0]!=a.state.modeGen){var d=vb(a,E(b)),e=b.text.length>a.options.maxHighlightLength&&Ma(a.doc.mode,d.state),f=ge(a,b,d);e&&(d.state=e);b.stateAfter=d.save(!e);b.styles=
37
+ f.styles;f.classes?b.styleClasses=f.classes:b.styleClasses&&(b.styleClasses=null);c===a.doc.highlightFrontier&&(a.doc.modeFrontier=Math.max(a.doc.modeFrontier,++a.doc.highlightFrontier))}return b.styles}function vb(a,b,c){var d=a.doc,e=a.display;if(!d.mode.startState)return new ta(d,!0,b);var f=kg(a,b,c),g=f>d.first&&u(d,f-1).stateAfter,h=g?ta.fromSaved(d,g,f):new ta(d,fe(d.mode),f);d.iter(f,b,function(d){fd(a,d.text,h);var c=h.line;d.stateAfter=c==b-1||0==c%5||c>=e.viewFrom&&c<e.viewTo?h.save():
38
+ null;h.nextLine()});c&&(d.modeFrontier=h.line);return h}function fd(a,b,c,d){var e=a.doc.mode;a=new L(b,a.options.tabSize,c);a.start=a.pos=d||0;for(""==b&&je(e,c.state);!a.eol();)gd(e,a,c.state),a.start=a.pos}function je(a,b){if(a.blankLine)return a.blankLine(b);if(a.innerMode&&(a=ed(a,b),a.mode.blankLine))return a.mode.blankLine(a.state)}function gd(a,b,c,d){for(var e=0;10>e;e++){d&&(d[0]=ed(a,c).mode);var f=a.token(b,c);if(b.pos>b.start)return f}throw Error("Mode "+a.name+" failed to advance stream.");
39
+ }function ke(a,b,c,d){var e=a.doc,f=e.mode;b=x(e,b);var g=u(e,b.line);c=vb(a,b.line,c);a=new L(g.text,a.options.tabSize,c);var h;for(d&&(h=[]);(d||a.pos<b.ch)&&!a.eol();){a.start=a.pos;var k=gd(f,a,c.state);d&&h.push(new le(a,k,Ma(e.mode,c.state)))}return d?h:new le(a,k,c.state)}function me(a,b){if(a)for(;;){var c=a.match(/(?:^|\s+)line-(background-)?(\S+)/);if(!c)break;a=a.slice(0,c.index)+a.slice(c.index+c[0].length);var d=c[1]?"bgClass":"textClass";null==b[d]?b[d]=c[2]:(new RegExp("(?:^|s)"+c[2]+
40
+ "(?:$|s)")).test(b[d])||(b[d]+=" "+c[2])}return a}function he(a,b,c,d,e,f,g){var h=c.flattenSpans;null==h&&(h=a.options.flattenSpans);var k=0,l=null,m=new L(b,a.options.tabSize,d),p=a.options.addModeClass&&[null];for(""==b&&me(je(c,d.state),f);!m.eol();){if(m.pos>a.options.maxHighlightLength){h=!1;g&&fd(a,b,d,m.pos);m.pos=b.length;var n=null}else n=me(gd(c,m,d.state,p),f);if(p){var q=p[0].name;q&&(n="m-"+(n?q+" "+n:q))}if(!h||l!=n){for(;k<m.start;)k=Math.min(m.start,k+5E3),e(k,l);l=n}m.start=m.pos}for(;k<
41
+ m.pos;)a=Math.min(m.pos,k+5E3),e(a,l),k=a}function kg(a,b,c){for(var d,e,f=a.doc,g=c?-1:b-(a.doc.mode.innerMode?1E3:100);b>g;--b){if(b<=f.first)return f.first;var h=u(f,b-1),k=h.stateAfter;if(k&&(!c||b+(k instanceof nc?k.lookAhead:0)<=f.modeFrontier))return b;h=fa(h.text,null,a.options.tabSize);if(null==e||d>h)e=b-1,d=h}return e}function lg(a,b){a.modeFrontier=Math.min(a.modeFrontier,b);if(!(a.highlightFrontier<b-10)){for(var c=a.first,d=b-1;d>c;d--){var e=u(a,d).stateAfter;if(e&&(!(e instanceof nc)||
42
+ d+e.lookAhead<b)){c=d+1;break}}a.highlightFrontier=Math.min(a.highlightFrontier,c)}}function ne(a,b){if(!a||/^\s*$/.test(a))return null;b=b.addModeClass?mg:ng;return b[a]||(b[a]=a.replace(/\S+/g,"cm-$&"))}function oe(a,b){var c=U("span",null,null,T?"padding-right: .1px":null),c={pre:U("pre",[c],"CodeMirror-line"),content:c,col:0,pos:0,cm:a,trailingSpace:!1,splitSpaces:(D||T)&&a.getOption("lineWrapping")};b.measure={};for(var d=0;d<=(b.rest?b.rest.length:0);d++){var e=d?b.rest[d-1]:b.line,f=void 0;
43
+ c.pos=0;c.addToken=og;var g=a.display.measure;if(null!=hd)g=hd;else{var h=F(g,document.createTextNode("A\u062eA")),k=wb(h,0,1).getBoundingClientRect(),h=wb(h,1,2).getBoundingClientRect();H(g);g=k&&k.left!=k.right?hd=3>h.right-k.right:!1}g&&(f=za(e,a.doc.direction))&&(c.addToken=pg(c.addToken,f));c.map=[];var l=b!=a.display.externalMeasured&&E(e);a:{var m=h=k=g=void 0,p=void 0,n=void 0,q=void 0,f=c,l=ie(a,e,l),r=e.markedSpans,t=e.text,u=0;if(r)for(var v=t.length,K=0,A=1,x="",w=0;;){if(w==K){p=m=h=
44
+ k=n="";g=null;for(var w=Infinity,ua=[],y=void 0,C=0;C<r.length;++C){var z=r[C],B=z.marker;"bookmark"==B.type&&z.from==K&&B.widgetNode?ua.push(B):z.from<=K&&(null==z.to||z.to>K||B.collapsed&&z.to==K&&z.from==K)?(null!=z.to&&z.to!=K&&w>z.to&&(w=z.to,m=""),B.className&&(p+=" "+B.className),B.css&&(n=(n?n+";":"")+B.css),B.startStyle&&z.from==K&&(h+=" "+B.startStyle),B.endStyle&&z.to==w&&(y||(y=[])).push(B.endStyle,z.to),B.title&&!k&&(k=B.title),B.collapsed&&(!g||0>Yd(g.marker,B))&&(g=z)):z.from>K&&w>
45
+ z.from&&(w=z.from)}if(y)for(C=0;C<y.length;C+=2)y[C+1]==w&&(m+=" "+y[C]);if(!g||g.from==K)for(y=0;y<ua.length;++y)pe(f,0,ua[y]);if(g&&(g.from||0)==K){pe(f,(null==g.to?v+1:g.to)-K,g.marker,null==g.from);if(null==g.to)break a;g.to==K&&(g=!1)}}if(K>=v)break;for(ua=Math.min(v,w);;){if(x){y=K+x.length;g||(C=y>ua?x.slice(0,ua-K):x,f.addToken(f,C,q?q+p:p,h,K+C.length==w?m:"",k,n));if(y>=ua){x=x.slice(ua-K);K=ua;break}K=y;h=""}x=t.slice(u,u=l[A++]);q=ne(l[A++],f.cm.options)}}else for(g=1;g<l.length;g+=2)f.addToken(f,
46
+ t.slice(u,u=l[g]),ne(l[g+1],f.cm.options))}e.styleClasses&&(e.styleClasses.bgClass&&(c.bgClass=Jc(e.styleClasses.bgClass,c.bgClass||"")),e.styleClasses.textClass&&(c.textClass=Jc(e.styleClasses.textClass,c.textClass||"")));0==c.map.length&&c.map.push(0,0,c.content.appendChild(hg(a.display.measure)));0==d?(b.measure.map=c.map,b.measure.cache={}):((b.measure.maps||(b.measure.maps=[])).push(c.map),(b.measure.caches||(b.measure.caches=[])).push({}))}T&&(d=c.content.lastChild,/\bcm-tab\b/.test(d.className)||
47
+ d.querySelector&&d.querySelector(".cm-tab"))&&(c.content.className="cm-tab-wrap-hack");J(a,"renderLine",a,b.line,c.pre);c.pre.className&&(c.textClass=Jc(c.pre.className,c.textClass||""));return c}function qg(a){var b=t("span","\u2022","cm-invalidchar");b.title="\\u"+a.charCodeAt(0).toString(16);b.setAttribute("aria-label",b.title);return b}function og(a,b,c,d,e,f,g){if(b){if(a.splitSpaces){var h=a.trailingSpace;if(1<b.length&&!/ /.test(b))h=b;else{for(var k="",l=0;l<b.length;l++){var m=b.charAt(l);
48
+ " "!=m||!h||l!=b.length-1&&32!=b.charCodeAt(l+1)||(m="\u00a0");k+=m;h=" "==m}h=k}}else h=b;k=h;l=a.cm.state.specialChars;m=!1;if(l.test(b)){h=document.createDocumentFragment();for(var p=0;;){l.lastIndex=p;var n=l.exec(b),q=n?n.index-p:b.length-p;if(q){var r=document.createTextNode(k.slice(p,p+q));D&&9>B?h.appendChild(t("span",[r])):h.appendChild(r);a.map.push(a.pos,a.pos+q,r);a.col+=q;a.pos+=q}if(!n)break;p+=q+1;"\t"==n[0]?(n=a.cm.options.tabSize,n-=a.col%n,q=h.appendChild(t("span",Mc(n),"cm-tab")),
49
+ q.setAttribute("role","presentation"),q.setAttribute("cm-text","\t"),a.col+=n):("\r"==n[0]||"\n"==n[0]?(q=h.appendChild(t("span","\r"==n[0]?"\u240d":"\u2424","cm-invalidchar")),q.setAttribute("cm-text",n[0])):(q=a.cm.options.specialCharPlaceholder(n[0]),q.setAttribute("cm-text",n[0]),D&&9>B?h.appendChild(t("span",[q])):h.appendChild(q)),a.col+=1);a.map.push(a.pos,a.pos+1,q);a.pos++}}else a.col+=b.length,h=document.createTextNode(k),a.map.push(a.pos,a.pos+b.length,h),D&&9>B&&(m=!0),a.pos+=b.length;
50
+ a.trailingSpace=32==k.charCodeAt(b.length-1);if(c||d||e||m||g)return b=c||"",d&&(b+=d),e&&(b+=e),d=t("span",[h],b,g),f&&(d.title=f),a.content.appendChild(d);a.content.appendChild(h)}}function pg(a,b){return function(c,d,e,f,g,h,k){e=e?e+" cm-force-border":"cm-force-border";for(var l=c.pos,m=l+d.length;;){for(var p=void 0,n=0;n<b.length&&!(p=b[n],p.to>l&&p.from<=l);n++);if(p.to>=m)return a(c,d,e,f,g,h,k);a(c,d.slice(0,p.to-l),e,f,null,h,k);f=null;d=d.slice(p.to-l);l=p.to}}}function pe(a,b,c,d){var e=
51
+ !d&&c.widgetNode;e&&a.map.push(a.pos,a.pos+b,e);!d&&a.cm.display.input.needsContentAttribute&&(e||(e=a.content.appendChild(document.createElement("span"))),e.setAttribute("cm-marker",c.id));e&&(a.cm.display.input.setUneditable(e),a.content.appendChild(e));a.pos+=b;a.trailingSpace=!1}function qe(a,b,c){for(var d=this.line=b,e;d=Ja(d,!1);)d=d.find(1,!0).line,(e||(e=[])).push(d);this.size=(this.rest=e)?E(y(this.rest))-c+1:1;this.node=this.text=null;this.hidden=Ka(a,b)}function oc(a,b,c){var d=[],e;for(e=
52
+ b;e<c;)b=new qe(a.doc,u(a.doc,e),e),e+=b.size,d.push(b);return d}function rg(a,b){if(a=a.ownsGroup)try{var c=a.delayedCallbacks,d=0;do{for(;d<c.length;d++)c[d].call(null);for(var e=0;e<a.ops.length;e++){var f=a.ops[e];if(f.cursorActivityHandlers)for(;f.cursorActivityCalled<f.cursorActivityHandlers.length;)f.cursorActivityHandlers[f.cursorActivityCalled++].call(null,f.cm)}}while(d<c.length)}finally{db=null,b(a)}}function R(a,b){var c=a._handlers&&a._handlers[b]||lc;if(c.length){var d=Array.prototype.slice.call(arguments,
53
+ 2);if(db)var e=db.delayedCallbacks;else xb?e=xb:(e=xb=[],setTimeout(sg,0));for(var f=function(a){e.push(function(){return c[a].apply(null,d)})},g=0;g<c.length;++g)f(g)}}function sg(){var a=xb;xb=null;for(var b=0;b<a.length;++b)a[b]()}function re(a,b,c,d){for(var e=0;e<b.changes.length;e++){var f=b.changes[e];if("text"==f){var f=a,g=b,h=g.text.className,k=se(f,g);g.text==g.node&&(g.node=k.pre);g.text.parentNode.replaceChild(k.pre,g.text);g.text=k.pre;k.bgClass!=g.bgClass||k.textClass!=g.textClass?
54
+ (g.bgClass=k.bgClass,g.textClass=k.textClass,id(f,g)):h&&(g.text.className=h)}else if("gutter"==f)te(a,b,c,d);else if("class"==f)id(a,b);else if("widget"==f){f=a;g=b;h=d;g.alignable&&(g.alignable=null);for(var k=g.node.firstChild,l;k;k=l)l=k.nextSibling,"CodeMirror-linewidget"==k.className&&g.node.removeChild(k);ue(f,g,h)}}b.changes=null}function yb(a){a.node==a.text&&(a.node=t("div",null,null,"position: relative"),a.text.parentNode&&a.text.parentNode.replaceChild(a.node,a.text),a.node.appendChild(a.text),
55
+ D&&8>B&&(a.node.style.zIndex=2));return a.node}function se(a,b){var c=a.display.externalMeasured;return c&&c.line==b.line?(a.display.externalMeasured=null,b.measure=c.measure,c.built):oe(a,b)}function id(a,b){var c=b.bgClass?b.bgClass+" "+(b.line.bgClass||""):b.line.bgClass;c&&(c+=" CodeMirror-linebackground");if(b.background)c?b.background.className=c:(b.background.parentNode.removeChild(b.background),b.background=null);else if(c){var d=yb(b);b.background=d.insertBefore(t("div",null,c),d.firstChild);
56
+ a.display.input.setUneditable(b.background)}b.line.wrapClass?yb(b).className=b.line.wrapClass:b.node!=b.text&&(b.node.className="");b.text.className=(b.textClass?b.textClass+" "+(b.line.textClass||""):b.line.textClass)||""}function te(a,b,c,d){b.gutter&&(b.node.removeChild(b.gutter),b.gutter=null);b.gutterBackground&&(b.node.removeChild(b.gutterBackground),b.gutterBackground=null);if(b.line.gutterClass){var e=yb(b);b.gutterBackground=t("div",null,"CodeMirror-gutter-background "+b.line.gutterClass,
57
+ "left: "+(a.options.fixedGutter?d.fixedPos:-d.gutterTotalWidth)+"px; width: "+d.gutterTotalWidth+"px");a.display.input.setUneditable(b.gutterBackground);e.insertBefore(b.gutterBackground,b.text)}e=b.line.gutterMarkers;if(a.options.lineNumbers||e){var f=yb(b),g=b.gutter=t("div",null,"CodeMirror-gutter-wrapper","left: "+(a.options.fixedGutter?d.fixedPos:-d.gutterTotalWidth)+"px");a.display.input.setUneditable(g);f.insertBefore(g,b.text);b.line.gutterClass&&(g.className+=" "+b.line.gutterClass);!a.options.lineNumbers||
58
+ e&&e["CodeMirror-linenumbers"]||(b.lineNumber=g.appendChild(t("div",Qc(a.options,c),"CodeMirror-linenumber CodeMirror-gutter-elt","left: "+d.gutterLeft["CodeMirror-linenumbers"]+"px; width: "+a.display.lineNumInnerWidth+"px")));if(e)for(b=0;b<a.options.gutters.length;++b)c=a.options.gutters[b],(f=e.hasOwnProperty(c)&&e[c])&&g.appendChild(t("div",[f],"CodeMirror-gutter-elt","left: "+d.gutterLeft[c]+"px; width: "+d.gutterWidth[c]+"px"))}}function tg(a,b,c,d){var e=se(a,b);b.text=b.node=e.pre;e.bgClass&&
59
+ (b.bgClass=e.bgClass);e.textClass&&(b.textClass=e.textClass);id(a,b);te(a,b,c,d);ue(a,b,d);return b.node}function ue(a,b,c){ve(a,b.line,b,c,!0);if(b.rest)for(var d=0;d<b.rest.length;d++)ve(a,b.rest[d],b,c,!1)}function ve(a,b,c,d,e){if(b.widgets){var f=yb(c),g=0;for(b=b.widgets;g<b.length;++g){var h=b[g],k=t("div",[h.node],"CodeMirror-linewidget");h.handleMouseEvents||k.setAttribute("cm-ignore-events","true");var l=h,m=k,p=d;if(l.noHScroll){(c.alignable||(c.alignable=[])).push(m);var n=p.wrapperWidth;
60
+ m.style.left=p.fixedPos+"px";l.coverGutter||(n-=p.gutterTotalWidth,m.style.paddingLeft=p.gutterTotalWidth+"px");m.style.width=n+"px"}l.coverGutter&&(m.style.zIndex=5,m.style.position="relative",l.noHScroll||(m.style.marginLeft=-p.gutterTotalWidth+"px"));a.display.input.setUneditable(k);e&&h.above?f.insertBefore(k,c.gutter||c.text):f.appendChild(k);R(h,"redraw")}}}function zb(a){if(null!=a.height)return a.height;var b=a.doc.cm;if(!b)return 0;if(!ha(document.body,a.node)){var c="position: relative;";
61
+ a.coverGutter&&(c+="margin-left: -"+b.display.gutters.offsetWidth+"px;");a.noHScroll&&(c+="width: "+b.display.wrapper.clientWidth+"px;");F(b.display.measure,t("div",[a.node],null,c))}return a.height=a.node.parentNode.offsetHeight}function va(a,b){for(b=b.target||b.srcElement;b!=a.wrapper;b=b.parentNode)if(!b||1==b.nodeType&&"true"==b.getAttribute("cm-ignore-events")||b.parentNode==a.sizer&&b!=a.mover)return!0}function jd(a){return a.mover.offsetHeight-a.lineSpace.offsetHeight}function we(a){if(a.cachedPaddingH)return a.cachedPaddingH;
62
+ var b=F(a.measure,t("pre","x")),b=window.getComputedStyle?window.getComputedStyle(b):b.currentStyle,b={left:parseInt(b.paddingLeft),right:parseInt(b.paddingRight)};isNaN(b.left)||isNaN(b.right)||(a.cachedPaddingH=b);return b}function pa(a){return 30-a.display.nativeBarWidth}function Na(a){return a.display.scroller.clientWidth-pa(a)-a.display.barWidth}function kd(a){return a.display.scroller.clientHeight-pa(a)-a.display.barHeight}function xe(a,b,c){if(a.line==b)return{map:a.measure.map,cache:a.measure.cache};
63
+ for(var d=0;d<a.rest.length;d++)if(a.rest[d]==b)return{map:a.measure.maps[d],cache:a.measure.caches[d]};for(b=0;b<a.rest.length;b++)if(E(a.rest[b])>c)return{map:a.measure.maps[b],cache:a.measure.caches[b],before:!0}}function ld(a,b){if(b>=a.display.viewFrom&&b<a.display.viewTo)return a.display.view[Oa(a,b)];if((a=a.display.externalMeasured)&&b>=a.lineN&&b<a.lineN+a.size)return a}function $a(a,b){var c=E(b),d=ld(a,c);d&&!d.text?d=null:d&&d.changes&&(re(a,d,c,md(a)),a.curOp.forceUpdate=!0);if(!d){var e=
64
+ na(b);d=E(e);e=a.display.externalMeasured=new qe(a.doc,e,d);e.lineN=d;d=e.built=oe(a,e);e.text=d.pre;F(a.display.lineMeasure,d.pre);d=e}a=xe(d,b,c);return{line:b,view:d,rect:null,map:a.map,cache:a.cache,before:a.before,hasHeights:!1}}function sa(a,b,c,d,e){b.before&&(c=-1);var f=c+(d||"");if(b.cache.hasOwnProperty(f))a=b.cache[f];else{b.rect||(b.rect=b.view.text.getBoundingClientRect());if(!b.hasHeights){var g=b.view,h=b.rect,k=a.options.lineWrapping,l=k&&Na(a);if(!g.measure.heights||k&&g.measure.width!=
65
+ l){var m=g.measure.heights=[];if(k)for(g.measure.width=l,g=g.text.firstChild.getClientRects(),k=0;k<g.length-1;k++){var l=g[k],p=g[k+1];2<Math.abs(l.bottom-p.bottom)&&m.push((l.bottom+p.top)/2-h.top)}m.push(h.bottom-h.top)}b.hasHeights=!0}m=d;g=ye(b.map,c,m);d=g.node;h=g.start;k=g.end;c=g.collapse;if(3==d.nodeType){for(var n=0;4>n;n++){for(;h&&Oc(b.line.text.charAt(g.coverStart+h));)--h;for(;g.coverStart+k<g.coverEnd&&Oc(b.line.text.charAt(g.coverStart+k));)++k;if(D&&9>B&&0==h&&k==g.coverEnd-g.coverStart)var q=
66
+ d.parentNode.getBoundingClientRect();else{q=wb(d,h,k).getClientRects();k=ze;if("left"==m)for(l=0;l<q.length&&(k=q[l]).left==k.right;l++);else for(l=q.length-1;0<=l&&(k=q[l]).left==k.right;l--);q=k}if(q.left||q.right||0==h)break;k=h;--h;c="right"}D&&11>B&&((n=!window.screen||null==screen.logicalXDPI||screen.logicalXDPI==screen.deviceXDPI)||(null!=nd?n=nd:(m=F(a.display.measure,t("span","x")),n=m.getBoundingClientRect(),m=wb(m,0,1).getBoundingClientRect(),n=nd=1<Math.abs(n.left-m.left)),n=!n),n||(n=
67
+ screen.logicalXDPI/screen.deviceXDPI,m=screen.logicalYDPI/screen.deviceYDPI,q={left:q.left*n,right:q.right*n,top:q.top*m,bottom:q.bottom*m}))}else 0<h&&(c=m="right"),q=a.options.lineWrapping&&1<(n=d.getClientRects()).length?n["right"==m?n.length-1:0]:d.getBoundingClientRect();!(D&&9>B)||h||q&&(q.left||q.right)||(q=(q=d.parentNode.getClientRects()[0])?{left:q.left,right:q.left+Ab(a.display),top:q.top,bottom:q.bottom}:ze);d=q.top-b.rect.top;h=q.bottom-b.rect.top;n=(d+h)/2;m=b.view.measure.heights;for(g=
68
+ 0;g<m.length-1&&!(n<m[g]);g++);c={left:("right"==c?q.right:q.left)-b.rect.left,right:("left"==c?q.left:q.right)-b.rect.left,top:g?m[g-1]:0,bottom:m[g]};q.left||q.right||(c.bogus=!0);a.options.singleCursorHeightPerLine||(c.rtop=d,c.rbottom=h);a=c;a.bogus||(b.cache[f]=a)}return{left:a.left,right:a.right,top:e?a.rtop:a.top,bottom:e?a.rbottom:a.bottom}}function ye(a,b,c){for(var d,e,f,g,h,k,l=0;l<a.length;l+=3){h=a[l];k=a[l+1];if(b<h)e=0,f=1,g="left";else if(b<k)e=b-h,f=e+1;else if(l==a.length-3||b==
69
+ k&&a[l+3]>b)f=k-h,e=f-1,b>=k&&(g="right");if(null!=e){d=a[l+2];h==k&&c==(d.insertLeft?"left":"right")&&(g=c);if("left"==c&&0==e)for(;l&&a[l-2]==a[l-3]&&a[l-1].insertLeft;)d=a[(l-=3)+2],g="left";if("right"==c&&e==k-h)for(;l<a.length-3&&a[l+3]==a[l+4]&&!a[l+5].insertLeft;)d=a[(l+=3)+2],g="right";break}}return{node:d,start:e,end:f,collapse:g,coverStart:h,coverEnd:k}}function Ae(a){if(a.measure&&(a.measure.cache={},a.measure.heights=null,a.rest))for(var b=0;b<a.rest.length;b++)a.measure.caches[b]={}}
70
+ function Be(a){a.display.externalMeasure=null;H(a.display.lineMeasure);for(var b=0;b<a.display.view.length;b++)Ae(a.display.view[b])}function Bb(a){Be(a);a.display.cachedCharWidth=a.display.cachedTextHeight=a.display.cachedPaddingH=null;a.options.lineWrapping||(a.display.maxLineChanged=!0);a.display.lineNumChars=null}function Ce(){return pc&&qc?-(document.body.getBoundingClientRect().left-parseInt(getComputedStyle(document.body).marginLeft)):window.pageXOffset||(document.documentElement||document.body).scrollLeft}
71
+ function De(){return pc&&qc?-(document.body.getBoundingClientRect().top-parseInt(getComputedStyle(document.body).marginTop)):window.pageYOffset||(document.documentElement||document.body).scrollTop}function La(a,b,c,d,e){if(!e&&b.widgets)for(e=0;e<b.widgets.length;++e)if(b.widgets[e].above){var f=zb(b.widgets[e]);c.top+=f;c.bottom+=f}if("line"==d)return c;d||(d="local");b=oa(b);b="local"==d?b+a.display.lineSpace.offsetTop:b-a.display.viewOffset;if("page"==d||"window"==d)a=a.display.lineSpace.getBoundingClientRect(),
72
+ b+=a.top+("window"==d?0:De()),d=a.left+("window"==d?0:Ce()),c.left+=d,c.right+=d;c.top+=b;c.bottom+=b;return c}function Ee(a,b,c){if("div"==c)return b;var d=b.left;b=b.top;"page"==c?(d-=Ce(),b-=De()):"local"!=c&&c||(c=a.display.sizer.getBoundingClientRect(),d+=c.left,b+=c.top);a=a.display.lineSpace.getBoundingClientRect();return{left:d-a.left,top:b-a.top}}function rc(a,b,c,d,e){d||(d=u(a.doc,b.line));var f=d;b=b.ch;d=sa(a,$a(a,d),b,e);return La(a,f,d,c)}function ja(a,b,c,d,e,f){function g(b,g){b=
73
+ sa(a,e,b,g?"right":"left",f);g?b.left=b.right:b.right=b.left;return La(a,d,b,c)}function h(a,b,d){return g(d?a-1:a,0!=k[b].level%2!=d)}d=d||u(a.doc,b.line);e||(e=$a(a,d));var k=za(d,a.doc.direction),l=b.ch;b=b.sticky;l>=d.text.length?(l=d.text.length,b="before"):0>=l&&(l=0,b="after");if(!k)return g("before"==b?l-1:l,"before"==b);var m=Xc(k,l,b),p=tb,m=h(l,m,"before"==b);null!=p&&(m.other=h(l,p,"before"!=b));return m}function Fe(a,b){var c=0;b=x(a.doc,b);a.options.lineWrapping||(c=Ab(a.display)*b.ch);
74
+ b=u(a.doc,b.line);a=oa(b)+a.display.lineSpace.offsetTop;return{left:c,right:c,top:a,bottom:a+b.height}}function od(a,b,c){var d=a.doc;c+=a.display.viewOffset;if(0>c)return a=r(d.first,0,null),a.xRel=-1,a.outside=!0,a;var e=Ia(d,c),f=d.first+d.size-1;if(e>f)return a=u(d,f).text.length,a=r(d.first+d.size-1,a,null),a.xRel=1,a.outside=!0,a;0>b&&(b=0);for(f=u(d,e);;)if(d=ug(a,f,e,b,c),f=(e=Ja(f,!1))&&e.find(0,!0),e&&(d.ch>f.from.ch||d.ch==f.from.ch&&0<d.xRel))e=E(f=f.to.line);else return d}function be(a,
75
+ b,c,d){var e=b.text.length,f=gc(function(e){return La(a,b,sa(a,c,e-1),"line").bottom<=d},e,0),e=gc(function(e){return La(a,b,sa(a,c,e),"line").top>d},f,e);return{begin:f,end:e}}function ug(a,b,c,d,e){e-=oa(b);var f=0,g=b.text.length,h=$a(a,b);if(za(b,a.doc.direction)){if(a.options.lineWrapping){var k=be(a,b,h,e);f=k.begin;g=k.end}c=new r(c,Math.floor(f+(g-f)/2));var l=ja(a,c,"line",b,h).left;k=l<d?1:-1;var m=l-d,p=Math.ceil((g-f)/4);a:do{l=m;var n=c;for(var q=0;q<p;++q){var I=c;c=ae(a,b,c,k);if(null==
76
+ c||c.ch<f||g<=("before"==c.sticky?c.ch-1:c.ch)){c=I;break a}}m=ja(a,c,"line",b,h).left-d;1<p&&(p=Math.min(p,Math.ceil(Math.abs(m)/(Math.abs(m-l)/p))),k=0>m?1:-1)}while(0!=m&&(1<p||0>k!=0>m&&Math.abs(m)<=Math.abs(l)));if(Math.abs(m)>Math.abs(l)){if(0>m==0>l)throw Error("Broke out of infinite loop in coordsCharInner");c=n}}else f=gc(function(c){var f=La(a,b,sa(a,h,c),"line");return f.top>e?(g=Math.min(c,g),!0):f.bottom<=e?!1:f.left>d?!0:f.right<d?!1:d-f.left<f.right-d},f,g),f=Td(b.text,f,1),c=new r(c,
77
+ f,f==g?"before":"after");f=ja(a,c,"line",b,h);if(e<f.top||f.bottom<e)c.outside=!0;c.xRel=d<f.left?-1:d>f.right?1:0;return c}function Pa(a){if(null!=a.cachedTextHeight)return a.cachedTextHeight;if(null==Qa){Qa=t("pre");for(var b=0;49>b;++b)Qa.appendChild(document.createTextNode("x")),Qa.appendChild(t("br"));Qa.appendChild(document.createTextNode("x"))}F(a.measure,Qa);b=Qa.offsetHeight/50;3<b&&(a.cachedTextHeight=b);H(a.measure);return b||1}function Ab(a){if(null!=a.cachedCharWidth)return a.cachedCharWidth;
78
+ var b=t("span","xxxxxxxxxx"),c=t("pre",[b]);F(a.measure,c);b=b.getBoundingClientRect();b=(b.right-b.left)/10;2<b&&(a.cachedCharWidth=b);return b||10}function md(a){for(var b=a.display,c={},d={},e=b.gutters.clientLeft,f=b.gutters.firstChild,g=0;f;f=f.nextSibling,++g)c[a.options.gutters[g]]=f.offsetLeft+f.clientLeft+e,d[a.options.gutters[g]]=f.clientWidth;return{fixedPos:pd(b),gutterTotalWidth:b.gutters.offsetWidth,gutterLeft:c,gutterWidth:d,wrapperWidth:b.wrapper.clientWidth}}function pd(a){return a.scroller.getBoundingClientRect().left-
79
+ a.sizer.getBoundingClientRect().left}function Ge(a){var b=Pa(a.display),c=a.options.lineWrapping,d=c&&Math.max(5,a.display.scroller.clientWidth/Ab(a.display)-3);return function(e){if(Ka(a.doc,e))return 0;var f=0;if(e.widgets)for(var g=0;g<e.widgets.length;g++)e.widgets[g].height&&(f+=e.widgets[g].height);return c?f+(Math.ceil(e.text.length/d)||1)*b:f+b}}function qd(a){var b=a.doc,c=Ge(a);b.iter(function(a){var b=c(a);b!=a.height&&ma(a,b)})}function Ra(a,b,c,d){var e=a.display;if(!c&&"true"==(b.target||
80
+ b.srcElement).getAttribute("cm-not-content"))return null;c=e.lineSpace.getBoundingClientRect();try{var f=b.clientX-c.left;var g=b.clientY-c.top}catch(k){return null}b=od(a,f,g);var h;d&&1==b.xRel&&(h=u(a.doc,b.line).text).length==b.ch&&(d=fa(h,h.length,a.options.tabSize)-h.length,b=r(b.line,Math.max(0,Math.round((f-we(a.display).left)/Ab(a.display))-d)));return b}function Oa(a,b){if(b>=a.display.viewTo)return null;b-=a.display.viewFrom;if(0>b)return null;a=a.display.view;for(var c=0;c<a.length;c++)if(b-=
81
+ a[c].size,0>b)return c}function Cb(a){a.display.input.showSelection(a.display.input.prepareSelection())}function He(a,b){for(var c=a.doc,d={},e=d.cursors=document.createDocumentFragment(),f=d.selection=document.createDocumentFragment(),g=0;g<c.sel.ranges.length;g++)if(!1!==b||g!=c.sel.primIndex){var h=c.sel.ranges[g];if(!(h.from().line>=a.display.viewTo||h.to().line<a.display.viewFrom)){var k=h.empty();(k||a.options.showCursorWhenSelecting)&&Ie(a,h.head,e);k||vg(a,h,f)}}return d}function Ie(a,b,c){b=
82
+ ja(a,b,"div",null,null,!a.options.singleCursorHeightPerLine);var d=c.appendChild(t("div","\u00a0","CodeMirror-cursor"));d.style.left=b.left+"px";d.style.top=b.top+"px";d.style.height=Math.max(0,b.bottom-b.top)*a.options.cursorHeight+"px";b.other&&(a=c.appendChild(t("div","\u00a0","CodeMirror-cursor CodeMirror-secondarycursor")),a.style.display="",a.style.left=b.other.left+"px",a.style.top=b.other.top+"px",a.style.height=.85*(b.other.bottom-b.other.top)+"px")}function vg(a,b,c){function d(a,b,d,c){0>
83
+ b&&(b=0);b=Math.round(b);c=Math.round(c);h.appendChild(t("div",null,"CodeMirror-selected","position: absolute; left: "+a+"px;\n top: "+b+"px; width: "+(null==d?m-a:d)+"px;\n height: "+(c-b)+"px"))}function e(b,c,e){var f=u(g,b),h=f.text.length,k,n;fg(za(f,g.direction),c||0,null==e?h:e,function(g,p,q){var I=rc(a,r(b,g),"div",f,"left"),t;if(g==p){var u=I;q=t=I.left}else u=rc(a,r(b,p-1),"div",f,"right"),"rtl"==q&&(q=I,I=u,u=q),q=I.left,t=u.right;
84
+ null==c&&0==g&&(q=l);3<u.top-I.top&&(d(q,I.top,null,I.bottom),q=l,I.bottom<u.top&&d(q,I.bottom,null,u.top));null==e&&p==h&&(t=m);if(!k||I.top<k.top||I.top==k.top&&I.left<k.left)k=I;if(!n||u.bottom>n.bottom||u.bottom==n.bottom&&u.right>n.right)n=u;q<l+1&&(q=l);d(q,u.top,t-q,u.bottom)});return{start:k,end:n}}var f=a.display,g=a.doc,h=document.createDocumentFragment(),k=we(a.display),l=k.left,m=Math.max(f.sizerWidth,Na(a)-f.sizer.offsetLeft)-k.right,f=b.from();b=b.to();if(f.line==b.line)e(f.line,f.ch,
85
+ b.ch);else{var p=u(g,f.line),k=u(g,b.line),k=na(p)==na(k),f=e(f.line,f.ch,k?p.text.length+1:null).end;b=e(b.line,k?0:null,b.ch).start;k&&(f.top<b.top-2?(d(f.right,f.top,null,f.bottom),d(l,b.top,b.left,b.bottom)):d(f.right,f.top,b.left-f.right,f.bottom));f.bottom<b.top&&d(l,f.bottom,null,b.top)}c.appendChild(h)}function rd(a){if(a.state.focused){var b=a.display;clearInterval(b.blinker);var c=!0;b.cursorDiv.style.visibility="";0<a.options.cursorBlinkRate?b.blinker=setInterval(function(){return b.cursorDiv.style.visibility=
86
+ (c=!c)?"":"hidden"},a.options.cursorBlinkRate):0>a.options.cursorBlinkRate&&(b.cursorDiv.style.visibility="hidden")}}function Je(a){a.state.focused||(a.display.input.focus(),sd(a))}function Ke(a){a.state.delayingBlurEvent=!0;setTimeout(function(){a.state.delayingBlurEvent&&(a.state.delayingBlurEvent=!1,Db(a))},100)}function sd(a,b){a.state.delayingBlurEvent&&(a.state.delayingBlurEvent=!1);"nocursor"!=a.options.readOnly&&(a.state.focused||(J(a,"focus",a,b),a.state.focused=!0,Fa(a.display.wrapper,"CodeMirror-focused"),
87
+ a.curOp||a.display.selForContextMenu==a.doc.sel||(a.display.input.reset(),T&&setTimeout(function(){return a.display.input.reset(!0)},20)),a.display.input.receivedFocus()),rd(a))}function Db(a,b){a.state.delayingBlurEvent||(a.state.focused&&(J(a,"blur",a,b),a.state.focused=!1,Sa(a.display.wrapper,"CodeMirror-focused")),clearInterval(a.display.blinker),setTimeout(function(){a.state.focused||(a.display.shift=!1)},150))}function sc(a){a=a.display;for(var b=a.lineDiv.offsetTop,c=0;c<a.view.length;c++){var d=
88
+ a.view[c];if(!d.hidden){if(D&&8>B){var e=d.node.offsetTop+d.node.offsetHeight;var f=e-b;b=e}else f=d.node.getBoundingClientRect(),f=f.bottom-f.top;e=d.line.height-f;2>f&&(f=Pa(a));if(.005<e||-.005>e)if(ma(d.line,f),Le(d.line),d.rest)for(f=0;f<d.rest.length;f++)Le(d.rest[f])}}}function Le(a){if(a.widgets)for(var b=0;b<a.widgets.length;++b)a.widgets[b].height=a.widgets[b].node.parentNode.offsetHeight}function td(a,b,c){var d=c&&null!=c.top?Math.max(0,c.top):a.scroller.scrollTop,d=Math.floor(d-a.lineSpace.offsetTop),
89
+ e=c&&null!=c.bottom?c.bottom:d+a.wrapper.clientHeight,d=Ia(b,d),e=Ia(b,e);if(c&&c.ensure){var f=c.ensure.from.line;c=c.ensure.to.line;f<d?(d=f,e=Ia(b,oa(u(b,f))+a.wrapper.clientHeight)):Math.min(c,b.lastLine())>=e&&(d=Ia(b,oa(u(b,c))-a.wrapper.clientHeight),e=c)}return{from:d,to:Math.max(e,d+1)}}function Me(a){var b=a.display,c=b.view;if(b.alignWidgets||b.gutters.firstChild&&a.options.fixedGutter){for(var d=pd(b)-b.scroller.scrollLeft+a.doc.scrollLeft,e=b.gutters.offsetWidth,f=d+"px",g=0;g<c.length;g++)if(!c[g].hidden){a.options.fixedGutter&&
90
+ (c[g].gutter&&(c[g].gutter.style.left=f),c[g].gutterBackground&&(c[g].gutterBackground.style.left=f));var h=c[g].alignable;if(h)for(var k=0;k<h.length;k++)h[k].style.left=f}a.options.fixedGutter&&(b.gutters.style.left=d+e+"px")}}function Ne(a){if(!a.options.lineNumbers)return!1;var b=a.doc,b=Qc(a.options,b.first+b.size-1),c=a.display;if(b.length!=c.lineNumChars){var d=c.measure.appendChild(t("div",[t("div",b)],"CodeMirror-linenumber CodeMirror-gutter-elt")),e=d.firstChild.offsetWidth,d=d.offsetWidth-
91
+ e;c.lineGutter.style.width="";c.lineNumInnerWidth=Math.max(e,c.lineGutter.offsetWidth-d)+1;c.lineNumWidth=c.lineNumInnerWidth+d;c.lineNumChars=c.lineNumInnerWidth?b.length:-1;c.lineGutter.style.width=c.lineNumWidth+"px";ud(a);return!0}return!1}function vd(a,b){var c=a.display,d=Pa(a.display);0>b.top&&(b.top=0);var e=a.curOp&&null!=a.curOp.scrollTop?a.curOp.scrollTop:c.scroller.scrollTop,f=kd(a),g={};b.bottom-b.top>f&&(b.bottom=b.top+f);var h=a.doc.height+jd(c),k=b.top<d,d=b.bottom>h-d;b.top<e?g.scrollTop=
92
+ k?0:b.top:b.bottom>e+f&&(f=Math.min(b.top,(d?h:b.bottom)-f),f!=e&&(g.scrollTop=f));e=a.curOp&&null!=a.curOp.scrollLeft?a.curOp.scrollLeft:c.scroller.scrollLeft;a=Na(a)-(a.options.fixedGutter?c.gutters.offsetWidth:0);if(c=b.right-b.left>a)b.right=b.left+a;10>b.left?g.scrollLeft=0:b.left<e?g.scrollLeft=Math.max(0,b.left-(c?0:10)):b.right>a+e-3&&(g.scrollLeft=b.right+(c?0:10)-a);return g}function tc(a,b){null!=b&&(uc(a),a.curOp.scrollTop=(null==a.curOp.scrollTop?a.doc.scrollTop:a.curOp.scrollTop)+b)}
93
+ function eb(a){uc(a);var b=a.getCursor();a.curOp.scrollToPos={from:b,to:b,margin:a.options.cursorScrollMargin}}function Eb(a,b,c){null==b&&null==c||uc(a);null!=b&&(a.curOp.scrollLeft=b);null!=c&&(a.curOp.scrollTop=c)}function uc(a){var b=a.curOp.scrollToPos;if(b){a.curOp.scrollToPos=null;var c=Fe(a,b.from),d=Fe(a,b.to);Oe(a,c,d,b.margin)}}function Oe(a,b,c,d){b=vd(a,{left:Math.min(b.left,c.left),top:Math.min(b.top,c.top)-d,right:Math.max(b.right,c.right),bottom:Math.max(b.bottom,c.bottom)+d});Eb(a,
94
+ b.scrollLeft,b.scrollTop)}function Fb(a,b){2>Math.abs(a.doc.scrollTop-b)||(xa||wd(a,{top:b}),Pe(a,b,!0),xa&&wd(a),Gb(a,100))}function Pe(a,b,c){b=Math.min(a.display.scroller.scrollHeight-a.display.scroller.clientHeight,b);if(a.display.scroller.scrollTop!=b||c)a.doc.scrollTop=b,a.display.scrollbars.setScrollTop(b),a.display.scroller.scrollTop!=b&&(a.display.scroller.scrollTop=b)}function Ta(a,b,c,d){b=Math.min(b,a.display.scroller.scrollWidth-a.display.scroller.clientWidth);(c?b==a.doc.scrollLeft:
95
+ 2>Math.abs(a.doc.scrollLeft-b))&&!d||(a.doc.scrollLeft=b,Me(a),a.display.scroller.scrollLeft!=b&&(a.display.scroller.scrollLeft=b),a.display.scrollbars.setScrollLeft(b))}function Hb(a){var b=a.display,c=b.gutters.offsetWidth,d=Math.round(a.doc.height+jd(a.display));return{clientHeight:b.scroller.clientHeight,viewHeight:b.wrapper.clientHeight,scrollWidth:b.scroller.scrollWidth,clientWidth:b.scroller.clientWidth,viewWidth:b.wrapper.clientWidth,barLeft:a.options.fixedGutter?c:0,docHeight:d,scrollHeight:d+
96
+ pa(a)+b.barHeight,nativeBarWidth:b.nativeBarWidth,gutterWidth:c}}function fb(a,b){b||(b=Hb(a));var c=a.display.barWidth,d=a.display.barHeight;Qe(a,b);for(b=0;4>b&&c!=a.display.barWidth||d!=a.display.barHeight;b++)c!=a.display.barWidth&&a.options.lineWrapping&&sc(a),Qe(a,Hb(a)),c=a.display.barWidth,d=a.display.barHeight}function Qe(a,b){var c=a.display,d=c.scrollbars.update(b);c.sizer.style.paddingRight=(c.barWidth=d.right)+"px";c.sizer.style.paddingBottom=(c.barHeight=d.bottom)+"px";c.heightForcer.style.borderBottom=
97
+ d.bottom+"px solid transparent";d.right&&d.bottom?(c.scrollbarFiller.style.display="block",c.scrollbarFiller.style.height=d.bottom+"px",c.scrollbarFiller.style.width=d.right+"px"):c.scrollbarFiller.style.display="";d.bottom&&a.options.coverGutterNextToScrollbar&&a.options.fixedGutter?(c.gutterFiller.style.display="block",c.gutterFiller.style.height=d.bottom+"px",c.gutterFiller.style.width=b.gutterWidth+"px"):c.gutterFiller.style.display=""}function Re(a){a.display.scrollbars&&(a.display.scrollbars.clear(),
98
+ a.display.scrollbars.addClass&&Sa(a.display.wrapper,a.display.scrollbars.addClass));a.display.scrollbars=new Se[a.options.scrollbarStyle](function(b){a.display.wrapper.insertBefore(b,a.display.scrollbarFiller);v(b,"mousedown",function(){a.state.focused&&setTimeout(function(){return a.display.input.focus()},0)});b.setAttribute("cm-not-content","true")},function(b,c){"horizontal"==c?Ta(a,b):Fb(a,b)},a);a.display.scrollbars.addClass&&Fa(a.display.wrapper,a.display.scrollbars.addClass)}function Ua(a){a.curOp=
99
+ {cm:a,viewChanged:!1,startHeight:a.doc.height,forceUpdate:!1,updateInput:null,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++wg};a=a.curOp;db?db.ops.push(a):a.ownsGroup=db={ops:[a],delayedCallbacks:[]}}function Va(a){rg(a.curOp,function(a){for(var b=0;b<a.ops.length;b++)a.ops[b].cm.curOp=null;a=a.ops;for(b=0;b<a.length;b++){var d=a[b],e=d.cm,f=e.display,g=e.display;!g.scrollbarsClipped&&
100
+ g.scroller.offsetWidth&&(g.nativeBarWidth=g.scroller.offsetWidth-g.scroller.clientWidth,g.heightForcer.style.height=pa(e)+"px",g.sizer.style.marginBottom=-g.nativeBarWidth+"px",g.sizer.style.borderRightWidth=pa(e)+"px",g.scrollbarsClipped=!0);d.updateMaxLine&&Wc(e);d.mustUpdate=d.viewChanged||d.forceUpdate||null!=d.scrollTop||d.scrollToPos&&(d.scrollToPos.from.line<f.viewFrom||d.scrollToPos.to.line>=f.viewTo)||f.maxLineChanged&&e.options.lineWrapping;d.update=d.mustUpdate&&new vc(e,d.mustUpdate&&
101
+ {top:d.scrollTop,ensure:d.scrollToPos},d.forceUpdate)}for(b=0;b<a.length;b++)d=a[b],d.updatedDisplay=d.mustUpdate&&xd(d.cm,d.update);for(b=0;b<a.length;b++)if(d=a[b],e=d.cm,f=e.display,d.updatedDisplay&&sc(e),d.barMeasure=Hb(e),f.maxLineChanged&&!e.options.lineWrapping&&(g=f.maxLine.text.length,g=sa(e,$a(e,f.maxLine),g,void 0),d.adjustWidthTo=g.left+3,e.display.sizerWidth=d.adjustWidthTo,d.barMeasure.scrollWidth=Math.max(f.scroller.clientWidth,f.sizer.offsetLeft+d.adjustWidthTo+pa(e)+e.display.barWidth),
102
+ d.maxScrollLeft=Math.max(0,f.sizer.offsetLeft+d.adjustWidthTo-Na(e))),d.updatedDisplay||d.selectionChanged)d.preparedSelection=f.input.prepareSelection(d.focus);for(b=0;b<a.length;b++)d=a[b],e=d.cm,null!=d.adjustWidthTo&&(e.display.sizer.style.minWidth=d.adjustWidthTo+"px",d.maxScrollLeft<e.doc.scrollLeft&&Ta(e,Math.min(e.display.scroller.scrollLeft,d.maxScrollLeft),!0),e.display.maxLineChanged=!1),f=d.focus&&d.focus==ra()&&(!document.hasFocus||document.hasFocus()),d.preparedSelection&&e.display.input.showSelection(d.preparedSelection,
103
+ f),(d.updatedDisplay||d.startHeight!=e.doc.height)&&fb(e,d.barMeasure),d.updatedDisplay&&yd(e,d.barMeasure),d.selectionChanged&&rd(e),e.state.focused&&d.updateInput&&e.display.input.reset(d.typing),f&&Je(d.cm);for(b=0;b<a.length;b++){var h=void 0,d=a[b],e=d.cm,f=e.display,g=e.doc;d.updatedDisplay&&Te(e,d.update);null==f.wheelStartX||null==d.scrollTop&&null==d.scrollLeft&&!d.scrollToPos||(f.wheelStartX=f.wheelStartY=null);null!=d.scrollTop&&Pe(e,d.scrollTop,d.forceScroll);null!=d.scrollLeft&&Ta(e,
104
+ d.scrollLeft,!0,!0);if(d.scrollToPos){var k=x(g,d.scrollToPos.from),l=x(g,d.scrollToPos.to),m=d.scrollToPos.margin;null==m&&(m=0);e.options.lineWrapping||k!=l||(k=k.ch?r(k.line,"before"==k.sticky?k.ch-1:k.ch,"after"):k,l="before"==k.sticky?r(k.line,k.ch+1,"before"):k);for(var p=0;5>p;p++){var n=!1,h=ja(e,k),q=l&&l!=k?ja(e,l):h,h={left:Math.min(h.left,q.left),top:Math.min(h.top,q.top)-m,right:Math.max(h.left,q.left),bottom:Math.max(h.bottom,q.bottom)+m},q=vd(e,h),I=e.doc.scrollTop,u=e.doc.scrollLeft;
105
+ null!=q.scrollTop&&(Fb(e,q.scrollTop),1<Math.abs(e.doc.scrollTop-I)&&(n=!0));null!=q.scrollLeft&&(Ta(e,q.scrollLeft),1<Math.abs(e.doc.scrollLeft-u)&&(n=!0));if(!n)break}l=h;N(e,"scrollCursorIntoView")||(m=e.display,p=m.sizer.getBoundingClientRect(),k=null,0>l.top+p.top?k=!0:l.bottom+p.top>(window.innerHeight||document.documentElement.clientHeight)&&(k=!1),null==k||xg||(l=t("div","\u200b",null,"position: absolute;\n top: "+(l.top-m.viewOffset-e.display.lineSpace.offsetTop)+
106
+ "px;\n height: "+(l.bottom-l.top+pa(e)+m.barHeight)+"px;\n left: "+l.left+"px; width: "+Math.max(2,l.right-l.left)+"px;"),e.display.lineSpace.appendChild(l),l.scrollIntoView(k),e.display.lineSpace.removeChild(l)))}l=d.maybeHiddenMarkers;k=d.maybeUnhiddenMarkers;if(l)for(m=0;m<l.length;++m)l[m].lines.length||J(l[m],"hide");if(k)for(l=0;l<k.length;++l)k[l].lines.length&&J(k[l],"unhide");f.wrapper.offsetHeight&&(g.scrollTop=e.display.scroller.scrollTop);
107
+ d.changeObjs&&J(e,"changes",e,d.changeObjs);d.update&&d.update.finish()}})}function aa(a,b){if(a.curOp)return b();Ua(a);try{return b()}finally{Va(a)}}function O(a,b){return function(){if(a.curOp)return b.apply(a,arguments);Ua(a);try{return b.apply(a,arguments)}finally{Va(a)}}}function W(a){return function(){if(this.curOp)return a.apply(this,arguments);Ua(this);try{return a.apply(this,arguments)}finally{Va(this)}}}function P(a){return function(){var b=this.cm;if(!b||b.curOp)return a.apply(this,arguments);
108
+ Ua(b);try{return a.apply(this,arguments)}finally{Va(b)}}}function Y(a,b,c,d){null==b&&(b=a.doc.first);null==c&&(c=a.doc.first+a.doc.size);d||(d=0);var e=a.display;d&&c<e.viewTo&&(null==e.updateLineNumbers||e.updateLineNumbers>b)&&(e.updateLineNumbers=b);a.curOp.viewChanged=!0;if(b>=e.viewTo)ya&&Uc(a.doc,b)<e.viewTo&&Aa(a);else if(c<=e.viewFrom)ya&&$d(a.doc,c+d)>e.viewFrom?Aa(a):(e.viewFrom+=d,e.viewTo+=d);else if(b<=e.viewFrom&&c>=e.viewTo)Aa(a);else if(b<=e.viewFrom){var f=wc(a,c,c+d,1);f?(e.view=
109
+ e.view.slice(f.index),e.viewFrom=f.lineN,e.viewTo+=d):Aa(a)}else if(c>=e.viewTo)(f=wc(a,b,b,-1))?(e.view=e.view.slice(0,f.index),e.viewTo=f.lineN):Aa(a);else{var f=wc(a,b,b,-1),g=wc(a,c,c+d,1);f&&g?(e.view=e.view.slice(0,f.index).concat(oc(a,f.lineN,g.lineN)).concat(e.view.slice(g.index)),e.viewTo+=d):Aa(a)}if(a=e.externalMeasured)c<a.lineN?a.lineN+=d:b<a.lineN+a.size&&(e.externalMeasured=null)}function Ba(a,b,c){a.curOp.viewChanged=!0;var d=a.display,e=a.display.externalMeasured;e&&b>=e.lineN&&b<
110
+ e.lineN+e.size&&(d.externalMeasured=null);b<d.viewFrom||b>=d.viewTo||(a=d.view[Oa(a,b)],null!=a.node&&(a=a.changes||(a.changes=[]),-1==Q(a,c)&&a.push(c)))}function Aa(a){a.display.viewFrom=a.display.viewTo=a.doc.first;a.display.view=[];a.display.viewOffset=0}function wc(a,b,c,d){var e=Oa(a,b),f=a.display.view;if(!ya||c==a.doc.first+a.doc.size)return{index:e,lineN:c};for(var g=a.display.viewFrom,h=0;h<e;h++)g+=f[h].size;if(g!=b){if(0<d){if(e==f.length-1)return null;b=g+f[e].size-b;e++}else b=g-b;c+=
111
+ b}for(;Uc(a.doc,c)!=c;){if(e==(0>d?0:f.length-1))return null;c+=d*f[e-(0>d?1:0)].size;e+=d}return{index:e,lineN:c}}function Ue(a){a=a.display.view;for(var b=0,c=0;c<a.length;c++){var d=a[c];d.hidden||d.node&&!d.changes||++b}return b}function Gb(a,b){a.doc.highlightFrontier<a.display.viewTo&&a.state.highlight.set(b,Kc(yg,a))}function yg(a){var b=a.doc;if(!(b.highlightFrontier>=a.display.viewTo)){var c=+new Date+a.options.workTime,d=vb(a,b.highlightFrontier),e=[];b.iter(d.line,Math.min(b.first+b.size,
112
+ a.display.viewTo+500),function(f){if(d.line>=a.display.viewFrom){var g=f.styles,h=f.text.length>a.options.maxHighlightLength?Ma(b.mode,d.state):null,k=ge(a,f,d,!0);h&&(d.state=h);f.styles=k.styles;h=f.styleClasses;(k=k.classes)?f.styleClasses=k:h&&(f.styleClasses=null);k=!g||g.length!=f.styles.length||h!=k&&(!h||!k||h.bgClass!=k.bgClass||h.textClass!=k.textClass);for(h=0;!k&&h<g.length;++h)k=g[h]!=f.styles[h];k&&e.push(d.line);f.stateAfter=d.save()}else f.text.length<=a.options.maxHighlightLength&&
113
+ fd(a,f.text,d),f.stateAfter=0==d.line%5?d.save():null;d.nextLine();if(+new Date>c)return Gb(a,a.options.workDelay),!0});b.highlightFrontier=d.line;b.modeFrontier=Math.max(b.modeFrontier,d.line);e.length&&aa(a,function(){for(var b=0;b<e.length;b++)Ba(a,e[b],"text")})}}function xd(a,b){var c=a.display,d=a.doc;if(b.editorIsHidden)return Aa(a),!1;if(!b.force&&b.visible.from>=c.viewFrom&&b.visible.to<=c.viewTo&&(null==c.updateLineNumbers||c.updateLineNumbers>=c.viewTo)&&c.renderedView==c.view&&0==Ue(a))return!1;
114
+ Ne(a)&&(Aa(a),b.dims=md(a));var e=d.first+d.size,f=Math.max(b.visible.from-a.options.viewportMargin,d.first),g=Math.min(e,b.visible.to+a.options.viewportMargin);c.viewFrom<f&&20>f-c.viewFrom&&(f=Math.max(d.first,c.viewFrom));c.viewTo>g&&20>c.viewTo-g&&(g=Math.min(e,c.viewTo));ya&&(f=Uc(a.doc,f),g=$d(a.doc,g));d=f!=c.viewFrom||g!=c.viewTo||c.lastWrapHeight!=b.wrapperHeight||c.lastWrapWidth!=b.wrapperWidth;e=a.display;0==e.view.length||f>=e.viewTo||g<=e.viewFrom?(e.view=oc(a,f,g),e.viewFrom=f):(e.viewFrom>
115
+ f?e.view=oc(a,f,e.viewFrom).concat(e.view):e.viewFrom<f&&(e.view=e.view.slice(Oa(a,f))),e.viewFrom=f,e.viewTo<g?e.view=e.view.concat(oc(a,e.viewTo,g)):e.viewTo>g&&(e.view=e.view.slice(0,Oa(a,g))));e.viewTo=g;c.viewOffset=oa(u(a.doc,c.viewFrom));a.display.mover.style.top=c.viewOffset+"px";g=Ue(a);if(!d&&0==g&&!b.force&&c.renderedView==c.view&&(null==c.updateLineNumbers||c.updateLineNumbers>=c.viewTo))return!1;a.hasFocus()?f=null:(f=ra())&&ha(a.display.lineDiv,f)?(f={activeElt:f},window.getSelection&&
116
+ (e=window.getSelection(),e.anchorNode&&e.extend&&ha(a.display.lineDiv,e.anchorNode)&&(f.anchorNode=e.anchorNode,f.anchorOffset=e.anchorOffset,f.focusNode=e.focusNode,f.focusOffset=e.focusOffset))):f=null;4<g&&(c.lineDiv.style.display="none");zg(a,c.updateLineNumbers,b.dims);4<g&&(c.lineDiv.style.display="");c.renderedView=c.view;(g=f)&&g.activeElt&&g.activeElt!=ra()&&(g.activeElt.focus(),g.anchorNode&&ha(document.body,g.anchorNode)&&ha(document.body,g.focusNode)&&(f=window.getSelection(),e=document.createRange(),
117
+ e.setEnd(g.anchorNode,g.anchorOffset),e.collapse(!1),f.removeAllRanges(),f.addRange(e),f.extend(g.focusNode,g.focusOffset)));H(c.cursorDiv);H(c.selectionDiv);c.gutters.style.height=c.sizer.style.minHeight=0;d&&(c.lastWrapHeight=b.wrapperHeight,c.lastWrapWidth=b.wrapperWidth,Gb(a,400));c.updateLineNumbers=null;return!0}function Te(a,b){for(var c=b.viewport,d=!0;;d=!1){if(!d||!a.options.lineWrapping||b.oldDisplayWidth==Na(a))if(c&&null!=c.top&&(c={top:Math.min(a.doc.height+jd(a.display)-kd(a),c.top)}),
118
+ b.visible=td(a.display,a.doc,c),b.visible.from>=a.display.viewFrom&&b.visible.to<=a.display.viewTo)break;if(!xd(a,b))break;sc(a);d=Hb(a);Cb(a);fb(a,d);yd(a,d);b.force=!1}b.signal(a,"update",a);if(a.display.viewFrom!=a.display.reportedViewFrom||a.display.viewTo!=a.display.reportedViewTo)b.signal(a,"viewportChange",a,a.display.viewFrom,a.display.viewTo),a.display.reportedViewFrom=a.display.viewFrom,a.display.reportedViewTo=a.display.viewTo}function wd(a,b){b=new vc(a,b);if(xd(a,b)){sc(a);Te(a,b);var c=
119
+ Hb(a);Cb(a);fb(a,c);yd(a,c);b.finish()}}function zg(a,b,c){function d(b){var d=b.nextSibling;T&&ia&&a.display.currentWheelTarget==b?b.style.display="none":b.parentNode.removeChild(b);return d}for(var e=a.display,f=a.options.lineNumbers,g=e.lineDiv,h=g.firstChild,k=e.view,e=e.viewFrom,l=0;l<k.length;l++){var m=k[l];if(!m.hidden)if(m.node&&m.node.parentNode==g){for(;h!=m.node;)h=d(h);h=f&&null!=b&&b<=e&&m.lineNumber;m.changes&&(-1<Q(m.changes,"gutter")&&(h=!1),re(a,m,e,c));h&&(H(m.lineNumber),m.lineNumber.appendChild(document.createTextNode(Qc(a.options,
120
+ e))));h=m.node.nextSibling}else{var p=tg(a,m,e,c);g.insertBefore(p,h)}e+=m.size}for(;h;)h=d(h)}function ud(a){a.display.sizer.style.marginLeft=a.display.gutters.offsetWidth+"px"}function yd(a,b){a.display.sizer.style.minHeight=b.docHeight+"px";a.display.heightForcer.style.top=b.docHeight+"px";a.display.gutters.style.height=b.docHeight+a.display.barHeight+pa(a)+"px"}function Ve(a){var b=a.display.gutters,c=a.options.gutters;H(b);for(var d=0;d<c.length;++d){var e=c[d],f=b.appendChild(t("div",null,"CodeMirror-gutter "+
121
+ e));"CodeMirror-linenumbers"==e&&(a.display.lineGutter=f,f.style.width=(a.display.lineNumWidth||1)+"px")}b.style.display=d?"":"none";ud(a)}function zd(a){var b=Q(a.gutters,"CodeMirror-linenumbers");-1==b&&a.lineNumbers?a.gutters=a.gutters.concat(["CodeMirror-linenumbers"]):-1<b&&!a.lineNumbers&&(a.gutters=a.gutters.slice(0),a.gutters.splice(b,1))}function We(a){var b=a.wheelDeltaX,c=a.wheelDeltaY;null==b&&a.detail&&a.axis==a.HORIZONTAL_AXIS&&(b=a.detail);null==c&&a.detail&&a.axis==a.VERTICAL_AXIS?
122
+ c=a.detail:null==c&&(c=a.wheelDelta);return{x:b,y:c}}function Ag(a){a=We(a);a.x*=da;a.y*=da;return a}function Xe(a,b){var c=We(b),d=c.x,c=c.y,e=a.display,f=e.scroller,g=f.scrollWidth>f.clientWidth,h=f.scrollHeight>f.clientHeight;if(d&&g||c&&h){if(c&&ia&&T){var g=b.target,k=e.view;a:for(;g!=f;g=g.parentNode)for(var l=0;l<k.length;l++)if(k[l].node==g){a.display.currentWheelTarget=g;break a}}!d||xa||ka||null==da?(c&&null!=da&&(b=c*da,h=a.doc.scrollTop,g=h+e.wrapper.clientHeight,0>b?h=Math.max(0,h+b-
123
+ 50):g=Math.min(a.doc.height,g+b+50),wd(a,{top:h,bottom:g})),20>xc&&(null==e.wheelStartX?(e.wheelStartX=f.scrollLeft,e.wheelStartY=f.scrollTop,e.wheelDX=d,e.wheelDY=c,setTimeout(function(){if(null!=e.wheelStartX){var a=f.scrollLeft-e.wheelStartX,b=f.scrollTop-e.wheelStartY,a=b&&e.wheelDY&&b/e.wheelDY||a&&e.wheelDX&&a/e.wheelDX;e.wheelStartX=e.wheelStartY=null;a&&(da=(da*xc+a)/(xc+1),++xc)}},200)):(e.wheelDX+=d,e.wheelDY+=c))):(c&&h&&Fb(a,Math.max(0,f.scrollTop+c*da)),Ta(a,Math.max(0,f.scrollLeft+d*
124
+ da)),(!c||c&&h)&&V(b),e.wheelStartX=null)}}function la(a,b){b=a[b];a.sort(function(a,b){return A(a.from(),b.from())});b=Q(a,b);for(var c=1;c<a.length;c++){var d=a[c],e=a[c-1];if(0<=A(e.to(),d.from())){var f=ic(e.from(),d.from()),g=hc(e.to(),d.to()),d=e.empty()?d.from()==d.head:e.from()==e.head;c<=b&&--b;a.splice(--c,2,new C(d?g:f,d?f:g))}}return new ea(a,b)}function wa(a,b){return new ea([new C(a,b||a)],0)}function Ca(a){return a.text?r(a.from.line+a.text.length-1,y(a.text).length+(1==a.text.length?
125
+ a.from.ch:0)):a.to}function Ye(a,b){if(0>A(a,b.from))return a;if(0>=A(a,b.to))return Ca(b);var c=a.line+b.text.length-(b.to.line-b.from.line)-1,d=a.ch;a.line==b.to.line&&(d+=Ca(b).ch-b.to.ch);return r(c,d)}function Ad(a,b){for(var c=[],d=0;d<a.sel.ranges.length;d++){var e=a.sel.ranges[d];c.push(new C(Ye(e.anchor,b),Ye(e.head,b)))}return la(c,a.sel.primIndex)}function Ze(a,b,c){return a.line==b.line?r(c.line,a.ch-b.ch+c.ch):r(c.line+(a.line-b.line),a.ch)}function Bd(a){a.doc.mode=dd(a.options,a.doc.modeOption);
126
+ Ib(a)}function Ib(a){a.doc.iter(function(a){a.stateAfter&&(a.stateAfter=null);a.styles&&(a.styles=null)});a.doc.modeFrontier=a.doc.highlightFrontier=a.doc.first;Gb(a,100);a.state.modeGen++;a.curOp&&Y(a)}function $e(a,b){return 0==b.from.ch&&0==b.to.ch&&""==y(b.text)&&(!a.cm||a.cm.options.wholeLineUpdateBefore)}function Cd(a,b,c,d){function e(a,c,e){a.text=c;a.stateAfter&&(a.stateAfter=null);a.styles&&(a.styles=null);null!=a.order&&(a.order=null);Wd(a);Xd(a,e);c=d?d(a):1;c!=a.height&&ma(a,c);R(a,"change",
127
+ a,b)}function f(a,b){for(var e=[];a<b;++a)e.push(new gb(k[a],c?c[a]:null,d));return e}var g=b.from,h=b.to,k=b.text,l=u(a,g.line),m=u(a,h.line),p=y(k),n=c?c[k.length-1]:null,q=h.line-g.line;b.full?(a.insert(0,f(0,k.length)),a.remove(k.length,a.size-k.length)):$e(a,b)?(h=f(0,k.length-1),e(m,m.text,n),q&&a.remove(g.line,q),h.length&&a.insert(g.line,h)):l==m?1==k.length?e(l,l.text.slice(0,g.ch)+p+l.text.slice(h.ch),n):(q=f(1,k.length-1),q.push(new gb(p+l.text.slice(h.ch),n,d)),e(l,l.text.slice(0,g.ch)+
128
+ k[0],c?c[0]:null),a.insert(g.line+1,q)):1==k.length?(e(l,l.text.slice(0,g.ch)+k[0]+m.text.slice(h.ch),c?c[0]:null),a.remove(g.line+1,q)):(e(l,l.text.slice(0,g.ch)+k[0],c?c[0]:null),e(m,p+m.text.slice(h.ch),n),n=f(1,k.length-1),1<q&&a.remove(g.line+1,q-1),a.insert(g.line+1,n));R(a,"change",a,b)}function Wa(a,b,c){function d(a,f,g){if(a.linked)for(var e=0;e<a.linked.length;++e){var k=a.linked[e];if(k.doc!=f){var l=g&&k.sharedHist;if(!c||l)b(k.doc,l),d(k.doc,a,l)}}}d(a,null,!0)}function af(a,b){if(b.cm)throw Error("This document is already in use.");
129
+ a.doc=b;b.cm=a;qd(a);Bd(a);bf(a);a.options.lineWrapping||Wc(a);a.options.mode=b.modeOption;Y(a)}function bf(a){("rtl"==a.doc.direction?Fa:Sa)(a.display.lineDiv,"CodeMirror-rtl")}function Bg(a){aa(a,function(){bf(a);Y(a)})}function yc(a){this.done=[];this.undone=[];this.undoDepth=Infinity;this.lastModTime=this.lastSelTime=0;this.lastOrigin=this.lastSelOrigin=this.lastOp=this.lastSelOp=null;this.generation=this.maxGeneration=a||1}function Dd(a,b){var c={from:Sc(b.from),to:Ca(b),text:Ha(a,b.from,b.to)};
130
+ cf(a,c,b.from.line,b.to.line+1);Wa(a,function(a){return cf(a,c,b.from.line,b.to.line+1)},!0);return c}function df(a){for(;a.length;)if(y(a).ranges)a.pop();else break}function ef(a,b,c,d){var e=a.history;e.undone.length=0;var f=+new Date,g;if(g=e.lastOp==d||e.lastOrigin==b.origin&&b.origin&&("+"==b.origin.charAt(0)&&a.cm&&e.lastModTime>f-a.cm.options.historyEventDelay||"*"==b.origin.charAt(0))){if(e.lastOp==d){df(e.done);var h=y(e.done)}else e.done.length&&!y(e.done).ranges?h=y(e.done):1<e.done.length&&
131
+ !e.done[e.done.length-2].ranges?(e.done.pop(),h=y(e.done)):h=void 0;g=h}if(g){var k=y(h.changes);0==A(b.from,b.to)&&0==A(b.from,k.to)?k.to=Ca(b):h.changes.push(Dd(a,b))}else for((h=y(e.done))&&h.ranges||zc(a.sel,e.done),h={changes:[Dd(a,b)],generation:e.generation},e.done.push(h);e.done.length>e.undoDepth;)e.done.shift(),e.done[0].ranges||e.done.shift();e.done.push(c);e.generation=++e.maxGeneration;e.lastModTime=e.lastSelTime=f;e.lastOp=e.lastSelOp=d;e.lastOrigin=e.lastSelOrigin=b.origin;k||J(a,"historyAdded")}
132
+ function zc(a,b){var c=y(b);c&&c.ranges&&c.equals(a)||b.push(a)}function cf(a,b,c,d){var e=b["spans_"+a.id],f=0;a.iter(Math.max(a.first,c),Math.min(a.first+a.size,d),function(d){d.markedSpans&&((e||(e=b["spans_"+a.id]={}))[f]=d.markedSpans);++f})}function Cg(a){if(!a)return null;for(var b,c=0;c<a.length;++c)a[c].marker.explicitlyCleared?b||(b=a.slice(0,c)):b&&b.push(a[c]);return b?b.length?b:null:a}function ff(a,b){var c;if(c=b["spans_"+a.id]){for(var d=[],e=0;e<b.text.length;++e)d.push(Cg(c[e]));
133
+ c=d}else c=null;a=Tc(a,b);if(!c)return a;if(!a)return c;for(b=0;b<c.length;++b)if(d=c[b],e=a[b],d&&e){var f=0;a:for(;f<e.length;++f){for(var g=e[f],h=0;h<d.length;++h)if(d[h].marker==g.marker)continue a;d.push(g)}}else e&&(c[b]=e);return c}function hb(a,b,c){for(var d=[],e=0;e<a.length;++e){var f=a[e];if(f.ranges)d.push(c?ea.prototype.deepCopy.call(f):f);else{var f=f.changes,g=[];d.push({changes:g});for(var h=0;h<f.length;++h){var k=f[h],l;g.push({from:k.from,to:k.to,text:k.text});if(b)for(var m in k)(l=
134
+ m.match(/^spans_(\d+)$/))&&-1<Q(b,Number(l[1]))&&(y(g)[m]=k[m],delete k[m])}}}return d}function Ed(a,b,c,d){return d?(a=a.anchor,c&&(d=0>A(b,a),d!=0>A(c,a)?(a=b,b=c):d!=0>A(b,c)&&(b=c)),new C(a,b)):new C(c||b,b)}function Ac(a,b,c,d,e){null==e&&(e=a.cm&&(a.cm.display.shift||a.extend));S(a,new ea([Ed(a.sel.primary(),b,c,e)],0),d)}function gf(a,b,c){for(var d=[],e=a.cm&&(a.cm.display.shift||a.extend),f=0;f<a.sel.ranges.length;f++)d[f]=Ed(a.sel.ranges[f],b[f],null,e);b=la(d,a.sel.primIndex);S(a,b,c)}
135
+ function Fd(a,b,c,d){var e=a.sel.ranges.slice(0);e[b]=c;S(a,la(e,a.sel.primIndex),d)}function Dg(a,b,c){c={ranges:b.ranges,update:function(b){this.ranges=[];for(var d=0;d<b.length;d++)this.ranges[d]=new C(x(a,b[d].anchor),x(a,b[d].head))},origin:c&&c.origin};J(a,"beforeSelectionChange",a,c);a.cm&&J(a.cm,"beforeSelectionChange",a.cm,c);return c.ranges!=b.ranges?la(c.ranges,c.ranges.length-1):b}function hf(a,b,c){var d=a.history.done,e=y(d);e&&e.ranges?(d[d.length-1]=b,Bc(a,b,c)):S(a,b,c)}function S(a,
136
+ b,c){Bc(a,b,c);b=a.sel;var d=a.cm?a.cm.curOp.id:NaN,e=a.history,f=c&&c.origin,g;if(!(g=d==e.lastSelOp)&&(g=f&&e.lastSelOrigin==f)&&!(g=e.lastModTime==e.lastSelTime&&e.lastOrigin==f)){g=y(e.done);var h=f.charAt(0);g="*"==h||"+"==h&&g.ranges.length==b.ranges.length&&g.somethingSelected()==b.somethingSelected()&&new Date-a.history.lastSelTime<=(a.cm?a.cm.options.historyEventDelay:500)}g?e.done[e.done.length-1]=b:zc(b,e.done);e.lastSelTime=+new Date;e.lastSelOrigin=f;e.lastSelOp=d;c&&!1!==c.clearRedo&&
137
+ df(e.undone)}function Bc(a,b,c){if(ga(a,"beforeSelectionChange")||a.cm&&ga(a.cm,"beforeSelectionChange"))b=Dg(a,b,c);var d=c&&c.bias||(0>A(b.primary().head,a.sel.primary().head)?-1:1);jf(a,kf(a,b,d,!0));c&&!1===c.scroll||!a.cm||eb(a.cm)}function jf(a,b){b.equals(a.sel)||(a.sel=b,a.cm&&(a.cm.curOp.updateInput=a.cm.curOp.selectionChanged=!0,ce(a.cm)),R(a,"cursorActivity",a))}function lf(a){jf(a,kf(a,a.sel,null,!1))}function kf(a,b,c,d){for(var e,f=0;f<b.ranges.length;f++){var g=b.ranges[f],h=b.ranges.length==
138
+ a.sel.ranges.length&&a.sel.ranges[f],k=Gd(a,g.anchor,h&&h.anchor,c,d),h=Gd(a,g.head,h&&h.head,c,d);if(e||k!=g.anchor||h!=g.head)e||(e=b.ranges.slice(0,f)),e[f]=new C(k,h)}return e?la(e,b.primIndex):b}function ib(a,b,c,d,e){var f=u(a,b.line);if(f.markedSpans)for(var g=0;g<f.markedSpans.length;++g){var h=f.markedSpans[g],k=h.marker;if((null==h.from||(k.inclusiveLeft?h.from<=b.ch:h.from<b.ch))&&(null==h.to||(k.inclusiveRight?h.to>=b.ch:h.to>b.ch))){if(e&&(J(k,"beforeCursorEnter"),k.explicitlyCleared))if(f.markedSpans){--g;
139
+ continue}else break;if(k.atomic){if(c){g=k.find(0>d?1:-1);h=void 0;if(0>d?k.inclusiveRight:k.inclusiveLeft)g=mf(a,g,-d,g&&g.line==b.line?f:null);if(g&&g.line==b.line&&(h=A(g,c))&&(0>d?0>h:0<h))return ib(a,g,b,d,e)}c=k.find(0>d?-1:1);if(0>d?k.inclusiveLeft:k.inclusiveRight)c=mf(a,c,d,c.line==b.line?f:null);return c?ib(a,c,b,d,e):null}}}return b}function Gd(a,b,c,d,e){d=d||1;b=ib(a,b,c,d,e)||!e&&ib(a,b,c,d,!0)||ib(a,b,c,-d,e)||!e&&ib(a,b,c,-d,!0);return b?b:(a.cantEdit=!0,r(a.first,0))}function mf(a,
140
+ b,c,d){return 0>c&&0==b.ch?b.line>a.first?x(a,r(b.line-1)):null:0<c&&b.ch==(d||u(a,b.line)).text.length?b.line<a.first+a.size-1?r(b.line+1,0):null:new r(b.line,b.ch+c)}function nf(a){a.setSelection(r(a.firstLine(),0),r(a.lastLine()),qa)}function of(a,b,c){var d={canceled:!1,from:b.from,to:b.to,text:b.text,origin:b.origin,cancel:function(){return d.canceled=!0}};c&&(d.update=function(b,c,g,h){b&&(d.from=x(a,b));c&&(d.to=x(a,c));g&&(d.text=g);void 0!==h&&(d.origin=h)});J(a,"beforeChange",a,d);a.cm&&
141
+ J(a.cm,"beforeChange",a.cm,d);return d.canceled?null:{from:d.from,to:d.to,text:d.text,origin:d.origin}}function jb(a,b,c){if(a.cm){if(!a.cm.curOp)return O(a.cm,jb)(a,b,c);if(a.cm.state.suppressEdits)return}if(ga(a,"beforeChange")||a.cm&&ga(a.cm,"beforeChange"))if(b=of(a,b,!0),!b)return;if(c=pf&&!c&&eg(a,b.from,b.to))for(var d=c.length-1;0<=d;--d)qf(a,{from:c[d].from,to:c[d].to,text:d?[""]:b.text});else qf(a,b)}function qf(a,b){if(1!=b.text.length||""!=b.text[0]||0!=A(b.from,b.to)){var c=Ad(a,b);ef(a,
142
+ b,c,a.cm?a.cm.curOp.id:NaN);Jb(a,b,c,Tc(a,b));var d=[];Wa(a,function(a,c){c||-1!=Q(d,a.history)||(rf(a.history,b),d.push(a.history));Jb(a,b,null,Tc(a,b))})}}function Cc(a,b,c){if(!a.cm||!a.cm.state.suppressEdits||c){for(var d=a.history,e,f=a.sel,g="undo"==b?d.done:d.undone,h="undo"==b?d.undone:d.done,k=0;k<g.length&&(e=g[k],c?!e.ranges||e.equals(a.sel):e.ranges);k++);if(k!=g.length){for(d.lastOrigin=d.lastSelOrigin=null;;)if(e=g.pop(),e.ranges){zc(e,h);if(c&&!e.equals(a.sel)){S(a,e,{clearRedo:!1});
143
+ return}f=e}else break;var l=[];zc(f,h);h.push({changes:l,generation:d.generation});d.generation=e.generation||++d.maxGeneration;var m=ga(a,"beforeChange")||a.cm&&ga(a.cm,"beforeChange");c=function(d){var c=e.changes[d];c.origin=b;if(m&&!of(a,c,!1))return g.length=0,{};l.push(Dd(a,c));var f=d?Ad(a,c):y(g);Jb(a,c,f,ff(a,c));!d&&a.cm&&a.cm.scrollIntoView({from:c.from,to:Ca(c)});var h=[];Wa(a,function(a,b){b||-1!=Q(h,a.history)||(rf(a.history,c),h.push(a.history));Jb(a,c,null,ff(a,c))})};for(d=e.changes.length-
144
+ 1;0<=d;--d)if(f=c(d))return f.v}}}function sf(a,b){if(0!=b&&(a.first+=b,a.sel=new ea(ec(a.sel.ranges,function(a){return new C(r(a.anchor.line+b,a.anchor.ch),r(a.head.line+b,a.head.ch))}),a.sel.primIndex),a.cm)){Y(a.cm,a.first,a.first-b,b);for(var c=a.cm.display,d=c.viewFrom;d<c.viewTo;d++)Ba(a.cm,d,"gutter")}}function Jb(a,b,c,d){if(a.cm&&!a.cm.curOp)return O(a.cm,Jb)(a,b,c,d);if(b.to.line<a.first)sf(a,b.text.length-1-(b.to.line-b.from.line));else if(!(b.from.line>a.lastLine())){if(b.from.line<a.first){var e=
145
+ b.text.length-1-(a.first-b.from.line);sf(a,e);b={from:r(a.first,0),to:r(b.to.line+e,b.to.ch),text:[y(b.text)],origin:b.origin}}e=a.lastLine();b.to.line>e&&(b={from:b.from,to:r(e,u(a,e).text.length),text:[b.text[0]],origin:b.origin});b.removed=Ha(a,b.from,b.to);c||(c=Ad(a,b));a.cm?Eg(a.cm,b,d):Cd(a,b,d);Bc(a,c,qa)}}function Eg(a,b,c){var d=a.doc,e=a.display,f=b.from,g=b.to,h=!1,k=f.line;a.options.lineWrapping||(k=E(na(u(d,f.line))),d.iter(k,g.line+1,function(a){if(a==e.maxLine)return h=!0}));-1<d.sel.contains(b.from,
146
+ b.to)&&ce(a);Cd(d,b,c,Ge(a));a.options.lineWrapping||(d.iter(k,f.line+b.text.length,function(a){var b=kc(a);b>e.maxLineLength&&(e.maxLine=a,e.maxLineLength=b,e.maxLineChanged=!0,h=!1)}),h&&(a.curOp.updateMaxLine=!0));lg(d,f.line);Gb(a,400);c=b.text.length-(g.line-f.line)-1;b.full?Y(a):f.line!=g.line||1!=b.text.length||$e(a.doc,b)?Y(a,f.line,g.line+1,c):Ba(a,f.line,"text");c=ga(a,"changes");if((d=ga(a,"change"))||c)b={from:f,to:g,text:b.text,removed:b.removed,origin:b.origin},d&&R(a,"change",a,b),
147
+ c&&(a.curOp.changeObjs||(a.curOp.changeObjs=[])).push(b);a.display.selForContextMenu=null}function kb(a,b,c,d,e){d||(d=c);if(0>A(d,c)){var f=d;d=c;c=f}"string"==typeof b&&(b=a.splitLines(b));jb(a,{from:c,to:d,text:b,origin:e})}function tf(a,b,c,d){c<a.line?a.line+=d:b<a.line&&(a.line=b,a.ch=0)}function uf(a,b,c,d){for(var e=0;e<a.length;++e){var f=a[e],g=!0;if(f.ranges)for(f.copied||(f=a[e]=f.deepCopy(),f.copied=!0),g=0;g<f.ranges.length;g++)tf(f.ranges[g].anchor,b,c,d),tf(f.ranges[g].head,b,c,d);
148
+ else{for(var h=0;h<f.changes.length;++h){var k=f.changes[h];if(c<k.from.line)k.from=r(k.from.line+d,k.from.ch),k.to=r(k.to.line+d,k.to.ch);else if(b<=k.to.line){g=!1;break}}g||(a.splice(0,e+1),e=0)}}}function rf(a,b){var c=b.from.line,d=b.to.line;b=b.text.length-(d-c)-1;uf(a.done,c,d,b);uf(a.undone,c,d,b)}function Kb(a,b,c,d){var e=b,f=b;"number"==typeof b?f=u(a,Math.max(a.first,Math.min(b,a.first+a.size-1))):e=E(b);if(null==e)return null;d(f,e)&&a.cm&&Ba(a.cm,e,c);return f}function Lb(a){this.lines=
149
+ a;this.parent=null;for(var b=0,c=0;c<a.length;++c)a[c].parent=this,b+=a[c].height;this.height=b}function Mb(a){this.children=a;for(var b=0,c=0,d=0;d<a.length;++d){var e=a[d],b=b+e.chunkSize(),c=c+e.height;e.parent=this}this.size=b;this.height=c;this.parent=null}function Fg(a,b,c,d){var e=new Nb(a,c,d),f=a.cm;f&&e.noHScroll&&(f.display.alignWidgets=!0);Kb(a,b,"widget",function(b){var d=b.widgets||(b.widgets=[]);null==e.insertAt?d.push(e):d.splice(Math.min(d.length-1,Math.max(0,e.insertAt)),0,e);e.line=
150
+ b;f&&!Ka(a,b)&&(d=oa(b)<a.scrollTop,ma(b,b.height+zb(e)),d&&tc(f,e.height),f.curOp.forceUpdate=!0);return!0});R(f,"lineWidgetAdded",f,e,"number"==typeof b?b:E(b));return e}function lb(a,b,c,d,e){if(d&&d.shared)return Gg(a,b,c,d,e);if(a.cm&&!a.cm.curOp)return O(a.cm,lb)(a,b,c,d,e);var f=new Da(a,e);e=A(b,c);d&&Ga(d,f,!1);if(0<e||0==e&&!1!==f.clearWhenEmpty)return f;f.replacedWith&&(f.collapsed=!0,f.widgetNode=U("span",[f.replacedWith],"CodeMirror-widget"),d.handleMouseEvents||f.widgetNode.setAttribute("cm-ignore-events",
151
+ "true"),d.insertLeft&&(f.widgetNode.insertLeft=!0));if(f.collapsed){if(Zd(a,b.line,b,c,f)||b.line!=c.line&&Zd(a,c.line,b,c,f))throw Error("Inserting collapsed marker partially overlapping an existing one");ya=!0}f.addToHistory&&ef(a,{from:b,to:c,origin:"markText"},a.sel,NaN);var g=b.line,h=a.cm,k;a.iter(g,c.line+1,function(a){h&&f.collapsed&&!h.options.lineWrapping&&na(a)==h.display.maxLine&&(k=!0);f.collapsed&&g!=b.line&&ma(a,0);var d=new jc(f,g==b.line?b.ch:null,g==c.line?c.ch:null);a.markedSpans=
152
+ a.markedSpans?a.markedSpans.concat([d]):[d];d.marker.attachLine(a);++g});f.collapsed&&a.iter(b.line,c.line+1,function(b){Ka(a,b)&&ma(b,0)});f.clearOnEnter&&v(f,"beforeCursorEnter",function(){return f.clear()});f.readOnly&&(pf=!0,(a.history.done.length||a.history.undone.length)&&a.clearHistory());f.collapsed&&(f.id=++vf,f.atomic=!0);if(h){k&&(h.curOp.updateMaxLine=!0);if(f.collapsed)Y(h,b.line,c.line+1);else if(f.className||f.title||f.startStyle||f.endStyle||f.css)for(d=b.line;d<=c.line;d++)Ba(h,d,
153
+ "text");f.atomic&&lf(h.doc);R(h,"markerAdded",h,f)}return f}function Gg(a,b,c,d,e){d=Ga(d);d.shared=!1;var f=[lb(a,b,c,d,e)],g=f[0],h=d.widgetNode;Wa(a,function(a){h&&(d.widgetNode=h.cloneNode(!0));f.push(lb(a,x(a,b),x(a,c),d,e));for(var k=0;k<a.linked.length;++k)if(a.linked[k].isParent)return;g=y(f)});return new Ob(f,g)}function wf(a){return a.findMarks(r(a.first,0),a.clipPos(r(a.lastLine())),function(a){return a.parent})}function Hg(a){for(var b=function(b){b=a[b];var d=[b.primary.doc];Wa(b.primary.doc,
154
+ function(a){return d.push(a)});for(var c=0;c<b.markers.length;c++){var g=b.markers[c];-1==Q(d,g.doc)&&(g.parent=null,b.markers.splice(c--,1))}},c=0;c<a.length;c++)b(c)}function Ig(a){var b=this;xf(b);if(!N(b,a)&&!va(b.display,a)){V(a);D&&(yf=+new Date);var c=Ra(b,a,!0),d=a.dataTransfer.files;if(c&&!b.isReadOnly())if(d&&d.length&&window.FileReader&&window.File)for(var e=d.length,f=Array(e),g=0,h=function(a,d){if(!b.options.allowDropFileTypes||-1!=Q(b.options.allowDropFileTypes,a.type)){var h=new FileReader;
155
+ h.onload=O(b,function(){var a=h.result;/[\x00-\x08\x0e-\x1f]{2}/.test(a)&&(a="");f[d]=a;++g==e&&(c=x(b.doc,c),a={from:c,to:c,text:b.doc.splitLines(f.join(b.doc.lineSeparator())),origin:"paste"},jb(b.doc,a),hf(b.doc,wa(c,Ca(a))))});h.readAsText(a)}},k=0;k<e;++k)h(d[k],k);else if(b.state.draggingText&&-1<b.doc.sel.contains(c))b.state.draggingText(a),setTimeout(function(){return b.display.input.focus()},20);else try{if(h=a.dataTransfer.getData("Text")){b.state.draggingText&&!b.state.draggingText.copy&&
156
+ (k=b.listSelections());Bc(b.doc,wa(c,c));if(k)for(d=0;d<k.length;++d)kb(b.doc,"",k[d].anchor,k[d].head,"drag");b.replaceSelection(h,"around","paste");b.display.input.focus()}}catch(l){}}}function xf(a){a.display.dragCursor&&(a.display.lineSpace.removeChild(a.display.dragCursor),a.display.dragCursor=null)}function zf(a){if(document.getElementsByClassName)for(var b=document.getElementsByClassName("CodeMirror"),c=0;c<b.length;c++){var d=b[c].CodeMirror;d&&a(d)}}function Jg(){var a;v(window,"resize",
157
+ function(){null==a&&(a=setTimeout(function(){a=null;zf(Kg)},100))});v(window,"blur",function(){return zf(Db)})}function Kg(a){var b=a.display;if(b.lastWrapHeight!=b.wrapper.clientHeight||b.lastWrapWidth!=b.wrapper.clientWidth)b.cachedCharWidth=b.cachedTextHeight=b.cachedPaddingH=null,b.scrollbarsClipped=!1,a.setSize()}function Lg(a){var b=a.split(/-(?!$)/);a=b[b.length-1];for(var c,d,e,f,g=0;g<b.length-1;g++){var h=b[g];if(/^(cmd|meta|m)$/i.test(h))f=!0;else if(/^a(lt)?$/i.test(h))c=!0;else if(/^(c|ctrl|control)$/i.test(h))d=
158
+ !0;else if(/^s(hift)?$/i.test(h))e=!0;else throw Error("Unrecognized modifier name: "+h);}c&&(a="Alt-"+a);d&&(a="Ctrl-"+a);f&&(a="Cmd-"+a);e&&(a="Shift-"+a);return a}function Mg(a){var b={},c;for(c in a)if(a.hasOwnProperty(c)){var d=a[c];if(!/^(name|fallthrough|(de|at)tach)$/.test(c)){if("..."!=d)for(var e=ec(c.split(" "),Lg),f=0;f<e.length;f++){if(f==e.length-1){var g=e.join(" ");var h=d}else g=e.slice(0,f+1).join(" "),h="...";var k=b[g];if(!k)b[g]=h;else if(k!=h)throw Error("Inconsistent bindings for "+
159
+ g);}delete a[c]}}for(var l in b)a[l]=b[l];return a}function mb(a,b,c,d){b=Dc(b);var e=b.call?b.call(a,d):b[a];if(!1===e)return"nothing";if("..."===e)return"multi";if(null!=e&&c(e))return"handled";if(b.fallthrough){if("[object Array]"!=Object.prototype.toString.call(b.fallthrough))return mb(a,b.fallthrough,c,d);for(e=0;e<b.fallthrough.length;e++){var f=mb(a,b.fallthrough[e],c,d);if(f)return f}}}function Af(a){a="string"==typeof a?a:Ea[a.keyCode];return"Ctrl"==a||"Alt"==a||"Shift"==a||"Mod"==a}function Bf(a,
160
+ b,c){var d=a;b.altKey&&"Alt"!=d&&(a="Alt-"+a);(Cf?b.metaKey:b.ctrlKey)&&"Ctrl"!=d&&(a="Ctrl-"+a);(Cf?b.ctrlKey:b.metaKey)&&"Cmd"!=d&&(a="Cmd-"+a);!c&&b.shiftKey&&"Shift"!=d&&(a="Shift-"+a);return a}function Df(a,b){if(ka&&34==a.keyCode&&a["char"])return!1;var c=Ea[a.keyCode];return null==c||a.altGraphKey?!1:Bf(c,a,b)}function Dc(a){return"string"==typeof a?Pb[a]:a}function nb(a,b){for(var c=a.doc.sel.ranges,d=[],e=0;e<c.length;e++){for(var f=b(c[e]);d.length&&0>=A(f.from,y(d).to);){var g=d.pop();
161
+ if(0>A(g.from,f.from)){f.from=g.from;break}}d.push(f)}aa(a,function(){for(var b=d.length-1;0<=b;b--)kb(a.doc,"",d[b].from,d[b].to,"+delete");eb(a)})}function Ef(a,b){var c=u(a.doc,b),d=na(c);d!=c&&(b=E(d));return $c(!0,a,d,b,1)}function Ff(a,b){var c=Ef(a,b.line),d=u(a.doc,c.line);a=za(d,a.doc.direction);return a&&0!=a[0].level?c:(d=Math.max(0,d.text.search(/\S/)),r(c.line,b.line==c.line&&b.ch<=d&&b.ch?0:d,c.sticky))}function Ec(a,b,c){if("string"==typeof b&&(b=Qb[b],!b))return!1;a.display.input.ensurePolled();
162
+ var d=a.display.shift,e=!1;try{a.isReadOnly()&&(a.state.suppressEdits=!0),c&&(a.display.shift=!1),e=b(a)!=Fc}finally{a.display.shift=d,a.state.suppressEdits=!1}return e}function Ng(a,b,c){for(var d=0;d<a.state.keyMaps.length;d++){var e=mb(b,a.state.keyMaps[d],c,a);if(e)return e}return a.options.extraKeys&&mb(b,a.options.extraKeys,c,a)||mb(b,a.options.keyMap,c,a)}function Rb(a,b,c,d){var e=a.state.keySeq;if(e){if(Af(b))return"handled";Og.set(50,function(){a.state.keySeq==e&&(a.state.keySeq=null,a.display.input.reset())});
163
+ b=e+" "+b}d=Ng(a,b,d);"multi"==d&&(a.state.keySeq=b);"handled"==d&&R(a,"keyHandled",a,b,c);if("handled"==d||"multi"==d)V(c),rd(a);return e&&!d&&/\'$/.test(b)?(V(c),!0):!!d}function Gf(a,b){var c=Df(b,!0);return c?b.shiftKey&&!a.state.keySeq?Rb(a,"Shift-"+c,b,function(b){return Ec(a,b,!0)})||Rb(a,c,b,function(b){if("string"==typeof b?/^go[A-Z]/.test(b):b.motion)return Ec(a,b)}):Rb(a,c,b,function(b){return Ec(a,b)}):!1}function Pg(a,b,c){return Rb(a,"'"+c+"'",b,function(b){return Ec(a,b,!0)})}function Hf(a){this.curOp.focus=
164
+ ra();if(!N(this,a)){D&&11>B&&27==a.keyCode&&(a.returnValue=!1);var b=a.keyCode;this.display.shift=16==b||a.shiftKey;var c=Gf(this,a);ka&&(Hd=c?b:null,!c&&88==b&&!Qg&&(ia?a.metaKey:a.ctrlKey)&&this.replaceSelection("",null,"cut"));18!=b||/\bCodeMirror-crosshair\b/.test(this.display.lineDiv.className)||Rg(this)}}function Rg(a){function b(a){18!=a.keyCode&&a.altKey||(Sa(c,"CodeMirror-crosshair"),ca(document,"keyup",b),ca(document,"mouseover",b))}var c=a.display.lineDiv;Fa(c,"CodeMirror-crosshair");v(document,
165
+ "keyup",b);v(document,"mouseover",b)}function If(a){16==a.keyCode&&(this.doc.sel.shift=!1);N(this,a)}function Jf(a){if(!(va(this.display,a)||N(this,a)||a.ctrlKey&&!a.altKey||ia&&a.metaKey)){var b=a.keyCode,c=a.charCode;if(ka&&b==Hd)Hd=null,V(a);else if(!ka||a.which&&!(10>a.which)||!Gf(this,a))if(b=String.fromCharCode(null==c?b:c),"\b"!=b&&!Pg(this,a,b))this.display.input.onKeyPress(a)}}function Sg(a,b){var c=+new Date;if(Sb&&Sb.compare(c,a,b))return Tb=Sb=null,"triple";if(Tb&&Tb.compare(c,a,b))return Sb=
166
+ new Id(c,a,b),Tb=null,"double";Tb=new Id(c,a,b);Sb=null;return"single"}function Kf(a){var b=this.display;if(!(N(this,a)||b.activeTouch&&b.input.supportsTouch()))if(b.input.ensurePolled(),b.shift=a.shiftKey,va(b,a))T||(b.scroller.draggable=!1,setTimeout(function(){return b.scroller.draggable=!0},100));else if(!Jd(this,a,"gutterClick",!0)){var c=Ra(this,a),d=ee(a),e=c?Sg(c,d):"single";window.focus();1==d&&this.state.selectingText&&this.state.selectingText(a);c&&Tg(this,d,c,e,a)||(1==d?c?Ug(this,c,e,
167
+ a):(a.target||a.srcElement)==b.scroller&&V(a):2==d?(c&&Ac(this.doc,c),setTimeout(function(){return b.input.focus()},20)):3==d&&(Kd?Lf(this,a):Ke(this)))}}function Tg(a,b,c,d,e){var f="Click";"double"==d?f="Double"+f:"triple"==d&&(f="Triple"+f);return Rb(a,Bf((1==b?"Left":2==b?"Middle":"Right")+f,e),e,function(b){"string"==typeof b&&(b=Qb[b]);if(!b)return!1;var d=!1;try{a.isReadOnly()&&(a.state.suppressEdits=!0),d=b(a,c)!=Fc}finally{a.state.suppressEdits=!1}return d})}function Ug(a,b,c,d){D?setTimeout(Kc(Je,
168
+ a),0):a.curOp.focus=ra();var e=a.getOption("configureMouse"),e=e?e(a,c,d):{};null==e.unit&&(e.unit=(Vg?d.shiftKey&&d.metaKey:d.altKey)?"rectangle":"single"==c?"char":"double"==c?"word":"line");if(null==e.extend||a.doc.extend)e.extend=a.doc.extend||d.shiftKey;null==e.addNew&&(e.addNew=ia?d.metaKey:d.ctrlKey);null==e.moveOnDrag&&(e.moveOnDrag=!(ia?d.altKey:d.ctrlKey));var f=a.doc.sel,g;a.options.dragDrop&&Wg&&!a.isReadOnly()&&"single"==c&&-1<(g=f.contains(b))&&(0>A((g=f.ranges[g]).from(),b)||0<b.xRel)&&
169
+ (0<A(g.to(),b)||0>b.xRel)?Xg(a,d,b,e):Yg(a,d,b,e)}function Xg(a,b,c,d){var e=a.display,f=!1,g=O(a,function(b){T&&(e.scroller.draggable=!1);a.state.draggingText=!1;ca(document,"mouseup",g);ca(document,"mousemove",h);ca(e.scroller,"dragstart",k);ca(e.scroller,"drop",g);f||(V(b),d.addNew||Ac(a.doc,c,null,null,d.extend),T||D&&9==B?setTimeout(function(){document.body.focus();e.input.focus()},20):e.input.focus())}),h=function(a){f=f||10<=Math.abs(b.clientX-a.clientX)+Math.abs(b.clientY-a.clientY)},k=function(){return f=
170
+ !0};T&&(e.scroller.draggable=!0);a.state.draggingText=g;g.copy=!d.moveOnDrag;e.scroller.dragDrop&&e.scroller.dragDrop();v(document,"mouseup",g);v(document,"mousemove",h);v(e.scroller,"dragstart",k);v(e.scroller,"drop",g);Ke(a);setTimeout(function(){return e.input.focus()},20)}function Mf(a,b,c){if("char"==c)return new C(b,b);if("word"==c)return a.findWordAt(b);if("line"==c)return new C(r(b.line,0),x(a.doc,r(b.line+1,0)));a=c(a,b);return new C(a.from,a.to)}function Yg(a,b,c,d){function e(b){if(0!=
171
+ A(q,b))if(q=b,"rectangle"==d.unit){for(var e=[],f=a.options.tabSize,g=fa(u(k,c.line).text,c.ch,f),h=fa(u(k,b.line).text,b.ch,f),m=Math.min(g,h),g=Math.max(g,h),h=Math.min(c.line,b.line),t=Math.min(a.lastLine(),Math.max(c.line,b.line));h<=t;h++){var I=u(k,h).text,v=Lc(I,m,f);m==g?e.push(new C(r(h,v),r(h,v))):I.length>v&&e.push(new C(r(h,v),r(h,Lc(I,g,f))))}e.length||e.push(new C(c,c));S(k,la(l.ranges.slice(0,p).concat(e),p),{origin:"*mouse",scroll:!1});a.scrollIntoView(b)}else e=n,m=Mf(a,b,d.unit),
172
+ b=e.anchor,0<A(m.anchor,b)?(f=m.head,b=ic(e.from(),m.anchor)):(f=m.anchor,b=hc(e.to(),m.head)),e=l.ranges.slice(0),e[p]=new C(x(k,b),f),S(k,la(e,p),Ld)}function f(b){var c=++w,g=Ra(a,b,!0,"rectangle"==d.unit);if(g)if(0!=A(g,q)){a.curOp.focus=ra();e(g);var l=td(h,k);(g.line>=l.to||g.line<l.from)&&setTimeout(O(a,function(){w==c&&f(b)}),150)}else{var m=b.clientY<t.top?-20:b.clientY>t.bottom?20:0;m&&setTimeout(O(a,function(){w==c&&(h.scroller.scrollTop+=m,f(b))}),50)}}function g(b){a.state.selectingText=
173
+ !1;w=Infinity;V(b);h.input.focus();ca(document,"mousemove",z);ca(document,"mouseup",y);k.history.lastSelOrigin=null}var h=a.display,k=a.doc;V(b);var l=k.sel,m=l.ranges;if(d.addNew&&!d.extend){var p=k.sel.contains(c);var n=-1<p?m[p]:new C(c,c)}else n=k.sel.primary(),p=k.sel.primIndex;"rectangle"==d.unit?(d.addNew||(n=new C(c,c)),c=Ra(a,b,!0,!0),p=-1):(b=Mf(a,c,d.unit),n=d.extend?Ed(n,b.anchor,b.head,d.extend):b);d.addNew?-1==p?(p=m.length,S(k,la(m.concat([n]),p),{scroll:!1,origin:"*mouse"})):1<m.length&&
174
+ m[p].empty()&&"char"==d.unit&&!d.extend?(S(k,la(m.slice(0,p).concat(m.slice(p+1)),0),{scroll:!1,origin:"*mouse"}),l=k.sel):Fd(k,p,n,Ld):(p=0,S(k,new ea([n],0),Ld),l=k.sel);var q=c,t=h.wrapper.getBoundingClientRect(),w=0,z=O(a,function(a){ee(a)?f(a):g(a)}),y=O(a,g);a.state.selectingText=y;v(document,"mousemove",z);v(document,"mouseup",y)}function Jd(a,b,c,d){try{var e=b.clientX;var f=b.clientY}catch(k){return!1}if(e>=Math.floor(a.display.gutters.getBoundingClientRect().right))return!1;d&&V(b);d=a.display;
175
+ var g=d.lineDiv.getBoundingClientRect();if(f>g.bottom||!ga(a,c))return ad(b);f-=g.top-d.viewOffset;for(g=0;g<a.options.gutters.length;++g){var h=d.gutters.childNodes[g];if(h&&h.getBoundingClientRect().right>=e)return e=Ia(a.doc,f),J(a,c,a,e,a.options.gutters[g],b),ad(b)}}function Lf(a,b){var c;(c=va(a.display,b))||(c=ga(a,"gutterContextMenu")?Jd(a,b,"gutterContextMenu",!1):!1);if(!c&&!N(a,b,"contextmenu"))a.display.input.onContextMenu(b)}function Nf(a){a.display.wrapper.className=a.display.wrapper.className.replace(/\s*cm-s-\S+/g,
176
+ "")+a.options.theme.replace(/(^|\s)\s*/g," cm-s-");Bb(a)}function Ub(a){Ve(a);Y(a);Me(a)}function Zg(a,b,c){!b!=!(c&&c!=ob)&&(c=a.display.dragFunctions,b=b?v:ca,b(a.display.scroller,"dragstart",c.start),b(a.display.scroller,"dragenter",c.enter),b(a.display.scroller,"dragover",c.over),b(a.display.scroller,"dragleave",c.leave),b(a.display.scroller,"drop",c.drop))}function $g(a){a.options.lineWrapping?(Fa(a.display.wrapper,"CodeMirror-wrap"),a.display.sizer.style.minWidth="",a.display.sizerWidth=null):
177
+ (Sa(a.display.wrapper,"CodeMirror-wrap"),Wc(a));qd(a);Y(a);Bb(a);setTimeout(function(){return fb(a)},100)}function G(a,b){var c=this;if(!(this instanceof G))return new G(a,b);this.options=b=b?Ga(b):{};Ga(Of,b,!1);zd(b);var d=b.value;"string"==typeof d&&(d=new Z(d,b.mode,null,b.lineSeparator,b.direction));this.doc=d;var e=new G.inputStyles[b.inputStyle](this);a=this.display=new dg(a,d,e);a.wrapper.CodeMirror=this;Ve(this);Nf(this);b.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap");
178
+ Re(this);this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:!1,cutIncoming:!1,selectingText:!1,draggingText:!1,highlight:new Xa,keySeq:null,specialChars:null};b.autofocus&&!qb&&a.input.focus();D&&11>B&&setTimeout(function(){return c.display.input.reset(!0)},20);ah(this);Pf||(Jg(),Pf=!0);Ua(this);this.curOp.forceUpdate=!0;af(this,d);b.autofocus&&!qb||this.hasFocus()?setTimeout(Kc(sd,this),20):Db(this);for(var f in Gc)if(Gc.hasOwnProperty(f))Gc[f](c,
179
+ b[f],ob);Ne(this);b.finishInit&&b.finishInit(this);for(d=0;d<Md.length;++d)Md[d](c);Va(this);T&&b.lineWrapping&&"optimizelegibility"==getComputedStyle(a.lineDiv).textRendering&&(a.lineDiv.style.textRendering="auto")}function ah(a){function b(){d.activeTouch&&(e=setTimeout(function(){return d.activeTouch=null},1E3),f=d.activeTouch,f.end=+new Date)}function c(a,b){if(null==b.left)return!0;var d=b.left-a.left;a=b.top-a.top;return 400<d*d+a*a}var d=a.display;v(d.scroller,"mousedown",O(a,Kf));D&&11>B?
180
+ v(d.scroller,"dblclick",O(a,function(b){if(!N(a,b)){var d=Ra(a,b);!d||Jd(a,b,"gutterClick",!0)||va(a.display,b)||(V(b),b=a.findWordAt(d),Ac(a.doc,b.anchor,b.head))}})):v(d.scroller,"dblclick",function(b){return N(a,b)||V(b)});Kd||v(d.scroller,"contextmenu",function(b){return Lf(a,b)});var e,f={end:0};v(d.scroller,"touchstart",function(b){var c;if(c=!N(a,b))1!=b.touches.length?c=!1:(c=b.touches[0],c=1>=c.radiusX&&1>=c.radiusY),c=!c;c&&(d.input.ensurePolled(),clearTimeout(e),c=+new Date,d.activeTouch=
181
+ {start:c,moved:!1,prev:300>=c-f.end?f:null},1==b.touches.length&&(d.activeTouch.left=b.touches[0].pageX,d.activeTouch.top=b.touches[0].pageY))});v(d.scroller,"touchmove",function(){d.activeTouch&&(d.activeTouch.moved=!0)});v(d.scroller,"touchend",function(e){var f=d.activeTouch;if(f&&!va(d,e)&&null!=f.left&&!f.moved&&300>new Date-f.start){var g=a.coordsChar(d.activeTouch,"page"),f=!f.prev||c(f,f.prev)?new C(g,g):!f.prev.prev||c(f,f.prev.prev)?a.findWordAt(g):new C(r(g.line,0),x(a.doc,r(g.line+1,0)));
182
+ a.setSelection(f.anchor,f.head);a.focus();V(e)}b()});v(d.scroller,"touchcancel",b);v(d.scroller,"scroll",function(){d.scroller.clientHeight&&(Fb(a,d.scroller.scrollTop),Ta(a,d.scroller.scrollLeft,!0),J(a,"scroll",a))});v(d.scroller,"mousewheel",function(b){return Xe(a,b)});v(d.scroller,"DOMMouseScroll",function(b){return Xe(a,b)});v(d.wrapper,"scroll",function(){return d.wrapper.scrollTop=d.wrapper.scrollLeft=0});d.dragFunctions={enter:function(b){N(a,b)||ub(b)},over:function(b){if(!N(a,b)){var d=
183
+ Ra(a,b);if(d){var c=document.createDocumentFragment();Ie(a,d,c);a.display.dragCursor||(a.display.dragCursor=t("div",null,"CodeMirror-cursors CodeMirror-dragcursors"),a.display.lineSpace.insertBefore(a.display.dragCursor,a.display.cursorDiv));F(a.display.dragCursor,c)}ub(b)}},start:function(b){if(D&&(!a.state.draggingText||100>+new Date-yf))ub(b);else if(!N(a,b)&&!va(a.display,b)&&(b.dataTransfer.setData("Text",a.getSelection()),b.dataTransfer.effectAllowed="copyMove",b.dataTransfer.setDragImage&&
184
+ !Qf)){var d=t("img",null,null,"position: fixed; left: 0; top: 0;");d.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==";ka&&(d.width=d.height=1,a.display.wrapper.appendChild(d),d._top=d.offsetTop);b.dataTransfer.setDragImage(d,0,0);ka&&d.parentNode.removeChild(d)}},drop:O(a,Ig),leave:function(b){N(a,b)||xf(a)}};var g=d.input.getField();v(g,"keyup",function(b){return If.call(a,b)});v(g,"keydown",O(a,Hf));v(g,"keypress",O(a,Jf));v(g,"focus",function(b){return sd(a,b)});
185
+ v(g,"blur",function(b){return Db(a,b)})}function Vb(a,b,c,d){var e=a.doc,f;null==c&&(c="add");"smart"==c&&(e.mode.indent?f=vb(a,b).state:c="prev");var g=a.options.tabSize,h=u(e,b),k=fa(h.text,null,g);h.stateAfter&&(h.stateAfter=null);var l=h.text.match(/^\s*/)[0];if(!d&&!/\S/.test(h.text)){var m=0;c="not"}else if("smart"==c&&(m=e.mode.indent(f,h.text.slice(l.length),h.text),m==Fc||150<m)){if(!d)return;c="prev"}"prev"==c?m=b>e.first?fa(u(e,b-1).text,null,g):0:"add"==c?m=k+a.options.indentUnit:"subtract"==
186
+ c?m=k-a.options.indentUnit:"number"==typeof c&&(m=k+c);m=Math.max(0,m);c="";d=0;if(a.options.indentWithTabs)for(a=Math.floor(m/g);a;--a)d+=g,c+="\t";d<m&&(c+=Mc(m-d));if(c!=l)return kb(e,c,r(b,0),r(b,l.length),"+input"),h.stateAfter=null,!0;for(g=0;g<e.sel.ranges.length;g++)if(h=e.sel.ranges[g],h.head.line==b&&h.head.ch<l.length){b=r(b,l.length);Fd(e,g,new C(b,b));break}}function Nd(a,b,c,d,e){var f=a.doc;a.display.shift=!1;d||(d=f.sel);var g=a.state.pasteIncoming||"paste"==e,h=Od(b),k=null;if(g&&
187
+ 1<d.ranges.length)if(ba&&ba.text.join("\n")==b){if(0==d.ranges.length%ba.text.length)for(var k=[],l=0;l<ba.text.length;l++)k.push(f.splitLines(ba.text[l]))}else h.length==d.ranges.length&&a.options.pasteLinesPerSelection&&(k=ec(h,function(a){return[a]}));for(var m,l=d.ranges.length-1;0<=l;l--){m=d.ranges[l];var p=m.from(),n=m.to();m.empty()&&(c&&0<c?p=r(p.line,p.ch-c):a.state.overwrite&&!g?n=r(n.line,Math.min(u(f,n.line).text.length,n.ch+y(h).length)):ba&&ba.lineWise&&ba.text.join("\n")==b&&(p=n=
188
+ r(p.line,0)));m=a.curOp.updateInput;p={from:p,to:n,text:k?k[l%k.length]:h,origin:e||(g?"paste":a.state.cutIncoming?"cut":"+input")};jb(a.doc,p);R(a,"inputRead",a,p)}b&&!g&&Rf(a,b);eb(a);a.curOp.updateInput=m;a.curOp.typing=!0;a.state.pasteIncoming=a.state.cutIncoming=!1}function Sf(a,b){var c=a.clipboardData&&a.clipboardData.getData("Text");if(c)return a.preventDefault(),b.isReadOnly()||b.options.disableInput||aa(b,function(){return Nd(b,c,0,null,"paste")}),!0}function Rf(a,b){if(a.options.electricChars&&
189
+ a.options.smartIndent)for(var c=a.doc.sel,d=c.ranges.length-1;0<=d;d--){var e=c.ranges[d];if(!(100<e.head.ch||d&&c.ranges[d-1].head.line==e.head.line)){var f=a.getModeAt(e.head),g=!1;if(f.electricChars)for(var h=0;h<f.electricChars.length;h++){if(-1<b.indexOf(f.electricChars.charAt(h))){g=Vb(a,e.head.line,"smart");break}}else f.electricInput&&f.electricInput.test(u(a.doc,e.head.line).text.slice(0,e.head.ch))&&(g=Vb(a,e.head.line,"smart"));g&&R(a,"electricInput",a,e.head.line)}}}function Tf(a){for(var b=
190
+ [],c=[],d=0;d<a.doc.sel.ranges.length;d++){var e=a.doc.sel.ranges[d].head.line,e={anchor:r(e,0),head:r(e+1,0)};c.push(e);b.push(a.getRange(e.anchor,e.head))}return{text:b,ranges:c}}function Uf(a,b){a.setAttribute("autocorrect","off");a.setAttribute("autocapitalize","off");a.setAttribute("spellcheck",!!b)}function Vf(){var a=t("textarea",null,null,"position: absolute; bottom: -1em; padding: 0; width: 1px; height: 1em; outline: none"),b=t("div",[a],null,"overflow: hidden; position: relative; width: 3px; height: 0px;");
191
+ T?a.style.width="1000px":a.setAttribute("wrap","off");Wb&&(a.style.border="1px solid black");Uf(a);return b}function Pd(a,b,c,d,e){function f(d){var f=e?ae(a.cm,k,b,c):Zc(k,b,c);if(null==f){if(d=!d)d=b.line+c,d<a.first||d>=a.first+a.size?d=!1:(b=new r(d,b.ch,b.sticky),d=k=u(a,d));if(d)b=$c(e,a.cm,k,b.line,c);else return!1}else b=f;return!0}var g=b,h=c,k=u(a,b.line);if("char"==d)f();else if("column"==d)f(!0);else if("word"==d||"group"==d){var l=null;d="group"==d;for(var m=a.cm&&a.cm.getHelper(b,"wordChars"),
192
+ p=!0;!(0>c)||f(!p);p=!1){var n=k.text.charAt(b.ch)||"\n",n=fc(n,m)?"w":d&&"\n"==n?"n":!d||/\s/.test(n)?null:"p";!d||p||n||(n="s");if(l&&l!=n){0>c&&(c=1,f(),b.sticky="after");break}n&&(l=n);if(0<c&&!f(!p))break}}h=Gd(a,b,g,h,!0);Rc(g,h)&&(h.hitSide=!0);return h}function Wf(a,b,c,d){var e=a.doc,f=b.left;if("page"==d){var g=Math.max(Math.min(a.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight)-.5*Pa(a.display),3);g=(0<c?b.bottom:b.top)+c*g}else"line"==d&&(g=0<c?b.bottom+
193
+ 3:b.top-3);for(;;){b=od(a,f,g);if(!b.outside)break;if(0>c?0>=g:g>=e.height){b.hitSide=!0;break}g+=5*c}return b}function Xf(a,b){var c=ld(a,b.line);if(!c||c.hidden)return null;var d=u(a.doc,b.line),c=xe(c,d,b.line);a=za(d,a.doc.direction);d="left";a&&(d=Xc(a,b.ch)%2?"right":"left");b=ye(c.map,b.ch,d);b.offset="right"==b.collapse?b.end:b.start;return b}function bh(a){for(;a;a=a.parentNode)if(/CodeMirror-gutter-wrapper/.test(a.className))return!0;return!1}function pb(a,b){b&&(a.bad=!0);return a}function ch(a,
194
+ b,c,d,e){function f(a){return function(b){return b.id==a}}function g(a){a&&(l&&(k+=m,l=!1),k+=a)}function h(b){if(1==b.nodeType){var c=b.getAttribute("cm-text");if(null!=c)g(c||b.textContent.replace(/\u200b/g,""));else{var c=b.getAttribute("cm-marker"),q;if(c)b=a.findMarks(r(d,0),r(e+1,0),f(+c)),b.length&&(q=b[0].find())&&g(Ha(a.doc,q.from,q.to).join(m));else if("false"!=b.getAttribute("contenteditable")){(q=/^(pre|div|p)$/i.test(b.nodeName))&&l&&(k+=m,l=!1);for(c=0;c<b.childNodes.length;c++)h(b.childNodes[c]);
195
+ q&&(l=!0)}}}else 3==b.nodeType&&g(b.nodeValue)}for(var k="",l=!1,m=a.doc.lineSeparator();;){h(b);if(b==c)break;b=b.nextSibling}return k}function Hc(a,b,c){if(b==a.display.lineDiv){var d=a.display.lineDiv.childNodes[c];if(!d)return pb(a.clipPos(r(a.display.viewTo-1)),!0);b=null;c=0}else for(d=b;;d=d.parentNode){if(!d||d==a.display.lineDiv)return null;if(d.parentNode&&d.parentNode==a.display.lineDiv)break}for(var e=0;e<a.display.view.length;e++){var f=a.display.view[e];if(f.node==d)return dh(f,b,c)}}
196
+ function dh(a,b,c){function d(b,d,c){for(var e=-1;e<(l?l.length:0);e++)for(var f=0>e?k.map:l[e],g=0;g<f.length;g+=3){var h=f[g+2];if(h==b||h==d){d=E(0>e?a.line:a.rest[e]);e=f[g]+c;if(0>c||h!=b)e=f[g+(c?1:0)];return r(d,e)}}}var e=a.text.firstChild,f=!1;if(!b||!ha(e,b))return pb(r(E(a.line),0),!0);if(b==e&&(f=!0,b=e.childNodes[c],c=0,!b))return c=a.rest?y(a.rest):a.line,pb(r(E(c),c.text.length),f);var g=3==b.nodeType?b:null,h=b;g||1!=b.childNodes.length||3!=b.firstChild.nodeType||(g=b.firstChild,c&&
197
+ (c=g.nodeValue.length));for(;h.parentNode!=e;)h=h.parentNode;var k=a.measure,l=k.maps;if(b=d(g,h,c))return pb(b,f);e=h.nextSibling;for(g=g?g.nodeValue.length-c:0;e;e=e.nextSibling){if(b=d(e,e.firstChild,0))return pb(r(b.line,b.ch-g),f);g+=e.textContent.length}for(h=h.previousSibling;h;h=h.previousSibling){if(b=d(h,h.firstChild,-1))return pb(r(b.line,b.ch+c),f);c+=h.textContent.length}}var X=navigator.userAgent,Yf=navigator.platform,xa=/gecko\/\d/i.test(X),Zf=/MSIE \d/.test(X),$f=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(X),
198
+ Xb=/Edge\/(\d+)/.exec(X),D=Zf||$f||Xb,B=D&&(Zf?document.documentMode||6:+(Xb||$f)[1]),T=!Xb&&/WebKit\//.test(X),eh=T&&/Qt\/\d+\.\d+/.test(X),pc=!Xb&&/Chrome\//.test(X),ka=/Opera\//.test(X),Qf=/Apple Computer/.test(navigator.vendor),fh=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(X),xg=/PhantomJS/.test(X),Wb=!Xb&&/AppleWebKit/.test(X)&&/Mobile\/\w+/.test(X),qc=/Android/.test(X),qb=Wb||qc||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(X),ia=Wb||/Mac/.test(Yf),Vg=/\bCrOS\b/.test(X),gh=/win/i.test(Yf),
199
+ Ya=ka&&X.match(/Version\/(\d*\.\d*)/);Ya&&(Ya=Number(Ya[1]));Ya&&15<=Ya&&(ka=!1,T=!0);var Cf=ia&&(eh||ka&&(null==Ya||12.11>Ya)),Kd=xa||D&&9<=B,Sa=function(a,b){var c=a.className;if(b=w(b).exec(c)){var d=c.slice(b.index+b[0].length);a.className=c.slice(0,b.index)+(d?b[1]+d:"")}};var wb=document.createRange?function(a,b,c,d){var e=document.createRange();e.setEnd(d||a,c);e.setStart(a,b);return e}:function(a,b,c){var d=document.body.createTextRange();try{d.moveToElementText(a.parentNode)}catch(e){return d}d.collapse(!0);
200
+ d.moveEnd("character",c);d.moveStart("character",b);return d};var Yb=function(a){a.select()};Wb?Yb=function(a){a.selectionStart=0;a.selectionEnd=a.value.length}:D&&(Yb=function(a){try{a.select()}catch(b){}});var Xa=function(){this.id=null};Xa.prototype.set=function(a,b){clearTimeout(this.id);this.id=setTimeout(b,a)};var Fc={toString:function(){return"CodeMirror.Pass"}},qa={scroll:!1},Ld={origin:"*mouse"},Zb={origin:"+move"},dc=[""],bg=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/,
201
+ cg=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/,
202
+ pf=!1,ya=!1,tb=null,gg=function(){function a(a){return 247>=a?"bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN".charAt(a):1424<=a&&1524>=a?"R":1536<=a&&1785>=a?"nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111".charAt(a-
203
+ 1536):1774<=a&&2220>=a?"r":8192<=a&&8203>=a?"w":8204==a?"b":"L"}function b(a,b,d){this.level=a;this.from=b;this.to=d}var c=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,d=/[stwN]/,e=/[LRr]/,f=/[Lb1n]/,g=/[1n]/;return function(h,k){var l="ltr"==k?"L":"R";if(0==h.length||"ltr"==k&&!c.test(h))return!1;for(var m=h.length,p=[],n=0;n<m;++n)p.push(a(h.charCodeAt(n)));for(var n=0,q=l;n<m;++n){var r=p[n];"m"==r?p[n]=q:q=r}n=0;for(q=l;n<m;++n)r=p[n],"1"==r&&"r"==q?p[n]="n":e.test(r)&&(q=r,"r"==r&&(p[n]="R"));
204
+ n=1;for(q=p[0];n<m-1;++n)r=p[n],"+"==r&&"1"==q&&"1"==p[n+1]?p[n]="1":","!=r||q!=p[n+1]||"1"!=q&&"n"!=q||(p[n]=q),q=r;for(n=0;n<m;++n)if(q=p[n],","==q)p[n]="N";else if("%"==q){for(q=n+1;q<m&&"%"==p[q];++q);for(r=n&&"!"==p[n-1]||q<m&&"1"==p[q]?"1":"N";n<q;++n)p[n]=r;n=q-1}n=0;for(q=l;n<m;++n)r=p[n],"L"==q&&"1"==r?p[n]="L":e.test(r)&&(q=r);for(q=0;q<m;++q)if(d.test(p[q])){for(n=q+1;n<m&&d.test(p[n]);++n);r="L"==(q?p[q-1]:l);for(r=r==("L"==(n<m?p[n]:l))?r?"L":"R":l;q<n;++q)p[q]=r;q=n-1}for(var l=[],u,
205
+ n=0;n<m;)if(f.test(p[n])){q=n;for(++n;n<m&&f.test(p[n]);++n);l.push(new b(0,q,n))}else{var t=n,q=l.length;for(++n;n<m&&"L"!=p[n];++n);for(r=t;r<n;)if(g.test(p[r])){t<r&&l.splice(q,0,new b(1,t,r));t=r;for(++r;r<n&&g.test(p[r]);++r);l.splice(q,0,new b(2,t,r));t=r}else++r;t<n&&l.splice(q,0,new b(1,t,n))}1==l[0].level&&(u=h.match(/^\s+/))&&(l[0].from=u[0].length,l.unshift(new b(0,0,u[0].length)));1==y(l).level&&(u=h.match(/\s+$/))&&(y(l).to-=u[0].length,l.push(new b(0,m-u[0].length,m)));return"rtl"==
206
+ k?l.reverse():l}}(),lc=[],v=function(a,b,c){a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent?a.attachEvent("on"+b,c):(a=a._handlers||(a._handlers={}),a[b]=(a[b]||lc).concat(c))},Wg=function(){if(D&&9>B)return!1;var a=t("div");return"draggable"in a||"dragDrop"in a}(),bd,hd,Od=3!="\n\nb".split(/\n/).length?function(a){for(var b=0,c=[],d=a.length;b<=d;){var e=a.indexOf("\n",b);-1==e&&(e=a.length);var f=a.slice(b,"\r"==a.charAt(e-1)?e-1:e),g=f.indexOf("\r");-1!=g?(c.push(f.slice(0,g)),b+=g+
207
+ 1):(c.push(f),b=e+1)}return c}:function(a){return a.split(/\r\n?|\n/)},hh=window.getSelection?function(a){try{return a.selectionStart!=a.selectionEnd}catch(b){return!1}}:function(a){try{var b=a.ownerDocument.selection.createRange()}catch(c){}return b&&b.parentElement()==a?0!=b.compareEndPoints("StartToEnd",b):!1},Qg=function(){var a=t("div");if("oncopy"in a)return!0;a.setAttribute("oncopy","return;");return"function"==typeof a.oncopy}(),nd=null,cd={},bb={},cb={},L=function(a,b,c){this.pos=this.start=
208
+ 0;this.string=a;this.tabSize=b||8;this.lineStart=this.lastColumnPos=this.lastColumnValue=0;this.lineOracle=c};L.prototype.eol=function(){return this.pos>=this.string.length};L.prototype.sol=function(){return this.pos==this.lineStart};L.prototype.peek=function(){return this.string.charAt(this.pos)||void 0};L.prototype.next=function(){if(this.pos<this.string.length)return this.string.charAt(this.pos++)};L.prototype.eat=function(a){var b=this.string.charAt(this.pos);if("string"==typeof a?b==a:b&&(a.test?
209
+ a.test(b):a(b)))return++this.pos,b};L.prototype.eatWhile=function(a){for(var b=this.pos;this.eat(a););return this.pos>b};L.prototype.eatSpace=function(){for(var a=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>a};L.prototype.skipToEnd=function(){this.pos=this.string.length};L.prototype.skipTo=function(a){a=this.string.indexOf(a,this.pos);if(-1<a)return this.pos=a,!0};L.prototype.backUp=function(a){this.pos-=a};L.prototype.column=function(){this.lastColumnPos<
210
+ this.start&&(this.lastColumnValue=fa(this.string,this.start,this.tabSize,this.lastColumnPos,this.lastColumnValue),this.lastColumnPos=this.start);return this.lastColumnValue-(this.lineStart?fa(this.string,this.lineStart,this.tabSize):0)};L.prototype.indentation=function(){return fa(this.string,null,this.tabSize)-(this.lineStart?fa(this.string,this.lineStart,this.tabSize):0)};L.prototype.match=function(a,b,c){if("string"==typeof a){var d=function(a){return c?a.toLowerCase():a},e=this.string.substr(this.pos,
211
+ a.length);if(d(e)==d(a))return!1!==b&&(this.pos+=a.length),!0}else{if((a=this.string.slice(this.pos).match(a))&&0<a.index)return null;a&&!1!==b&&(this.pos+=a[0].length);return a}};L.prototype.current=function(){return this.string.slice(this.start,this.pos)};L.prototype.hideFirstChars=function(a,b){this.lineStart+=a;try{return b()}finally{this.lineStart-=a}};L.prototype.lookAhead=function(a){var b=this.lineOracle;return b&&b.lookAhead(a)};var nc=function(a,b){this.state=a;this.lookAhead=b},ta=function(a,
212
+ b,c,d){this.state=b;this.doc=a;this.line=c;this.maxLookAhead=d||0};ta.prototype.lookAhead=function(a){var b=this.doc.getLine(this.line+a);null!=b&&a>this.maxLookAhead&&(this.maxLookAhead=a);return b};ta.prototype.nextLine=function(){this.line++;0<this.maxLookAhead&&this.maxLookAhead--};ta.fromSaved=function(a,b,c){return b instanceof nc?new ta(a,Ma(a.mode,b.state),c,b.lookAhead):new ta(a,Ma(a.mode,b),c)};ta.prototype.save=function(a){a=!1!==a?Ma(this.doc.mode,this.state):this.state;return 0<this.maxLookAhead?
213
+ new nc(a,this.maxLookAhead):a};var le=function(a,b,c){this.start=a.start;this.end=a.pos;this.string=a.current();this.type=b||null;this.state=c},gb=function(a,b,c){this.text=a;Xd(this,b);this.height=c?c(this):1};gb.prototype.lineNo=function(){return E(this)};ab(gb);var ng={},mg={},db=null,xb=null,ze={left:0,right:0,top:0,bottom:0},Qa,Za=function(a,b,c){this.cm=c;var d=this.vert=t("div",[t("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),e=this.horiz=t("div",[t("div",null,null,"height: 100%; min-height: 1px")],
214
+ "CodeMirror-hscrollbar");a(d);a(e);v(d,"scroll",function(){d.clientHeight&&b(d.scrollTop,"vertical")});v(e,"scroll",function(){e.clientWidth&&b(e.scrollLeft,"horizontal")});this.checkedZeroWidth=!1;D&&8>B&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};Za.prototype.update=function(a){var b=a.scrollWidth>a.clientWidth+1,c=a.scrollHeight>a.clientHeight+1,d=a.nativeBarWidth;c?(this.vert.style.display="block",this.vert.style.bottom=b?d+"px":"0",this.vert.firstChild.style.height=Math.max(0,
215
+ a.scrollHeight-a.clientHeight+(a.viewHeight-(b?d:0)))+"px"):(this.vert.style.display="",this.vert.firstChild.style.height="0");b?(this.horiz.style.display="block",this.horiz.style.right=c?d+"px":"0",this.horiz.style.left=a.barLeft+"px",this.horiz.firstChild.style.width=Math.max(0,a.scrollWidth-a.clientWidth+(a.viewWidth-a.barLeft-(c?d:0)))+"px"):(this.horiz.style.display="",this.horiz.firstChild.style.width="0");!this.checkedZeroWidth&&0<a.clientHeight&&(0==d&&this.zeroWidthHack(),this.checkedZeroWidth=
216
+ !0);return{right:c?d:0,bottom:b?d:0}};Za.prototype.setScrollLeft=function(a){this.horiz.scrollLeft!=a&&(this.horiz.scrollLeft=a);this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")};Za.prototype.setScrollTop=function(a){this.vert.scrollTop!=a&&(this.vert.scrollTop=a);this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")};Za.prototype.zeroWidthHack=function(){this.horiz.style.height=this.vert.style.width=ia&&!fh?"12px":"18px";this.horiz.style.pointerEvents=
217
+ this.vert.style.pointerEvents="none";this.disableHoriz=new Xa;this.disableVert=new Xa};Za.prototype.enableZeroWidthBar=function(a,b,c){function d(){var e=a.getBoundingClientRect();("vert"==c?document.elementFromPoint(e.right-1,(e.top+e.bottom)/2):document.elementFromPoint((e.right+e.left)/2,e.bottom-1))!=a?a.style.pointerEvents="none":b.set(1E3,d)}a.style.pointerEvents="auto";b.set(1E3,d)};Za.prototype.clear=function(){var a=this.horiz.parentNode;a.removeChild(this.horiz);a.removeChild(this.vert)};
218
+ var $b=function(){};$b.prototype.update=function(){return{bottom:0,right:0}};$b.prototype.setScrollLeft=function(){};$b.prototype.setScrollTop=function(){};$b.prototype.clear=function(){};var Se={"native":Za,"null":$b},wg=0,vc=function(a,b,c){var d=a.display;this.viewport=b;this.visible=td(d,a.doc,b);this.editorIsHidden=!d.wrapper.offsetWidth;this.wrapperHeight=d.wrapper.clientHeight;this.wrapperWidth=d.wrapper.clientWidth;this.oldDisplayWidth=Na(a);this.force=c;this.dims=md(a);this.events=[]};vc.prototype.signal=
219
+ function(a,b){ga(a,b)&&this.events.push(arguments)};vc.prototype.finish=function(){for(var a=0;a<this.events.length;a++)J.apply(null,this.events[a])};var xc=0,da=null;D?da=-.53:xa?da=15:pc?da=-.7:Qf&&(da=-1/3);var ea=function(a,b){this.ranges=a;this.primIndex=b};ea.prototype.primary=function(){return this.ranges[this.primIndex]};ea.prototype.equals=function(a){if(a==this)return!0;if(a.primIndex!=this.primIndex||a.ranges.length!=this.ranges.length)return!1;for(var b=0;b<this.ranges.length;b++){var c=
220
+ this.ranges[b],d=a.ranges[b];if(!Rc(c.anchor,d.anchor)||!Rc(c.head,d.head))return!1}return!0};ea.prototype.deepCopy=function(){for(var a=[],b=0;b<this.ranges.length;b++)a[b]=new C(Sc(this.ranges[b].anchor),Sc(this.ranges[b].head));return new ea(a,this.primIndex)};ea.prototype.somethingSelected=function(){for(var a=0;a<this.ranges.length;a++)if(!this.ranges[a].empty())return!0;return!1};ea.prototype.contains=function(a,b){b||(b=a);for(var c=0;c<this.ranges.length;c++){var d=this.ranges[c];if(0<=A(b,
221
+ d.from())&&0>=A(a,d.to()))return c}return-1};var C=function(a,b){this.anchor=a;this.head=b};C.prototype.from=function(){return ic(this.anchor,this.head)};C.prototype.to=function(){return hc(this.anchor,this.head)};C.prototype.empty=function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch};Lb.prototype={chunkSize:function(){return this.lines.length},removeInner:function(a,b){for(var c=a,d=a+b;c<d;++c){var e=this.lines[c];this.height-=e.height;var f=e;f.parent=null;Wd(f);R(e,
222
+ "delete")}this.lines.splice(a,b)},collapse:function(a){a.push.apply(a,this.lines)},insertInner:function(a,b,c){this.height+=c;this.lines=this.lines.slice(0,a).concat(b).concat(this.lines.slice(a));for(a=0;a<b.length;++a)b[a].parent=this},iterN:function(a,b,c){for(b=a+b;a<b;++a)if(c(this.lines[a]))return!0}};Mb.prototype={chunkSize:function(){return this.size},removeInner:function(a,b){this.size-=b;for(var c=0;c<this.children.length;++c){var d=this.children[c],e=d.chunkSize();if(a<e){var f=Math.min(b,
223
+ e-a),g=d.height;d.removeInner(a,f);this.height-=g-d.height;e==f&&(this.children.splice(c--,1),d.parent=null);if(0==(b-=f))break;a=0}else a-=e}25>this.size-b&&(1<this.children.length||!(this.children[0]instanceof Lb))&&(a=[],this.collapse(a),this.children=[new Lb(a)],this.children[0].parent=this)},collapse:function(a){for(var b=0;b<this.children.length;++b)this.children[b].collapse(a)},insertInner:function(a,b,c){this.size+=b.length;this.height+=c;for(var d=0;d<this.children.length;++d){var e=this.children[d],
224
+ f=e.chunkSize();if(a<=f){e.insertInner(a,b,c);if(e.lines&&50<e.lines.length){for(b=a=e.lines.length%25+25;b<e.lines.length;)c=new Lb(e.lines.slice(b,b+=25)),e.height-=c.height,this.children.splice(++d,0,c),c.parent=this;e.lines=e.lines.slice(0,a);this.maybeSpill()}break}a-=f}},maybeSpill:function(){if(!(10>=this.children.length)){var a=this;do{var b=a.children.splice(a.children.length-5,5),b=new Mb(b);if(a.parent){a.size-=b.size;a.height-=b.height;var c=Q(a.parent.children,a);a.parent.children.splice(c+
225
+ 1,0,b)}else c=new Mb(a.children),c.parent=a,a.children=[c,b],a=c;b.parent=a.parent}while(10<a.children.length);a.parent.maybeSpill()}},iterN:function(a,b,c){for(var d=0;d<this.children.length;++d){var e=this.children[d],f=e.chunkSize();if(a<f){f=Math.min(b,f-a);if(e.iterN(a,f,c))return!0;if(0==(b-=f))break;a=0}else a-=f}}};var Nb=function(a,b,c){if(c)for(var d in c)c.hasOwnProperty(d)&&(this[d]=c[d]);this.doc=a;this.node=b};Nb.prototype.clear=function(){var a=this.doc.cm,b=this.line.widgets,c=this.line,
226
+ d=E(c);if(null!=d&&b){for(var e=0;e<b.length;++e)b[e]==this&&b.splice(e--,1);b.length||(c.widgets=null);var f=zb(this);ma(c,Math.max(0,c.height-f));a&&(aa(a,function(){var b=-f;oa(c)<(a.curOp&&a.curOp.scrollTop||a.doc.scrollTop)&&tc(a,b);Ba(a,d,"widget")}),R(a,"lineWidgetCleared",a,this,d))}};Nb.prototype.changed=function(){var a=this,b=this.height,c=this.doc.cm,d=this.line;this.height=null;var e=zb(this)-b;e&&(ma(d,d.height+e),c&&aa(c,function(){c.curOp.forceUpdate=!0;oa(d)<(c.curOp&&c.curOp.scrollTop||
227
+ c.doc.scrollTop)&&tc(c,e);R(c,"lineWidgetChanged",c,a,E(d))}))};ab(Nb);var vf=0,Da=function(a,b){this.lines=[];this.type=b;this.doc=a;this.id=++vf};Da.prototype.clear=function(){if(!this.explicitlyCleared){var a=this.doc.cm,b=a&&!a.curOp;b&&Ua(a);if(ga(this,"clear")){var c=this.find();c&&R(this,"clear",c.from,c.to)}for(var d=c=null,e=0;e<this.lines.length;++e){var f=this.lines[e],g=sb(f.markedSpans,this);a&&!this.collapsed?Ba(a,E(f),"text"):a&&(null!=g.to&&(d=E(f)),null!=g.from&&(c=E(f)));for(var h=
228
+ f,k=void 0,l=f.markedSpans,m=g,p=0;p<l.length;++p)l[p]!=m&&(k||(k=[])).push(l[p]);h.markedSpans=k;null==g.from&&this.collapsed&&!Ka(this.doc,f)&&a&&ma(f,Pa(a.display))}if(a&&this.collapsed&&!a.options.lineWrapping)for(e=0;e<this.lines.length;++e)f=na(this.lines[e]),g=kc(f),g>a.display.maxLineLength&&(a.display.maxLine=f,a.display.maxLineLength=g,a.display.maxLineChanged=!0);null!=c&&a&&this.collapsed&&Y(a,c,d+1);this.lines.length=0;this.explicitlyCleared=!0;this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=
229
+ !1,a&&lf(a.doc));a&&R(a,"markerCleared",a,this,c,d);b&&Va(a);this.parent&&this.parent.clear()}};Da.prototype.find=function(a,b){null==a&&"bookmark"==this.type&&(a=1);for(var c,d,e=0;e<this.lines.length;++e){var f=this.lines[e],g=sb(f.markedSpans,this);if(null!=g.from&&(c=r(b?f:E(f),g.from),-1==a))return c;if(null!=g.to&&(d=r(b?f:E(f),g.to),1==a))return d}return c&&{from:c,to:d}};Da.prototype.changed=function(){var a=this,b=this.find(-1,!0),c=this,d=this.doc.cm;b&&d&&aa(d,function(){var e=b.line,f=
230
+ E(b.line);if(f=ld(d,f))Ae(f),d.curOp.selectionChanged=d.curOp.forceUpdate=!0;d.curOp.updateMaxLine=!0;Ka(c.doc,e)||null==c.height||(f=c.height,c.height=null,(f=zb(c)-f)&&ma(e,e.height+f));R(d,"markerChanged",d,a)})};Da.prototype.attachLine=function(a){if(!this.lines.length&&this.doc.cm){var b=this.doc.cm.curOp;b.maybeHiddenMarkers&&-1!=Q(b.maybeHiddenMarkers,this)||(b.maybeUnhiddenMarkers||(b.maybeUnhiddenMarkers=[])).push(this)}this.lines.push(a)};Da.prototype.detachLine=function(a){this.lines.splice(Q(this.lines,
231
+ a),1);!this.lines.length&&this.doc.cm&&(a=this.doc.cm.curOp,(a.maybeHiddenMarkers||(a.maybeHiddenMarkers=[])).push(this))};ab(Da);var Ob=function(a,b){this.markers=a;this.primary=b;for(b=0;b<a.length;++b)a[b].parent=this};Ob.prototype.clear=function(){if(!this.explicitlyCleared){this.explicitlyCleared=!0;for(var a=0;a<this.markers.length;++a)this.markers[a].clear();R(this,"clear")}};Ob.prototype.find=function(a,b){return this.primary.find(a,b)};ab(Ob);var ih=0,Z=function(a,b,c,d,e){if(!(this instanceof
232
+ Z))return new Z(a,b,c,d,e);null==c&&(c=0);Mb.call(this,[new Lb([new gb("",null)])]);this.first=c;this.scrollTop=this.scrollLeft=0;this.cantEdit=!1;this.cleanGeneration=1;this.modeFrontier=this.highlightFrontier=c;c=r(c,0);this.sel=wa(c);this.history=new yc(null);this.id=++ih;this.modeOption=b;this.lineSep=d;this.direction="rtl"==e?"rtl":"ltr";this.extend=!1;"string"==typeof a&&(a=this.splitLines(a));Cd(this,{from:c,to:c,text:a});S(this,wa(c),qa)};Z.prototype=Rd(Mb.prototype,{constructor:Z,iter:function(a,
233
+ b,c){c?this.iterN(a-this.first,b-a,c):this.iterN(this.first,this.first+this.size,a)},insert:function(a,b){for(var c=0,d=0;d<b.length;++d)c+=b[d].height;this.insertInner(a-this.first,b,c)},remove:function(a,b){this.removeInner(a-this.first,b)},getValue:function(a){var b=Pc(this,this.first,this.first+this.size);return!1===a?b:b.join(a||this.lineSeparator())},setValue:P(function(a){var b=r(this.first,0),c=this.first+this.size-1;jb(this,{from:b,to:r(c,u(this,c).text.length),text:this.splitLines(a),origin:"setValue",
234
+ full:!0},!0);this.cm&&Eb(this.cm,0,0);S(this,wa(b),qa)}),replaceRange:function(a,b,c,d){b=x(this,b);c=c?x(this,c):b;kb(this,a,b,c,d)},getRange:function(a,b,c){a=Ha(this,x(this,a),x(this,b));return!1===c?a:a.join(c||this.lineSeparator())},getLine:function(a){return(a=this.getLineHandle(a))&&a.text},getLineHandle:function(a){if(rb(this,a))return u(this,a)},getLineNumber:function(a){return E(a)},getLineHandleVisualStart:function(a){"number"==typeof a&&(a=u(this,a));return na(a)},lineCount:function(){return this.size},
235
+ firstLine:function(){return this.first},lastLine:function(){return this.first+this.size-1},clipPos:function(a){return x(this,a)},getCursor:function(a){var b=this.sel.primary();return null==a||"head"==a?b.head:"anchor"==a?b.anchor:"end"==a||"to"==a||!1===a?b.to():b.from()},listSelections:function(){return this.sel.ranges},somethingSelected:function(){return this.sel.somethingSelected()},setCursor:P(function(a,b,c){a=x(this,"number"==typeof a?r(a,b||0):a);S(this,wa(a,null),c)}),setSelection:P(function(a,
236
+ b,c){var d=x(this,a);a=x(this,b||a);S(this,wa(d,a),c)}),extendSelection:P(function(a,b,c){Ac(this,x(this,a),b&&x(this,b),c)}),extendSelections:P(function(a,b){gf(this,Ud(this,a),b)}),extendSelectionsBy:P(function(a,b){a=ec(this.sel.ranges,a);gf(this,Ud(this,a),b)}),setSelections:P(function(a,b,c){if(a.length){for(var d=[],e=0;e<a.length;e++)d[e]=new C(x(this,a[e].anchor),x(this,a[e].head));null==b&&(b=Math.min(a.length-1,this.sel.primIndex));S(this,la(d,b),c)}}),addSelection:P(function(a,b,c){var d=
237
+ this.sel.ranges.slice(0);d.push(new C(x(this,a),x(this,b||a)));S(this,la(d,d.length-1),c)}),getSelection:function(a){for(var b=this.sel.ranges,c,d=0;d<b.length;d++){var e=Ha(this,b[d].from(),b[d].to());c=c?c.concat(e):e}return!1===a?c:c.join(a||this.lineSeparator())},getSelections:function(a){for(var b=[],c=this.sel.ranges,d=0;d<c.length;d++){var e=Ha(this,c[d].from(),c[d].to());!1!==a&&(e=e.join(a||this.lineSeparator()));b[d]=e}return b},replaceSelection:function(a,b,c){for(var d=[],e=0;e<this.sel.ranges.length;e++)d[e]=
238
+ a;this.replaceSelections(d,b,c||"+input")},replaceSelections:P(function(a,b,c){for(var d=[],e=this.sel,f=0;f<e.ranges.length;f++){var g=e.ranges[f];d[f]={from:g.from(),to:g.to(),text:this.splitLines(a[f]),origin:c}}if(a=b&&"end"!=b){a=[];e=c=r(this.first,0);for(f=0;f<d.length;f++){var h=d[f],g=Ze(h.from,c,e),k=Ze(Ca(h),c,e);c=h.to;e=k;"around"==b?(h=this.sel.ranges[f],h=0>A(h.head,h.anchor),a[f]=new C(h?k:g,h?g:k)):a[f]=new C(g,g)}a=new ea(a,this.sel.primIndex)}b=a;for(a=d.length-1;0<=a;a--)jb(this,
239
+ d[a]);b?hf(this,b):this.cm&&eb(this.cm)}),undo:P(function(){Cc(this,"undo")}),redo:P(function(){Cc(this,"redo")}),undoSelection:P(function(){Cc(this,"undo",!0)}),redoSelection:P(function(){Cc(this,"redo",!0)}),setExtending:function(a){this.extend=a},getExtending:function(){return this.extend},historySize:function(){for(var a=this.history,b=0,c=0,d=0;d<a.done.length;d++)a.done[d].ranges||++b;for(d=0;d<a.undone.length;d++)a.undone[d].ranges||++c;return{undo:b,redo:c}},clearHistory:function(){this.history=
240
+ new yc(this.history.maxGeneration)},markClean:function(){this.cleanGeneration=this.changeGeneration(!0)},changeGeneration:function(a){a&&(this.history.lastOp=this.history.lastSelOp=this.history.lastOrigin=null);return this.history.generation},isClean:function(a){return this.history.generation==(a||this.cleanGeneration)},getHistory:function(){return{done:hb(this.history.done),undone:hb(this.history.undone)}},setHistory:function(a){var b=this.history=new yc(this.history.maxGeneration);b.done=hb(a.done.slice(0),
241
+ null,!0);b.undone=hb(a.undone.slice(0),null,!0)},setGutterMarker:P(function(a,b,c){return Kb(this,a,"gutter",function(a){var d=a.gutterMarkers||(a.gutterMarkers={});d[b]=c;!c&&Sd(d)&&(a.gutterMarkers=null);return!0})}),clearGutter:P(function(a){var b=this;this.iter(function(c){c.gutterMarkers&&c.gutterMarkers[a]&&Kb(b,c,"gutter",function(){c.gutterMarkers[a]=null;Sd(c.gutterMarkers)&&(c.gutterMarkers=null);return!0})})}),lineInfo:function(a){if("number"==typeof a){if(!rb(this,a))return null;var b=
242
+ a;a=u(this,a);if(!a)return null}else if(b=E(a),null==b)return null;return{line:b,handle:a,text:a.text,gutterMarkers:a.gutterMarkers,textClass:a.textClass,bgClass:a.bgClass,wrapClass:a.wrapClass,widgets:a.widgets}},addLineClass:P(function(a,b,c){return Kb(this,a,"gutter"==b?"gutter":"class",function(a){var d="text"==b?"textClass":"background"==b?"bgClass":"gutter"==b?"gutterClass":"wrapClass";if(a[d]){if(w(c).test(a[d]))return!1;a[d]+=" "+c}else a[d]=c;return!0})}),removeLineClass:P(function(a,b,c){return Kb(this,
243
+ a,"gutter"==b?"gutter":"class",function(a){var d="text"==b?"textClass":"background"==b?"bgClass":"gutter"==b?"gutterClass":"wrapClass",f=a[d];if(f)if(null==c)a[d]=null;else{var g=f.match(w(c));if(!g)return!1;var h=g.index+g[0].length;a[d]=f.slice(0,g.index)+(g.index&&h!=f.length?" ":"")+f.slice(h)||null}else return!1;return!0})}),addLineWidget:P(function(a,b,c){return Fg(this,a,b,c)}),removeLineWidget:function(a){a.clear()},markText:function(a,b,c){return lb(this,x(this,a),x(this,b),c,c&&c.type||
244
+ "range")},setBookmark:function(a,b){b={replacedWith:b&&(null==b.nodeType?b.widget:b),insertLeft:b&&b.insertLeft,clearWhenEmpty:!1,shared:b&&b.shared,handleMouseEvents:b&&b.handleMouseEvents};a=x(this,a);return lb(this,a,a,b,"bookmark")},findMarksAt:function(a){a=x(this,a);var b=[],c=u(this,a.line).markedSpans;if(c)for(var d=0;d<c.length;++d){var e=c[d];(null==e.from||e.from<=a.ch)&&(null==e.to||e.to>=a.ch)&&b.push(e.marker.parent||e.marker)}return b},findMarks:function(a,b,c){a=x(this,a);b=x(this,
245
+ b);var d=[],e=a.line;this.iter(a.line,b.line+1,function(f){if(f=f.markedSpans)for(var g=0;g<f.length;g++){var h=f[g];null!=h.to&&e==a.line&&a.ch>=h.to||null==h.from&&e!=a.line||null!=h.from&&e==b.line&&h.from>=b.ch||c&&!c(h.marker)||d.push(h.marker.parent||h.marker)}++e});return d},getAllMarks:function(){var a=[];this.iter(function(b){if(b=b.markedSpans)for(var c=0;c<b.length;++c)null!=b[c].from&&a.push(b[c].marker)});return a},posFromIndex:function(a){var b,c=this.first,d=this.lineSeparator().length;
246
+ this.iter(function(e){e=e.text.length+d;if(e>a)return b=a,!0;a-=e;++c});return x(this,r(c,b))},indexFromPos:function(a){a=x(this,a);var b=a.ch;if(a.line<this.first||0>a.ch)return 0;var c=this.lineSeparator().length;this.iter(this.first,a.line,function(a){b+=a.text.length+c});return b},copy:function(a){var b=new Z(Pc(this,this.first,this.first+this.size),this.modeOption,this.first,this.lineSep,this.direction);b.scrollTop=this.scrollTop;b.scrollLeft=this.scrollLeft;b.sel=this.sel;b.extend=!1;a&&(b.history.undoDepth=
247
+ this.history.undoDepth,b.setHistory(this.getHistory()));return b},linkedDoc:function(a){a||(a={});var b=this.first,c=this.first+this.size;null!=a.from&&a.from>b&&(b=a.from);null!=a.to&&a.to<c&&(c=a.to);b=new Z(Pc(this,b,c),a.mode||this.modeOption,b,this.lineSep,this.direction);a.sharedHist&&(b.history=this.history);(this.linked||(this.linked=[])).push({doc:b,sharedHist:a.sharedHist});b.linked=[{doc:this,isParent:!0,sharedHist:a.sharedHist}];a=wf(this);for(c=0;c<a.length;c++){var d=a[c],e=d.find(),
248
+ f=b.clipPos(e.from),e=b.clipPos(e.to);A(f,e)&&(f=lb(b,f,e,d.primary,d.primary.type),d.markers.push(f),f.parent=d)}return b},unlinkDoc:function(a){a instanceof G&&(a=a.doc);if(this.linked)for(var b=0;b<this.linked.length;++b)if(this.linked[b].doc==a){this.linked.splice(b,1);a.unlinkDoc(this);Hg(wf(this));break}if(a.history==this.history){var c=[a.id];Wa(a,function(a){return c.push(a.id)},!0);a.history=new yc(null);a.history.done=hb(this.history.done,c);a.history.undone=hb(this.history.undone,c)}},
249
+ iterLinkedDocs:function(a){Wa(this,a)},getMode:function(){return this.mode},getEditor:function(){return this.cm},splitLines:function(a){return this.lineSep?a.split(this.lineSep):Od(a)},lineSeparator:function(){return this.lineSep||"\n"},setDirection:P(function(a){"rtl"!=a&&(a="ltr");a!=this.direction&&(this.direction=a,this.iter(function(a){return a.order=null}),this.cm&&Bg(this.cm))})});Z.prototype.eachLine=Z.prototype.iter;for(var yf=0,Pf=!1,Ea={3:"Enter",8:"Backspace",9:"Tab",13:"Enter",16:"Shift",
250
+ 17:"Ctrl",18:"Alt",19:"Pause",20:"CapsLock",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"PrintScrn",45:"Insert",46:"Delete",59:";",61:"=",91:"Mod",92:"Mod",93:"Mod",106:"*",107:"=",109:"-",110:".",111:"/",127:"Delete",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",63232:"Up",63233:"Down",63234:"Left",63235:"Right",63272:"Delete",63273:"Home",63275:"End",63276:"PageUp",63277:"PageDown",
251
+ 63302:"Insert"},ac=0;10>ac;ac++)Ea[ac+48]=Ea[ac+96]=String(ac);for(var Ic=65;90>=Ic;Ic++)Ea[Ic]=String.fromCharCode(Ic);for(var bc=1;12>=bc;bc++)Ea[bc+111]=Ea[bc+63235]="F"+bc;var Pb={basic:{Left:"goCharLeft",Right:"goCharRight",Up:"goLineUp",Down:"goLineDown",End:"goLineEnd",Home:"goLineStartSmart",PageUp:"goPageUp",PageDown:"goPageDown",Delete:"delCharAfter",Backspace:"delCharBefore","Shift-Backspace":"delCharBefore",Tab:"defaultTab","Shift-Tab":"indentAuto",Enter:"newlineAndIndent",Insert:"toggleOverwrite",
252
+ Esc:"singleSelection"},pcDefault:{"Ctrl-A":"selectAll","Ctrl-D":"deleteLine","Ctrl-Z":"undo","Shift-Ctrl-Z":"redo","Ctrl-Y":"redo","Ctrl-Home":"goDocStart","Ctrl-End":"goDocEnd","Ctrl-Up":"goLineUp","Ctrl-Down":"goLineDown","Ctrl-Left":"goGroupLeft","Ctrl-Right":"goGroupRight","Alt-Left":"goLineStart","Alt-Right":"goLineEnd","Ctrl-Backspace":"delGroupBefore","Ctrl-Delete":"delGroupAfter","Ctrl-S":"save","Ctrl-F":"find","Ctrl-G":"findNext","Shift-Ctrl-G":"findPrev","Shift-Ctrl-F":"replace","Shift-Ctrl-R":"replaceAll",
253
+ "Ctrl-[":"indentLess","Ctrl-]":"indentMore","Ctrl-U":"undoSelection","Shift-Ctrl-U":"redoSelection","Alt-U":"redoSelection",fallthrough:"basic"},emacsy:{"Ctrl-F":"goCharRight","Ctrl-B":"goCharLeft","Ctrl-P":"goLineUp","Ctrl-N":"goLineDown","Alt-F":"goWordRight","Alt-B":"goWordLeft","Ctrl-A":"goLineStart","Ctrl-E":"goLineEnd","Ctrl-V":"goPageDown","Shift-Ctrl-V":"goPageUp","Ctrl-D":"delCharAfter","Ctrl-H":"delCharBefore","Alt-D":"delWordAfter","Alt-Backspace":"delWordBefore","Ctrl-K":"killLine","Ctrl-T":"transposeChars",
254
+ "Ctrl-O":"openLine"},macDefault:{"Cmd-A":"selectAll","Cmd-D":"deleteLine","Cmd-Z":"undo","Shift-Cmd-Z":"redo","Cmd-Y":"redo","Cmd-Home":"goDocStart","Cmd-Up":"goDocStart","Cmd-End":"goDocEnd","Cmd-Down":"goDocEnd","Alt-Left":"goGroupLeft","Alt-Right":"goGroupRight","Cmd-Left":"goLineLeft","Cmd-Right":"goLineRight","Alt-Backspace":"delGroupBefore","Ctrl-Alt-Backspace":"delGroupAfter","Alt-Delete":"delGroupAfter","Cmd-S":"save","Cmd-F":"find","Cmd-G":"findNext","Shift-Cmd-G":"findPrev","Cmd-Alt-F":"replace",
255
+ "Shift-Cmd-Alt-F":"replaceAll","Cmd-[":"indentLess","Cmd-]":"indentMore","Cmd-Backspace":"delWrappedLineLeft","Cmd-Delete":"delWrappedLineRight","Cmd-U":"undoSelection","Shift-Cmd-U":"redoSelection","Ctrl-Up":"goDocStart","Ctrl-Down":"goDocEnd",fallthrough:["basic","emacsy"]}};Pb["default"]=ia?Pb.macDefault:Pb.pcDefault;var Qb={selectAll:nf,singleSelection:function(a){return a.setSelection(a.getCursor("anchor"),a.getCursor("head"),qa)},killLine:function(a){return nb(a,function(b){if(b.empty()){var c=
256
+ u(a.doc,b.head.line).text.length;return b.head.ch==c&&b.head.line<a.lastLine()?{from:b.head,to:r(b.head.line+1,0)}:{from:b.head,to:r(b.head.line,c)}}return{from:b.from(),to:b.to()}})},deleteLine:function(a){return nb(a,function(b){return{from:r(b.from().line,0),to:x(a.doc,r(b.to().line+1,0))}})},delLineLeft:function(a){return nb(a,function(a){return{from:r(a.from().line,0),to:a.from()}})},delWrappedLineLeft:function(a){return nb(a,function(b){var c=a.charCoords(b.head,"div").top+5;return{from:a.coordsChar({left:0,
257
+ top:c},"div"),to:b.from()}})},delWrappedLineRight:function(a){return nb(a,function(b){var c=a.charCoords(b.head,"div").top+5,c=a.coordsChar({left:a.display.lineDiv.offsetWidth+100,top:c},"div");return{from:b.from(),to:c}})},undo:function(a){return a.undo()},redo:function(a){return a.redo()},undoSelection:function(a){return a.undoSelection()},redoSelection:function(a){return a.redoSelection()},goDocStart:function(a){return a.extendSelection(r(a.firstLine(),0))},goDocEnd:function(a){return a.extendSelection(r(a.lastLine()))},
258
+ goLineStart:function(a){return a.extendSelectionsBy(function(b){return Ef(a,b.head.line)},{origin:"+move",bias:1})},goLineStartSmart:function(a){return a.extendSelectionsBy(function(b){return Ff(a,b.head)},{origin:"+move",bias:1})},goLineEnd:function(a){return a.extendSelectionsBy(function(b){b=b.head.line;var c=u(a.doc,b);var d=c;for(var e;e=Ja(d,!1);)d=e.find(1,!0).line;d!=c&&(b=E(d));return $c(!0,a,c,b,-1)},{origin:"+move",bias:-1})},goLineRight:function(a){return a.extendSelectionsBy(function(b){b=
259
+ a.cursorCoords(b.head,"div").top+5;return a.coordsChar({left:a.display.lineDiv.offsetWidth+100,top:b},"div")},Zb)},goLineLeft:function(a){return a.extendSelectionsBy(function(b){b=a.cursorCoords(b.head,"div").top+5;return a.coordsChar({left:0,top:b},"div")},Zb)},goLineLeftSmart:function(a){return a.extendSelectionsBy(function(b){var c=a.cursorCoords(b.head,"div").top+5,c=a.coordsChar({left:0,top:c},"div");return c.ch<a.getLine(c.line).search(/\S/)?Ff(a,b.head):c},Zb)},goLineUp:function(a){return a.moveV(-1,
260
+ "line")},goLineDown:function(a){return a.moveV(1,"line")},goPageUp:function(a){return a.moveV(-1,"page")},goPageDown:function(a){return a.moveV(1,"page")},goCharLeft:function(a){return a.moveH(-1,"char")},goCharRight:function(a){return a.moveH(1,"char")},goColumnLeft:function(a){return a.moveH(-1,"column")},goColumnRight:function(a){return a.moveH(1,"column")},goWordLeft:function(a){return a.moveH(-1,"word")},goGroupRight:function(a){return a.moveH(1,"group")},goGroupLeft:function(a){return a.moveH(-1,
261
+ "group")},goWordRight:function(a){return a.moveH(1,"word")},delCharBefore:function(a){return a.deleteH(-1,"char")},delCharAfter:function(a){return a.deleteH(1,"char")},delWordBefore:function(a){return a.deleteH(-1,"word")},delWordAfter:function(a){return a.deleteH(1,"word")},delGroupBefore:function(a){return a.deleteH(-1,"group")},delGroupAfter:function(a){return a.deleteH(1,"group")},indentAuto:function(a){return a.indentSelection("smart")},indentMore:function(a){return a.indentSelection("add")},
262
+ indentLess:function(a){return a.indentSelection("subtract")},insertTab:function(a){return a.replaceSelection("\t")},insertSoftTab:function(a){for(var b=[],c=a.listSelections(),d=a.options.tabSize,e=0;e<c.length;e++){var f=c[e].from(),f=fa(a.getLine(f.line),f.ch,d);b.push(Mc(d-f%d))}a.replaceSelections(b)},defaultTab:function(a){a.somethingSelected()?a.indentSelection("add"):a.execCommand("insertTab")},transposeChars:function(a){return aa(a,function(){for(var b=a.listSelections(),c=[],d=0;d<b.length;d++)if(b[d].empty()){var e=
263
+ b[d].head,f=u(a.doc,e.line).text;if(f)if(e.ch==f.length&&(e=new r(e.line,e.ch-1)),0<e.ch)e=new r(e.line,e.ch+1),a.replaceRange(f.charAt(e.ch-1)+f.charAt(e.ch-2),r(e.line,e.ch-2),e,"+transpose");else if(e.line>a.doc.first){var g=u(a.doc,e.line-1).text;g&&(e=new r(e.line,1),a.replaceRange(f.charAt(0)+a.doc.lineSeparator()+g.charAt(g.length-1),r(e.line-1,g.length-1),e,"+transpose"))}c.push(new C(e,e))}a.setSelections(c)})},newlineAndIndent:function(a){return aa(a,function(){for(var b=a.listSelections(),
264
+ c=b.length-1;0<=c;c--)a.replaceRange(a.doc.lineSeparator(),b[c].anchor,b[c].head,"+input");b=a.listSelections();for(c=0;c<b.length;c++)a.indentLine(b[c].from().line,null,!0);eb(a)})},openLine:function(a){return a.replaceSelection("\n","start")},toggleOverwrite:function(a){return a.toggleOverwrite()}},Og=new Xa,Hd=null,Id=function(a,b,c){this.time=a;this.pos=b;this.button=c};Id.prototype.compare=function(a,b,c){return this.time+400>a&&0==A(b,this.pos)&&c==this.button};var Tb,Sb,ob={toString:function(){return"CodeMirror.Init"}},
265
+ Of={},Gc={};G.defaults=Of;G.optionHandlers=Gc;var Md=[];G.defineInitHook=function(a){return Md.push(a)};var ba=null,z=function(a){this.cm=a;this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null;this.polling=new Xa;this.composing=null;this.gracePeriod=!1;this.readDOMTimeout=null};z.prototype.init=function(a){function b(a){if(!N(e,a)){if(e.somethingSelected())ba={lineWise:!1,text:e.getSelections()},"cut"==a.type&&e.replaceSelection("",null,"cut");else if(e.options.lineWiseCopyCut){var b=
266
+ Tf(e);ba={lineWise:!0,text:b.text};"cut"==a.type&&e.operation(function(){e.setSelections(b.ranges,0,qa);e.replaceSelection("",null,"cut")})}else return;if(a.clipboardData){a.clipboardData.clearData();var c=ba.text.join("\n");a.clipboardData.setData("Text",c);if(a.clipboardData.getData("Text")==c){a.preventDefault();return}}var g=Vf();a=g.firstChild;e.display.lineSpace.insertBefore(g,e.display.lineSpace.firstChild);a.value=ba.text.join("\n");var m=document.activeElement;Yb(a);setTimeout(function(){e.display.lineSpace.removeChild(g);
267
+ m.focus();m==f&&d.showPrimarySelection()},50)}}var c=this,d=this,e=d.cm,f=d.div=a.lineDiv;Uf(f,e.options.spellcheck);v(f,"paste",function(a){N(e,a)||Sf(a,e)||11>=B&&setTimeout(O(e,function(){return c.updateFromDOM()}),20)});v(f,"compositionstart",function(a){c.composing={data:a.data,done:!1}});v(f,"compositionupdate",function(a){c.composing||(c.composing={data:a.data,done:!1})});v(f,"compositionend",function(a){c.composing&&(a.data!=c.composing.data&&c.readFromDOMSoon(),c.composing.done=!0)});v(f,
268
+ "touchstart",function(){return d.forceCompositionEnd()});v(f,"input",function(){c.composing||c.readFromDOMSoon()});v(f,"copy",b);v(f,"cut",b)};z.prototype.prepareSelection=function(){var a=He(this.cm,!1);a.focus=this.cm.state.focused;return a};z.prototype.showSelection=function(a,b){a&&this.cm.display.view.length&&((a.focus||b)&&this.showPrimarySelection(),this.showMultipleSelections(a))};z.prototype.showPrimarySelection=function(){var a=window.getSelection(),b=this.cm,c=b.doc.sel.primary(),d=c.from(),
269
+ c=c.to();if(b.display.viewTo==b.display.viewFrom||d.line>=b.display.viewTo||c.line<b.display.viewFrom)a.removeAllRanges();else{var e=Hc(b,a.anchorNode,a.anchorOffset),f=Hc(b,a.focusNode,a.focusOffset);if(!e||e.bad||!f||f.bad||0!=A(ic(e,f),d)||0!=A(hc(e,f),c))if(e=b.display.view,d=d.line>=b.display.viewFrom&&Xf(b,d)||{node:e[0].measure.map[2],offset:0},c=c.line<b.display.viewTo&&Xf(b,c),c||(c=e[e.length-1].measure,c=c.maps?c.maps[c.maps.length-1]:c.map,c={node:c[c.length-1],offset:c[c.length-2]-c[c.length-
270
+ 3]}),d&&c){var e=a.rangeCount&&a.getRangeAt(0);try{var g=wb(d.node,d.offset,c.offset,c.node)}catch(h){}g&&(!xa&&b.state.focused?(a.collapse(d.node,d.offset),g.collapsed||(a.removeAllRanges(),a.addRange(g))):(a.removeAllRanges(),a.addRange(g)),e&&null==a.anchorNode?a.addRange(e):xa&&this.startGracePeriod());this.rememberSelection()}else a.removeAllRanges()}};z.prototype.startGracePeriod=function(){var a=this;clearTimeout(this.gracePeriod);this.gracePeriod=setTimeout(function(){a.gracePeriod=!1;a.selectionChanged()&&
271
+ a.cm.operation(function(){return a.cm.curOp.selectionChanged=!0})},20)};z.prototype.showMultipleSelections=function(a){F(this.cm.display.cursorDiv,a.cursors);F(this.cm.display.selectionDiv,a.selection)};z.prototype.rememberSelection=function(){var a=window.getSelection();this.lastAnchorNode=a.anchorNode;this.lastAnchorOffset=a.anchorOffset;this.lastFocusNode=a.focusNode;this.lastFocusOffset=a.focusOffset};z.prototype.selectionInEditor=function(){var a=window.getSelection();if(!a.rangeCount)return!1;
272
+ a=a.getRangeAt(0).commonAncestorContainer;return ha(this.div,a)};z.prototype.focus=function(){"nocursor"!=this.cm.options.readOnly&&(this.selectionInEditor()||this.showSelection(this.prepareSelection(),!0),this.div.focus())};z.prototype.blur=function(){this.div.blur()};z.prototype.getField=function(){return this.div};z.prototype.supportsTouch=function(){return!0};z.prototype.receivedFocus=function(){function a(){b.cm.state.focused&&(b.pollSelection(),b.polling.set(b.cm.options.pollInterval,a))}var b=
273
+ this;this.selectionInEditor()?this.pollSelection():aa(this.cm,function(){return b.cm.curOp.selectionChanged=!0});this.polling.set(this.cm.options.pollInterval,a)};z.prototype.selectionChanged=function(){var a=window.getSelection();return a.anchorNode!=this.lastAnchorNode||a.anchorOffset!=this.lastAnchorOffset||a.focusNode!=this.lastFocusNode||a.focusOffset!=this.lastFocusOffset};z.prototype.pollSelection=function(){if(null==this.readDOMTimeout&&!this.gracePeriod&&this.selectionChanged()){var a=window.getSelection(),
274
+ b=this.cm;if(qc&&pc&&this.cm.options.gutters.length&&bh(a.anchorNode))this.cm.triggerOnKeyDown({type:"keydown",keyCode:8,preventDefault:Math.abs}),this.blur(),this.focus();else if(!this.composing){this.rememberSelection();var c=Hc(b,a.anchorNode,a.anchorOffset),d=Hc(b,a.focusNode,a.focusOffset);c&&d&&aa(b,function(){S(b.doc,wa(c,d),qa);if(c.bad||d.bad)b.curOp.selectionChanged=!0})}}};z.prototype.pollContent=function(){null!=this.readDOMTimeout&&(clearTimeout(this.readDOMTimeout),this.readDOMTimeout=
275
+ null);var a=this.cm,b=a.display,c=a.doc.sel.primary(),d=c.from(),e=c.to();0==d.ch&&d.line>a.firstLine()&&(d=r(d.line-1,u(a.doc,d.line-1).length));e.ch==u(a.doc,e.line).text.length&&e.line<a.lastLine()&&(e=r(e.line+1,0));if(d.line<b.viewFrom||e.line>b.viewTo-1)return!1;var f;d.line==b.viewFrom||0==(f=Oa(a,d.line))?(c=E(b.view[0].line),f=b.view[0].node):(c=E(b.view[f].line),f=b.view[f-1].node.nextSibling);var g=Oa(a,e.line);g==b.view.length-1?(e=b.viewTo-1,b=b.lineDiv.lastChild):(e=E(b.view[g+1].line)-
276
+ 1,b=b.view[g+1].node.previousSibling);if(!f)return!1;b=a.doc.splitLines(ch(a,f,b,c,e));for(f=Ha(a.doc,r(c,0),r(e,u(a.doc,e).text.length));1<b.length&&1<f.length;)if(y(b)==y(f))b.pop(),f.pop(),e--;else if(b[0]==f[0])b.shift(),f.shift(),c++;else break;for(var h=0,g=0,k=b[0],l=f[0],m=Math.min(k.length,l.length);h<m&&k.charCodeAt(h)==l.charCodeAt(h);)++h;k=y(b);l=y(f);for(m=Math.min(k.length-(1==b.length?h:0),l.length-(1==f.length?h:0));g<m&&k.charCodeAt(k.length-g-1)==l.charCodeAt(l.length-g-1);)++g;
277
+ if(1==b.length&&1==f.length&&c==d.line)for(;h&&h>d.ch&&k.charCodeAt(k.length-g-1)==l.charCodeAt(l.length-g-1);)h--,g++;b[b.length-1]=k.slice(0,k.length-g).replace(/^\u200b+/,"");b[0]=b[0].slice(h).replace(/\u200b+$/,"");d=r(c,h);c=r(e,f.length?y(f).length-g:0);if(1<b.length||b[0]||A(d,c))return kb(a.doc,b,d,c,"+input"),!0};z.prototype.ensurePolled=function(){this.forceCompositionEnd()};z.prototype.reset=function(){this.forceCompositionEnd()};z.prototype.forceCompositionEnd=function(){this.composing&&
278
+ (clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())};z.prototype.readFromDOMSoon=function(){var a=this;null==this.readDOMTimeout&&(this.readDOMTimeout=setTimeout(function(){a.readDOMTimeout=null;if(a.composing)if(a.composing.done)a.composing=null;else return;a.updateFromDOM()},80))};z.prototype.updateFromDOM=function(){var a=this;!this.cm.isReadOnly()&&this.pollContent()||aa(this.cm,function(){return Y(a.cm)})};z.prototype.setUneditable=function(a){a.contentEditable=
279
+ "false"};z.prototype.onKeyPress=function(a){0!=a.charCode&&(a.preventDefault(),this.cm.isReadOnly()||O(this.cm,Nd)(this.cm,String.fromCharCode(null==a.charCode?a.keyCode:a.charCode),0))};z.prototype.readOnlyChanged=function(a){this.div.contentEditable=String("nocursor"!=a)};z.prototype.onContextMenu=function(){};z.prototype.resetPosition=function(){};z.prototype.needsContentAttribute=!0;var M=function(a){this.cm=a;this.prevInput="";this.pollingFast=!1;this.polling=new Xa;this.hasSelection=!1;this.composing=
280
+ null};M.prototype.init=function(a){function b(a){if(!N(e,a)){if(e.somethingSelected())ba={lineWise:!1,text:e.getSelections()};else if(e.options.lineWiseCopyCut){var b=Tf(e);ba={lineWise:!0,text:b.text};"cut"==a.type?e.setSelections(b.ranges,null,qa):(d.prevInput="",g.value=b.text.join("\n"),Yb(g))}else return;"cut"==a.type&&(e.state.cutIncoming=!0)}}var c=this,d=this,e=this.cm,f=this.wrapper=Vf(),g=this.textarea=f.firstChild;a.wrapper.insertBefore(f,a.wrapper.firstChild);Wb&&(g.style.width="0px");
281
+ v(g,"input",function(){D&&9<=B&&c.hasSelection&&(c.hasSelection=null);d.poll()});v(g,"paste",function(a){N(e,a)||Sf(a,e)||(e.state.pasteIncoming=!0,d.fastPoll())});v(g,"cut",b);v(g,"copy",b);v(a.scroller,"paste",function(b){va(a,b)||N(e,b)||(e.state.pasteIncoming=!0,d.focus())});v(a.lineSpace,"selectstart",function(b){va(a,b)||V(b)});v(g,"compositionstart",function(){var a=e.getCursor("from");d.composing&&d.composing.range.clear();d.composing={start:a,range:e.markText(a,e.getCursor("to"),{className:"CodeMirror-composing"})}});
282
+ v(g,"compositionend",function(){d.composing&&(d.poll(),d.composing.range.clear(),d.composing=null)})};M.prototype.prepareSelection=function(){var a=this.cm,b=a.display,c=a.doc,d=He(a);if(a.options.moveInputWithCursor){var a=ja(a,c.sel.primary().head,"div"),c=b.wrapper.getBoundingClientRect(),e=b.lineDiv.getBoundingClientRect();d.teTop=Math.max(0,Math.min(b.wrapper.clientHeight-10,a.top+e.top-c.top));d.teLeft=Math.max(0,Math.min(b.wrapper.clientWidth-10,a.left+e.left-c.left))}return d};M.prototype.showSelection=
283
+ function(a){var b=this.cm.display;F(b.cursorDiv,a.cursors);F(b.selectionDiv,a.selection);null!=a.teTop&&(this.wrapper.style.top=a.teTop+"px",this.wrapper.style.left=a.teLeft+"px")};M.prototype.reset=function(a){if(!this.contextMenuPending&&!this.composing){var b=this.cm;b.somethingSelected()?(this.prevInput="",a=b.getSelection(),this.textarea.value=a,b.state.focused&&Yb(this.textarea),D&&9<=B&&(this.hasSelection=a)):a||(this.prevInput=this.textarea.value="",D&&9<=B&&(this.hasSelection=null))}};M.prototype.getField=
284
+ function(){return this.textarea};M.prototype.supportsTouch=function(){return!1};M.prototype.focus=function(){if("nocursor"!=this.cm.options.readOnly&&(!qb||ra()!=this.textarea))try{this.textarea.focus()}catch(a){}};M.prototype.blur=function(){this.textarea.blur()};M.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0};M.prototype.receivedFocus=function(){this.slowPoll()};M.prototype.slowPoll=function(){var a=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,
285
+ function(){a.poll();a.cm.state.focused&&a.slowPoll()})};M.prototype.fastPoll=function(){function a(){c.poll()||b?(c.pollingFast=!1,c.slowPoll()):(b=!0,c.polling.set(60,a))}var b=!1,c=this;c.pollingFast=!0;c.polling.set(20,a)};M.prototype.poll=function(){var a=this,b=this.cm,c=this.textarea,d=this.prevInput;if(this.contextMenuPending||!b.state.focused||hh(c)&&!d&&!this.composing||b.isReadOnly()||b.options.disableInput||b.state.keySeq)return!1;var e=c.value;if(e==d&&!b.somethingSelected())return!1;
286
+ if(D&&9<=B&&this.hasSelection===e||ia&&/[\uf700-\uf7ff]/.test(e))return b.display.input.reset(),!1;if(b.doc.sel==b.display.selForContextMenu){var f=e.charCodeAt(0);8203!=f||d||(d="\u200b");if(8666==f)return this.reset(),this.cm.execCommand("undo")}for(var g=0,f=Math.min(d.length,e.length);g<f&&d.charCodeAt(g)==e.charCodeAt(g);)++g;aa(b,function(){Nd(b,e.slice(g),d.length-g,null,a.composing?"*compose":null);1E3<e.length||-1<e.indexOf("\n")?c.value=a.prevInput="":a.prevInput=e;a.composing&&(a.composing.range.clear(),
287
+ a.composing.range=b.markText(a.composing.start,b.getCursor("to"),{className:"CodeMirror-composing"}))});return!0};M.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)};M.prototype.onKeyPress=function(){D&&9<=B&&(this.hasSelection=null);this.fastPoll()};M.prototype.onContextMenu=function(a){function b(){if(null!=g.selectionStart){var a=e.somethingSelected(),b="\u200b"+(a?g.value:"");g.value="\u21da";g.value=b;d.prevInput=a?"":"\u200b";g.selectionStart=1;g.selectionEnd=
288
+ b.length;f.selForContextMenu=e.doc.sel}}function c(){d.contextMenuPending=!1;d.wrapper.style.cssText=m;g.style.cssText=l;D&&9>B&&f.scrollbars.setScrollTop(f.scroller.scrollTop=k);if(null!=g.selectionStart){(!D||D&&9>B)&&b();var a=0,c=function(){f.selForContextMenu==e.doc.sel&&0==g.selectionStart&&0<g.selectionEnd&&"\u200b"==d.prevInput?O(e,nf)(e):10>a++?f.detectingSelectAll=setTimeout(c,500):(f.selForContextMenu=null,f.input.reset())};f.detectingSelectAll=setTimeout(c,200)}}var d=this,e=d.cm,f=e.display,
289
+ g=d.textarea,h=Ra(e,a),k=f.scroller.scrollTop;if(h&&!ka){e.options.resetSelectionOnContextMenu&&-1==e.doc.sel.contains(h)&&O(e,S)(e.doc,wa(h),qa);var l=g.style.cssText,m=d.wrapper.style.cssText;d.wrapper.style.cssText="position: absolute";h=d.wrapper.getBoundingClientRect();g.style.cssText="position: absolute; width: 30px; height: 30px;\n top: "+(a.clientY-h.top-5)+"px; left: "+(a.clientX-h.left-5)+"px;\n z-index: 1000; background: "+(D?"rgba(255, 255, 255, .05)":"transparent")+";\n outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);";
290
+ if(T)var p=window.scrollY;f.input.focus();T&&window.scrollTo(null,p);f.input.reset();e.somethingSelected()||(g.value=d.prevInput=" ");d.contextMenuPending=!0;f.selForContextMenu=e.doc.sel;clearTimeout(f.detectingSelectAll);D&&9<=B&&b();if(Kd){ub(a);var n=function(){ca(window,"mouseup",n);setTimeout(c,20)};v(window,"mouseup",n)}else setTimeout(c,50)}};M.prototype.readOnlyChanged=function(a){a||this.reset();this.textarea.disabled="nocursor"==a};M.prototype.setUneditable=function(){};M.prototype.needsContentAttribute=
291
+ !1;(function(a){function b(b,e,f,g){a.defaults[b]=e;f&&(c[b]=g?function(a,b,d){d!=ob&&f(a,b,d)}:f)}var c=a.optionHandlers;a.defineOption=b;a.Init=ob;b("value","",function(a,b){return a.setValue(b)},!0);b("mode",null,function(a,b){a.doc.modeOption=b;Bd(a)},!0);b("indentUnit",2,Bd,!0);b("indentWithTabs",!1);b("smartIndent",!0);b("tabSize",4,function(a){Ib(a);Bb(a);Y(a)},!0);b("lineSeparator",null,function(a,b){if(a.doc.lineSep=b){var d=[],c=a.doc.first;a.doc.iter(function(a){for(var e=0;;){var f=a.text.indexOf(b,
292
+ e);if(-1==f)break;e=f+b.length;d.push(r(c,f))}c++});for(var e=d.length-1;0<=e;e--)kb(a.doc,b,d[e],r(d[e].line,d[e].ch+b.length))}});b("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200f\u2028\u2029\ufeff]/g,function(a,b,c){a.state.specialChars=new RegExp(b.source+(b.test("\t")?"":"|\t"),"g");c!=ob&&a.refresh()});b("specialCharPlaceholder",qg,function(a){return a.refresh()},!0);b("electricChars",!0);b("inputStyle",qb?"contenteditable":"textarea",function(){throw Error("inputStyle can not (yet) be changed in a running editor");
293
+ },!0);b("spellcheck",!1,function(a,b){return a.getInputField().spellcheck=b},!0);b("rtlMoveVisually",!gh);b("wholeLineUpdateBefore",!0);b("theme","default",function(a){Nf(a);Ub(a)},!0);b("keyMap","default",function(a,b,c){b=Dc(b);(c=c!=ob&&Dc(c))&&c.detach&&c.detach(a,b);b.attach&&b.attach(a,c||null)});b("extraKeys",null);b("configureMouse",null);b("lineWrapping",!1,$g,!0);b("gutters",[],function(a){zd(a.options);Ub(a)},!0);b("fixedGutter",!0,function(a,b){a.display.gutters.style.left=b?pd(a.display)+
294
+ "px":"0";a.refresh()},!0);b("coverGutterNextToScrollbar",!1,function(a){return fb(a)},!0);b("scrollbarStyle","native",function(a){Re(a);fb(a);a.display.scrollbars.setScrollTop(a.doc.scrollTop);a.display.scrollbars.setScrollLeft(a.doc.scrollLeft)},!0);b("lineNumbers",!1,function(a){zd(a.options);Ub(a)},!0);b("firstLineNumber",1,Ub,!0);b("lineNumberFormatter",function(a){return a},Ub,!0);b("showCursorWhenSelecting",!1,Cb,!0);b("resetSelectionOnContextMenu",!0);b("lineWiseCopyCut",!0);b("pasteLinesPerSelection",
295
+ !0);b("readOnly",!1,function(a,b){"nocursor"==b&&(Db(a),a.display.input.blur());a.display.input.readOnlyChanged(b)});b("disableInput",!1,function(a,b){b||a.display.input.reset()},!0);b("dragDrop",!0,Zg);b("allowDropFileTypes",null);b("cursorBlinkRate",530);b("cursorScrollMargin",0);b("cursorHeight",1,Cb,!0);b("singleCursorHeightPerLine",!0,Cb,!0);b("workTime",100);b("workDelay",100);b("flattenSpans",!0,Ib,!0);b("addModeClass",!1,Ib,!0);b("pollInterval",100);b("undoDepth",200,function(a,b){return a.doc.history.undoDepth=
296
+ b});b("historyEventDelay",1250);b("viewportMargin",10,function(a){return a.refresh()},!0);b("maxHighlightLength",1E4,Ib,!0);b("moveInputWithCursor",!0,function(a,b){b||a.display.input.resetPosition()});b("tabindex",null,function(a,b){return a.display.input.getField().tabIndex=b||""});b("autofocus",null);b("direction","ltr",function(a,b){return a.doc.setDirection(b)},!0)})(G);(function(a){var b=a.optionHandlers,c=a.helpers={};a.prototype={constructor:a,focus:function(){window.focus();this.display.input.focus()},
297
+ setOption:function(a,c){var d=this.options,e=d[a];if(d[a]!=c||"mode"==a)d[a]=c,b.hasOwnProperty(a)&&O(this,b[a])(this,c,e),J(this,"optionChange",this,a)},getOption:function(a){return this.options[a]},getDoc:function(){return this.doc},addKeyMap:function(a,b){this.state.keyMaps[b?"push":"unshift"](Dc(a))},removeKeyMap:function(a){for(var b=this.state.keyMaps,c=0;c<b.length;++c)if(b[c]==a||b[c].name==a)return b.splice(c,1),!0},addOverlay:W(function(b,c){var d=b.token?b:a.getMode(this.options,b);if(d.startState)throw Error("Overlays may not be stateful.");
298
+ ag(this.state.overlays,{mode:d,modeSpec:b,opaque:c&&c.opaque,priority:c&&c.priority||0},function(a){return a.priority});this.state.modeGen++;Y(this)}),removeOverlay:W(function(a){for(var b=this.state.overlays,c=0;c<b.length;++c){var d=b[c].modeSpec;if(d==a||"string"==typeof a&&d.name==a){b.splice(c,1);this.state.modeGen++;Y(this);break}}}),indentLine:W(function(a,b,c){"string"!=typeof b&&"number"!=typeof b&&(b=null==b?this.options.smartIndent?"smart":"prev":b?"add":"subtract");rb(this.doc,a)&&Vb(this,
299
+ a,b,c)}),indentSelection:W(function(a){for(var b=this.doc.sel.ranges,c=-1,d=0;d<b.length;d++){var h=b[d];if(h.empty())h.head.line>c&&(Vb(this,h.head.line,a,!0),c=h.head.line,d==this.doc.sel.primIndex&&eb(this));else{for(var k=h.from(),h=h.to(),l=Math.max(c,k.line),c=Math.min(this.lastLine(),h.line-(h.ch?0:1))+1,h=l;h<c;++h)Vb(this,h,a);h=this.doc.sel.ranges;0==k.ch&&b.length==h.length&&0<h[d].from().ch&&Fd(this.doc,d,new C(k,h[d].to()),qa)}}}),getTokenAt:function(a,b){return ke(this,a,b)},getLineTokens:function(a,
300
+ b){return ke(this,r(a),b,!0)},getTokenTypeAt:function(a){a=x(this.doc,a);var b=ie(this,u(this.doc,a.line)),c=0,d=(b.length-1)/2;a=a.ch;if(0==a)b=b[2];else for(;;){var h=c+d>>1;if((h?b[2*h-1]:0)>=a)d=h;else if(b[2*h+1]<a)c=h+1;else{b=b[2*h+2];break}}c=b?b.indexOf("overlay "):-1;return 0>c?b:0==c?null:b.slice(0,c-1)},getModeAt:function(b){var c=this.doc.mode;return c.innerMode?a.innerMode(c,this.getTokenAt(b).state).mode:c},getHelper:function(a,b){return this.getHelpers(a,b)[0]},getHelpers:function(a,
301
+ b){var d=[];if(!c.hasOwnProperty(b))return d;var e=c[b];a=this.getModeAt(a);if("string"==typeof a[b])e[a[b]]&&d.push(e[a[b]]);else if(a[b])for(var h=0;h<a[b].length;h++){var k=e[a[b][h]];k&&d.push(k)}else a.helperType&&e[a.helperType]?d.push(e[a.helperType]):e[a.name]&&d.push(e[a.name]);for(b=0;b<e._global.length;b++)h=e._global[b],h.pred(a,this)&&-1==Q(d,h.val)&&d.push(h.val);return d},getStateAfter:function(a,b){var c=this.doc;a=Math.max(c.first,Math.min(null==a?c.first+c.size-1:a,c.first+c.size-
302
+ 1));return vb(this,a+1,b).state},cursorCoords:function(a,b){var c=this.doc.sel.primary();a=null==a?c.head:"object"==typeof a?x(this.doc,a):a?c.from():c.to();return ja(this,a,b||"page")},charCoords:function(a,b){return rc(this,x(this.doc,a),b||"page")},coordsChar:function(a,b){a=Ee(this,a,b||"page");return od(this,a.left,a.top)},lineAtHeight:function(a,b){a=Ee(this,{top:a,left:0},b||"page").top;return Ia(this.doc,a+this.display.viewOffset)},heightAtLine:function(a,b,c){var d=!1;if("number"==typeof a){var e=
303
+ this.doc.first+this.doc.size-1;a<this.doc.first?a=this.doc.first:a>e&&(a=e,d=!0);a=u(this.doc,a)}return La(this,a,{top:0,left:0},b||"page",c||d).top+(d?this.doc.height-oa(a):0)},defaultTextHeight:function(){return Pa(this.display)},defaultCharWidth:function(){return Ab(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(a,b,c,g,h){var d=this.display;a=ja(this,x(this.doc,a));var e=a.bottom,f=a.left;b.style.position="absolute";b.setAttribute("cm-ignore-events",
304
+ "true");this.display.input.setUneditable(b);d.sizer.appendChild(b);if("over"==g)e=a.top;else if("above"==g||"near"==g){var p=Math.max(d.wrapper.clientHeight,this.doc.height),n=Math.max(d.sizer.clientWidth,d.lineSpace.clientWidth);("above"==g||a.bottom+b.offsetHeight>p)&&a.top>b.offsetHeight?e=a.top-b.offsetHeight:a.bottom+b.offsetHeight<=p&&(e=a.bottom);f+b.offsetWidth>n&&(f=n-b.offsetWidth)}b.style.top=e+"px";b.style.left=b.style.right="";"right"==h?(f=d.sizer.clientWidth-b.offsetWidth,b.style.right=
305
+ "0px"):("left"==h?f=0:"middle"==h&&(f=(d.sizer.clientWidth-b.offsetWidth)/2),b.style.left=f+"px");c&&(a=vd(this,{left:f,top:e,right:f+b.offsetWidth,bottom:e+b.offsetHeight}),null!=a.scrollTop&&Fb(this,a.scrollTop),null!=a.scrollLeft&&Ta(this,a.scrollLeft))},triggerOnKeyDown:W(Hf),triggerOnKeyPress:W(Jf),triggerOnKeyUp:If,triggerOnMouseDown:W(Kf),execCommand:function(a){if(Qb.hasOwnProperty(a))return Qb[a].call(null,this)},triggerElectric:W(function(a){Rf(this,a)}),findPosH:function(a,b,c,g){var d=
306
+ 1;0>b&&(d=-1,b=-b);a=x(this.doc,a);for(var e=0;e<b&&(a=Pd(this.doc,a,d,c,g),!a.hitSide);++e);return a},moveH:W(function(a,b){var c=this;this.extendSelectionsBy(function(d){return c.display.shift||c.doc.extend||d.empty()?Pd(c.doc,d.head,a,b,c.options.rtlMoveVisually):0>a?d.from():d.to()},Zb)}),deleteH:W(function(a,b){var c=this.doc;this.doc.sel.somethingSelected()?c.replaceSelection("",null,"+delete"):nb(this,function(d){var e=Pd(c,d.head,a,b,!1);return 0>a?{from:e,to:d.head}:{from:d.head,to:e}})}),
307
+ findPosV:function(a,b,c,g){var d=1;0>b&&(d=-1,b=-b);var e=x(this.doc,a);for(a=0;a<b&&(e=ja(this,e,"div"),null==g?g=e.left:e.left=g,e=Wf(this,e,d,c),!e.hitSide);++a);return e},moveV:W(function(a,b){var c=this,d=this.doc,e=[],k=!this.display.shift&&!d.extend&&d.sel.somethingSelected();d.extendSelectionsBy(function(f){if(k)return 0>a?f.from():f.to();var g=ja(c,f.head,"div");null!=f.goalColumn&&(g.left=f.goalColumn);e.push(g.left);var h=Wf(c,g,a,b);"page"==b&&f==d.sel.primary()&&tc(c,rc(c,h,"div").top-
308
+ g.top);return h},Zb);if(e.length)for(var l=0;l<d.sel.ranges.length;l++)d.sel.ranges[l].goalColumn=e[l]}),findWordAt:function(a){var b=u(this.doc,a.line).text,c=a.ch,d=a.ch;if(b){var h=this.getHelper(a,"wordChars");"before"!=a.sticky&&d!=b.length||!c?++d:--c;for(var k=b.charAt(c),k=fc(k,h)?function(a){return fc(a,h)}:/\s/.test(k)?function(a){return/\s/.test(a)}:function(a){return!/\s/.test(a)&&!fc(a)};0<c&&k(b.charAt(c-1));)--c;for(;d<b.length&&k(b.charAt(d));)++d}return new C(r(a.line,c),r(a.line,
309
+ d))},toggleOverwrite:function(a){if(null==a||a!=this.state.overwrite)(this.state.overwrite=!this.state.overwrite)?Fa(this.display.cursorDiv,"CodeMirror-overwrite"):Sa(this.display.cursorDiv,"CodeMirror-overwrite"),J(this,"overwriteToggle",this,this.state.overwrite)},hasFocus:function(){return this.display.input.getField()==ra()},isReadOnly:function(){return!(!this.options.readOnly&&!this.doc.cantEdit)},scrollTo:W(function(a,b){Eb(this,a,b)}),getScrollInfo:function(){var a=this.display.scroller;return{left:a.scrollLeft,
310
+ top:a.scrollTop,height:a.scrollHeight-pa(this)-this.display.barHeight,width:a.scrollWidth-pa(this)-this.display.barWidth,clientHeight:kd(this),clientWidth:Na(this)}},scrollIntoView:W(function(a,b){null==a?(a={from:this.doc.sel.primary().head,to:null},null==b&&(b=this.options.cursorScrollMargin)):"number"==typeof a?a={from:r(a,0),to:null}:null==a.from&&(a={from:a,to:null});a.to||(a.to=a.from);a.margin=b||0;null!=a.from.line?(uc(this),this.curOp.scrollToPos=a):Oe(this,a.from,a.to,a.margin)}),setSize:W(function(a,
311
+ b){var c=this,d=function(a){return"number"==typeof a||/^\d+$/.test(String(a))?a+"px":a};null!=a&&(this.display.wrapper.style.width=d(a));null!=b&&(this.display.wrapper.style.height=d(b));this.options.lineWrapping&&Be(this);var e=this.display.viewFrom;this.doc.iter(e,this.display.viewTo,function(a){if(a.widgets)for(var b=0;b<a.widgets.length;b++)if(a.widgets[b].noHScroll){Ba(c,e,"widget");break}++e});this.curOp.forceUpdate=!0;J(this,"refresh",this)}),operation:function(a){return aa(this,a)},startOperation:function(){return Ua(this)},
312
+ endOperation:function(){return Va(this)},refresh:W(function(){var a=this.display.cachedTextHeight;Y(this);this.curOp.forceUpdate=!0;Bb(this);Eb(this,this.doc.scrollLeft,this.doc.scrollTop);ud(this);(null==a||.5<Math.abs(a-Pa(this.display)))&&qd(this);J(this,"refresh",this)}),swapDoc:W(function(a){var b=this.doc;b.cm=null;af(this,a);Bb(this);this.display.input.reset();Eb(this,a.scrollLeft,a.scrollTop);this.curOp.forceScroll=!0;R(this,"swapDoc",this,b);return b}),getInputField:function(){return this.display.input.getField()},
313
+ getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}};ab(a);a.registerHelper=function(b,e,f){c.hasOwnProperty(b)||(c[b]=a[b]={_global:[]});c[b][e]=f};a.registerGlobalHelper=function(b,e,f,g){a.registerHelper(b,e,g);c[b]._global.push({pred:f,val:g})}})(G);var jh="iter insert remove copy getEditor constructor".split(" "),cc;for(cc in Z.prototype)Z.prototype.hasOwnProperty(cc)&&0>
314
+ Q(jh,cc)&&(G.prototype[cc]=function(a){return function(){return a.apply(this.doc,arguments)}}(Z.prototype[cc]));ab(Z);G.inputStyles={textarea:M,contenteditable:z};G.defineMode=function(a){G.defaults.mode||"null"==a||(G.defaults.mode=a);ig.apply(this,arguments)};G.defineMIME=function(a,b){bb[a]=b};G.defineMode("null",function(){return{token:function(a){return a.skipToEnd()}}});G.defineMIME("text/plain","null");G.defineExtension=function(a,b){G.prototype[a]=b};G.defineDocExtension=function(a,b){Z.prototype[a]=
315
+ b};G.fromTextArea=function(a,b){function c(){a.value=h.getValue()}b=b?Ga(b):{};b.value=a.value;!b.tabindex&&a.tabIndex&&(b.tabindex=a.tabIndex);!b.placeholder&&a.placeholder&&(b.placeholder=a.placeholder);if(null==b.autofocus){var d=ra();b.autofocus=d==a||null!=a.getAttribute("autofocus")&&d==document.body}if(a.form&&(v(a.form,"submit",c),!b.leaveSubmitMethodAlone)){var e=a.form;var f=e.submit;try{var g=e.submit=function(){c();e.submit=f;e.submit();e.submit=g}}catch(k){}}b.finishInit=function(b){b.save=
316
+ c;b.getTextArea=function(){return a};b.toTextArea=function(){b.toTextArea=isNaN;c();a.parentNode.removeChild(b.getWrapperElement());a.style.display="";a.form&&(ca(a.form,"submit",c),"function"==typeof a.form.submit&&(a.form.submit=f))}};a.style.display="none";var h=G(function(b){return a.parentNode.insertBefore(b,a.nextSibling)},b);return h};(function(a){a.off=ca;a.on=v;a.wheelEventPixels=Ag;a.Doc=Z;a.splitLines=Od;a.countColumn=fa;a.findColumn=Lc;a.isWordChar=Nc;a.Pass=Fc;a.signal=J;a.Line=gb;a.changeEnd=
317
+ Ca;a.scrollbarModel=Se;a.Pos=r;a.cmpPos=A;a.modes=cd;a.mimeModes=bb;a.resolveMode=mc;a.getMode=dd;a.modeExtensions=cb;a.extendMode=jg;a.copyState=Ma;a.startState=fe;a.innerMode=ed;a.commands=Qb;a.keyMap=Pb;a.keyName=Df;a.isModifierKey=Af;a.lookupKey=mb;a.normalizeKeyMap=Mg;a.StringStream=L;a.SharedTextMarker=Ob;a.TextMarker=Da;a.LineWidget=Nb;a.e_preventDefault=V;a.e_stopPropagation=de;a.e_stop=ub;a.addClass=Fa;a.contains=ha;a.rmClass=Sa;a.keyNames=Ea})(G);G.version="5.28.0";return G});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/mode/css/css.js CHANGED
@@ -1,825 +1,24 @@
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("css", function(config, parserConfig) {
15
- var provided = parserConfig;
16
- if (!parserConfig.propertyKeywords) parserConfig = CodeMirror.resolveMode("text/css");
17
- parserConfig.inline = provided.inline;
18
-
19
- var indentUnit = config.indentUnit,
20
- tokenHooks = parserConfig.tokenHooks,
21
- documentTypes = parserConfig.documentTypes || {},
22
- mediaTypes = parserConfig.mediaTypes || {},
23
- mediaFeatures = parserConfig.mediaFeatures || {},
24
- mediaValueKeywords = parserConfig.mediaValueKeywords || {},
25
- propertyKeywords = parserConfig.propertyKeywords || {},
26
- nonStandardPropertyKeywords = parserConfig.nonStandardPropertyKeywords || {},
27
- fontProperties = parserConfig.fontProperties || {},
28
- counterDescriptors = parserConfig.counterDescriptors || {},
29
- colorKeywords = parserConfig.colorKeywords || {},
30
- valueKeywords = parserConfig.valueKeywords || {},
31
- allowNested = parserConfig.allowNested,
32
- supportsAtComponent = parserConfig.supportsAtComponent === true;
33
-
34
- var type, override;
35
- function ret(style, tp) { type = tp; return style; }
36
-
37
- // Tokenizers
38
-
39
- function tokenBase(stream, state) {
40
- var ch = stream.next();
41
- if (tokenHooks[ch]) {
42
- var result = tokenHooks[ch](stream, state);
43
- if (result !== false) return result;
44
- }
45
- if (ch == "@") {
46
- stream.eatWhile(/[\w\\\-]/);
47
- return ret("def", stream.current());
48
- } else if (ch == "=" || (ch == "~" || ch == "|") && stream.eat("=")) {
49
- return ret(null, "compare");
50
- } else if (ch == "\"" || ch == "'") {
51
- state.tokenize = tokenString(ch);
52
- return state.tokenize(stream, state);
53
- } else if (ch == "#") {
54
- stream.eatWhile(/[\w\\\-]/);
55
- return ret("atom", "hash");
56
- } else if (ch == "!") {
57
- stream.match(/^\s*\w*/);
58
- return ret("keyword", "important");
59
- } else if (/\d/.test(ch) || ch == "." && stream.eat(/\d/)) {
60
- stream.eatWhile(/[\w.%]/);
61
- return ret("number", "unit");
62
- } else if (ch === "-") {
63
- if (/[\d.]/.test(stream.peek())) {
64
- stream.eatWhile(/[\w.%]/);
65
- return ret("number", "unit");
66
- } else if (stream.match(/^-[\w\\\-]+/)) {
67
- stream.eatWhile(/[\w\\\-]/);
68
- if (stream.match(/^\s*:/, false))
69
- return ret("variable-2", "variable-definition");
70
- return ret("variable-2", "variable");
71
- } else if (stream.match(/^\w+-/)) {
72
- return ret("meta", "meta");
73
- }
74
- } else if (/[,+>*\/]/.test(ch)) {
75
- return ret(null, "select-op");
76
- } else if (ch == "." && stream.match(/^-?[_a-z][_a-z0-9-]*/i)) {
77
- return ret("qualifier", "qualifier");
78
- } else if (/[:;{}\[\]\(\)]/.test(ch)) {
79
- return ret(null, ch);
80
- } else if ((ch == "u" && stream.match(/rl(-prefix)?\(/)) ||
81
- (ch == "d" && stream.match("omain(")) ||
82
- (ch == "r" && stream.match("egexp("))) {
83
- stream.backUp(1);
84
- state.tokenize = tokenParenthesized;
85
- return ret("property", "word");
86
- } else if (/[\w\\\-]/.test(ch)) {
87
- stream.eatWhile(/[\w\\\-]/);
88
- return ret("property", "word");
89
- } else {
90
- return ret(null, null);
91
- }
92
- }
93
-
94
- function tokenString(quote) {
95
- return function(stream, state) {
96
- var escaped = false, ch;
97
- while ((ch = stream.next()) != null) {
98
- if (ch == quote && !escaped) {
99
- if (quote == ")") stream.backUp(1);
100
- break;
101
- }
102
- escaped = !escaped && ch == "\\";
103
- }
104
- if (ch == quote || !escaped && quote != ")") state.tokenize = null;
105
- return ret("string", "string");
106
- };
107
- }
108
-
109
- function tokenParenthesized(stream, state) {
110
- stream.next(); // Must be '('
111
- if (!stream.match(/\s*[\"\')]/, false))
112
- state.tokenize = tokenString(")");
113
- else
114
- state.tokenize = null;
115
- return ret(null, "(");
116
- }
117
-
118
- // Context management
119
-
120
- function Context(type, indent, prev) {
121
- this.type = type;
122
- this.indent = indent;
123
- this.prev = prev;
124
- }
125
-
126
- function pushContext(state, stream, type, indent) {
127
- state.context = new Context(type, stream.indentation() + (indent === false ? 0 : indentUnit), state.context);
128
- return type;
129
- }
130
-
131
- function popContext(state) {
132
- if (state.context.prev)
133
- state.context = state.context.prev;
134
- return state.context.type;
135
- }
136
-
137
- function pass(type, stream, state) {
138
- return states[state.context.type](type, stream, state);
139
- }
140
- function popAndPass(type, stream, state, n) {
141
- for (var i = n || 1; i > 0; i--)
142
- state.context = state.context.prev;
143
- return pass(type, stream, state);
144
- }
145
-
146
- // Parser
147
-
148
- function wordAsValue(stream) {
149
- var word = stream.current().toLowerCase();
150
- if (valueKeywords.hasOwnProperty(word))
151
- override = "atom";
152
- else if (colorKeywords.hasOwnProperty(word))
153
- override = "keyword";
154
- else
155
- override = "variable";
156
- }
157
-
158
- var states = {};
159
-
160
- states.top = function(type, stream, state) {
161
- if (type == "{") {
162
- return pushContext(state, stream, "block");
163
- } else if (type == "}" && state.context.prev) {
164
- return popContext(state);
165
- } else if (supportsAtComponent && /@component/.test(type)) {
166
- return pushContext(state, stream, "atComponentBlock");
167
- } else if (/^@(-moz-)?document$/.test(type)) {
168
- return pushContext(state, stream, "documentTypes");
169
- } else if (/^@(media|supports|(-moz-)?document|import)$/.test(type)) {
170
- return pushContext(state, stream, "atBlock");
171
- } else if (/^@(font-face|counter-style)/.test(type)) {
172
- state.stateArg = type;
173
- return "restricted_atBlock_before";
174
- } else if (/^@(-(moz|ms|o|webkit)-)?keyframes$/.test(type)) {
175
- return "keyframes";
176
- } else if (type && type.charAt(0) == "@") {
177
- return pushContext(state, stream, "at");
178
- } else if (type == "hash") {
179
- override = "builtin";
180
- } else if (type == "word") {
181
- override = "tag";
182
- } else if (type == "variable-definition") {
183
- return "maybeprop";
184
- } else if (type == "interpolation") {
185
- return pushContext(state, stream, "interpolation");
186
- } else if (type == ":") {
187
- return "pseudo";
188
- } else if (allowNested && type == "(") {
189
- return pushContext(state, stream, "parens");
190
- }
191
- return state.context.type;
192
- };
193
-
194
- states.block = function(type, stream, state) {
195
- if (type == "word") {
196
- var word = stream.current().toLowerCase();
197
- if (propertyKeywords.hasOwnProperty(word)) {
198
- override = "property";
199
- return "maybeprop";
200
- } else if (nonStandardPropertyKeywords.hasOwnProperty(word)) {
201
- override = "string-2";
202
- return "maybeprop";
203
- } else if (allowNested) {
204
- override = stream.match(/^\s*:(?:\s|$)/, false) ? "property" : "tag";
205
- return "block";
206
- } else {
207
- override += " error";
208
- return "maybeprop";
209
- }
210
- } else if (type == "meta") {
211
- return "block";
212
- } else if (!allowNested && (type == "hash" || type == "qualifier")) {
213
- override = "error";
214
- return "block";
215
- } else {
216
- return states.top(type, stream, state);
217
- }
218
- };
219
-
220
- states.maybeprop = function(type, stream, state) {
221
- if (type == ":") return pushContext(state, stream, "prop");
222
- return pass(type, stream, state);
223
- };
224
-
225
- states.prop = function(type, stream, state) {
226
- if (type == ";") return popContext(state);
227
- if (type == "{" && allowNested) return pushContext(state, stream, "propBlock");
228
- if (type == "}" || type == "{") return popAndPass(type, stream, state);
229
- if (type == "(") return pushContext(state, stream, "parens");
230
-
231
- if (type == "hash" && !/^#([0-9a-fA-f]{3,4}|[0-9a-fA-f]{6}|[0-9a-fA-f]{8})$/.test(stream.current())) {
232
- override += " error";
233
- } else if (type == "word") {
234
- wordAsValue(stream);
235
- } else if (type == "interpolation") {
236
- return pushContext(state, stream, "interpolation");
237
- }
238
- return "prop";
239
- };
240
-
241
- states.propBlock = function(type, _stream, state) {
242
- if (type == "}") return popContext(state);
243
- if (type == "word") { override = "property"; return "maybeprop"; }
244
- return state.context.type;
245
- };
246
-
247
- states.parens = function(type, stream, state) {
248
- if (type == "{" || type == "}") return popAndPass(type, stream, state);
249
- if (type == ")") return popContext(state);
250
- if (type == "(") return pushContext(state, stream, "parens");
251
- if (type == "interpolation") return pushContext(state, stream, "interpolation");
252
- if (type == "word") wordAsValue(stream);
253
- return "parens";
254
- };
255
-
256
- states.pseudo = function(type, stream, state) {
257
- if (type == "word") {
258
- override = "variable-3";
259
- return state.context.type;
260
- }
261
- return pass(type, stream, state);
262
- };
263
-
264
- states.documentTypes = function(type, stream, state) {
265
- if (type == "word" && documentTypes.hasOwnProperty(stream.current())) {
266
- override = "tag";
267
- return state.context.type;
268
- } else {
269
- return states.atBlock(type, stream, state);
270
- }
271
- };
272
-
273
- states.atBlock = function(type, stream, state) {
274
- if (type == "(") return pushContext(state, stream, "atBlock_parens");
275
- if (type == "}" || type == ";") return popAndPass(type, stream, state);
276
- if (type == "{") return popContext(state) && pushContext(state, stream, allowNested ? "block" : "top");
277
-
278
- if (type == "interpolation") return pushContext(state, stream, "interpolation");
279
-
280
- if (type == "word") {
281
- var word = stream.current().toLowerCase();
282
- if (word == "only" || word == "not" || word == "and" || word == "or")
283
- override = "keyword";
284
- else if (mediaTypes.hasOwnProperty(word))
285
- override = "attribute";
286
- else if (mediaFeatures.hasOwnProperty(word))
287
- override = "property";
288
- else if (mediaValueKeywords.hasOwnProperty(word))
289
- override = "keyword";
290
- else if (propertyKeywords.hasOwnProperty(word))
291
- override = "property";
292
- else if (nonStandardPropertyKeywords.hasOwnProperty(word))
293
- override = "string-2";
294
- else if (valueKeywords.hasOwnProperty(word))
295
- override = "atom";
296
- else if (colorKeywords.hasOwnProperty(word))
297
- override = "keyword";
298
- else
299
- override = "error";
300
- }
301
- return state.context.type;
302
- };
303
-
304
- states.atComponentBlock = function(type, stream, state) {
305
- if (type == "}")
306
- return popAndPass(type, stream, state);
307
- if (type == "{")
308
- return popContext(state) && pushContext(state, stream, allowNested ? "block" : "top", false);
309
- if (type == "word")
310
- override = "error";
311
- return state.context.type;
312
- };
313
-
314
- states.atBlock_parens = function(type, stream, state) {
315
- if (type == ")") return popContext(state);
316
- if (type == "{" || type == "}") return popAndPass(type, stream, state, 2);
317
- return states.atBlock(type, stream, state);
318
- };
319
-
320
- states.restricted_atBlock_before = function(type, stream, state) {
321
- if (type == "{")
322
- return pushContext(state, stream, "restricted_atBlock");
323
- if (type == "word" && state.stateArg == "@counter-style") {
324
- override = "variable";
325
- return "restricted_atBlock_before";
326
- }
327
- return pass(type, stream, state);
328
- };
329
-
330
- states.restricted_atBlock = function(type, stream, state) {
331
- if (type == "}") {
332
- state.stateArg = null;
333
- return popContext(state);
334
- }
335
- if (type == "word") {
336
- if ((state.stateArg == "@font-face" && !fontProperties.hasOwnProperty(stream.current().toLowerCase())) ||
337
- (state.stateArg == "@counter-style" && !counterDescriptors.hasOwnProperty(stream.current().toLowerCase())))
338
- override = "error";
339
- else
340
- override = "property";
341
- return "maybeprop";
342
- }
343
- return "restricted_atBlock";
344
- };
345
-
346
- states.keyframes = function(type, stream, state) {
347
- if (type == "word") { override = "variable"; return "keyframes"; }
348
- if (type == "{") return pushContext(state, stream, "top");
349
- return pass(type, stream, state);
350
- };
351
-
352
- states.at = function(type, stream, state) {
353
- if (type == ";") return popContext(state);
354
- if (type == "{" || type == "}") return popAndPass(type, stream, state);
355
- if (type == "word") override = "tag";
356
- else if (type == "hash") override = "builtin";
357
- return "at";
358
- };
359
-
360
- states.interpolation = function(type, stream, state) {
361
- if (type == "}") return popContext(state);
362
- if (type == "{" || type == ";") return popAndPass(type, stream, state);
363
- if (type == "word") override = "variable";
364
- else if (type != "variable" && type != "(" && type != ")") override = "error";
365
- return "interpolation";
366
- };
367
-
368
- return {
369
- startState: function(base) {
370
- return {tokenize: null,
371
- state: parserConfig.inline ? "block" : "top",
372
- stateArg: null,
373
- context: new Context(parserConfig.inline ? "block" : "top", base || 0, null)};
374
- },
375
-
376
- token: function(stream, state) {
377
- if (!state.tokenize && stream.eatSpace()) return null;
378
- var style = (state.tokenize || tokenBase)(stream, state);
379
- if (style && typeof style == "object") {
380
- type = style[1];
381
- style = style[0];
382
- }
383
- override = style;
384
- state.state = states[state.state](type, stream, state);
385
- return override;
386
- },
387
-
388
- indent: function(state, textAfter) {
389
- var cx = state.context, ch = textAfter && textAfter.charAt(0);
390
- var indent = cx.indent;
391
- if (cx.type == "prop" && (ch == "}" || ch == ")")) cx = cx.prev;
392
- if (cx.prev) {
393
- if (ch == "}" && (cx.type == "block" || cx.type == "top" ||
394
- cx.type == "interpolation" || cx.type == "restricted_atBlock")) {
395
- // Resume indentation from parent context.
396
- cx = cx.prev;
397
- indent = cx.indent;
398
- } else if (ch == ")" && (cx.type == "parens" || cx.type == "atBlock_parens") ||
399
- ch == "{" && (cx.type == "at" || cx.type == "atBlock")) {
400
- // Dedent relative to current context.
401
- indent = Math.max(0, cx.indent - indentUnit);
402
- cx = cx.prev;
403
- }
404
- }
405
- return indent;
406
- },
407
-
408
- electricChars: "}",
409
- blockCommentStart: "/*",
410
- blockCommentEnd: "*/",
411
- fold: "brace"
412
- };
413
- });
414
-
415
- function keySet(array) {
416
- var keys = {};
417
- for (var i = 0; i < array.length; ++i) {
418
- keys[array[i]] = true;
419
- }
420
- return keys;
421
- }
422
-
423
- var documentTypes_ = [
424
- "domain", "regexp", "url", "url-prefix"
425
- ], documentTypes = keySet(documentTypes_);
426
-
427
- var mediaTypes_ = [
428
- "all", "aural", "braille", "handheld", "print", "projection", "screen",
429
- "tty", "tv", "embossed"
430
- ], mediaTypes = keySet(mediaTypes_);
431
-
432
- var mediaFeatures_ = [
433
- "width", "min-width", "max-width", "height", "min-height", "max-height",
434
- "device-width", "min-device-width", "max-device-width", "device-height",
435
- "min-device-height", "max-device-height", "aspect-ratio",
436
- "min-aspect-ratio", "max-aspect-ratio", "device-aspect-ratio",
437
- "min-device-aspect-ratio", "max-device-aspect-ratio", "color", "min-color",
438
- "max-color", "color-index", "min-color-index", "max-color-index",
439
- "monochrome", "min-monochrome", "max-monochrome", "resolution",
440
- "min-resolution", "max-resolution", "scan", "grid", "orientation",
441
- "device-pixel-ratio", "min-device-pixel-ratio", "max-device-pixel-ratio",
442
- "pointer", "any-pointer", "hover", "any-hover"
443
- ], mediaFeatures = keySet(mediaFeatures_);
444
-
445
- var mediaValueKeywords_ = [
446
- "landscape", "portrait", "none", "coarse", "fine", "on-demand", "hover",
447
- "interlace", "progressive"
448
- ], mediaValueKeywords = keySet(mediaValueKeywords_);
449
-
450
- var propertyKeywords_ = [
451
- "align-content", "align-items", "align-self", "alignment-adjust",
452
- "alignment-baseline", "anchor-point", "animation", "animation-delay",
453
- "animation-direction", "animation-duration", "animation-fill-mode",
454
- "animation-iteration-count", "animation-name", "animation-play-state",
455
- "animation-timing-function", "appearance", "azimuth", "backface-visibility",
456
- "background", "background-attachment", "background-clip", "background-color",
457
- "background-image", "background-origin", "background-position",
458
- "background-repeat", "background-size", "baseline-shift", "binding",
459
- "bleed", "bookmark-label", "bookmark-level", "bookmark-state",
460
- "bookmark-target", "border", "border-bottom", "border-bottom-color",
461
- "border-bottom-left-radius", "border-bottom-right-radius",
462
- "border-bottom-style", "border-bottom-width", "border-collapse",
463
- "border-color", "border-image", "border-image-outset",
464
- "border-image-repeat", "border-image-slice", "border-image-source",
465
- "border-image-width", "border-left", "border-left-color",
466
- "border-left-style", "border-left-width", "border-radius", "border-right",
467
- "border-right-color", "border-right-style", "border-right-width",
468
- "border-spacing", "border-style", "border-top", "border-top-color",
469
- "border-top-left-radius", "border-top-right-radius", "border-top-style",
470
- "border-top-width", "border-width", "bottom", "box-decoration-break",
471
- "box-shadow", "box-sizing", "break-after", "break-before", "break-inside",
472
- "caption-side", "clear", "clip", "color", "color-profile", "column-count",
473
- "column-fill", "column-gap", "column-rule", "column-rule-color",
474
- "column-rule-style", "column-rule-width", "column-span", "column-width",
475
- "columns", "content", "counter-increment", "counter-reset", "crop", "cue",
476
- "cue-after", "cue-before", "cursor", "direction", "display",
477
- "dominant-baseline", "drop-initial-after-adjust",
478
- "drop-initial-after-align", "drop-initial-before-adjust",
479
- "drop-initial-before-align", "drop-initial-size", "drop-initial-value",
480
- "elevation", "empty-cells", "fit", "fit-position", "flex", "flex-basis",
481
- "flex-direction", "flex-flow", "flex-grow", "flex-shrink", "flex-wrap",
482
- "float", "float-offset", "flow-from", "flow-into", "font", "font-feature-settings",
483
- "font-family", "font-kerning", "font-language-override", "font-size", "font-size-adjust",
484
- "font-stretch", "font-style", "font-synthesis", "font-variant",
485
- "font-variant-alternates", "font-variant-caps", "font-variant-east-asian",
486
- "font-variant-ligatures", "font-variant-numeric", "font-variant-position",
487
- "font-weight", "grid", "grid-area", "grid-auto-columns", "grid-auto-flow",
488
- "grid-auto-position", "grid-auto-rows", "grid-column", "grid-column-end",
489
- "grid-column-start", "grid-row", "grid-row-end", "grid-row-start",
490
- "grid-template", "grid-template-areas", "grid-template-columns",
491
- "grid-template-rows", "hanging-punctuation", "height", "hyphens",
492
- "icon", "image-orientation", "image-rendering", "image-resolution",
493
- "inline-box-align", "justify-content", "left", "letter-spacing",
494
- "line-break", "line-height", "line-stacking", "line-stacking-ruby",
495
- "line-stacking-shift", "line-stacking-strategy", "list-style",
496
- "list-style-image", "list-style-position", "list-style-type", "margin",
497
- "margin-bottom", "margin-left", "margin-right", "margin-top",
498
- "marker-offset", "marks", "marquee-direction", "marquee-loop",
499
- "marquee-play-count", "marquee-speed", "marquee-style", "max-height",
500
- "max-width", "min-height", "min-width", "move-to", "nav-down", "nav-index",
501
- "nav-left", "nav-right", "nav-up", "object-fit", "object-position",
502
- "opacity", "order", "orphans", "outline",
503
- "outline-color", "outline-offset", "outline-style", "outline-width",
504
- "overflow", "overflow-style", "overflow-wrap", "overflow-x", "overflow-y",
505
- "padding", "padding-bottom", "padding-left", "padding-right", "padding-top",
506
- "page", "page-break-after", "page-break-before", "page-break-inside",
507
- "page-policy", "pause", "pause-after", "pause-before", "perspective",
508
- "perspective-origin", "pitch", "pitch-range", "play-during", "position",
509
- "presentation-level", "punctuation-trim", "quotes", "region-break-after",
510
- "region-break-before", "region-break-inside", "region-fragment",
511
- "rendering-intent", "resize", "rest", "rest-after", "rest-before", "richness",
512
- "right", "rotation", "rotation-point", "ruby-align", "ruby-overhang",
513
- "ruby-position", "ruby-span", "shape-image-threshold", "shape-inside", "shape-margin",
514
- "shape-outside", "size", "speak", "speak-as", "speak-header",
515
- "speak-numeral", "speak-punctuation", "speech-rate", "stress", "string-set",
516
- "tab-size", "table-layout", "target", "target-name", "target-new",
517
- "target-position", "text-align", "text-align-last", "text-decoration",
518
- "text-decoration-color", "text-decoration-line", "text-decoration-skip",
519
- "text-decoration-style", "text-emphasis", "text-emphasis-color",
520
- "text-emphasis-position", "text-emphasis-style", "text-height",
521
- "text-indent", "text-justify", "text-outline", "text-overflow", "text-shadow",
522
- "text-size-adjust", "text-space-collapse", "text-transform", "text-underline-position",
523
- "text-wrap", "top", "transform", "transform-origin", "transform-style",
524
- "transition", "transition-delay", "transition-duration",
525
- "transition-property", "transition-timing-function", "unicode-bidi",
526
- "vertical-align", "visibility", "voice-balance", "voice-duration",
527
- "voice-family", "voice-pitch", "voice-range", "voice-rate", "voice-stress",
528
- "voice-volume", "volume", "white-space", "widows", "width", "word-break",
529
- "word-spacing", "word-wrap", "z-index",
530
- // SVG-specific
531
- "clip-path", "clip-rule", "mask", "enable-background", "filter", "flood-color",
532
- "flood-opacity", "lighting-color", "stop-color", "stop-opacity", "pointer-events",
533
- "color-interpolation", "color-interpolation-filters",
534
- "color-rendering", "fill", "fill-opacity", "fill-rule", "image-rendering",
535
- "marker", "marker-end", "marker-mid", "marker-start", "shape-rendering", "stroke",
536
- "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin",
537
- "stroke-miterlimit", "stroke-opacity", "stroke-width", "text-rendering",
538
- "baseline-shift", "dominant-baseline", "glyph-orientation-horizontal",
539
- "glyph-orientation-vertical", "text-anchor", "writing-mode"
540
- ], propertyKeywords = keySet(propertyKeywords_);
541
-
542
- var nonStandardPropertyKeywords_ = [
543
- "scrollbar-arrow-color", "scrollbar-base-color", "scrollbar-dark-shadow-color",
544
- "scrollbar-face-color", "scrollbar-highlight-color", "scrollbar-shadow-color",
545
- "scrollbar-3d-light-color", "scrollbar-track-color", "shape-inside",
546
- "searchfield-cancel-button", "searchfield-decoration", "searchfield-results-button",
547
- "searchfield-results-decoration", "zoom"
548
- ], nonStandardPropertyKeywords = keySet(nonStandardPropertyKeywords_);
549
-
550
- var fontProperties_ = [
551
- "font-family", "src", "unicode-range", "font-variant", "font-feature-settings",
552
- "font-stretch", "font-weight", "font-style"
553
- ], fontProperties = keySet(fontProperties_);
554
-
555
- var counterDescriptors_ = [
556
- "additive-symbols", "fallback", "negative", "pad", "prefix", "range",
557
- "speak-as", "suffix", "symbols", "system"
558
- ], counterDescriptors = keySet(counterDescriptors_);
559
-
560
- var colorKeywords_ = [
561
- "aliceblue", "antiquewhite", "aqua", "aquamarine", "azure", "beige",
562
- "bisque", "black", "blanchedalmond", "blue", "blueviolet", "brown",
563
- "burlywood", "cadetblue", "chartreuse", "chocolate", "coral", "cornflowerblue",
564
- "cornsilk", "crimson", "cyan", "darkblue", "darkcyan", "darkgoldenrod",
565
- "darkgray", "darkgreen", "darkkhaki", "darkmagenta", "darkolivegreen",
566
- "darkorange", "darkorchid", "darkred", "darksalmon", "darkseagreen",
567
- "darkslateblue", "darkslategray", "darkturquoise", "darkviolet",
568
- "deeppink", "deepskyblue", "dimgray", "dodgerblue", "firebrick",
569
- "floralwhite", "forestgreen", "fuchsia", "gainsboro", "ghostwhite",
570
- "gold", "goldenrod", "gray", "grey", "green", "greenyellow", "honeydew",
571
- "hotpink", "indianred", "indigo", "ivory", "khaki", "lavender",
572
- "lavenderblush", "lawngreen", "lemonchiffon", "lightblue", "lightcoral",
573
- "lightcyan", "lightgoldenrodyellow", "lightgray", "lightgreen", "lightpink",
574
- "lightsalmon", "lightseagreen", "lightskyblue", "lightslategray",
575
- "lightsteelblue", "lightyellow", "lime", "limegreen", "linen", "magenta",
576
- "maroon", "mediumaquamarine", "mediumblue", "mediumorchid", "mediumpurple",
577
- "mediumseagreen", "mediumslateblue", "mediumspringgreen", "mediumturquoise",
578
- "mediumvioletred", "midnightblue", "mintcream", "mistyrose", "moccasin",
579
- "navajowhite", "navy", "oldlace", "olive", "olivedrab", "orange", "orangered",
580
- "orchid", "palegoldenrod", "palegreen", "paleturquoise", "palevioletred",
581
- "papayawhip", "peachpuff", "peru", "pink", "plum", "powderblue",
582
- "purple", "rebeccapurple", "red", "rosybrown", "royalblue", "saddlebrown",
583
- "salmon", "sandybrown", "seagreen", "seashell", "sienna", "silver", "skyblue",
584
- "slateblue", "slategray", "snow", "springgreen", "steelblue", "tan",
585
- "teal", "thistle", "tomato", "turquoise", "violet", "wheat", "white",
586
- "whitesmoke", "yellow", "yellowgreen"
587
- ], colorKeywords = keySet(colorKeywords_);
588
-
589
- var valueKeywords_ = [
590
- "above", "absolute", "activeborder", "additive", "activecaption", "afar",
591
- "after-white-space", "ahead", "alias", "all", "all-scroll", "alphabetic", "alternate",
592
- "always", "amharic", "amharic-abegede", "antialiased", "appworkspace",
593
- "arabic-indic", "armenian", "asterisks", "attr", "auto", "avoid", "avoid-column", "avoid-page",
594
- "avoid-region", "background", "backwards", "baseline", "below", "bidi-override", "binary",
595
- "bengali", "blink", "block", "block-axis", "bold", "bolder", "border", "border-box",
596
- "both", "bottom", "break", "break-all", "break-word", "bullets", "button", "button-bevel",
597
- "buttonface", "buttonhighlight", "buttonshadow", "buttontext", "calc", "cambodian",
598
- "capitalize", "caps-lock-indicator", "caption", "captiontext", "caret",
599
- "cell", "center", "checkbox", "circle", "cjk-decimal", "cjk-earthly-branch",
600
- "cjk-heavenly-stem", "cjk-ideographic", "clear", "clip", "close-quote",
601
- "col-resize", "collapse", "column", "column-reverse", "compact", "condensed", "contain", "content",
602
- "content-box", "context-menu", "continuous", "copy", "counter", "counters", "cover", "crop",
603
- "cross", "crosshair", "currentcolor", "cursive", "cyclic", "dashed", "decimal",
604
- "decimal-leading-zero", "default", "default-button", "destination-atop",
605
- "destination-in", "destination-out", "destination-over", "devanagari",
606
- "disc", "discard", "disclosure-closed", "disclosure-open", "document",
607
- "dot-dash", "dot-dot-dash",
608
- "dotted", "double", "down", "e-resize", "ease", "ease-in", "ease-in-out", "ease-out",
609
- "element", "ellipse", "ellipsis", "embed", "end", "ethiopic", "ethiopic-abegede",
610
- "ethiopic-abegede-am-et", "ethiopic-abegede-gez", "ethiopic-abegede-ti-er",
611
- "ethiopic-abegede-ti-et", "ethiopic-halehame-aa-er",
612
- "ethiopic-halehame-aa-et", "ethiopic-halehame-am-et",
613
- "ethiopic-halehame-gez", "ethiopic-halehame-om-et",
614
- "ethiopic-halehame-sid-et", "ethiopic-halehame-so-et",
615
- "ethiopic-halehame-ti-er", "ethiopic-halehame-ti-et", "ethiopic-halehame-tig",
616
- "ethiopic-numeric", "ew-resize", "expanded", "extends", "extra-condensed",
617
- "extra-expanded", "fantasy", "fast", "fill", "fixed", "flat", "flex", "flex-end", "flex-start", "footnotes",
618
- "forwards", "from", "geometricPrecision", "georgian", "graytext", "groove",
619
- "gujarati", "gurmukhi", "hand", "hangul", "hangul-consonant", "hebrew",
620
- "help", "hidden", "hide", "higher", "highlight", "highlighttext",
621
- "hiragana", "hiragana-iroha", "horizontal", "hsl", "hsla", "icon", "ignore",
622
- "inactiveborder", "inactivecaption", "inactivecaptiontext", "infinite",
623
- "infobackground", "infotext", "inherit", "initial", "inline", "inline-axis",
624
- "inline-block", "inline-flex", "inline-table", "inset", "inside", "intrinsic", "invert",
625
- "italic", "japanese-formal", "japanese-informal", "justify", "kannada",
626
- "katakana", "katakana-iroha", "keep-all", "khmer",
627
- "korean-hangul-formal", "korean-hanja-formal", "korean-hanja-informal",
628
- "landscape", "lao", "large", "larger", "left", "level", "lighter",
629
- "line-through", "linear", "linear-gradient", "lines", "list-item", "listbox", "listitem",
630
- "local", "logical", "loud", "lower", "lower-alpha", "lower-armenian",
631
- "lower-greek", "lower-hexadecimal", "lower-latin", "lower-norwegian",
632
- "lower-roman", "lowercase", "ltr", "malayalam", "match", "matrix", "matrix3d",
633
- "media-controls-background", "media-current-time-display",
634
- "media-fullscreen-button", "media-mute-button", "media-play-button",
635
- "media-return-to-realtime-button", "media-rewind-button",
636
- "media-seek-back-button", "media-seek-forward-button", "media-slider",
637
- "media-sliderthumb", "media-time-remaining-display", "media-volume-slider",
638
- "media-volume-slider-container", "media-volume-sliderthumb", "medium",
639
- "menu", "menulist", "menulist-button", "menulist-text",
640
- "menulist-textfield", "menutext", "message-box", "middle", "min-intrinsic",
641
- "mix", "mongolian", "monospace", "move", "multiple", "myanmar", "n-resize",
642
- "narrower", "ne-resize", "nesw-resize", "no-close-quote", "no-drop",
643
- "no-open-quote", "no-repeat", "none", "normal", "not-allowed", "nowrap",
644
- "ns-resize", "numbers", "numeric", "nw-resize", "nwse-resize", "oblique", "octal", "open-quote",
645
- "optimizeLegibility", "optimizeSpeed", "oriya", "oromo", "outset",
646
- "outside", "outside-shape", "overlay", "overline", "padding", "padding-box",
647
- "painted", "page", "paused", "persian", "perspective", "plus-darker", "plus-lighter",
648
- "pointer", "polygon", "portrait", "pre", "pre-line", "pre-wrap", "preserve-3d",
649
- "progress", "push-button", "radial-gradient", "radio", "read-only",
650
- "read-write", "read-write-plaintext-only", "rectangle", "region",
651
- "relative", "repeat", "repeating-linear-gradient",
652
- "repeating-radial-gradient", "repeat-x", "repeat-y", "reset", "reverse",
653
- "rgb", "rgba", "ridge", "right", "rotate", "rotate3d", "rotateX", "rotateY",
654
- "rotateZ", "round", "row", "row-resize", "row-reverse", "rtl", "run-in", "running",
655
- "s-resize", "sans-serif", "scale", "scale3d", "scaleX", "scaleY", "scaleZ",
656
- "scroll", "scrollbar", "se-resize", "searchfield",
657
- "searchfield-cancel-button", "searchfield-decoration",
658
- "searchfield-results-button", "searchfield-results-decoration",
659
- "semi-condensed", "semi-expanded", "separate", "serif", "show", "sidama",
660
- "simp-chinese-formal", "simp-chinese-informal", "single",
661
- "skew", "skewX", "skewY", "skip-white-space", "slide", "slider-horizontal",
662
- "slider-vertical", "sliderthumb-horizontal", "sliderthumb-vertical", "slow",
663
- "small", "small-caps", "small-caption", "smaller", "solid", "somali",
664
- "source-atop", "source-in", "source-out", "source-over", "space", "space-around", "space-between", "spell-out", "square",
665
- "square-button", "start", "static", "status-bar", "stretch", "stroke", "sub",
666
- "subpixel-antialiased", "super", "sw-resize", "symbolic", "symbols", "table",
667
- "table-caption", "table-cell", "table-column", "table-column-group",
668
- "table-footer-group", "table-header-group", "table-row", "table-row-group",
669
- "tamil",
670
- "telugu", "text", "text-bottom", "text-top", "textarea", "textfield", "thai",
671
- "thick", "thin", "threeddarkshadow", "threedface", "threedhighlight",
672
- "threedlightshadow", "threedshadow", "tibetan", "tigre", "tigrinya-er",
673
- "tigrinya-er-abegede", "tigrinya-et", "tigrinya-et-abegede", "to", "top",
674
- "trad-chinese-formal", "trad-chinese-informal",
675
- "translate", "translate3d", "translateX", "translateY", "translateZ",
676
- "transparent", "ultra-condensed", "ultra-expanded", "underline", "up",
677
- "upper-alpha", "upper-armenian", "upper-greek", "upper-hexadecimal",
678
- "upper-latin", "upper-norwegian", "upper-roman", "uppercase", "urdu", "url",
679
- "var", "vertical", "vertical-text", "visible", "visibleFill", "visiblePainted",
680
- "visibleStroke", "visual", "w-resize", "wait", "wave", "wider",
681
- "window", "windowframe", "windowtext", "words", "wrap", "wrap-reverse", "x-large", "x-small", "xor",
682
- "xx-large", "xx-small"
683
- ], valueKeywords = keySet(valueKeywords_);
684
-
685
- var allWords = documentTypes_.concat(mediaTypes_).concat(mediaFeatures_).concat(mediaValueKeywords_)
686
- .concat(propertyKeywords_).concat(nonStandardPropertyKeywords_).concat(colorKeywords_)
687
- .concat(valueKeywords_);
688
- CodeMirror.registerHelper("hintWords", "css", allWords);
689
-
690
- function tokenCComment(stream, state) {
691
- var maybeEnd = false, ch;
692
- while ((ch = stream.next()) != null) {
693
- if (maybeEnd && ch == "/") {
694
- state.tokenize = null;
695
- break;
696
- }
697
- maybeEnd = (ch == "*");
698
- }
699
- return ["comment", "comment"];
700
- }
701
-
702
- CodeMirror.defineMIME("text/css", {
703
- documentTypes: documentTypes,
704
- mediaTypes: mediaTypes,
705
- mediaFeatures: mediaFeatures,
706
- mediaValueKeywords: mediaValueKeywords,
707
- propertyKeywords: propertyKeywords,
708
- nonStandardPropertyKeywords: nonStandardPropertyKeywords,
709
- fontProperties: fontProperties,
710
- counterDescriptors: counterDescriptors,
711
- colorKeywords: colorKeywords,
712
- valueKeywords: valueKeywords,
713
- tokenHooks: {
714
- "/": function(stream, state) {
715
- if (!stream.eat("*")) return false;
716
- state.tokenize = tokenCComment;
717
- return tokenCComment(stream, state);
718
- }
719
- },
720
- name: "css"
721
- });
722
-
723
- CodeMirror.defineMIME("text/x-scss", {
724
- mediaTypes: mediaTypes,
725
- mediaFeatures: mediaFeatures,
726
- mediaValueKeywords: mediaValueKeywords,
727
- propertyKeywords: propertyKeywords,
728
- nonStandardPropertyKeywords: nonStandardPropertyKeywords,
729
- colorKeywords: colorKeywords,
730
- valueKeywords: valueKeywords,
731
- fontProperties: fontProperties,
732
- allowNested: true,
733
- tokenHooks: {
734
- "/": function(stream, state) {
735
- if (stream.eat("/")) {
736
- stream.skipToEnd();
737
- return ["comment", "comment"];
738
- } else if (stream.eat("*")) {
739
- state.tokenize = tokenCComment;
740
- return tokenCComment(stream, state);
741
- } else {
742
- return ["operator", "operator"];
743
- }
744
- },
745
- ":": function(stream) {
746
- if (stream.match(/\s*\{/))
747
- return [null, "{"];
748
- return false;
749
- },
750
- "$": function(stream) {
751
- stream.match(/^[\w-]+/);
752
- if (stream.match(/^\s*:/, false))
753
- return ["variable-2", "variable-definition"];
754
- return ["variable-2", "variable"];
755
- },
756
- "#": function(stream) {
757
- if (!stream.eat("{")) return false;
758
- return [null, "interpolation"];
759
- }
760
- },
761
- name: "css",
762
- helperType: "scss"
763
- });
764
-
765
- CodeMirror.defineMIME("text/x-less", {
766
- mediaTypes: mediaTypes,
767
- mediaFeatures: mediaFeatures,
768
- mediaValueKeywords: mediaValueKeywords,
769
- propertyKeywords: propertyKeywords,
770
- nonStandardPropertyKeywords: nonStandardPropertyKeywords,
771
- colorKeywords: colorKeywords,
772
- valueKeywords: valueKeywords,
773
- fontProperties: fontProperties,
774
- allowNested: true,
775
- tokenHooks: {
776
- "/": function(stream, state) {
777
- if (stream.eat("/")) {
778
- stream.skipToEnd();
779
- return ["comment", "comment"];
780
- } else if (stream.eat("*")) {
781
- state.tokenize = tokenCComment;
782
- return tokenCComment(stream, state);
783
- } else {
784
- return ["operator", "operator"];
785
- }
786
- },
787
- "@": function(stream) {
788
- if (stream.eat("{")) return [null, "interpolation"];
789
- if (stream.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\b/, false)) return false;
790
- stream.eatWhile(/[\w\\\-]/);
791
- if (stream.match(/^\s*:/, false))
792
- return ["variable-2", "variable-definition"];
793
- return ["variable-2", "variable"];
794
- },
795
- "&": function() {
796
- return ["atom", "atom"];
797
- }
798
- },
799
- name: "css",
800
- helperType: "less"
801
- });
802
-
803
- CodeMirror.defineMIME("text/x-gss", {
804
- documentTypes: documentTypes,
805
- mediaTypes: mediaTypes,
806
- mediaFeatures: mediaFeatures,
807
- propertyKeywords: propertyKeywords,
808
- nonStandardPropertyKeywords: nonStandardPropertyKeywords,
809
- fontProperties: fontProperties,
810
- counterDescriptors: counterDescriptors,
811
- colorKeywords: colorKeywords,
812
- valueKeywords: valueKeywords,
813
- supportsAtComponent: true,
814
- tokenHooks: {
815
- "/": function(stream, state) {
816
- if (!stream.eat("*")) return false;
817
- state.tokenize = tokenCComment;
818
- return tokenCComment(stream, state);
819
- }
820
- },
821
- name: "css",
822
- helperType: "gss"
823
- });
824
-
825
- });
1
+ 'use strict';(function(k){"object"==typeof exports&&"object"==typeof module?k(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],k):k(CodeMirror)})(function(k){function l(d){for(var e={},f=0;f<d.length;++f)e[d[f].toLowerCase()]=!0;return e}function m(d,e){for(var f=!1,k;null!=(k=d.next());){if(f&&"/"==k){e.tokenize=null;break}f="*"==k}return["comment","comment"]}k.defineMode("css",function(d,e){function f(a,c){K=c;return a}function l(a,c){var b=
2
+ a.next();if(w[b]){var d=w[b](a,c);if(!1!==d)return d}if("@"==b)return a.eatWhile(/[\w\\\-]/),f("def",a.current());if("="==b||("~"==b||"|"==b)&&a.eat("="))return f(null,"compare");if('"'==b||"'"==b)return c.tokenize=m(b),c.tokenize(a,c);if("#"==b)return a.eatWhile(/[\w\\\-]/),f("atom","hash");if("!"==b)return a.match(/^\s*\w*/),f("keyword","important");if(/\d/.test(b)||"."==b&&a.eat(/\d/))return a.eatWhile(/[\w.%]/),f("number","unit");if("-"===b){if(/[\d.]/.test(a.peek()))return a.eatWhile(/[\w.%]/),
3
+ f("number","unit");if(a.match(/^-[\w\\\-]+/))return a.eatWhile(/[\w\\\-]/),a.match(/^\s*:/,!1)?f("variable-2","variable-definition"):f("variable-2","variable");if(a.match(/^\w+-/))return f("meta","meta")}else return/[,+>*\/]/.test(b)?f(null,"select-op"):"."==b&&a.match(/^-?[_a-z][_a-z0-9-]*/i)?f("qualifier","qualifier"):/[:;{}\[\]\(\)]/.test(b)?f(null,b):"u"==b&&a.match(/rl(-prefix)?\(/)||"d"==b&&a.match("omain(")||"r"==b&&a.match("egexp(")?(a.backUp(1),c.tokenize=y,f("property","word")):/[\w\\\-]/.test(b)?
4
+ (a.eatWhile(/[\w\\\-]/),f("property","word")):f(null,null)}function m(a){return function(c,b){for(var d=!1,e;null!=(e=c.next());){if(e==a&&!d){")"==a&&c.backUp(1);break}d=!d&&"\\"==e}if(e==a||!d&&")"!=a)b.tokenize=null;return f("string","string")}}function y(a,c){a.next();a.match(/\s*[\"\')]/,!1)?c.tokenize=null:c.tokenize=m(")");return f(null,"(")}function r(a,c,b){this.type=a;this.indent=c;this.prev=b}function h(a,c,b,d){a.context=new r(b,c.indentation()+(!1===d?0:v),a.context);return b}function n(a){a.context.prev&&
5
+ (a.context=a.context.prev);return a.context.type}function q(a,c,b,d){for(d=d||1;0<d;d--)b.context=b.context.prev;return p[b.context.type](a,c,b)}function t(a){a=a.current().toLowerCase();g=F.hasOwnProperty(a)?"atom":E.hasOwnProperty(a)?"keyword":"variable"}var u=e.inline;e.propertyKeywords||(e=k.resolveMode("text/css"));var v=d.indentUnit,w=e.tokenHooks,z=e.documentTypes||{},A=e.mediaTypes||{},D=e.mediaFeatures||{},G=e.mediaValueKeywords||{},B=e.propertyKeywords||{},C=e.nonStandardPropertyKeywords||
6
+ {},H=e.fontProperties||{},I=e.counterDescriptors||{},E=e.colorKeywords||{},F=e.valueKeywords||{},x=e.allowNested,J=!0===e.supportsAtComponent,K,g,p={top:function(a,c,b){if("{"==a)return h(b,c,"block");if("}"==a&&b.context.prev)return n(b);if(J&&/@component/.test(a))return h(b,c,"atComponentBlock");if(/^@(-moz-)?document$/.test(a))return h(b,c,"documentTypes");if(/^@(media|supports|(-moz-)?document|import)$/.test(a))return h(b,c,"atBlock");if(/^@(font-face|counter-style)/.test(a))return b.stateArg=
7
+ a,"restricted_atBlock_before";if(/^@(-(moz|ms|o|webkit)-)?keyframes$/.test(a))return"keyframes";if(a&&"@"==a.charAt(0))return h(b,c,"at");if("hash"==a)g="builtin";else if("word"==a)g="tag";else{if("variable-definition"==a)return"maybeprop";if("interpolation"==a)return h(b,c,"interpolation");if(":"==a)return"pseudo";if(x&&"("==a)return h(b,c,"parens")}return b.context.type},block:function(a,c,b){if("word"==a){a=c.current().toLowerCase();if(B.hasOwnProperty(a))return g="property","maybeprop";if(C.hasOwnProperty(a))return g=
8
+ "string-2","maybeprop";if(x)return g=c.match(/^\s*:(?:\s|$)/,!1)?"property":"tag","block";g+=" error";return"maybeprop"}if("meta"==a)return"block";if(x||"hash"!=a&&"qualifier"!=a)return p.top(a,c,b);g="error";return"block"},maybeprop:function(a,c,b){return":"==a?h(b,c,"prop"):p[b.context.type](a,c,b)},prop:function(a,c,b){if(";"==a)return n(b);if("{"==a&&x)return h(b,c,"propBlock");if("}"==a||"{"==a)return q(a,c,b);if("("==a)return h(b,c,"parens");if("hash"==a&&!/^#([0-9a-fA-f]{3,4}|[0-9a-fA-f]{6}|[0-9a-fA-f]{8})$/.test(c.current()))g+=
9
+ " error";else if("word"==a)t(c);else if("interpolation"==a)return h(b,c,"interpolation");return"prop"},propBlock:function(a,c,b){return"}"==a?n(b):"word"==a?(g="property","maybeprop"):b.context.type},parens:function(a,c,b){if("{"==a||"}"==a)return q(a,c,b);if(")"==a)return n(b);if("("==a)return h(b,c,"parens");if("interpolation"==a)return h(b,c,"interpolation");"word"==a&&t(c);return"parens"},pseudo:function(a,c,b){return"meta"==a?"pseudo":"word"==a?(g="variable-3",b.context.type):p[b.context.type](a,
10
+ c,b)},documentTypes:function(a,c,b){return"word"==a&&z.hasOwnProperty(c.current())?(g="tag",b.context.type):p.atBlock(a,c,b)},atBlock:function(a,c,b){if("("==a)return h(b,c,"atBlock_parens");if("}"==a||";"==a)return q(a,c,b);if("{"==a)return n(b)&&h(b,c,x?"block":"top");if("interpolation"==a)return h(b,c,"interpolation");"word"==a&&(a=c.current().toLowerCase(),g="only"==a||"not"==a||"and"==a||"or"==a?"keyword":A.hasOwnProperty(a)?"attribute":D.hasOwnProperty(a)?"property":G.hasOwnProperty(a)?"keyword":
11
+ B.hasOwnProperty(a)?"property":C.hasOwnProperty(a)?"string-2":F.hasOwnProperty(a)?"atom":E.hasOwnProperty(a)?"keyword":"error");return b.context.type},atComponentBlock:function(a,c,b){if("}"==a)return q(a,c,b);if("{"==a)return n(b)&&h(b,c,x?"block":"top",!1);"word"==a&&(g="error");return b.context.type},atBlock_parens:function(a,c,b){return")"==a?n(b):"{"==a||"}"==a?q(a,c,b,2):p.atBlock(a,c,b)},restricted_atBlock_before:function(a,c,b){return"{"==a?h(b,c,"restricted_atBlock"):"word"==a&&"@counter-style"==
12
+ b.stateArg?(g="variable","restricted_atBlock_before"):p[b.context.type](a,c,b)},restricted_atBlock:function(a,c,b){return"}"==a?(b.stateArg=null,n(b)):"word"==a?(g="@font-face"==b.stateArg&&!H.hasOwnProperty(c.current().toLowerCase())||"@counter-style"==b.stateArg&&!I.hasOwnProperty(c.current().toLowerCase())?"error":"property","maybeprop"):"restricted_atBlock"},keyframes:function(a,c,b){return"word"==a?(g="variable","keyframes"):"{"==a?h(b,c,"top"):p[b.context.type](a,c,b)},at:function(a,c,b){if(";"==
13
+ a)return n(b);if("{"==a||"}"==a)return q(a,c,b);"word"==a?g="tag":"hash"==a&&(g="builtin");return"at"},interpolation:function(a,c,b){if("}"==a)return n(b);if("{"==a||";"==a)return q(a,c,b);"word"==a?g="variable":"variable"!=a&&"("!=a&&")"!=a&&(g="error");return"interpolation"}};return{startState:function(a){return{tokenize:null,state:u?"block":"top",stateArg:null,context:new r(u?"block":"top",a||0,null)}},token:function(a,c){if(!c.tokenize&&a.eatSpace())return null;var b=(c.tokenize||l)(a,c);b&&"object"==
14
+ typeof b&&(K=b[1],b=b[0]);g=b;c.state=p[c.state](K,a,c);return g},indent:function(a,c){a=a.context;c=c&&c.charAt(0);var b=a.indent;"prop"!=a.type||"}"!=c&&")"!=c||(a=a.prev);if(a.prev)if("}"==c&&("block"==a.type||"top"==a.type||"interpolation"==a.type||"restricted_atBlock"==a.type))a=a.prev,b=a.indent;else if(")"==c&&("parens"==a.type||"atBlock_parens"==a.type)||"{"==c&&("at"==a.type||"atBlock"==a.type))b=Math.max(0,a.indent-v);return b},electricChars:"}",blockCommentStart:"/*",blockCommentEnd:"*/",
15
+ lineComment:e.lineComment,fold:"brace"}});var y=["domain","regexp","url","url-prefix"],G=l(y),B="all aural braille handheld print projection screen tty tv embossed".split(" "),r=l(B),C="width min-width max-width height min-height max-height device-width min-device-width max-device-width device-height min-device-height max-device-height aspect-ratio min-aspect-ratio max-aspect-ratio device-aspect-ratio min-device-aspect-ratio max-device-aspect-ratio color min-color max-color color-index min-color-index max-color-index monochrome min-monochrome max-monochrome resolution min-resolution max-resolution scan grid orientation device-pixel-ratio min-device-pixel-ratio max-device-pixel-ratio pointer any-pointer hover any-hover".split(" "),
16
+ t=l(C),H="landscape portrait none coarse fine on-demand hover interlace progressive".split(" "),D=l(H),I="align-content align-items align-self alignment-adjust alignment-baseline anchor-point animation animation-delay animation-direction animation-duration animation-fill-mode animation-iteration-count animation-name animation-play-state animation-timing-function appearance azimuth backface-visibility background background-attachment background-blend-mode background-clip background-color background-image background-origin background-position background-repeat background-size baseline-shift binding bleed bookmark-label bookmark-level bookmark-state bookmark-target border border-bottom border-bottom-color border-bottom-left-radius border-bottom-right-radius border-bottom-style border-bottom-width border-collapse border-color border-image border-image-outset border-image-repeat border-image-slice border-image-source border-image-width border-left border-left-color border-left-style border-left-width border-radius border-right border-right-color border-right-style border-right-width border-spacing border-style border-top border-top-color border-top-left-radius border-top-right-radius border-top-style border-top-width border-width bottom box-decoration-break box-shadow box-sizing break-after break-before break-inside caption-side caret-color clear clip color color-profile column-count column-fill column-gap column-rule column-rule-color column-rule-style column-rule-width column-span column-width columns content counter-increment counter-reset crop cue cue-after cue-before cursor direction display dominant-baseline drop-initial-after-adjust drop-initial-after-align drop-initial-before-adjust drop-initial-before-align drop-initial-size drop-initial-value elevation empty-cells fit fit-position flex flex-basis flex-direction flex-flow flex-grow flex-shrink flex-wrap float float-offset flow-from flow-into font font-feature-settings font-family font-kerning font-language-override font-size font-size-adjust font-stretch font-style font-synthesis font-variant font-variant-alternates font-variant-caps font-variant-east-asian font-variant-ligatures font-variant-numeric font-variant-position font-weight grid grid-area grid-auto-columns grid-auto-flow grid-auto-rows grid-column grid-column-end grid-column-gap grid-column-start grid-gap grid-row grid-row-end grid-row-gap grid-row-start grid-template grid-template-areas grid-template-columns grid-template-rows hanging-punctuation height hyphens icon image-orientation image-rendering image-resolution inline-box-align justify-content justify-items justify-self left letter-spacing line-break line-height line-stacking line-stacking-ruby line-stacking-shift line-stacking-strategy list-style list-style-image list-style-position list-style-type margin margin-bottom margin-left margin-right margin-top marks marquee-direction marquee-loop marquee-play-count marquee-speed marquee-style max-height max-width min-height min-width move-to nav-down nav-index nav-left nav-right nav-up object-fit object-position opacity order orphans outline outline-color outline-offset outline-style outline-width overflow overflow-style overflow-wrap overflow-x overflow-y padding padding-bottom padding-left padding-right padding-top page page-break-after page-break-before page-break-inside page-policy pause pause-after pause-before perspective perspective-origin pitch pitch-range place-content place-items place-self play-during position presentation-level punctuation-trim quotes region-break-after region-break-before region-break-inside region-fragment rendering-intent resize rest rest-after rest-before richness right rotation rotation-point ruby-align ruby-overhang ruby-position ruby-span shape-image-threshold shape-inside shape-margin shape-outside size speak speak-as speak-header speak-numeral speak-punctuation speech-rate stress string-set tab-size table-layout target target-name target-new target-position text-align text-align-last text-decoration text-decoration-color text-decoration-line text-decoration-skip text-decoration-style text-emphasis text-emphasis-color text-emphasis-position text-emphasis-style text-height text-indent text-justify text-outline text-overflow text-shadow text-size-adjust text-space-collapse text-transform text-underline-position text-wrap top transform transform-origin transform-style transition transition-delay transition-duration transition-property transition-timing-function unicode-bidi user-select vertical-align visibility voice-balance voice-duration voice-family voice-pitch voice-range voice-rate voice-stress voice-volume volume white-space widows width will-change word-break word-spacing word-wrap z-index clip-path clip-rule mask enable-background filter flood-color flood-opacity lighting-color stop-color stop-opacity pointer-events color-interpolation color-interpolation-filters color-rendering fill fill-opacity fill-rule image-rendering marker marker-end marker-mid marker-start shape-rendering stroke stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-rendering baseline-shift dominant-baseline glyph-orientation-horizontal glyph-orientation-vertical text-anchor writing-mode".split(" "),
17
+ u=l(I),E="scrollbar-arrow-color scrollbar-base-color scrollbar-dark-shadow-color scrollbar-face-color scrollbar-highlight-color scrollbar-shadow-color scrollbar-3d-light-color scrollbar-track-color shape-inside searchfield-cancel-button searchfield-decoration searchfield-results-button searchfield-results-decoration zoom".split(" "),v=l(E),w=l("font-family src unicode-range font-variant font-feature-settings font-stretch font-weight font-style".split(" ")),F=l("additive-symbols fallback negative pad prefix range speak-as suffix symbols system".split(" ")),
18
+ J="aliceblue antiquewhite aqua aquamarine azure beige bisque black blanchedalmond blue blueviolet brown burlywood cadetblue chartreuse chocolate coral cornflowerblue cornsilk crimson cyan darkblue darkcyan darkgoldenrod darkgray darkgreen darkkhaki darkmagenta darkolivegreen darkorange darkorchid darkred darksalmon darkseagreen darkslateblue darkslategray darkturquoise darkviolet deeppink deepskyblue dimgray dodgerblue firebrick floralwhite forestgreen fuchsia gainsboro ghostwhite gold goldenrod gray grey green greenyellow honeydew hotpink indianred indigo ivory khaki lavender lavenderblush lawngreen lemonchiffon lightblue lightcoral lightcyan lightgoldenrodyellow lightgray lightgreen lightpink lightsalmon lightseagreen lightskyblue lightslategray lightsteelblue lightyellow lime limegreen linen magenta maroon mediumaquamarine mediumblue mediumorchid mediumpurple mediumseagreen mediumslateblue mediumspringgreen mediumturquoise mediumvioletred midnightblue mintcream mistyrose moccasin navajowhite navy oldlace olive olivedrab orange orangered orchid palegoldenrod palegreen paleturquoise palevioletred papayawhip peachpuff peru pink plum powderblue purple rebeccapurple red rosybrown royalblue saddlebrown salmon sandybrown seagreen seashell sienna silver skyblue slateblue slategray snow springgreen steelblue tan teal thistle tomato turquoise violet wheat white whitesmoke yellow yellowgreen".split(" "),
19
+ z=l(J),L="above absolute activeborder additive activecaption afar after-white-space ahead alias all all-scroll alphabetic alternate always amharic amharic-abegede antialiased appworkspace arabic-indic armenian asterisks attr auto auto-flow avoid avoid-column avoid-page avoid-region background backwards baseline below bidi-override binary bengali blink block block-axis bold bolder border border-box both bottom break break-all break-word bullets button button-bevel buttonface buttonhighlight buttonshadow buttontext calc cambodian capitalize caps-lock-indicator caption captiontext caret cell center checkbox circle cjk-decimal cjk-earthly-branch cjk-heavenly-stem cjk-ideographic clear clip close-quote col-resize collapse color color-burn color-dodge column column-reverse compact condensed contain content contents content-box context-menu continuous copy counter counters cover crop cross crosshair currentcolor cursive cyclic darken dashed decimal decimal-leading-zero default default-button dense destination-atop destination-in destination-out destination-over devanagari difference disc discard disclosure-closed disclosure-open document dot-dash dot-dot-dash dotted double down e-resize ease ease-in ease-in-out ease-out element ellipse ellipsis embed end ethiopic ethiopic-abegede ethiopic-abegede-am-et ethiopic-abegede-gez ethiopic-abegede-ti-er ethiopic-abegede-ti-et ethiopic-halehame-aa-er ethiopic-halehame-aa-et ethiopic-halehame-am-et ethiopic-halehame-gez ethiopic-halehame-om-et ethiopic-halehame-sid-et ethiopic-halehame-so-et ethiopic-halehame-ti-er ethiopic-halehame-ti-et ethiopic-halehame-tig ethiopic-numeric ew-resize exclusion expanded extends extra-condensed extra-expanded fantasy fast fill fixed flat flex flex-end flex-start footnotes forwards from geometricPrecision georgian graytext grid groove gujarati gurmukhi hand hangul hangul-consonant hard-light hebrew help hidden hide higher highlight highlighttext hiragana hiragana-iroha horizontal hsl hsla hue icon ignore inactiveborder inactivecaption inactivecaptiontext infinite infobackground infotext inherit initial inline inline-axis inline-block inline-flex inline-grid inline-table inset inside intrinsic invert italic japanese-formal japanese-informal justify kannada katakana katakana-iroha keep-all khmer korean-hangul-formal korean-hanja-formal korean-hanja-informal landscape lao large larger left level lighter lighten line-through linear linear-gradient lines list-item listbox listitem local logical loud lower lower-alpha lower-armenian lower-greek lower-hexadecimal lower-latin lower-norwegian lower-roman lowercase ltr luminosity malayalam match matrix matrix3d media-controls-background media-current-time-display media-fullscreen-button media-mute-button media-play-button media-return-to-realtime-button media-rewind-button media-seek-back-button media-seek-forward-button media-slider media-sliderthumb media-time-remaining-display media-volume-slider media-volume-slider-container media-volume-sliderthumb medium menu menulist menulist-button menulist-text menulist-textfield menutext message-box middle min-intrinsic mix mongolian monospace move multiple multiply myanmar n-resize narrower ne-resize nesw-resize no-close-quote no-drop no-open-quote no-repeat none normal not-allowed nowrap ns-resize numbers numeric nw-resize nwse-resize oblique octal opacity open-quote optimizeLegibility optimizeSpeed oriya oromo outset outside outside-shape overlay overline padding padding-box painted page paused persian perspective plus-darker plus-lighter pointer polygon portrait pre pre-line pre-wrap preserve-3d progress push-button radial-gradient radio read-only read-write read-write-plaintext-only rectangle region relative repeat repeating-linear-gradient repeating-radial-gradient repeat-x repeat-y reset reverse rgb rgba ridge right rotate rotate3d rotateX rotateY rotateZ round row row-resize row-reverse rtl run-in running s-resize sans-serif saturation scale scale3d scaleX scaleY scaleZ screen scroll scrollbar scroll-position se-resize searchfield searchfield-cancel-button searchfield-decoration searchfield-results-button searchfield-results-decoration self-start self-end semi-condensed semi-expanded separate serif show sidama simp-chinese-formal simp-chinese-informal single skew skewX skewY skip-white-space slide slider-horizontal slider-vertical sliderthumb-horizontal sliderthumb-vertical slow small small-caps small-caption smaller soft-light solid somali source-atop source-in source-out source-over space space-around space-between space-evenly spell-out square square-button start static status-bar stretch stroke sub subpixel-antialiased super sw-resize symbolic symbols system-ui table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-row table-row-group tamil telugu text text-bottom text-top textarea textfield thai thick thin threeddarkshadow threedface threedhighlight threedlightshadow threedshadow tibetan tigre tigrinya-er tigrinya-er-abegede tigrinya-et tigrinya-et-abegede to top trad-chinese-formal trad-chinese-informal transform translate translate3d translateX translateY translateZ transparent ultra-condensed ultra-expanded underline unset up upper-alpha upper-armenian upper-greek upper-hexadecimal upper-latin upper-norwegian upper-roman uppercase urdu url var vertical vertical-text visible visibleFill visiblePainted visibleStroke visual w-resize wait wave wider window windowframe windowtext words wrap wrap-reverse x-large x-small xor xx-large xx-small".split(" "),
20
+ A=l(L),y=y.concat(B).concat(C).concat(H).concat(I).concat(E).concat(J).concat(L);k.registerHelper("hintWords","css",y);k.defineMIME("text/css",{documentTypes:G,mediaTypes:r,mediaFeatures:t,mediaValueKeywords:D,propertyKeywords:u,nonStandardPropertyKeywords:v,fontProperties:w,counterDescriptors:F,colorKeywords:z,valueKeywords:A,tokenHooks:{"/":function(d,e){if(!d.eat("*"))return!1;e.tokenize=m;return m(d,e)}},name:"css"});k.defineMIME("text/x-scss",{mediaTypes:r,mediaFeatures:t,mediaValueKeywords:D,
21
+ propertyKeywords:u,nonStandardPropertyKeywords:v,colorKeywords:z,valueKeywords:A,fontProperties:w,allowNested:!0,lineComment:"//",tokenHooks:{"/":function(d,e){return d.eat("/")?(d.skipToEnd(),["comment","comment"]):d.eat("*")?(e.tokenize=m,m(d,e)):["operator","operator"]},":":function(d){return d.match(/\s*\{/,!1)?[null,null]:!1},$:function(d){d.match(/^[\w-]+/);return d.match(/^\s*:/,!1)?["variable-2","variable-definition"]:["variable-2","variable"]},"#":function(d){return d.eat("{")?[null,"interpolation"]:
22
+ !1}},name:"css",helperType:"scss"});k.defineMIME("text/x-less",{mediaTypes:r,mediaFeatures:t,mediaValueKeywords:D,propertyKeywords:u,nonStandardPropertyKeywords:v,colorKeywords:z,valueKeywords:A,fontProperties:w,allowNested:!0,lineComment:"//",tokenHooks:{"/":function(d,e){return d.eat("/")?(d.skipToEnd(),["comment","comment"]):d.eat("*")?(e.tokenize=m,m(d,e)):["operator","operator"]},"@":function(d){if(d.eat("{"))return[null,"interpolation"];if(d.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\b/,
23
+ !1))return!1;d.eatWhile(/[\w\\\-]/);return d.match(/^\s*:/,!1)?["variable-2","variable-definition"]:["variable-2","variable"]},"&":function(){return["atom","atom"]}},name:"css",helperType:"less"});k.defineMIME("text/x-gss",{documentTypes:G,mediaTypes:r,mediaFeatures:t,propertyKeywords:u,nonStandardPropertyKeywords:v,fontProperties:w,counterDescriptors:F,colorKeywords:z,valueKeywords:A,supportsAtComponent:!0,tokenHooks:{"/":function(d,e){if(!d.eat("*"))return!1;e.tokenize=m;return m(d,e)}},name:"css",
24
+ helperType:"gss"})});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/mode/htmlmixed/htmlmixed.js CHANGED
@@ -1,150 +1,6 @@
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"), require("../xml/xml"), require("../javascript/javascript"), require("../css/css"));
7
- else if (typeof define == "function" && define.amd) // AMD
8
- define(["../../lib/codemirror", "../xml/xml", "../javascript/javascript", "../css/css"], mod);
9
- else // Plain browser env
10
- mod(CodeMirror);
11
- })(function(CodeMirror) {
12
- "use strict";
13
-
14
- var defaultTags = {
15
- script: [
16
- ["lang", /(javascript|babel)/i, "javascript"],
17
- ["type", /^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^$/i, "javascript"],
18
- ["type", /./, "text/plain"],
19
- [null, null, "javascript"]
20
- ],
21
- style: [
22
- ["lang", /^css$/i, "css"],
23
- ["type", /^(text\/)?(x-)?(stylesheet|css)$/i, "css"],
24
- ["type", /./, "text/plain"],
25
- [null, null, "css"]
26
- ]
27
- };
28
-
29
- function maybeBackup(stream, pat, style) {
30
- var cur = stream.current(), close = cur.search(pat);
31
- if (close > -1) {
32
- stream.backUp(cur.length - close);
33
- } else if (cur.match(/<\/?$/)) {
34
- stream.backUp(cur.length);
35
- if (!stream.match(pat, false)) stream.match(cur);
36
- }
37
- return style;
38
- }
39
-
40
- var attrRegexpCache = {};
41
- function getAttrRegexp(attr) {
42
- var regexp = attrRegexpCache[attr];
43
- if (regexp) return regexp;
44
- return attrRegexpCache[attr] = new RegExp("\\s+" + attr + "\\s*=\\s*('|\")?([^'\"]+)('|\")?\\s*");
45
- }
46
-
47
- function getAttrValue(stream, attr) {
48
- var pos = stream.pos, match;
49
- while (pos >= 0 && stream.string.charAt(pos) !== "<") pos--;
50
- if (pos < 0) return pos;
51
- if (match = stream.string.slice(pos, stream.pos).match(getAttrRegexp(attr)))
52
- return match[2];
53
- return "";
54
- }
55
-
56
- function getTagRegexp(tagName, anchored) {
57
- return new RegExp((anchored ? "^" : "") + "<\/\s*" + tagName + "\s*>", "i");
58
- }
59
-
60
- function addTags(from, to) {
61
- for (var tag in from) {
62
- var dest = to[tag] || (to[tag] = []);
63
- var source = from[tag];
64
- for (var i = source.length - 1; i >= 0; i--)
65
- dest.unshift(source[i])
66
- }
67
- }
68
-
69
- function findMatchingMode(tagInfo, stream) {
70
- for (var i = 0; i < tagInfo.length; i++) {
71
- var spec = tagInfo[i];
72
- if (!spec[0] || spec[1].test(getAttrValue(stream, spec[0]))) return spec[2];
73
- }
74
- }
75
-
76
- CodeMirror.defineMode("htmlmixed", function (config, parserConfig) {
77
- var htmlMode = CodeMirror.getMode(config, {
78
- name: "xml",
79
- htmlMode: true,
80
- multilineTagIndentFactor: parserConfig.multilineTagIndentFactor,
81
- multilineTagIndentPastTag: parserConfig.multilineTagIndentPastTag
82
- });
83
-
84
- var tags = {};
85
- var configTags = parserConfig && parserConfig.tags, configScript = parserConfig && parserConfig.scriptTypes;
86
- addTags(defaultTags, tags);
87
- if (configTags) addTags(configTags, tags);
88
- if (configScript) for (var i = configScript.length - 1; i >= 0; i--)
89
- tags.script.unshift(["type", configScript[i].matches, configScript[i].mode])
90
-
91
- function html(stream, state) {
92
- var tagName = state.htmlState.tagName && state.htmlState.tagName.toLowerCase();
93
- var tagInfo = tagName && tags.hasOwnProperty(tagName) && tags[tagName];
94
-
95
- var style = htmlMode.token(stream, state.htmlState), modeSpec;
96
-
97
- if (tagInfo && /\btag\b/.test(style) && stream.current() === ">" &&
98
- (modeSpec = findMatchingMode(tagInfo, stream))) {
99
- var mode = CodeMirror.getMode(config, modeSpec);
100
- var endTagA = getTagRegexp(tagName, true), endTag = getTagRegexp(tagName, false);
101
- state.token = function (stream, state) {
102
- if (stream.match(endTagA, false)) {
103
- state.token = html;
104
- state.localState = state.localMode = null;
105
- return null;
106
- }
107
- return maybeBackup(stream, endTag, state.localMode.token(stream, state.localState));
108
- };
109
- state.localMode = mode;
110
- state.localState = CodeMirror.startState(mode, htmlMode.indent(state.htmlState, ""));
111
- }
112
- return style;
113
- };
114
-
115
- return {
116
- startState: function () {
117
- var state = htmlMode.startState();
118
- return {token: html, localMode: null, localState: null, htmlState: state};
119
- },
120
-
121
- copyState: function (state) {
122
- var local;
123
- if (state.localState) {
124
- local = CodeMirror.copyState(state.localMode, state.localState);
125
- }
126
- return {token: state.token, localMode: state.localMode, localState: local,
127
- htmlState: CodeMirror.copyState(htmlMode, state.htmlState)};
128
- },
129
-
130
- token: function (stream, state) {
131
- return state.token(stream, state);
132
- },
133
-
134
- indent: function (state, textAfter) {
135
- if (!state.localMode || /^\s*<\//.test(textAfter))
136
- return htmlMode.indent(state.htmlState, textAfter);
137
- else if (state.localMode.indent)
138
- return state.localMode.indent(state.localState, textAfter);
139
- else
140
- return CodeMirror.Pass;
141
- },
142
-
143
- innerMode: function (state) {
144
- return {state: state.localState || state.htmlState, mode: state.localMode || htmlMode};
145
- }
146
- };
147
- }, "xml", "javascript", "css");
148
-
149
- CodeMirror.defineMIME("text/html", "htmlmixed");
150
- });
1
+ 'use strict';(function(d){"object"==typeof exports&&"object"==typeof module?d(require("../../lib/codemirror"),require("../xml/xml"),require("../javascript/javascript"),require("../css/css")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","../xml/xml","../javascript/javascript","../css/css"],d):d(CodeMirror)})(function(d){function p(f){var c=k[f];return c?c:k[f]=new RegExp("\\s+"+f+"\\s*=\\s*('|\")?([^'\"]+)('|\")?\\s*")}function q(f,c){return(f=f.match(p(c)))?/^\s*(.*?)\s*$/.exec(f[2])[1]:
2
+ ""}function l(f,c){for(var d in f)for(var g=c[d]||(c[d]=[]),h=f[d],e=h.length-1;0<=e;e--)g.unshift(h[e])}function r(d,c){for(var f=0;f<d.length;f++){var g=d[f];if(!g[0]||g[1].test(q(c,g[0])))return g[2]}}var t={script:[["lang",/(javascript|babel)/i,"javascript"],["type",/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i,"javascript"],["type",/./,"text/plain"],[null,null,"javascript"]],style:[["lang",/^css$/i,"css"],["type",/^(text\/)?(x-)?(stylesheet|css)$/i,"css"],["type",/./,"text/plain"],
3
+ [null,null,"css"]]},k={};d.defineMode("htmlmixed",function(f,c){function k(a,b){var c=g.token(a,b.htmlState),e=/\btag\b/.test(c),m;if(e&&!/[<>\s\/]/.test(a.current())&&(m=b.htmlState.tagName&&b.htmlState.tagName.toLowerCase())&&h.hasOwnProperty(m))b.inTag=m+" ";else if(b.inTag&&e&&/>$/.test(a.current())){e=/^([\S]+) (.*)/.exec(b.inTag);b.inTag=null;a=">"==a.current()&&r(h[e[1]],e[2]);a=d.getMode(f,a);var l=new RegExp("^</s*"+e[1]+"s*>","i"),n=new RegExp("</s*"+e[1]+"s*>","i");b.token=function(a,b){if(a.match(l,
4
+ !1))return b.token=k,b.localState=b.localMode=null;b=b.localMode.token(a,b.localState);var c=a.current(),d=c.search(n);-1<d?a.backUp(c.length-d):c.match(/<\/?$/)&&(a.backUp(c.length),a.match(n,!1)||a.match(c));return b};b.localMode=a;b.localState=d.startState(a,g.indent(b.htmlState,""))}else b.inTag&&(b.inTag+=a.current(),a.eol()&&(b.inTag+=" "));return c}var g=d.getMode(f,{name:"xml",htmlMode:!0,multilineTagIndentFactor:c.multilineTagIndentFactor,multilineTagIndentPastTag:c.multilineTagIndentPastTag}),
5
+ h={},e=c&&c.tags;c=c&&c.scriptTypes;l(t,h);e&&l(e,h);if(c)for(e=c.length-1;0<=e;e--)h.script.unshift(["type",c[e].matches,c[e].mode]);return{startState:function(){var a=d.startState(g);return{token:k,inTag:null,localMode:null,localState:null,htmlState:a}},copyState:function(a){var b;a.localState&&(b=d.copyState(a.localMode,a.localState));return{token:a.token,inTag:a.inTag,localMode:a.localMode,localState:b,htmlState:d.copyState(g,a.htmlState)}},token:function(a,b){return b.token(a,b)},indent:function(a,
6
+ b,c){return!a.localMode||/^\s*<\//.test(b)?g.indent(a.htmlState,b):a.localMode.indent?a.localMode.indent(a.localState,b,c):d.Pass},innerMode:function(a){return{state:a.localState||a.htmlState,mode:a.localMode||g}}}},"xml","javascript","css");d.defineMIME("text/html","htmlmixed")});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/mode/javascript/javascript.js CHANGED
@@ -1,720 +1,29 @@
1
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
- // Distributed under an MIT license: http://codemirror.net/LICENSE
3
-
4
- // TODO actually recognize syntax of TypeScript constructs
5
-
6
- (function(mod) {
7
- if (typeof exports == "object" && typeof module == "object") // CommonJS
8
- mod(require("../../lib/codemirror"));
9
- else if (typeof define == "function" && define.amd) // AMD
10
- define(["../../lib/codemirror"], mod);
11
- else // Plain browser env
12
- mod(CodeMirror);
13
- })(function(CodeMirror) {
14
- "use strict";
15
-
16
- CodeMirror.defineMode("javascript", function(config, parserConfig) {
17
- var indentUnit = config.indentUnit;
18
- var statementIndent = parserConfig.statementIndent;
19
- var jsonldMode = parserConfig.jsonld;
20
- var jsonMode = parserConfig.json || jsonldMode;
21
- var isTS = parserConfig.typescript;
22
- var wordRE = parserConfig.wordCharacters || /[\w$\xa1-\uffff]/;
23
-
24
- // Tokenizer
25
-
26
- var keywords = function(){
27
- function kw(type) {return {type: type, style: "keyword"};}
28
- var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c");
29
- var operator = kw("operator"), atom = {type: "atom", style: "atom"};
30
-
31
- var jsKeywords = {
32
- "if": kw("if"), "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B,
33
- "return": C, "break": C, "continue": C, "new": kw("new"), "delete": C, "throw": C, "debugger": C,
34
- "var": kw("var"), "const": kw("var"), "let": kw("var"),
35
- "function": kw("function"), "catch": kw("catch"),
36
- "for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"),
37
- "in": operator, "typeof": operator, "instanceof": operator,
38
- "true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom,
39
- "this": kw("this"), "class": kw("class"), "super": kw("atom"),
40
- "yield": C, "export": kw("export"), "import": kw("import"), "extends": C
41
- };
42
-
43
- // Extend the 'normal' keywords with the TypeScript language extensions
44
- if (isTS) {
45
- var type = {type: "variable", style: "variable-3"};
46
- var tsKeywords = {
47
- // object-like things
48
- "interface": kw("interface"),
49
- "constructor": kw("constructor"),
50
-
51
- // scope modifiers
52
- "public": kw("public"),
53
- "private": kw("private"),
54
- "protected": kw("protected"),
55
- "static": kw("static"),
56
-
57
- // types
58
- "string": type, "number": type, "boolean": type, "any": type
59
- };
60
-
61
- for (var attr in tsKeywords) {
62
- jsKeywords[attr] = tsKeywords[attr];
63
- }
64
- }
65
-
66
- return jsKeywords;
67
- }();
68
-
69
- var isOperatorChar = /[+\-*&%=<>!?|~^]/;
70
- var isJsonldKeyword = /^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;
71
-
72
- function readRegexp(stream) {
73
- var escaped = false, next, inSet = false;
74
- while ((next = stream.next()) != null) {
75
- if (!escaped) {
76
- if (next == "/" && !inSet) return;
77
- if (next == "[") inSet = true;
78
- else if (inSet && next == "]") inSet = false;
79
- }
80
- escaped = !escaped && next == "\\";
81
- }
82
- }
83
-
84
- // Used as scratch variables to communicate multiple values without
85
- // consing up tons of objects.
86
- var type, content;
87
- function ret(tp, style, cont) {
88
- type = tp; content = cont;
89
- return style;
90
- }
91
- function tokenBase(stream, state) {
92
- var ch = stream.next();
93
- if (ch == '"' || ch == "'") {
94
- state.tokenize = tokenString(ch);
95
- return state.tokenize(stream, state);
96
- } else if (ch == "." && stream.match(/^\d+(?:[eE][+\-]?\d+)?/)) {
97
- return ret("number", "number");
98
- } else if (ch == "." && stream.match("..")) {
99
- return ret("spread", "meta");
100
- } else if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
101
- return ret(ch);
102
- } else if (ch == "=" && stream.eat(">")) {
103
- return ret("=>", "operator");
104
- } else if (ch == "0" && stream.eat(/x/i)) {
105
- stream.eatWhile(/[\da-f]/i);
106
- return ret("number", "number");
107
- } else if (ch == "0" && stream.eat(/o/i)) {
108
- stream.eatWhile(/[0-7]/i);
109
- return ret("number", "number");
110
- } else if (ch == "0" && stream.eat(/b/i)) {
111
- stream.eatWhile(/[01]/i);
112
- return ret("number", "number");
113
- } else if (/\d/.test(ch)) {
114
- stream.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/);
115
- return ret("number", "number");
116
- } else if (ch == "/") {
117
- if (stream.eat("*")) {
118
- state.tokenize = tokenComment;
119
- return tokenComment(stream, state);
120
- } else if (stream.eat("/")) {
121
- stream.skipToEnd();
122
- return ret("comment", "comment");
123
- } else if (/^(?:operator|sof|keyword c|case|new|[\[{}\(,;:])$/.test(state.lastType)) {
124
- readRegexp(stream);
125
- stream.match(/^\b(([gimyu])(?![gimyu]*\2))+\b/);
126
- return ret("regexp", "string-2");
127
- } else {
128
- stream.eatWhile(isOperatorChar);
129
- return ret("operator", "operator", stream.current());
130
- }
131
- } else if (ch == "`") {
132
- state.tokenize = tokenQuasi;
133
- return tokenQuasi(stream, state);
134
- } else if (ch == "#") {
135
- stream.skipToEnd();
136
- return ret("error", "error");
137
- } else if (isOperatorChar.test(ch)) {
138
- stream.eatWhile(isOperatorChar);
139
- return ret("operator", "operator", stream.current());
140
- } else if (wordRE.test(ch)) {
141
- stream.eatWhile(wordRE);
142
- var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word];
143
- return (known && state.lastType != ".") ? ret(known.type, known.style, word) :
144
- ret("variable", "variable", word);
145
- }
146
- }
147
-
148
- function tokenString(quote) {
149
- return function(stream, state) {
150
- var escaped = false, next;
151
- if (jsonldMode && stream.peek() == "@" && stream.match(isJsonldKeyword)){
152
- state.tokenize = tokenBase;
153
- return ret("jsonld-keyword", "meta");
154
- }
155
- while ((next = stream.next()) != null) {
156
- if (next == quote && !escaped) break;
157
- escaped = !escaped && next == "\\";
158
- }
159
- if (!escaped) state.tokenize = tokenBase;
160
- return ret("string", "string");
161
- };
162
- }
163
-
164
- function tokenComment(stream, state) {
165
- var maybeEnd = false, ch;
166
- while (ch = stream.next()) {
167
- if (ch == "/" && maybeEnd) {
168
- state.tokenize = tokenBase;
169
- break;
170
- }
171
- maybeEnd = (ch == "*");
172
- }
173
- return ret("comment", "comment");
174
- }
175
-
176
- function tokenQuasi(stream, state) {
177
- var escaped = false, next;
178
- while ((next = stream.next()) != null) {
179
- if (!escaped && (next == "`" || next == "$" && stream.eat("{"))) {
180
- state.tokenize = tokenBase;
181
- break;
182
- }
183
- escaped = !escaped && next == "\\";
184
- }
185
- return ret("quasi", "string-2", stream.current());
186
- }
187
-
188
- var brackets = "([{}])";
189
- // This is a crude lookahead trick to try and notice that we're
190
- // parsing the argument patterns for a fat-arrow function before we
191
- // actually hit the arrow token. It only works if the arrow is on
192
- // the same line as the arguments and there's no strange noise
193
- // (comments) in between. Fallback is to only notice when we hit the
194
- // arrow, and not declare the arguments as locals for the arrow
195
- // body.
196
- function findFatArrow(stream, state) {
197
- if (state.fatArrowAt) state.fatArrowAt = null;
198
- var arrow = stream.string.indexOf("=>", stream.start);
199
- if (arrow < 0) return;
200
-
201
- var depth = 0, sawSomething = false;
202
- for (var pos = arrow - 1; pos >= 0; --pos) {
203
- var ch = stream.string.charAt(pos);
204
- var bracket = brackets.indexOf(ch);
205
- if (bracket >= 0 && bracket < 3) {
206
- if (!depth) { ++pos; break; }
207
- if (--depth == 0) break;
208
- } else if (bracket >= 3 && bracket < 6) {
209
- ++depth;
210
- } else if (wordRE.test(ch)) {
211
- sawSomething = true;
212
- } else if (/["'\/]/.test(ch)) {
213
- return;
214
- } else if (sawSomething && !depth) {
215
- ++pos;
216
- break;
217
- }
218
- }
219
- if (sawSomething && !depth) state.fatArrowAt = pos;
220
- }
221
-
222
- // Parser
223
-
224
- var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true, "jsonld-keyword": true};
225
-
226
- function JSLexical(indented, column, type, align, prev, info) {
227
- this.indented = indented;
228
- this.column = column;
229
- this.type = type;
230
- this.prev = prev;
231
- this.info = info;
232
- if (align != null) this.align = align;
233
- }
234
-
235
- function inScope(state, varname) {
236
- for (var v = state.localVars; v; v = v.next)
237
- if (v.name == varname) return true;
238
- for (var cx = state.context; cx; cx = cx.prev) {
239
- for (var v = cx.vars; v; v = v.next)
240
- if (v.name == varname) return true;
241
- }
242
- }
243
-
244
- function parseJS(state, style, type, content, stream) {
245
- var cc = state.cc;
246
- // Communicate our context to the combinators.
247
- // (Less wasteful than consing up a hundred closures on every call.)
248
- cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc; cx.style = style;
249
-
250
- if (!state.lexical.hasOwnProperty("align"))
251
- state.lexical.align = true;
252
-
253
- while(true) {
254
- var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement;
255
- if (combinator(type, content)) {
256
- while(cc.length && cc[cc.length - 1].lex)
257
- cc.pop()();
258
- if (cx.marked) return cx.marked;
259
- if (type == "variable" && inScope(state, content)) return "variable-2";
260
- return style;
261
- }
262
- }
263
- }
264
-
265
- // Combinator utils
266
-
267
- var cx = {state: null, column: null, marked: null, cc: null};
268
- function pass() {
269
- for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);
270
- }
271
- function cont() {
272
- pass.apply(null, arguments);
273
- return true;
274
- }
275
- function register(varname) {
276
- function inList(list) {
277
- for (var v = list; v; v = v.next)
278
- if (v.name == varname) return true;
279
- return false;
280
- }
281
- var state = cx.state;
282
- cx.marked = "def";
283
- if (state.context) {
284
- if (inList(state.localVars)) return;
285
- state.localVars = {name: varname, next: state.localVars};
286
- } else {
287
- if (inList(state.globalVars)) return;
288
- if (parserConfig.globalVars)
289
- state.globalVars = {name: varname, next: state.globalVars};
290
- }
291
- }
292
-
293
- // Combinators
294
-
295
- var defaultVars = {name: "this", next: {name: "arguments"}};
296
- function pushcontext() {
297
- cx.state.context = {prev: cx.state.context, vars: cx.state.localVars};
298
- cx.state.localVars = defaultVars;
299
- }
300
- function popcontext() {
301
- cx.state.localVars = cx.state.context.vars;
302
- cx.state.context = cx.state.context.prev;
303
- }
304
- function pushlex(type, info) {
305
- var result = function() {
306
- var state = cx.state, indent = state.indented;
307
- if (state.lexical.type == "stat") indent = state.lexical.indented;
308
- else for (var outer = state.lexical; outer && outer.type == ")" && outer.align; outer = outer.prev)
309
- indent = outer.indented;
310
- state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info);
311
- };
312
- result.lex = true;
313
- return result;
314
- }
315
- function poplex() {
316
- var state = cx.state;
317
- if (state.lexical.prev) {
318
- if (state.lexical.type == ")")
319
- state.indented = state.lexical.indented;
320
- state.lexical = state.lexical.prev;
321
- }
322
- }
323
- poplex.lex = true;
324
-
325
- function expect(wanted) {
326
- function exp(type) {
327
- if (type == wanted) return cont();
328
- else if (wanted == ";") return pass();
329
- else return cont(exp);
330
- };
331
- return exp;
332
- }
333
-
334
- function statement(type, value) {
335
- if (type == "var") return cont(pushlex("vardef", value.length), vardef, expect(";"), poplex);
336
- if (type == "keyword a") return cont(pushlex("form"), expression, statement, poplex);
337
- if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
338
- if (type == "{") return cont(pushlex("}"), block, poplex);
339
- if (type == ";") return cont();
340
- if (type == "if") {
341
- if (cx.state.lexical.info == "else" && cx.state.cc[cx.state.cc.length - 1] == poplex)
342
- cx.state.cc.pop()();
343
- return cont(pushlex("form"), expression, statement, poplex, maybeelse);
344
- }
345
- if (type == "function") return cont(functiondef);
346
- if (type == "for") return cont(pushlex("form"), forspec, statement, poplex);
347
- if (type == "variable") return cont(pushlex("stat"), maybelabel);
348
- if (type == "switch") return cont(pushlex("form"), expression, pushlex("}", "switch"), expect("{"),
349
- block, poplex, poplex);
350
- if (type == "case") return cont(expression, expect(":"));
351
- if (type == "default") return cont(expect(":"));
352
- if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"),
353
- statement, poplex, popcontext);
354
- if (type == "class") return cont(pushlex("form"), className, poplex);
355
- if (type == "export") return cont(pushlex("stat"), afterExport, poplex);
356
- if (type == "import") return cont(pushlex("stat"), afterImport, poplex);
357
- return pass(pushlex("stat"), expression, expect(";"), poplex);
358
- }
359
- function expression(type) {
360
- return expressionInner(type, false);
361
- }
362
- function expressionNoComma(type) {
363
- return expressionInner(type, true);
364
- }
365
- function expressionInner(type, noComma) {
366
- if (cx.state.fatArrowAt == cx.stream.start) {
367
- var body = noComma ? arrowBodyNoComma : arrowBody;
368
- if (type == "(") return cont(pushcontext, pushlex(")"), commasep(pattern, ")"), poplex, expect("=>"), body, popcontext);
369
- else if (type == "variable") return pass(pushcontext, pattern, expect("=>"), body, popcontext);
370
- }
371
-
372
- var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma;
373
- if (atomicTypes.hasOwnProperty(type)) return cont(maybeop);
374
- if (type == "function") return cont(functiondef, maybeop);
375
- if (type == "keyword c") return cont(noComma ? maybeexpressionNoComma : maybeexpression);
376
- if (type == "(") return cont(pushlex(")"), maybeexpression, comprehension, expect(")"), poplex, maybeop);
377
- if (type == "operator" || type == "spread") return cont(noComma ? expressionNoComma : expression);
378
- if (type == "[") return cont(pushlex("]"), arrayLiteral, poplex, maybeop);
379
- if (type == "{") return contCommasep(objprop, "}", null, maybeop);
380
- if (type == "quasi") return pass(quasi, maybeop);
381
- if (type == "new") return cont(maybeTarget(noComma));
382
- return cont();
383
- }
384
- function maybeexpression(type) {
385
- if (type.match(/[;\}\)\],]/)) return pass();
386
- return pass(expression);
387
- }
388
- function maybeexpressionNoComma(type) {
389
- if (type.match(/[;\}\)\],]/)) return pass();
390
- return pass(expressionNoComma);
391
- }
392
-
393
- function maybeoperatorComma(type, value) {
394
- if (type == ",") return cont(expression);
395
- return maybeoperatorNoComma(type, value, false);
396
- }
397
- function maybeoperatorNoComma(type, value, noComma) {
398
- var me = noComma == false ? maybeoperatorComma : maybeoperatorNoComma;
399
- var expr = noComma == false ? expression : expressionNoComma;
400
- if (type == "=>") return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext);
401
- if (type == "operator") {
402
- if (/\+\+|--/.test(value)) return cont(me);
403
- if (value == "?") return cont(expression, expect(":"), expr);
404
- return cont(expr);
405
- }
406
- if (type == "quasi") { return pass(quasi, me); }
407
- if (type == ";") return;
408
- if (type == "(") return contCommasep(expressionNoComma, ")", "call", me);
409
- if (type == ".") return cont(property, me);
410
- if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me);
411
- }
412
- function quasi(type, value) {
413
- if (type != "quasi") return pass();
414
- if (value.slice(value.length - 2) != "${") return cont(quasi);
415
- return cont(expression, continueQuasi);
416
- }
417
- function continueQuasi(type) {
418
- if (type == "}") {
419
- cx.marked = "string-2";
420
- cx.state.tokenize = tokenQuasi;
421
- return cont(quasi);
422
- }
423
- }
424
- function arrowBody(type) {
425
- findFatArrow(cx.stream, cx.state);
426
- return pass(type == "{" ? statement : expression);
427
- }
428
- function arrowBodyNoComma(type) {
429
- findFatArrow(cx.stream, cx.state);
430
- return pass(type == "{" ? statement : expressionNoComma);
431
- }
432
- function maybeTarget(noComma) {
433
- return function(type) {
434
- if (type == ".") return cont(noComma ? targetNoComma : target);
435
- else return pass(noComma ? expressionNoComma : expression);
436
- };
437
- }
438
- function target(_, value) {
439
- if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorComma); }
440
- }
441
- function targetNoComma(_, value) {
442
- if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorNoComma); }
443
- }
444
- function maybelabel(type) {
445
- if (type == ":") return cont(poplex, statement);
446
- return pass(maybeoperatorComma, expect(";"), poplex);
447
- }
448
- function property(type) {
449
- if (type == "variable") {cx.marked = "property"; return cont();}
450
- }
451
- function objprop(type, value) {
452
- if (type == "variable" || cx.style == "keyword") {
453
- cx.marked = "property";
454
- if (value == "get" || value == "set") return cont(getterSetter);
455
- return cont(afterprop);
456
- } else if (type == "number" || type == "string") {
457
- cx.marked = jsonldMode ? "property" : (cx.style + " property");
458
- return cont(afterprop);
459
- } else if (type == "jsonld-keyword") {
460
- return cont(afterprop);
461
- } else if (type == "[") {
462
- return cont(expression, expect("]"), afterprop);
463
- } else if (type == "spread") {
464
- return cont(expression);
465
- }
466
- }
467
- function getterSetter(type) {
468
- if (type != "variable") return pass(afterprop);
469
- cx.marked = "property";
470
- return cont(functiondef);
471
- }
472
- function afterprop(type) {
473
- if (type == ":") return cont(expressionNoComma);
474
- if (type == "(") return pass(functiondef);
475
- }
476
- function commasep(what, end) {
477
- function proceed(type) {
478
- if (type == ",") {
479
- var lex = cx.state.lexical;
480
- if (lex.info == "call") lex.pos = (lex.pos || 0) + 1;
481
- return cont(what, proceed);
482
- }
483
- if (type == end) return cont();
484
- return cont(expect(end));
485
- }
486
- return function(type) {
487
- if (type == end) return cont();
488
- return pass(what, proceed);
489
- };
490
- }
491
- function contCommasep(what, end, info) {
492
- for (var i = 3; i < arguments.length; i++)
493
- cx.cc.push(arguments[i]);
494
- return cont(pushlex(end, info), commasep(what, end), poplex);
495
- }
496
- function block(type) {
497
- if (type == "}") return cont();
498
- return pass(statement, block);
499
- }
500
- function maybetype(type) {
501
- if (isTS && type == ":") return cont(typedef);
502
- }
503
- function maybedefault(_, value) {
504
- if (value == "=") return cont(expressionNoComma);
505
- }
506
- function typedef(type) {
507
- if (type == "variable") {cx.marked = "variable-3"; return cont();}
508
- }
509
- function vardef() {
510
- return pass(pattern, maybetype, maybeAssign, vardefCont);
511
- }
512
- function pattern(type, value) {
513
- if (type == "variable") { register(value); return cont(); }
514
- if (type == "spread") return cont(pattern);
515
- if (type == "[") return contCommasep(pattern, "]");
516
- if (type == "{") return contCommasep(proppattern, "}");
517
- }
518
- function proppattern(type, value) {
519
- if (type == "variable" && !cx.stream.match(/^\s*:/, false)) {
520
- register(value);
521
- return cont(maybeAssign);
522
- }
523
- if (type == "variable") cx.marked = "property";
524
- if (type == "spread") return cont(pattern);
525
- return cont(expect(":"), pattern, maybeAssign);
526
- }
527
- function maybeAssign(_type, value) {
528
- if (value == "=") return cont(expressionNoComma);
529
- }
530
- function vardefCont(type) {
531
- if (type == ",") return cont(vardef);
532
- }
533
- function maybeelse(type, value) {
534
- if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex);
535
- }
536
- function forspec(type) {
537
- if (type == "(") return cont(pushlex(")"), forspec1, expect(")"), poplex);
538
- }
539
- function forspec1(type) {
540
- if (type == "var") return cont(vardef, expect(";"), forspec2);
541
- if (type == ";") return cont(forspec2);
542
- if (type == "variable") return cont(formaybeinof);
543
- return pass(expression, expect(";"), forspec2);
544
- }
545
- function formaybeinof(_type, value) {
546
- if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); }
547
- return cont(maybeoperatorComma, forspec2);
548
- }
549
- function forspec2(type, value) {
550
- if (type == ";") return cont(forspec3);
551
- if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); }
552
- return pass(expression, expect(";"), forspec3);
553
- }
554
- function forspec3(type) {
555
- if (type != ")") cont(expression);
556
- }
557
- function functiondef(type, value) {
558
- if (value == "*") {cx.marked = "keyword"; return cont(functiondef);}
559
- if (type == "variable") {register(value); return cont(functiondef);}
560
- if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, statement, popcontext);
561
- }
562
- function funarg(type) {
563
- if (type == "spread") return cont(funarg);
564
- return pass(pattern, maybetype, maybedefault);
565
- }
566
- function className(type, value) {
567
- if (type == "variable") {register(value); return cont(classNameAfter);}
568
- }
569
- function classNameAfter(type, value) {
570
- if (value == "extends") return cont(expression, classNameAfter);
571
- if (type == "{") return cont(pushlex("}"), classBody, poplex);
572
- }
573
- function classBody(type, value) {
574
- if (type == "variable" || cx.style == "keyword") {
575
- if (value == "static") {
576
- cx.marked = "keyword";
577
- return cont(classBody);
578
- }
579
- cx.marked = "property";
580
- if (value == "get" || value == "set") return cont(classGetterSetter, functiondef, classBody);
581
- return cont(functiondef, classBody);
582
- }
583
- if (value == "*") {
584
- cx.marked = "keyword";
585
- return cont(classBody);
586
- }
587
- if (type == ";") return cont(classBody);
588
- if (type == "}") return cont();
589
- }
590
- function classGetterSetter(type) {
591
- if (type != "variable") return pass();
592
- cx.marked = "property";
593
- return cont();
594
- }
595
- function afterExport(_type, value) {
596
- if (value == "*") { cx.marked = "keyword"; return cont(maybeFrom, expect(";")); }
597
- if (value == "default") { cx.marked = "keyword"; return cont(expression, expect(";")); }
598
- return pass(statement);
599
- }
600
- function afterImport(type) {
601
- if (type == "string") return cont();
602
- return pass(importSpec, maybeFrom);
603
- }
604
- function importSpec(type, value) {
605
- if (type == "{") return contCommasep(importSpec, "}");
606
- if (type == "variable") register(value);
607
- if (value == "*") cx.marked = "keyword";
608
- return cont(maybeAs);
609
- }
610
- function maybeAs(_type, value) {
611
- if (value == "as") { cx.marked = "keyword"; return cont(importSpec); }
612
- }
613
- function maybeFrom(_type, value) {
614
- if (value == "from") { cx.marked = "keyword"; return cont(expression); }
615
- }
616
- function arrayLiteral(type) {
617
- if (type == "]") return cont();
618
- return pass(expressionNoComma, maybeArrayComprehension);
619
- }
620
- function maybeArrayComprehension(type) {
621
- if (type == "for") return pass(comprehension, expect("]"));
622
- if (type == ",") return cont(commasep(maybeexpressionNoComma, "]"));
623
- return pass(commasep(expressionNoComma, "]"));
624
- }
625
- function comprehension(type) {
626
- if (type == "for") return cont(forspec, comprehension);
627
- if (type == "if") return cont(expression, comprehension);
628
- }
629
-
630
- function isContinuedStatement(state, textAfter) {
631
- return state.lastType == "operator" || state.lastType == "," ||
632
- isOperatorChar.test(textAfter.charAt(0)) ||
633
- /[,.]/.test(textAfter.charAt(0));
634
- }
635
-
636
- // Interface
637
-
638
- return {
639
- startState: function(basecolumn) {
640
- var state = {
641
- tokenize: tokenBase,
642
- lastType: "sof",
643
- cc: [],
644
- lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false),
645
- localVars: parserConfig.localVars,
646
- context: parserConfig.localVars && {vars: parserConfig.localVars},
647
- indented: 0
648
- };
649
- if (parserConfig.globalVars && typeof parserConfig.globalVars == "object")
650
- state.globalVars = parserConfig.globalVars;
651
- return state;
652
- },
653
-
654
- token: function(stream, state) {
655
- if (stream.sol()) {
656
- if (!state.lexical.hasOwnProperty("align"))
657
- state.lexical.align = false;
658
- state.indented = stream.indentation();
659
- findFatArrow(stream, state);
660
- }
661
- if (state.tokenize != tokenComment && stream.eatSpace()) return null;
662
- var style = state.tokenize(stream, state);
663
- if (type == "comment") return style;
664
- state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type;
665
- return parseJS(state, style, type, content, stream);
666
- },
667
-
668
- indent: function(state, textAfter) {
669
- if (state.tokenize == tokenComment) return CodeMirror.Pass;
670
- if (state.tokenize != tokenBase) return 0;
671
- var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical;
672
- // Kludge to prevent 'maybelse' from blocking lexical scope pops
673
- if (!/^\s*else\b/.test(textAfter)) for (var i = state.cc.length - 1; i >= 0; --i) {
674
- var c = state.cc[i];
675
- if (c == poplex) lexical = lexical.prev;
676
- else if (c != maybeelse) break;
677
- }
678
- if (lexical.type == "stat" && firstChar == "}") lexical = lexical.prev;
679
- if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat")
680
- lexical = lexical.prev;
681
- var type = lexical.type, closing = firstChar == type;
682
-
683
- if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? lexical.info + 1 : 0);
684
- else if (type == "form" && firstChar == "{") return lexical.indented;
685
- else if (type == "form") return lexical.indented + indentUnit;
686
- else if (type == "stat")
687
- return lexical.indented + (isContinuedStatement(state, textAfter) ? statementIndent || indentUnit : 0);
688
- else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false)
689
- return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit);
690
- else if (lexical.align) return lexical.column + (closing ? 0 : 1);
691
- else return lexical.indented + (closing ? 0 : indentUnit);
692
- },
693
-
694
- electricInput: /^\s*(?:case .*?:|default:|\{|\})$/,
695
- blockCommentStart: jsonMode ? null : "/*",
696
- blockCommentEnd: jsonMode ? null : "*/",
697
- lineComment: jsonMode ? null : "//",
698
- fold: "brace",
699
- closeBrackets: "()[]{}''\"\"``",
700
-
701
- helperType: jsonMode ? "json" : "javascript",
702
- jsonldMode: jsonldMode,
703
- jsonMode: jsonMode
704
- };
705
- });
706
-
707
- CodeMirror.registerHelper("wordChars", "javascript", /[\w$]/);
708
-
709
- CodeMirror.defineMIME("text/javascript", "javascript");
710
- CodeMirror.defineMIME("text/ecmascript", "javascript");
711
- CodeMirror.defineMIME("application/javascript", "javascript");
712
- CodeMirror.defineMIME("application/x-javascript", "javascript");
713
- CodeMirror.defineMIME("application/ecmascript", "javascript");
714
- CodeMirror.defineMIME("application/json", {name: "javascript", json: true});
715
- CodeMirror.defineMIME("application/x-json", {name: "javascript", json: true});
716
- CodeMirror.defineMIME("application/ld+json", {name: "javascript", jsonld: true});
717
- CodeMirror.defineMIME("text/typescript", { name: "javascript", typescript: true });
718
- CodeMirror.defineMIME("application/typescript", { name: "javascript", typescript: true });
719
-
720
- });
1
+ 'use strict';(function(p){"object"==typeof exports&&"object"==typeof module?p(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],p):p(CodeMirror)})(function(p){function ja(p,q,n){return/^(?:operator|sof|keyword c|case|new|export|default|[\[{}\(,;:]|=>)$/.test(q.lastType)||"quasi"==q.lastType&&/\{\s*$/.test(p.string.slice(0,p.pos-(n||0)))}p.defineMode("javascript",function(xa,q){function n(a,c,b){G=a;P=b;return c}function C(a,c){var b=a.next();if('"'==
2
+ b||"'"==b)return c.tokenize=ya(b),c.tokenize(a,c);if("."==b&&a.match(/^\d+(?:[eE][+\-]?\d+)?/))return n("number","number");if("."==b&&a.match(".."))return n("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(b))return n(b);if("="==b&&a.eat(">"))return n("=>","operator");if("0"==b&&a.eat(/x/i))return a.eatWhile(/[\da-f]/i),n("number","number");if("0"==b&&a.eat(/o/i))return a.eatWhile(/[0-7]/i),n("number","number");if("0"==b&&a.eat(/b/i))return a.eatWhile(/[01]/i),n("number","number");if(/\d/.test(b))return a.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/),
3
+ n("number","number");if("/"==b){if(a.eat("*"))return c.tokenize=Q,Q(a,c);if(a.eat("/"))return a.skipToEnd(),n("comment","comment");if(ja(a,c,1)){a:for(var f=c=!1;null!=(b=a.next());){if(!c){if("/"==b&&!f)break a;"["==b?f=!0:f&&"]"==b&&(f=!1)}c=!c&&"\\"==b}a.match(/^\b(([gimyu])(?![gimyu]*\2))+\b/);return n("regexp","string-2")}a.eatWhile(R);return n("operator","operator",a.current())}if("`"==b)return c.tokenize=Z,Z(a,c);if("#"==b)return a.skipToEnd(),n("error","error");if(R.test(b))return">"==b&&
4
+ c.lexical&&">"==c.lexical.type||a.eatWhile(R),n("operator","operator",a.current());if(aa.test(b)){a.eatWhile(aa);b=a.current();if("."!=c.lastType){if(ka.propertyIsEnumerable(b))return a=ka[b],n(a.type,a.style,b);if("async"==b&&a.match(/^\s*[\(\w]/,!1))return n("async","keyword",b)}return n("variable","variable",b)}}function ya(a){return function(c,b){var f=!1,k;if(S&&"@"==c.peek()&&c.match(za))return b.tokenize=C,n("jsonld-keyword","meta");for(;null!=(k=c.next())&&(k!=a||f);)f=!f&&"\\"==k;f||(b.tokenize=
5
+ C);return n("string","string")}}function Q(a,c){for(var b=!1,f;f=a.next();){if("/"==f&&b){c.tokenize=C;break}b="*"==f}return n("comment","comment")}function Z(a,c){for(var b=!1,f;null!=(f=a.next());){if(!b&&("`"==f||"$"==f&&a.eat("{"))){c.tokenize=C;break}b=!b&&"\\"==f}return n("quasi","string-2",a.current())}function ba(a,c){c.fatArrowAt&&(c.fatArrowAt=null);var b=a.string.indexOf("=>",a.start);if(!(0>b)){if(v){var f=/:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(a.string.slice(a.start,b));f&&
6
+ (b=f.index)}for(var f=0,d=!1,b=b-1;0<=b;--b){var z=a.string.charAt(b),e="([{}])".indexOf(z);if(0<=e&&3>e){if(!f){++b;break}if(0==--f){"("==z&&(d=!0);break}}else if(3<=e&&6>e)++f;else if(aa.test(z))d=!0;else{if(/["'\/]/.test(z))return;if(d&&!f){++b;break}}}d&&!f&&(c.fatArrowAt=b)}}function ma(a,b,d,f,e,z){this.indented=a;this.column=b;this.type=d;this.prev=e;this.info=z;null!=f&&(this.align=f)}function g(){for(var a=arguments.length-1;0<=a;a--)d.cc.push(arguments[a])}function b(){g.apply(null,arguments);
7
+ return!0}function H(a){function b(b){for(;b;b=b.next)if(b.name==a)return!0;return!1}var k=d.state;d.marked="def";k.context?b(k.localVars)||(k.localVars={name:a,next:k.localVars}):!b(k.globalVars)&&q.globalVars&&(k.globalVars={name:a,next:k.globalVars})}function I(){d.state.context={prev:d.state.context,vars:d.state.localVars};d.state.localVars=Aa}function J(){d.state.localVars=d.state.context.vars;d.state.context=d.state.context.prev}function h(a,b){var c=function(){var c=d.state,k=c.indented;if("stat"==
8
+ c.lexical.type)k=c.lexical.indented;else for(var e=c.lexical;e&&")"==e.type&&e.align;e=e.prev)k=e.indented;c.lexical=new ma(k,d.stream.column(),a,null,c.lexical,b)};c.lex=!0;return c}function e(){var a=d.state;a.lexical.prev&&(")"==a.lexical.type&&(a.indented=a.lexical.indented),a.lexical=a.lexical.prev)}function l(a){function c(d){return d==a?b():";"==a?g():b(c)}return c}function r(a,c){return"var"==a?b(h("vardef",c.length),ca,l(";"),e):"keyword a"==a?b(h("form"),da,r,e):"keyword b"==a?b(h("form"),
9
+ r,e):"{"==a?b(h("}"),T,e):";"==a?b():"if"==a?("else"==d.state.lexical.info&&d.state.cc[d.state.cc.length-1]==e&&d.state.cc.pop()(),b(h("form"),da,r,e,na)):"function"==a?b(w):"for"==a?b(h("form"),Ba,r,e):"variable"==a?v&&"type"==c?(d.marked="keyword",b(t,l("operator"),t,l(";"))):b(h("stat"),Ca):"switch"==a?b(h("form"),da,l("{"),h("}","switch"),T,e,e):"case"==a?b(m,l(":")):"default"==a?b(l(":")):"catch"==a?b(h("form"),I,l("("),ea,l(")"),r,e,J):"class"==a?b(h("form"),oa,e):"export"==a?b(h("stat"),Da,
10
+ e):"import"==a?b(h("stat"),Ea,e):"module"==a?b(h("form"),x,l("{"),h("}"),T,e,e):"async"==a?b(r):"@"==c?b(m,r):g(h("stat"),m,l(";"),e)}function m(a){return pa(a,!1)}function u(a){return pa(a,!0)}function da(a){return"("!=a?g():b(h(")"),m,l(")"),e)}function pa(a,c){if(d.state.fatArrowAt==d.stream.start){var k=c?qa:ra;if("("==a)return b(I,h(")"),y(x,")"),e,l("=>"),k,J);if("variable"==a)return g(I,x,l("=>"),k,J)}k=c?K:D;return Fa.hasOwnProperty(a)?b(k):"function"==a?b(w,k):"class"==a?b(h("form"),Ga,e):
11
+ "keyword c"==a||"async"==a?b(c?Ha:fa):"("==a?b(h(")"),fa,l(")"),e,k):"operator"==a||"spread"==a?b(c?u:m):"["==a?b(h("]"),Ia,e,k):"{"==a?L(ga,"}",null,k):"quasi"==a?g(U,k):"new"==a?b(Ja(c)):b()}function fa(a){return a.match(/[;\}\)\],]/)?g():g(m)}function Ha(a){return a.match(/[;\}\)\],]/)?g():g(u)}function D(a,c){return","==a?b(m):K(a,c,!1)}function K(a,c,k){var f=0==k?D:K,la=0==k?m:u;if("=>"==a)return b(I,k?qa:ra,J);if("operator"==a)return/\+\+|--/.test(c)?b(f):"?"==c?b(m,l(":"),la):b(la);if("quasi"==
12
+ a)return g(U,f);if(";"!=a){if("("==a)return L(u,")","call",f);if("."==a)return b(Ka,f);if("["==a)return b(h("]"),fa,l("]"),e,f);if(v&&"as"==c)return d.marked="keyword",b(t,f)}}function U(a,c){return"quasi"!=a?g():"${"!=c.slice(c.length-2)?b(U):b(m,La)}function La(a){if("}"==a)return d.marked="string-2",d.state.tokenize=Z,b(U)}function ra(a){ba(d.stream,d.state);return g("{"==a?r:m)}function qa(a){ba(d.stream,d.state);return g("{"==a?r:u)}function Ja(a){return function(c){return"."==c?b(a?Ma:Na):g(a?
13
+ u:m)}}function Na(a,c){if("target"==c)return d.marked="keyword",b(D)}function Ma(a,c){if("target"==c)return d.marked="keyword",b(K)}function Ca(a){return":"==a?b(e,r):g(D,l(";"),e)}function Ka(a){if("variable"==a)return d.marked="property",b()}function ga(a,c){if("async"==a)return d.marked="property",b(ga);if("variable"==a||"keyword"==d.style)return d.marked="property","get"==c||"set"==c?b(Oa):b(A);if("number"==a||"string"==a)return d.marked=S?"property":d.style+" property",b(A);if("jsonld-keyword"==
14
+ a)return b(A);if("modifier"==a)return b(ga);if("["==a)return b(m,l("]"),A);if("spread"==a)return b(m,A);if(":"==a)return g(A)}function Oa(a){if("variable"!=a)return g(A);d.marked="property";return b(w)}function A(a){if(":"==a)return b(u);if("("==a)return g(w)}function y(a,c,k){function f(e,z){return(k?-1<k.indexOf(e):","==e)?(e=d.state.lexical,"call"==e.info&&(e.pos=(e.pos||0)+1),b(function(b,f){return b==c||f==c?g():g(a)},f)):e==c||z==c?b():b(l(c))}return function(d,e){return d==c||e==c?b():g(a,
15
+ f)}}function L(a,c,k){for(var f=3;f<arguments.length;f++)d.cc.push(arguments[f]);return b(h(c,k),y(a,c),e)}function T(a){return"}"==a?b():g(r,T)}function M(a,c){if(v){if(":"==a)return b(t);if("?"==c)return b(M)}}function t(a){if("variable"==a)return d.marked="type",b(N);if("string"==a||"number"==a||"atom"==a)return b(N);if("{"==a)return b(h("}"),y(V,"}",",;"),e,N);if("("==a)return b(y(sa,")"),Pa)}function Pa(a){if("=>"==a)return b(t)}function V(a,c){if("variable"==a||"keyword"==d.style)return d.marked=
16
+ "property",b(V);if("?"==c)return b(V);if(":"==a)return b(t);if("["==a)return b(m,M,l("]"),V)}function sa(a){if("variable"==a)return b(sa);if(":"==a)return b(t)}function N(a,c){if("<"==c)return b(h(">"),y(t,">"),e,N);if("|"==c||"."==a)return b(t);if("["==a)return b(l("]"),N);if("extends"==c)return b(t)}function ca(){return g(x,M,O,Qa)}function x(a,c){if("modifier"==a)return b(x);if("variable"==a)return H(c),b();if("spread"==a)return b(x);if("["==a)return L(x,"]");if("{"==a)return L(Ra,"}")}function Ra(a,
17
+ c){if("variable"==a&&!d.stream.match(/^\s*:/,!1))return H(c),b(O);"variable"==a&&(d.marked="property");return"spread"==a?b(x):"}"==a?g():b(l(":"),x,O)}function O(a,c){if("="==c)return b(u)}function Qa(a){if(","==a)return b(ca)}function na(a,c){if("keyword b"==a&&"else"==c)return b(h("form","else"),r,e)}function Ba(a){if("("==a)return b(h(")"),Sa,l(")"),e)}function Sa(a){return"var"==a?b(ca,l(";"),W):";"==a?b(W):"variable"==a?b(Ta):g(m,l(";"),W)}function Ta(a,c){return"in"==c||"of"==c?(d.marked="keyword",
18
+ b(m)):b(D,W)}function W(a,c){return";"==a?b(ta):"in"==c||"of"==c?(d.marked="keyword",b(m)):g(m,l(";"),ta)}function ta(a){")"!=a&&b(m)}function w(a,c){if("*"==c)return d.marked="keyword",b(w);if("variable"==a)return H(c),b(w);if("("==a)return b(I,h(")"),y(ea,")"),e,M,r,J);if(v&&"<"==c)return b(h(">"),y(t,">"),e,w)}function ea(a){return"spread"==a?b(ea):g(x,M,O)}function Ga(a,b){return"variable"==a?oa(a,b):X(a,b)}function oa(a,c){if("variable"==a)return H(c),b(X)}function X(a,c){if("<"==c)return b(h(">"),
19
+ y(t,">"),e,X);if("extends"==c||"implements"==c||v&&","==a)return b(v?t:m,X);if("{"==a)return b(h("}"),B,e)}function B(a,c){if("variable"==a||"keyword"==d.style){if(("async"==c||"static"==c||"get"==c||"set"==c||v&&("public"==c||"private"==c||"protected"==c||"readonly"==c||"abstract"==c))&&d.stream.match(/^\s+[\w$\xa1-\uffff]/,!1))return d.marked="keyword",b(B);d.marked="property";return b(v?ha:w,B)}if("["==a)return b(m,l("]"),v?ha:w,B);if("*"==c)return d.marked="keyword",b(B);if(";"==a)return b(B);
20
+ if("}"==a)return b();if("@"==c)return b(m,B)}function ha(a,c){return"?"==c?b(ha):":"==a?b(t,O):"="==c?b(u):g(w)}function Da(a,c){return"*"==c?(d.marked="keyword",b(ia,l(";"))):"default"==c?(d.marked="keyword",b(m,l(";"))):"{"==a?b(y(ua,"}"),ia,l(";")):g(r)}function ua(a,c){if("as"==c)return d.marked="keyword",b(l("variable"));if("variable"==a)return g(u,ua)}function Ea(a){return"string"==a?b():g(Y,va,ia)}function Y(a,c){if("{"==a)return L(Y,"}");"variable"==a&&H(c);"*"==c&&(d.marked="keyword");return b(Ua)}
21
+ function va(a){if(","==a)return b(Y,va)}function Ua(a,c){if("as"==c)return d.marked="keyword",b(Y)}function ia(a,c){if("from"==c)return d.marked="keyword",b(m)}function Ia(a){return"]"==a?b():g(y(u,"]"))}var E=xa.indentUnit,wa=q.statementIndent,S=q.jsonld,F=q.json||S,v=q.typescript,aa=q.wordCharacters||/[\w$\xa1-\uffff]/,ka=function(){function a(a){return{type:a,style:"keyword"}}var b=a("keyword a"),d=a("keyword b"),f=a("keyword c"),e=a("operator"),g={type:"atom",style:"atom"},b={"if":a("if"),"while":b,
22
+ "with":b,"else":d,"do":d,"try":d,"finally":d,"return":f,"break":f,"continue":f,"new":a("new"),"delete":f,"throw":f,"debugger":f,"var":a("var"),"const":a("var"),let:a("var"),"function":a("function"),"catch":a("catch"),"for":a("for"),"switch":a("switch"),"case":a("case"),"default":a("default"),"in":e,"typeof":e,"instanceof":e,"true":g,"false":g,"null":g,undefined:g,NaN:g,Infinity:g,"this":a("this"),"class":a("class"),"super":a("atom"),yield:f,"export":a("export"),"import":a("import"),"extends":f,await:f};
23
+ if(v){var d={type:"variable",style:"type"},f={"interface":a("class"),"implements":f,namespace:f,module:a("module"),"enum":a("module"),"public":a("modifier"),"private":a("modifier"),"protected":a("modifier"),"abstract":a("modifier"),string:d,number:d,"boolean":d,any:d},h;for(h in f)b[h]=f[h]}return b}(),R=/[+\-*&%=<>!?|~^@]/,za=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/,G,P,Fa={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,"this":!0,"jsonld-keyword":!0},
24
+ d={state:null,column:null,marked:null,cc:null},Aa={name:"this",next:{name:"arguments"}};e.lex=!0;return{startState:function(a){a={tokenize:C,lastType:"sof",cc:[],lexical:new ma((a||0)-E,0,"block",!1),localVars:q.localVars,context:q.localVars&&{vars:q.localVars},indented:a||0};q.globalVars&&"object"==typeof q.globalVars&&(a.globalVars=q.globalVars);return a},token:function(a,b){a.sol()&&(b.lexical.hasOwnProperty("align")||(b.lexical.align=!1),b.indented=a.indentation(),ba(a,b));if(b.tokenize!=Q&&a.eatSpace())return null;
25
+ var c=b.tokenize(a,b);if("comment"==G)return c;b.lastType="operator"!=G||"++"!=P&&"--"!=P?G:"incdec";a:{var f=G,e=P,g=b.cc;d.state=b;d.stream=a;d.marked=null;d.cc=g;d.style=c;b.lexical.hasOwnProperty("align")||(b.lexical.align=!0);for(;;)if((g.length?g.pop():F?m:r)(f,e)){for(;g.length&&g[g.length-1].lex;)g.pop()();if(d.marked){c=d.marked;break a}if(a="variable"==f)b:{for(a=b.localVars;a;a=a.next)if(a.name==e){a=!0;break b}for(b=b.context;b;b=b.prev)for(a=b.vars;a;a=a.next)if(a.name==e){a=!0;break b}a=
26
+ void 0}if(a){c="variable-2";break a}break a}}return c},indent:function(a,b){if(a.tokenize==Q)return p.Pass;if(a.tokenize!=C)return 0;var c=b&&b.charAt(0),d=a.lexical,g;if(!/^\s*else\b/.test(b))for(var h=a.cc.length-1;0<=h;--h){var l=a.cc[h];if(l==e)d=d.prev;else if(l!=na)break}for(;!("stat"!=d.type&&"form"!=d.type||"}"!=c&&(!(g=a.cc[a.cc.length-1])||g!=D&&g!=K||/^[,\.=+\-*:?[\(]/.test(b)));)d=d.prev;wa&&")"==d.type&&"stat"==d.prev.type&&(d=d.prev);g=d.type;h=c==g;return"vardef"==g?d.indented+("operator"==
27
+ a.lastType||","==a.lastType?d.info+1:0):"form"==g&&"{"==c?d.indented:"form"==g?d.indented+E:"stat"==g?(c=d.indented,a="operator"==a.lastType||","==a.lastType||R.test(b.charAt(0))||/[,.]/.test(b.charAt(0)),c+(a?wa||E:0)):"switch"!=d.info||h||0==q.doubleIndentSwitch?d.align?d.column+(h?0:1):d.indented+(h?0:E):d.indented+(/^(?:case|default)\b/.test(b)?E:2*E)},electricInput:/^\s*(?:case .*?:|default:|\{|\})$/,blockCommentStart:F?null:"/*",blockCommentEnd:F?null:"*/",lineComment:F?null:"//",fold:"brace",
28
+ closeBrackets:"()[]{}''\"\"``",helperType:F?"json":"javascript",jsonldMode:S,jsonMode:F,expressionAllowed:ja,skipExpression:function(a){var b=a.cc[a.cc.length-1];b!=m&&b!=u||a.cc.pop()}}});p.registerHelper("wordChars","javascript",/[\w$]/);p.defineMIME("text/javascript","javascript");p.defineMIME("text/ecmascript","javascript");p.defineMIME("application/javascript","javascript");p.defineMIME("application/x-javascript","javascript");p.defineMIME("application/ecmascript","javascript");p.defineMIME("application/json",
29
+ {name:"javascript",json:!0});p.defineMIME("application/x-json",{name:"javascript",json:!0});p.defineMIME("application/ld+json",{name:"javascript",jsonld:!0});p.defineMIME("text/typescript",{name:"javascript",typescript:!0});p.defineMIME("application/typescript",{name:"javascript",typescript:!0})});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/mode/xml/xml.js ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 'use strict';(function(g){"object"==typeof exports&&"object"==typeof module?g(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],g):g(CodeMirror)})(function(g){var D={autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0,menuitem:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,
2
+ dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!0,
3
+ caseFold:!0},E={autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1,caseFold:!1};g.defineMode("xml",function(p,q){function h(a,c){function b(b){c.tokenize=b;return b(a,c)}var d=a.next();if("<"==d){if(a.eat("!"))return a.eat("[")?a.match("CDATA[")?b(r("atom","]]\x3e")):null:a.match("--")?b(r("comment","--\x3e")):a.match("DOCTYPE",!0,!0)?(a.eatWhile(/[\w\._\-]/),b(t(1))):null;if(a.eat("?"))return a.eatWhile(/[\w\._\-]/),c.tokenize=r("meta","?>"),
4
+ "meta";l=a.eat("/")?"closeTag":"openTag";c.tokenize=u;return"tag bracket"}if("&"==d)return(a.eat("#")?a.eat("x")?a.eatWhile(/[a-fA-F\d]/)&&a.eat(";"):a.eatWhile(/[\d]/)&&a.eat(";"):a.eatWhile(/[\w\.\-:]/)&&a.eat(";"))?"atom":"error";a.eatWhile(/[^&<]/);return null}function u(a,c){var b=a.next();if(">"==b||"/"==b&&a.eat(">"))return c.tokenize=h,l=">"==b?"endTag":"selfcloseTag","tag bracket";if("="==b)return l="equals",null;if("<"==b)return c.tokenize=h,c.state=m,c.tagName=c.tagStart=null,(a=c.tokenize(a,
5
+ c))?a+" tag error":"tag error";if(/[\'\"]/.test(b))return c.tokenize=F(b),c.stringStartCol=a.column(),c.tokenize(a,c);a.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/);return"word"}function F(a){var c=function(b,c){for(;!b.eol();)if(b.next()==a){c.tokenize=u;break}return"string"};c.isInAttribute=!0;return c}function r(a,c){return function(b,d){for(;!b.eol();){if(b.match(c)){d.tokenize=h;break}b.next()}return a}}function t(a){return function(c,b){for(var d;null!=(d=c.next());){if("<"==d)return b.tokenize=
6
+ t(a+1),b.tokenize(c,b);if(">"==d)if(1==a){b.tokenize=h;break}else return b.tokenize=t(a-1),b.tokenize(c,b)}return"meta"}}function G(a,c,b){this.prev=a.context;this.tagName=c;this.indent=a.indented;this.startOfLine=b;if(e.doNotIndent.hasOwnProperty(c)||a.context&&a.context.noIndent)this.noIndent=!0}function v(a){a.context&&(a.context=a.context.prev)}function y(a,c){for(var b;a.context;){b=a.context.tagName;if(!e.contextGrabbers.hasOwnProperty(b)||!e.contextGrabbers[b].hasOwnProperty(c))break;v(a)}}
7
+ function m(a,c,b){return"openTag"==a?(b.tagStart=c.column(),z):"closeTag"==a?H:m}function z(a,c,b){if("word"==a)return b.tagName=c.current(),f="tag",k;f="error";return z}function H(a,c,b){if("word"==a){a=c.current();b.context&&b.context.tagName!=a&&e.implicitlyClosed.hasOwnProperty(b.context.tagName)&&v(b);if(b.context&&b.context.tagName==a||!1===e.matchClosing)return f="tag",w;f="tag error";return A}f="error";return A}function w(a,c,b){if("endTag"!=a)return f="error",w;v(b);return m}function A(a,
8
+ c,b){f="error";return w(a,c,b)}function k(a,c,b){if("word"==a)return f="attribute",I;if("endTag"==a||"selfcloseTag"==a){c=b.tagName;var d=b.tagStart;b.tagName=b.tagStart=null;"selfcloseTag"==a||e.autoSelfClosers.hasOwnProperty(c)?y(b,c):(y(b,c),b.context=new G(b,c,d==b.indented));return m}f="error";return k}function I(a,c,b){if("equals"==a)return B;e.allowMissing||(f="error");return k(a,c,b)}function B(a,c,b){if("string"==a)return C;if("word"==a&&e.allowUnquoted)return f="string",k;f="error";return k(a,
9
+ c,b)}function C(a,c,b){return"string"==a?C:k(a,c,b)}var x=p.indentUnit,e={};p=q.htmlMode?D:E;for(var n in p)e[n]=p[n];for(n in q)e[n]=q[n];var l,f;h.isInText=!0;return{startState:function(a){var c={tokenize:h,state:m,indented:a||0,tagName:null,tagStart:null,context:null};null!=a&&(c.baseIndent=a);return c},token:function(a,c){!c.tagName&&a.sol()&&(c.indented=a.indentation());if(a.eatSpace())return null;l=null;var b=c.tokenize(a,c);(b||l)&&"comment"!=b&&(f=null,c.state=c.state(l||b,a,c),f&&(b="error"==
10
+ f?b+" error":f));return b},indent:function(a,c,b){var d=a.context;if(a.tokenize.isInAttribute)return a.tagStart==a.indented?a.stringStartCol+1:a.indented+x;if(d&&d.noIndent)return g.Pass;if(a.tokenize!=u&&a.tokenize!=h)return b?b.match(/^(\s*)/)[0].length:0;if(a.tagName)return!1!==e.multilineTagIndentPastTag?a.tagStart+a.tagName.length+2:a.tagStart+x*(e.multilineTagIndentFactor||1);if(e.alignCDATA&&/<!\[CDATA\[/.test(c))return 0;if((c=c&&/^<(\/)?([\w_:\.-]*)/.exec(c))&&c[1])for(;d;)if(d.tagName==
11
+ c[2]){d=d.prev;break}else if(e.implicitlyClosed.hasOwnProperty(d.tagName))d=d.prev;else break;else if(c)for(;d;)if((b=e.contextGrabbers[d.tagName])&&b.hasOwnProperty(c[2]))d=d.prev;else break;for(;d&&d.prev&&!d.startOfLine;)d=d.prev;return d?d.indent+x:a.baseIndent||0},electricInput:/<\/[\s\w:]+>$/,blockCommentStart:"\x3c!--",blockCommentEnd:"--\x3e",configuration:e.htmlMode?"html":"xml",helperType:e.htmlMode?"html":"xml",skipAttribute:function(a){a.state==B&&(a.state=k)}}});g.defineMIME("text/xml",
12
+ "xml");g.defineMIME("application/xml","xml");g.mimeModes.hasOwnProperty("text/html")||g.defineMIME("text/html",{name:"xml",htmlMode:!0})});
assets/codemirror/theme/3024-night.css CHANGED
@@ -1,39 +1 @@
1
- /*
2
-
3
- Name: 3024 night
4
- Author: Jan T. Sott (http://github.com/idleberg)
5
-
6
- CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
7
- Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
8
-
9
- */
10
-
11
- .cm-s-3024-night.CodeMirror { background: #090300; color: #d6d5d4; }
12
- .cm-s-3024-night div.CodeMirror-selected { background: #3a3432; }
13
- .cm-s-3024-night .CodeMirror-line::selection, .cm-s-3024-night .CodeMirror-line > span::selection, .cm-s-3024-night .CodeMirror-line > span > span::selection { background: rgba(58, 52, 50, .99); }
14
- .cm-s-3024-night .CodeMirror-line::-moz-selection, .cm-s-3024-night .CodeMirror-line > span::-moz-selection, .cm-s-3024-night .CodeMirror-line > span > span::-moz-selection { background: rgba(58, 52, 50, .99); }
15
- .cm-s-3024-night .CodeMirror-gutters { background: #090300; border-right: 0px; }
16
- .cm-s-3024-night .CodeMirror-guttermarker { color: #db2d20; }
17
- .cm-s-3024-night .CodeMirror-guttermarker-subtle { color: #5c5855; }
18
- .cm-s-3024-night .CodeMirror-linenumber { color: #5c5855; }
19
-
20
- .cm-s-3024-night .CodeMirror-cursor { border-left: 1px solid #807d7c; }
21
-
22
- .cm-s-3024-night span.cm-comment { color: #cdab53; }
23
- .cm-s-3024-night span.cm-atom { color: #a16a94; }
24
- .cm-s-3024-night span.cm-number { color: #a16a94; }
25
-
26
- .cm-s-3024-night span.cm-property, .cm-s-3024-night span.cm-attribute { color: #01a252; }
27
- .cm-s-3024-night span.cm-keyword { color: #db2d20; }
28
- .cm-s-3024-night span.cm-string { color: #fded02; }
29
-
30
- .cm-s-3024-night span.cm-variable { color: #01a252; }
31
- .cm-s-3024-night span.cm-variable-2 { color: #01a0e4; }
32
- .cm-s-3024-night span.cm-def { color: #e8bbd0; }
33
- .cm-s-3024-night span.cm-bracket { color: #d6d5d4; }
34
- .cm-s-3024-night span.cm-tag { color: #db2d20; }
35
- .cm-s-3024-night span.cm-link { color: #a16a94; }
36
- .cm-s-3024-night span.cm-error { background: #db2d20; color: #807d7c; }
37
-
38
- .cm-s-3024-night .CodeMirror-activeline-background { background: #2F2F2F; }
39
- .cm-s-3024-night .CodeMirror-matchingbracket { text-decoration: underline; color: white !important; }
1
+ .cm-s-3024-night.CodeMirror{background:#090300;color:#d6d5d4}.cm-s-3024-night div.CodeMirror-selected{background:#3a3432}.cm-s-3024-night .CodeMirror-line::selection,.cm-s-3024-night .CodeMirror-line>span::selection,.cm-s-3024-night .CodeMirror-line>span>span::selection{background:rgba(58,52,50,.99)}.cm-s-3024-night .CodeMirror-line::-moz-selection,.cm-s-3024-night .CodeMirror-line>span::-moz-selection,.cm-s-3024-night .CodeMirror-line>span>span::-moz-selection{background:rgba(58,52,50,.99)}.cm-s-3024-night .CodeMirror-gutters{background:#090300;border-right:0}.cm-s-3024-night .CodeMirror-guttermarker{color:#db2d20}.cm-s-3024-night .CodeMirror-guttermarker-subtle{color:#5c5855}.cm-s-3024-night .CodeMirror-linenumber{color:#5c5855}.cm-s-3024-night .CodeMirror-cursor{border-left:1px solid #807d7c}.cm-s-3024-night span.cm-comment{color:#cdab53}.cm-s-3024-night span.cm-atom{color:#a16a94}.cm-s-3024-night span.cm-number{color:#a16a94}.cm-s-3024-night span.cm-attribute,.cm-s-3024-night span.cm-property{color:#01a252}.cm-s-3024-night span.cm-keyword{color:#db2d20}.cm-s-3024-night span.cm-string{color:#fded02}.cm-s-3024-night span.cm-variable{color:#01a252}.cm-s-3024-night span.cm-variable-2{color:#01a0e4}.cm-s-3024-night span.cm-def{color:#e8bbd0}.cm-s-3024-night span.cm-bracket{color:#d6d5d4}.cm-s-3024-night span.cm-tag{color:#db2d20}.cm-s-3024-night span.cm-link{color:#a16a94}.cm-s-3024-night span.cm-error{background:#db2d20;color:#807d7c}.cm-s-3024-night .CodeMirror-activeline-background{background:#2f2f2f}.cm-s-3024-night .CodeMirror-matchingbracket{text-decoration:underline;color:#fff!important}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/images/button-close-hover.png ADDED
Binary file
assets/images/button-close.png ADDED
Binary file
custom-css-js.php CHANGED
@@ -3,11 +3,16 @@
3
  * Plugin Name: Simple Custom CSS and JS
4
  * Plugin URI: https://wordpress.org/plugins/custom-css-js/
5
  * Description: Easily add Custom CSS or JS to your website with an awesome editor.
6
- * Version: 1.2
7
  * Author: Diana Burduja
8
- * Author URI: http://www.silkypress.com/
9
  * License: GPL2
10
  *
 
 
 
 
 
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) {
@@ -21,13 +26,8 @@ if ( ! class_exists( 'CustomCSSandJS' ) ) :
21
  * @class CustomCSSandJS
22
  */
23
  final class CustomCSSandJS {
24
- public $version = '1.1';
25
- public $plugins_url = '';
26
- public $plugin_dir_path = '';
27
- public $plugin_file = __FILE__;
28
  public $search_tree = false;
29
- public $upload_dir = '';
30
- public $upload_url = '';
31
  protected static $_instance = null;
32
 
33
 
@@ -50,14 +50,14 @@ final class CustomCSSandJS {
50
  * Cloning is forbidden.
51
  */
52
  public function __clone() {
53
- _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?' ), '1.0' );
54
  }
55
 
56
  /**
57
  * Unserializing instances of this class is forbidden.
58
  */
59
  public function __wakeup() {
60
- _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?' ), '1.0' );
61
  }
62
 
63
  /**
@@ -66,13 +66,16 @@ final class CustomCSSandJS {
66
  */
67
  public function __construct() {
68
  add_action( 'init', array( $this, 'register_post_type' ) );
69
- $this->plugins_url = plugins_url( '/', __FILE__ );
70
- $this->plugin_dir_path = plugin_dir_path( __FILE__ );
71
- $this->upload_dir = wp_upload_dir()['basedir'] . '/custom-css-js';
72
- $this->upload_url = wp_upload_dir()['baseurl'] . '/custom-css-js';
73
- if ( is_admin() ) {
74
  include_once( 'includes/admin-screens.php' );
75
- }
 
 
 
76
 
77
  $this->search_tree = get_option( 'custom-css-js-tree' );
78
 
@@ -80,8 +83,9 @@ final class CustomCSSandJS {
80
  return false;
81
  }
82
 
83
- $this->print_code_actions();
84
-
 
85
  }
86
 
87
  /**
@@ -89,42 +93,18 @@ final class CustomCSSandJS {
89
  */
90
  function print_code_actions() {
91
  foreach( $this->search_tree as $_key => $_value ) {
92
- $action = '';
93
- switch( $_key ) {
94
- case 'admin-css-header-external' :
95
- case 'admin-js-header-external' :
96
- case 'admin-css-footer-external' :
97
- case 'admin-js-footer-external' :
98
- $action = 'admin_enqueue_scripts';
99
- break;
100
-
101
- case 'admin-css-header-internal' :
102
- case 'admin-js-header-internal' :
103
- $action = 'admin_head';
104
- break;
105
- case 'admin-css-footer-internal' :
106
- case 'admin-js-footer-internal' :
107
- $action = 'admin_footer';
108
- break;
109
-
110
- case 'frontend-css-header-external' :
111
- case 'frontend-css-footer-external' :
112
- case 'frontend-css-header-internal' :
113
- case 'frontend-js-header-internal' :
114
- case 'frontend-js-header-external' :
115
- $action = 'wp_head';
116
- break;
117
- case 'frontend-css-footer-internal' :
118
- case 'frontend-js-footer-internal' :
119
- case 'frontend-js-footer-external' :
120
- $action = 'wp_footer';
121
- break;
122
  }
123
-
124
- if ( $action == '' ) {
125
- continue;
 
 
 
 
126
  }
127
-
128
  add_action( $action, array( $this, 'print_' . $_key ) );
129
  }
130
  }
@@ -134,7 +114,7 @@ final class CustomCSSandJS {
134
  */
135
  public function __call( $function, $args ) {
136
 
137
- if ( strstr( $function, 'print_' ) == false ) {
138
  return false;
139
  }
140
 
@@ -151,15 +131,15 @@ final class CustomCSSandJS {
151
  }
152
 
153
  // print the `internal` code
154
- if ( strstr( $function, 'internal' ) ) {
155
 
156
  $before = '<!-- start Simple Custom CSS and JS -->' . PHP_EOL;
157
  $after = '<!-- end Simple Custom CSS and JS -->' . PHP_EOL;
158
- if ( strstr( $function, 'css' ) ) {
159
  $before .= '<style type="text/css">' . PHP_EOL;
160
  $after = '</style>' . PHP_EOL . $after;
161
  }
162
- if ( strstr( $function, 'js' ) ) {
163
  $before .= '<script type="text/javascript">' . PHP_EOL;
164
  $after = '</script>' . PHP_EOL . $after;
165
  }
@@ -167,7 +147,7 @@ final class CustomCSSandJS {
167
 
168
  foreach( $args as $_post_id ) {
169
  if ( strstr( $_post_id, 'css' ) || strstr( $_post_id, 'js' ) ) {
170
- @include_once( $this->upload_dir . '/' . $_post_id );
171
  } else {
172
  $post = get_post( $_post_id );
173
  echo $before . $post->post_content . $after;
@@ -176,70 +156,213 @@ final class CustomCSSandJS {
176
  }
177
 
178
  // link the `external` code
179
- if ( strstr( $function, 'external' ) ) {
180
  $in_footer = false;
181
- if ( strstr( $function, 'footer' ) ) {
182
  $in_footer = true;
183
  }
184
 
185
- if ( strstr( $function, 'js' ) ) {
186
  foreach( $args as $_filename ) {
187
- echo PHP_EOL . "<script type='text/javascript' src='".$this->upload_url . '/' . $_filename."'></script>" . PHP_EOL;
188
  }
189
  }
190
 
191
- if ( strstr( $function, 'css' ) ) {
192
  foreach( $args as $_filename ) {
193
- echo PHP_EOL . "<link rel='stylesheet' id='".$_filename."-css' href='".$this->upload_url . '/' . $_filename ."' type='text/css' media='all' />" . PHP_EOL;
 
194
  }
195
  }
196
  }
 
 
 
 
 
 
 
 
 
 
197
  }
198
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  /**
200
  * Create the custom-css-js post type
201
  */
202
  public function register_post_type() {
203
  $labels = array(
204
- 'name' => _x( 'Custom Code', 'post type general name'),
205
- 'singular_name' => _x( 'Custom Code', 'post type singular name'),
206
- 'menu_name' => _x( 'Custom CSS & JS', 'admin menu'),
207
- 'name_admin_bar' => _x( 'Custom Code', 'add new on admin bar'),
208
- 'add_new' => _x( 'Add Custom Code', 'add new'),
209
- 'add_new_item' => __( 'Add Custom Code'),
210
- 'new_item' => __( 'New Custom Code'),
211
- 'edit_item' => __( 'Edit Custom Code'),
212
- 'view_item' => __( 'View Custom Code'),
213
- 'all_items' => __( 'All Custom Code'),
214
- 'search_items' => __( 'Search Custom Code'),
215
- 'parent_item_colon' => __( 'Parent Custom Code:'),
216
- 'not_found' => __( 'No Custom Code found.'),
217
- 'not_found_in_trash' => __( 'No Custom Code found in Trash.')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  );
219
 
220
  $args = array(
221
- 'labels' => $labels,
222
- 'description' => __( 'Custom CSS and JS code' ),
223
- 'public' => false,
224
- 'publicly_queryable' => false,
225
- 'show_ui' => true,
226
- 'show_in_menu' => true,
227
- 'menu_position' => 100,
228
- 'menu_icon' => 'dashicons-plus-alt',
229
- 'query_var' => false,
230
- 'rewrite' => array( 'slug' => 'custom-css-js' ),
231
- 'capability_type' => 'post',
232
- 'has_archive' => true,
233
- 'hierarchical' => false,
234
- 'exclude_from_search' => true,
235
- 'menu_position' => null,
236
- 'can_export' => false,
237
- 'supports' => array( 'title' )
 
238
  );
239
 
240
  register_post_type( 'custom-css-js', $args );
241
  }
242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
 
244
  }
245
 
@@ -257,55 +380,17 @@ function CustomCSSandJS() {
257
  CustomCSSandJS();
258
 
259
 
260
- /**
261
- * Delete options, posts and files on uninstall
262
- */
263
- function custom_css_js_uninstall() {
264
-
265
- delete_option( 'custom-css-js-tree' );
266
-
267
- $upload_dir = wp_upload_dir()['basedir'] . '/custom-css-js';
268
- @array_map( 'unlink', $upload_dir . '/*' );
269
- @unlink( $upload_dir );
270
-
271
- $posts = query_posts( 'post_type=custom-css-js' );
272
-
273
- if ( ! is_array( $posts ) || count( $posts ) == 0 ) {
274
- return false;
275
- }
276
-
277
- foreach ( $posts as $_post ) {
278
- wp_delete_post( $_post, true );
279
- }
280
-
281
- }
282
- register_uninstall_hook( __FILE__, 'custom_css_js_uninstall' );
283
-
284
-
285
- /**
286
- * Create the upload directory on install
287
- */
288
- function custom_css_js_install() {
289
- $upload_dir = wp_upload_dir()['basedir'] . '/custom-css-js';
290
- wp_mkdir_p( $upload_dir );
291
-
292
- // Top level blank index.php
293
- if ( ! file_exists( $upload_path . '/index.php' ) && wp_is_writable( $upload_path ) ) {
294
- $content = '<?php' . PHP_EOL . '// Silence is golden.';
295
- @file_put_contents( $upload_path . '/index.php', $content );
296
- }
297
- }
298
- register_activation_hook( __FILE__, 'custom_css_js_install' );
299
-
300
  /**
301
  * Plugin action link to Settings page
302
  */
303
  function custom_css_js_plugin_action_links( $links ) {
304
 
305
  $settings_link = '<a href="edit.php?post_type=custom-css-js">' .
306
- esc_html( __('Settings' ) ) . '</a>';
307
 
308
  return array_merge( array( $settings_link), $links );
309
 
310
  }
311
  add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), 'custom_css_js_plugin_action_links' );
 
 
3
  * Plugin Name: Simple Custom CSS and JS
4
  * Plugin URI: https://wordpress.org/plugins/custom-css-js/
5
  * Description: Easily add Custom CSS or JS to your website with an awesome editor.
6
+ * Version: 3.9
7
  * Author: Diana Burduja
8
+ * Author URI: https://www.silkypress.com/
9
  * License: GPL2
10
  *
11
+ * Text Domain: custom-css-js
12
+ * Domain Path: /languages/
13
+ *
14
+ * WC requires at least: 2.3.0
15
+ * WC tested up to: 3.2.0
16
  */
17
 
18
  if ( ! defined( 'ABSPATH' ) ) {
26
  * @class CustomCSSandJS
27
  */
28
  final class CustomCSSandJS {
29
+
 
 
 
30
  public $search_tree = false;
 
 
31
  protected static $_instance = null;
32
 
33
 
50
  * Cloning is forbidden.
51
  */
52
  public function __clone() {
53
+ _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'custom-css-js' ), '1.0' );
54
  }
55
 
56
  /**
57
  * Unserializing instances of this class is forbidden.
58
  */
59
  public function __wakeup() {
60
+ _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'custom-css-js' ), '1.0' );
61
  }
62
 
63
  /**
66
  */
67
  public function __construct() {
68
  add_action( 'init', array( $this, 'register_post_type' ) );
69
+ $this->set_constants();
70
+
71
+ if ( is_admin() ) {
72
+ $this->load_plugin_textdomain();
73
+ add_action('admin_init', array($this, 'create_roles'));
74
  include_once( 'includes/admin-screens.php' );
75
+ include_once( 'includes/admin-addons.php' );
76
+ include_once( 'includes/admin-warnings.php' );
77
+ include_once( 'includes/admin-notices.php' );
78
+ }
79
 
80
  $this->search_tree = get_option( 'custom-css-js-tree' );
81
 
83
  return false;
84
  }
85
 
86
+ if ( is_null( self::$_instance ) ) {
87
+ $this->print_code_actions();
88
+ }
89
  }
90
 
91
  /**
93
  */
94
  function print_code_actions() {
95
  foreach( $this->search_tree as $_key => $_value ) {
96
+ $action = 'wp_';
97
+ if ( strpos( $_key, 'admin' ) !== false ) {
98
+ $action = 'admin_';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  }
100
+ if ( strpos( $_key, 'login' ) !== false ) {
101
+ $action = 'login_';
102
+ }
103
+ if ( strpos( $_key, 'header' ) !== false ) {
104
+ $action .= 'head';
105
+ } else {
106
+ $action .= 'footer';
107
  }
 
108
  add_action( $action, array( $this, 'print_' . $_key ) );
109
  }
110
  }
114
  */
115
  public function __call( $function, $args ) {
116
 
117
+ if ( strpos( $function, 'print_' ) === false ) {
118
  return false;
119
  }
120
 
131
  }
132
 
133
  // print the `internal` code
134
+ if ( strpos( $function, 'internal' ) !== false ) {
135
 
136
  $before = '<!-- start Simple Custom CSS and JS -->' . PHP_EOL;
137
  $after = '<!-- end Simple Custom CSS and JS -->' . PHP_EOL;
138
+ if ( strpos( $function, 'css' ) !== false ) {
139
  $before .= '<style type="text/css">' . PHP_EOL;
140
  $after = '</style>' . PHP_EOL . $after;
141
  }
142
+ if ( strpos( $function, 'js' ) !== false ) {
143
  $before .= '<script type="text/javascript">' . PHP_EOL;
144
  $after = '</script>' . PHP_EOL . $after;
145
  }
147
 
148
  foreach( $args as $_post_id ) {
149
  if ( strstr( $_post_id, 'css' ) || strstr( $_post_id, 'js' ) ) {
150
+ @include_once( CCJ_UPLOAD_DIR . '/' . $_post_id );
151
  } else {
152
  $post = get_post( $_post_id );
153
  echo $before . $post->post_content . $after;
156
  }
157
 
158
  // link the `external` code
159
+ if ( strpos( $function, 'external' ) !== false) {
160
  $in_footer = false;
161
+ if ( strpos( $function, 'footer' ) !== false ) {
162
  $in_footer = true;
163
  }
164
 
165
+ if ( strpos( $function, 'js' ) !== false ) {
166
  foreach( $args as $_filename ) {
167
+ echo PHP_EOL . "<script type='text/javascript' src='".CCJ_UPLOAD_URL. '/' . $_filename."'></script>" . PHP_EOL;
168
  }
169
  }
170
 
171
+ if ( strpos( $function, 'css' ) !== false ) {
172
  foreach( $args as $_filename ) {
173
+ $shortfilename = preg_replace( '@\.css\?v=.*$@', '', $_filename );
174
+ echo PHP_EOL . "<link rel='stylesheet' id='".$shortfilename ."-css' href='".CCJ_UPLOAD_URL. '/' . $_filename ."' type='text/css' media='all' />" . PHP_EOL;
175
  }
176
  }
177
  }
178
+
179
+ // link the HTML code
180
+ if ( strpos( $function, 'html' ) !== false ) {
181
+ foreach( $args as $_post_id ) {
182
+ $_post_id = str_replace('.html', '', $_post_id);
183
+ $post = get_post( $_post_id );
184
+ echo $post->post_content . PHP_EOL;
185
+ }
186
+
187
+ }
188
  }
189
 
190
+
191
+ /**
192
+ * Set constants for later use
193
+ */
194
+ function set_constants() {
195
+ $dir = wp_upload_dir();
196
+ $constants = array(
197
+ 'CCJ_VERSION' => '3.8',
198
+ 'CCJ_UPLOAD_DIR' => $dir['basedir'] . '/custom-css-js',
199
+ 'CCJ_UPLOAD_URL' => $dir['baseurl'] . '/custom-css-js',
200
+ 'CCJ_PLUGIN_FILE' => __FILE__,
201
+ );
202
+ foreach( $constants as $_key => $_value ) {
203
+ if (!defined($_key)) {
204
+ define( $_key, $_value );
205
+ }
206
+ }
207
+ }
208
+
209
+
210
  /**
211
  * Create the custom-css-js post type
212
  */
213
  public function register_post_type() {
214
  $labels = array(
215
+ 'name' => _x( 'Custom Code', 'post type general name', 'custom-css-js'),
216
+ 'singular_name' => _x( 'Custom Code', 'post type singular name', 'custom-css-js'),
217
+ 'menu_name' => _x( 'Custom CSS & JS', 'admin menu', 'custom-css-js'),
218
+ 'name_admin_bar' => _x( 'Custom Code', 'add new on admin bar', 'custom-css-js'),
219
+ 'add_new' => _x( 'Add Custom Code', 'add new', 'custom-css-js'),
220
+ 'add_new_item' => __( 'Add Custom Code', 'custom-css-js'),
221
+ 'new_item' => __( 'New Custom Code', 'custom-css-js'),
222
+ 'edit_item' => __( 'Edit Custom Code', 'custom-css-js'),
223
+ 'view_item' => __( 'View Custom Code', 'custom-css-js'),
224
+ 'all_items' => __( 'All Custom Code', 'custom-css-js'),
225
+ 'search_items' => __( 'Search Custom Code', 'custom-css-js'),
226
+ 'parent_item_colon' => __( 'Parent Custom Code:', 'custom-css-js'),
227
+ 'not_found' => __( 'No Custom Code found.', 'custom-css-js'),
228
+ 'not_found_in_trash' => __( 'No Custom Code found in Trash.', 'custom-css-js')
229
+ );
230
+
231
+ $capability_type = 'custom_css';
232
+ $capabilities = array(
233
+ 'edit_post' => "edit_{$capability_type}",
234
+ 'read_post' => "read_{$capability_type}",
235
+ 'delete_post' => "delete_{$capability_type}",
236
+ 'edit_posts' => "edit_{$capability_type}s",
237
+ 'edit_others_posts' => "edit_others_{$capability_type}s",
238
+ 'publish_posts' => "publish_{$capability_type}s",
239
+ 'read' => "read",
240
+ 'delete_posts' => "delete_{$capability_type}s",
241
+ 'delete_published_posts' => "delete_published_{$capability_type}s",
242
+ 'delete_others_posts' => "delete_others_{$capability_type}s",
243
+ 'edit_published_posts' => "edit_published_{$capability_type}s",
244
+ 'create_posts' => "edit_{$capability_type}s",
245
  );
246
 
247
  $args = array(
248
+ 'labels' => $labels,
249
+ 'description' => __( 'Custom CSS and JS code', 'custom-css-js' ),
250
+ 'public' => false,
251
+ 'publicly_queryable' => false,
252
+ 'show_ui' => true,
253
+ 'show_in_menu' => true,
254
+ 'menu_position' => 100,
255
+ 'menu_icon' => 'dashicons-plus-alt',
256
+ 'query_var' => false,
257
+ 'rewrite' => array( 'slug' => 'custom-css-js' ),
258
+ 'capability_type' => $capability_type,
259
+ 'capabilities' => $capabilities,
260
+ 'has_archive' => true,
261
+ 'hierarchical' => false,
262
+ 'exclude_from_search' => true,
263
+ 'menu_position' => null,
264
+ 'can_export' => false,
265
+ 'supports' => array( 'title' )
266
  );
267
 
268
  register_post_type( 'custom-css-js', $args );
269
  }
270
 
271
+
272
+ /**
273
+ * Create roles and capabilities.
274
+ */
275
+ function create_roles() {
276
+ global $wp_roles;
277
+
278
+
279
+ if ( !current_user_can('update_plugins') )
280
+ return;
281
+
282
+ if ( ! class_exists( 'WP_Roles' ) ) {
283
+ return;
284
+ }
285
+
286
+ if ( ! isset( $wp_roles ) ) {
287
+ $wp_roles = new WP_Roles();
288
+ }
289
+
290
+ if ( isset($wp_roles->roles['css_js_designer']))
291
+ return;
292
+
293
+ // Add Web Designer role
294
+ add_role( 'css_js_designer', __( 'Web Designer', 'custom-css-js'), array(
295
+ 'level_9' => true,
296
+ 'level_8' => true,
297
+ 'level_7' => true,
298
+ 'level_6' => true,
299
+ 'level_5' => true,
300
+ 'level_4' => true,
301
+ 'level_3' => true,
302
+ 'level_2' => true,
303
+ 'level_1' => true,
304
+ 'level_0' => true,
305
+ 'read' => true,
306
+ 'read_private_pages' => true,
307
+ 'read_private_posts' => true,
308
+ 'edit_users' => true,
309
+ 'edit_posts' => true,
310
+ 'edit_pages' => true,
311
+ 'edit_published_posts' => true,
312
+ 'edit_published_pages' => true,
313
+ 'edit_private_pages' => true,
314
+ 'edit_private_posts' => true,
315
+ 'edit_others_posts' => true,
316
+ 'edit_others_pages' => true,
317
+ 'publish_posts' => true,
318
+ 'publish_pages' => true,
319
+ 'delete_posts' => true,
320
+ 'delete_pages' => true,
321
+ 'delete_private_pages' => true,
322
+ 'delete_private_posts' => true,
323
+ 'delete_published_pages' => true,
324
+ 'delete_published_posts' => true,
325
+ 'delete_others_posts' => true,
326
+ 'delete_others_pages' => true,
327
+ 'manage_categories' => true,
328
+ 'moderate_comments' => true,
329
+ 'unfiltered_html' => true,
330
+ 'upload_files' => true,
331
+ ) );
332
+
333
+ $capabilities = array();
334
+
335
+ $capability_types = array( 'custom_css' );
336
+
337
+ foreach ( $capability_types as $capability_type ) {
338
+
339
+ $capabilities[ $capability_type ] = array(
340
+ // Post type
341
+ "edit_{$capability_type}",
342
+ "read_{$capability_type}",
343
+ "delete_{$capability_type}",
344
+ "edit_{$capability_type}s",
345
+ "edit_others_{$capability_type}s",
346
+ "publish_{$capability_type}s",
347
+ "delete_{$capability_type}s",
348
+ "delete_published_{$capability_type}s",
349
+ "delete_others_{$capability_type}s",
350
+ "edit_published_{$capability_type}s",
351
+ );
352
+ }
353
+
354
+ foreach ( $capabilities as $cap_group ) {
355
+ foreach ( $cap_group as $cap ) {
356
+ $wp_roles->add_cap( 'css_js_designer', $cap );
357
+ $wp_roles->add_cap( 'administrator', $cap );
358
+ }
359
+ }
360
+ }
361
+
362
+
363
+ public function load_plugin_textdomain() {
364
+ load_plugin_textdomain( 'custom-css-js', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
365
+ }
366
 
367
  }
368
 
380
  CustomCSSandJS();
381
 
382
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  /**
384
  * Plugin action link to Settings page
385
  */
386
  function custom_css_js_plugin_action_links( $links ) {
387
 
388
  $settings_link = '<a href="edit.php?post_type=custom-css-js">' .
389
+ esc_html( __('Settings', 'custom-css-js' ) ) . '</a>';
390
 
391
  return array_merge( array( $settings_link), $links );
392
 
393
  }
394
  add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), 'custom_css_js_plugin_action_links' );
395
+
396
+
includes/admin-addons.php ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Custom CSS and JS
4
+ *
5
+ */
6
+
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ exit; // Exit if accessed directly
9
+ }
10
+
11
+ /**
12
+ * CustomCSSandJS_Addons
13
+ */
14
+ class CustomCSSandJS_Addons {
15
+
16
+ /**
17
+ * Constructor
18
+ */
19
+ public function __construct() {
20
+
21
+ // Add actions
22
+ $actions = array(
23
+ 'add_meta_boxes' => 'add_meta_boxes',
24
+ 'edit_form_advanced' => 'only_premium',
25
+ );
26
+ foreach( $actions as $_key => $_value ) {
27
+ add_action( $_key, array( $this, $_value ) );
28
+ }
29
+
30
+ }
31
+
32
+ function only_premium() {
33
+ $current_screen = get_current_screen();
34
+
35
+ if ( $current_screen->post_type != 'custom-css-js' ) {
36
+ return false;
37
+ }
38
+
39
+ ?>
40
+ <div class="ccj_only_premium ccj_only_premium-first">
41
+ <div>
42
+ <a href="https://www.silkypress.com/simple-custom-css-js-pro/?utm_source=wordpress&utm_campaign=ccj_free&utm_medium=banner" target="_blank"><?php _e('Available only in <br />Simple Custom CSS and JS Pro', 'custom-css-js'); ?></a>
43
+ </div>
44
+ </div>
45
+ <?php
46
+ }
47
+
48
+
49
+ /**
50
+ * Add the URL Preview meta box
51
+ */
52
+ function add_meta_boxes() {
53
+
54
+ add_meta_box( 'previewdiv', __('Preview', 'custom-css-js'), array( $this, 'previews_meta_box_callback' ), 'custom-css-js', 'normal' );
55
+ add_meta_box( 'url-rules', __('Apply only on these URLs', 'custom-css-js'), array( $this, 'url_rules_meta_box_callback' ), 'custom-css-js', 'normal' );
56
+ add_meta_box( 'revisionsdiv', __('Code Revisions', 'custom-css-js'), array( $this, 'revisions_meta_box_callback' ), 'custom-css-js', 'normal' );
57
+ }
58
+
59
+
60
+ /**
61
+ * The Preview meta box content
62
+ */
63
+ function previews_meta_box_callback( $post ) {
64
+ ?>
65
+ <div id="preview-action">
66
+ <div>
67
+ <input type="text" name="preview_url" id="ccj-preview_url" placeholder="<?php _e('Full URL on which to preview the changes ...', 'custom-css-js'); ?>" disabled="disabled" />
68
+ <a class="preview button button-primary button-large" id="ccj-preview"><?php _e('Preview Changes', 'custom-css-js'); ?></a>
69
+ </div>
70
+ </div>
71
+ <?php
72
+
73
+ }
74
+
75
+
76
+ /**
77
+ * Show the URL Rules metabox
78
+ */
79
+ function url_rules_meta_box_callback( $post ) {
80
+
81
+ $filters = array(
82
+ 'all' => __('All Website', 'custom-css-js'),
83
+ 'first-page' => __('First page', 'custom-css-js'),
84
+ 'contains' => __('Contains', 'custom-css-js'),
85
+ 'not-contains' => __('Not contains', 'custom-css-js'),
86
+ 'equal-to' => __('Is equal to', 'custom-css-js'),
87
+ 'not-equal-to' => __('Not equal to', 'custom-css-js'),
88
+ 'begins-with' => __('Starts with', 'custom-css-js'),
89
+ 'ends-by' => __('Ends by', 'custom-css-js'),
90
+ );
91
+ $filters_html = '';
92
+ foreach( $filters as $_key => $_value ) {
93
+ $filters_html .= '<option value="'.$_key.'">' . $_value . '</option>';
94
+ }
95
+
96
+ $applied_filters = '[{"value":"","type":"all","index":1}]';
97
+
98
+ ?>
99
+ <input type="hidden" name="scan_anchor_filters" id="wplnst-scan-anchor-filters" value='<?php echo $applied_filters; ?>' />
100
+ <table id="wplnst-elist-anchor-filters" class="wplnst-elist" cellspacing="0" cellpadding="0" border="0" data-editable="true" data-label="<?php _e('URL', 'custom-css-js'); ?>"></table>
101
+ <?php _e('URL', 'custom-css-js'); ?> <select id="wplnst-af-new-type"><?php echo $filters_html ?></select>&nbsp;
102
+ <input id="wplnst-af-new" type="text" class="regular-text" value="" placeholder="<?php _e('Text filter', 'custom-css-js'); ?>" />&nbsp;
103
+ <input class="button button-primary" type="button" id="wplnst-af-new-add" value="<?php _e('Add', 'custom-css-js'); ?>" /></td>
104
+
105
+ <?php
106
+ }
107
+
108
+
109
+
110
+ /**
111
+ * Output the revisions
112
+ */
113
+ function revisions_meta_box_callback( $post ) {
114
+ $datef = _x( 'F j, Y @ H:i:s', 'revision date format' );
115
+ $users = get_users(array('number' => 3));
116
+ $revisions = array(
117
+ array(
118
+ 'ID' => 1,
119
+ 'post_author' => $users[0]->display_name,
120
+ 'title' => date_i18n( $datef, time() - 86400 ),
121
+ ),
122
+ array(
123
+ 'ID' => 2,
124
+ 'post_author' => isset($users[1]) ? $users[1]->display_name : $users[0]->display_name,
125
+ 'title' => date_i18n( $datef, time() - 87639),
126
+ ),
127
+ array(
128
+ 'ID' => 3,
129
+ 'post_author' => isset($users[2]) ? $users[2]->display_name : $users[0]->display_name,
130
+ 'title' => date_i18n( $datef, time() - 97639),
131
+ ),
132
+ );
133
+ ?>
134
+ <table class="revisions">
135
+ <thead><tr>
136
+ <th class="revisions-compare"><?php _e('Compare', 'custom-css-js'); ?></th>
137
+ <th><?php _e('Revision', 'custom-css-js'); ?></th>
138
+ <th><?php _e('Author', 'custom-css-js'); ?></th>
139
+ <th><input type="checkbox" name="delete[]" value="all" id="ccj-delete-checkbox" /> <?php _e('Delete', 'custom-css-js'); ?></th>
140
+ <th><?php _e('Restore', 'custom-css-js'); ?></th>
141
+ </tr></thead>
142
+ <tbody>
143
+ <?php foreach( $revisions as $revision ) : ?>
144
+ <?php
145
+
146
+ $restore_url = '#';
147
+
148
+ $delete_disabled = '';
149
+ $delete_tooltip = '';
150
+ $class = '';
151
+ ?>
152
+ <tr class="<?php echo $class; ?>" id="<?php echo 'revision-row-' . $revision['ID']; ?>">
153
+ <td class="revisions-compare">
154
+ <input type="radio" name="compare_left" value="<?php echo $revision['ID']; ?>" />
155
+ <input type="radio" name="compare_right" value="<?php echo $revision['ID']; ?>" />
156
+ </td>
157
+ <td><?php echo $revision['title']; ?></td>
158
+ <td><?php echo $revision['post_author']; ?></td>
159
+ <td class="revisions-delete">
160
+ <input type="checkbox" name="delete[]" value="<?php echo $revision['ID']; ?>" <?php echo $delete_disabled . $delete_tooltip; ?>/>
161
+ </td>
162
+ <td class="revisions-restore">
163
+ <a href="<?php echo $restore_url; ?>"><?php _e('Restore', 'custom-css-js'); ?></a>
164
+ </td>
165
+ </tr>
166
+ <?php endforeach; ?>
167
+ <tr>
168
+ <td>
169
+ <input type="button" class="button-secondary" value="<?php esc_attr_e('Compare', 'custom-css-js'); ?>" id="revisions-compare-button" />
170
+ </td>
171
+ <td colspan="2" style="text-align: center;"> &uarr; This is only an example, not real data. &uarr; </td>
172
+ <td>
173
+ <input type="button" class="button-secondary" value="<?php esc_attr_e('Delete', 'custom-css-js'); ?>" id="revisions-delete-button" />
174
+ </td>
175
+ <td> &nbsp; </td>
176
+ </tr>
177
+ </tbody>
178
+ </table>
179
+ <?php
180
+ }
181
+
182
+
183
+
184
+ }
185
+
186
+ return new CustomCSSandJS_Addons();
includes/admin-notices.php ADDED
@@ -0,0 +1,221 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Custom CSS and JS
4
+ *
5
+ */
6
+
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ exit; // Exit if accessed directly
9
+ }
10
+
11
+ /**
12
+ * CustomCSSandJS_Notices
13
+ */
14
+ class CustomCSSandJS_Notices {
15
+
16
+ var $prefix = 'ccj_';
17
+ var $activation_time = '';
18
+ var $version = '';
19
+ var $dismiss_notice = '';
20
+ var $expiration_days = 2;
21
+
22
+ /**
23
+ * Constructor
24
+ */
25
+ public function __construct() {
26
+
27
+ $this->set_variables();
28
+
29
+ if ( $this->dismiss_notice == 1 ) {
30
+ return;
31
+ }
32
+
33
+ $p = $this->prefix;
34
+
35
+ add_action( 'admin_notices', array( $this, 'admin_notices' ) );
36
+ add_action( 'wp_ajax_'.$p.'_notice_dismiss', array( $this, 'notice_dismiss' ) );
37
+ }
38
+
39
+ /**
40
+ * Hooked from 'admin_notices'
41
+ */
42
+ public function admin_notices() {
43
+ $screen = get_current_screen();
44
+
45
+ if ( !isset($screen->post_type) || $screen->post_type !== 'custom-css-js' )
46
+ return;
47
+
48
+ if ( ! $notice = $this->choose_notice() )
49
+ return;
50
+
51
+ if ( time() - $this->activation_time <= 3600 )
52
+ return;
53
+
54
+ $message = $this->get_message( $notice );
55
+
56
+ $this->print_message( $notice, $message );
57
+
58
+ }
59
+
60
+ /**
61
+ * Get the options from the database or set them on install or upgrade
62
+ */
63
+ public function set_variables() {
64
+ $now = time();
65
+ $p = $this->prefix;
66
+
67
+ $this->activation_time = get_option( $p . '_activation_time', '' );
68
+ $this->version = get_option( $p.'_version', '' );
69
+ $this->dismiss_notice = get_option( $p.'_dismiss_notice', false );
70
+
71
+ if ( empty( $this->activation_time ) || version_compare( $this->version, CCJ_VERSION, '<' ) ) {
72
+ $this->activation_time = $now;
73
+ update_option( $p.'_activation_time', $now );
74
+ update_option( $p.'_version', CCJ_VERSION );
75
+ update_option( $p.'_dismiss_notice', false );
76
+ }
77
+
78
+ }
79
+
80
+ /**
81
+ * Choose which notice to be shown
82
+ */
83
+ public function choose_notice() {
84
+ $now = time();
85
+
86
+ $days_passed = ceil( ( $now - $this->activation_time ) / 86400 );
87
+
88
+ switch ( $days_passed ) {
89
+ case 0 : return '1_day';
90
+ case 1 : return '2_day';
91
+ case 2 : break; //return '3_day';
92
+ case 3 : break;
93
+ case 4 : break;
94
+ case 5 : break;
95
+ case 6 : break; // return '7_day';
96
+ case 7 : break;
97
+ case 8 : break;
98
+ case 9 : break;
99
+ case 10 : break;
100
+ case 11 : break; //return '12_day';
101
+ }
102
+ }
103
+
104
+ /**
105
+ * Get the text of the message
106
+ */
107
+ public function get_message( $notice ) {
108
+
109
+ $message = '';
110
+ $percentage = '30';
111
+ $product_name = 'Simple Custom CSS and JS PRO';
112
+
113
+ $expiration_date = $this->activation_time + ( $this->expiration_days * 86400 );
114
+ $expiration_date = date( get_option( 'date_format') , $expiration_date );
115
+
116
+ $expiration_period = date('j M', $this->activation_time - 3*86400 ) . ' - ' . date('j M', $this->activation_time + 2*86400 );
117
+
118
+
119
+ if ( $notice == '12_days' ) {
120
+ $link = 'https://www.silkypress.com/simple-custom-css-js-pro/?utm_source=wordpress&utm_campaign=ccj_free&utm_medium=banner';
121
+ } else {
122
+ $link = 'https://www.silkypress.com/simple-custom-css-js-pro/?a=' . $this->convert_numbers_letters( $this->activation_time ) . '&utm_source=wordpress&utm_campaign=ccj_free&utm_medium=banner';
123
+ }
124
+
125
+ $lower_part = sprintf( '<div style="margin-top: 7px;"><a href="%s" target="_blank">%s</a> | <a href="#" class="dismiss_notice" target="_parent">%s</a></div>', $link, __('Get your discount now', 'custom-css-js'), __('Dismiss this notice', 'custom-css-js') );
126
+
127
+ switch ( $notice ) {
128
+ case '1_day' :
129
+ $message = '<div>Only between '. $expiration_period .': <b>'.$percentage.'% Off from <a href="'.$link.'" target="_blank">'.$product_name.'</a></b> for our WordPress.org users.</div>' . $lower_part;
130
+ break;
131
+
132
+ case '2_day' :
133
+ $message = '<div><b>Limited offer ending today</b>. '.$percentage.'% Off from <a href="'.$link.'" target="_blank">'.$product_name.'</a> for our WordPress.org users. </div>' . $lower_part;
134
+ break;
135
+
136
+ case '3_day' :
137
+ $message = '<div><b>Limited offer ending today</b>. '.$percentage.'% Off from '.$product_name.' for our WordPress.org users. </div>' . $lower_part;
138
+ break;
139
+
140
+ case '7_day' :
141
+ $message = '';
142
+ break;
143
+
144
+ case '12_day' :
145
+ $message = '<div><b>Special Offer</b>: 30% Off from '.$product_name.' for our WordPress.org users.</div>' . $lower_part;
146
+ break;
147
+ }
148
+
149
+ return $message;
150
+ }
151
+
152
+
153
+
154
+ /**
155
+ * Print the message
156
+ */
157
+ public function print_message( $option_name = '', $message = '' ) {
158
+ if ( empty( $message ) || empty( $option_name ) )
159
+ return;
160
+
161
+ $p = $this->prefix;
162
+
163
+ ?>
164
+ <style type="text/css">
165
+ .<?php echo $p; ?>_note{ color: #bc1117; }
166
+ #<?php echo $p; ?>_notice { display: block; padding: }
167
+ #<?php echo $p; ?>_notice b { color: #bc1117; }
168
+ #<?php echo $p; ?>_notice a { text-decoration: none; font-weight: bold; }
169
+ #<?php echo $p; ?>_notice a.dismiss_notice { font-weight: normal; }
170
+ </style>
171
+
172
+ <script type='text/javascript'>
173
+ jQuery(function($){
174
+ $(document).on( 'click', '.<?php echo $p; ?>_notice .dismiss_notice', function() {
175
+
176
+ var data = {
177
+ action: '<?php echo $p; ?>_notice_dismiss',
178
+ option: '<?php echo $option_name; ?>'
179
+ };
180
+ $.post(ajaxurl, data, function(response ) {
181
+ $('#<?php echo $p; ?>_notice').fadeOut('slow');
182
+ });
183
+ });
184
+ });
185
+ </script>
186
+
187
+ <div id="<?php echo $p; ?>_notice" class="updated notice <?php echo $p; ?>_notice is-dismissible">
188
+ <p><?php echo $message ?></p>
189
+ <button type="button" class="notice-dismiss">
190
+ <span class="screen-reader-text"><?php _e('Dismiss this notice'); ?></span>
191
+ </button>
192
+ </div>
193
+ <?php
194
+
195
+ }
196
+
197
+ function convert_numbers_letters( $text, $from = 'numbers' ) {
198
+ $alphabet = str_split('abcdefghij');
199
+ $numbers = str_split('0123456789');
200
+
201
+ if ( $from == 'numbers' ) {
202
+ return str_replace( $numbers, $alphabet, $text );
203
+ } else {
204
+ return str_replace( $alphabet, $numbers, $text );
205
+ }
206
+ }
207
+
208
+ /**
209
+ * Ajax response for `notice_dismiss` action
210
+ */
211
+ function notice_dismiss() {
212
+ $p = $this->prefix;
213
+
214
+ update_option( $p.'_dismiss_notice', 1 );
215
+
216
+ wp_die();
217
+ }
218
+ }
219
+
220
+
221
+ return new CustomCSSandJS_Notices();
includes/admin-screens.php CHANGED
@@ -9,15 +9,10 @@ if ( ! defined( 'ABSPATH' ) ) {
9
  }
10
 
11
  /**
12
- * CustomCSSandJS_Admin
13
  */
14
  class CustomCSSandJS_Admin {
15
 
16
- /**
17
- * An instance of the CustomCSSandJS class
18
- */
19
- private $main = '';
20
-
21
  /**
22
  * Default options for a new page
23
  */
@@ -38,18 +33,67 @@ class CustomCSSandJS_Admin {
38
  * Constructor
39
  */
40
  public function __construct() {
41
- add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
42
- add_action( 'current_screen', array( $this, 'current_screen' ) );
43
- add_action( 'admin_notices', array( $this, 'add_new_buttons' ) );
44
- add_filter( 'manage_custom-css-js_posts_columns', array( $this, 'manage_custom_posts_columns' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  add_action( 'manage_custom-css-js_posts_custom_column', array( $this, 'manage_posts_columns' ), 10, 2 );
46
- add_action( 'edit_form_after_title', array( $this, 'codemirror_editor' ) );
47
- add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
48
- add_action( 'save_post', array( $this, 'options_save_meta_box_data' ) );
49
- add_action( 'trashed_post', array( $this, 'trash_post') );
50
- add_action( 'untrashed_post', array( $this, 'trash_post') );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
- $this->main = CustomCSSandJS();
53
  }
54
 
55
 
@@ -57,37 +101,104 @@ class CustomCSSandJS_Admin {
57
  * Enqueue the scripts and styles
58
  */
59
  public function admin_enqueue_scripts( $hook ) {
60
- if ( $hook != 'post-new.php' && $hook != 'post.php' )
 
 
 
 
61
  return false;
62
 
63
- $cm = plugins_url( '/', $this->main->plugin_file ). 'assets/codemirror/';
64
- $version = '1.0';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
- wp_register_script( 'codemirror', $cm . 'lib/codemirror.js', array( 'jquery' ), $version, false);
67
- wp_register_script( 'mode_js', $cm . 'mode/javascript/javascript.js', array( 'codemirror' ), $version, false);
68
- wp_register_script( 'mode_css', $cm . 'mode/css/css.js', array( 'codemirror' ), $version, false);
69
- wp_register_script( 'mode_html', $cm . 'mode/htmlmixed/htmlmixed.js', array( 'codemirror' ), $version, false);
70
- wp_register_script( 'addon_matchbrackets', $cm . 'addon/edit/matchbrackets.js', array( 'codemirror' ), $version, false );
71
 
72
- wp_enqueue_script( 'codemirror' );
73
- wp_enqueue_script( 'mode_js' );
74
- wp_enqueue_script( 'mode_css' );
75
- wp_enqueue_script( 'mode_html' );
76
- wp_enqueue_script( 'addon_matchbrackets' );
77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
 
 
 
79
 
80
- wp_register_style( 'codemirror', $cm . 'lib/codemirror.css' , array(), $version );
81
- //wp_register_style( 'codemirror_theme', $cm . 'theme/3024-night.css' , array(), $version );
 
 
 
 
 
 
82
 
 
 
 
 
 
83
 
84
- wp_enqueue_style( 'codemirror' );
85
- wp_enqueue_style( 'codemirror_theme' );
86
  }
87
 
88
  public function add_meta_boxes() {
89
- add_meta_box('custom-code-options', __('Options'), array( $this, 'custom_code_options_meta_box_callback'), 'custom-css-js', 'side', 'low');
90
-
 
91
  }
92
 
93
 
@@ -121,13 +232,15 @@ class CustomCSSandJS_Admin {
121
  return false;
122
  }
123
 
124
- if ( $current_screen->base == 'edit' ) {
125
- add_action( 'admin_head', array( $this, 'current_screen_edit' ) );
126
  }
127
 
128
- if ( $current_screen->base == 'post' ) {
129
- add_action( 'admin_head', array( $this, 'current_screen_post' ) );
130
  }
 
 
131
  }
132
 
133
 
@@ -138,85 +251,33 @@ class CustomCSSandJS_Admin {
138
  function add_new_buttons() {
139
  $current_screen = get_current_screen();
140
 
141
- if ( $current_screen->base != 'edit' || $current_screen->post_type != 'custom-css-js' ) {
142
  return false;
143
  }
144
  ?>
145
- <style type="text/css">
146
- .updated.buttons {
147
- border: none;
148
- background-color: transparent;
149
- box-shadow: none;
150
- padding: 0;
151
- margin: 15px 0 15px !important;
152
- }
153
- .custom-btn {
154
- background: #0c73b8;
155
- border-radius: 2px;
156
- color: #ffffff;
157
- font-size: 17px;
158
- padding: 10px 20px 10px 20px !important;
159
- text-decoration: none;
160
- }
161
- .custom-btn:hover {
162
- color: #fff;
163
- background: #2eaadd;
164
- text-decoration: none;
165
- }
166
- .custom-js-btn { background: #e4a228; }
167
- .custom-js-btn:hover { background: #eebf31; }
168
- .custom-php-btn { background: #e45126; }
169
- .custom-php-btn:hover { background: #f6652c; }
170
- </style>
171
  <div class="updated buttons">
172
- <a href="post-new.php?post_type=custom-css-js&language=css" class="custom-btn custom-css-btn">Add CSS code</a>
173
- <a href="post-new.php?post_type=custom-css-js&language=js" class="custom-btn custom-js-btn">Add JS code</a>
 
174
  <!-- a href="post-new.php?post_type=custom-css-js&language=php" class="custom-btn custom-php-btn">Add PHP code</a -->
175
  </div>
176
  <?php
177
  }
178
 
179
 
180
- /**
181
- * Reformat the `edit` screen
182
- */
183
- function current_screen_edit() {
184
- ?>
185
- <style type="text/css">
186
- h1 .page-title-action { display: none; }
187
- .inline.hide-if-no-js{ display: none; }
188
- .view-switch { display: none; }
189
- #modified { width: 140px; }
190
- #type.manage-column { width: 50px; }
191
- .language {
192
- background: #0c73b8;
193
- border-radius: 2px;
194
- color: #ffffff;
195
- font-size: 12px;
196
- padding: 5px 10px !important;
197
- text-decoration: none;
198
- }
199
- .language-js { background: #e4a228; }
200
- .language-php { background: #e45126; }
201
- .type.column-type, .check-column { vertical-align: middle !important; }
202
-
203
- </style>
204
- <?php
205
- }
206
-
207
-
208
 
209
  /**
210
  * Add new columns in the `edit` screen
211
  */
212
  function manage_custom_posts_columns( $columns ) {
213
  return array(
214
- 'cb' => '<input type="checkbox" />',
215
- 'type' => 'Type',
216
- 'title' => 'Title',
217
- 'author' => 'Author',
218
- 'date' => 'Date',
219
- 'modified' => 'Modified',
 
220
  );
221
  }
222
 
@@ -232,7 +293,16 @@ class CustomCSSandJS_Admin {
232
  }
233
 
234
  if ( $column == 'modified' ) {
235
- $m_time = get_the_modified_time( 'G', true, get_post( $post_id ) );
 
 
 
 
 
 
 
 
 
236
  $time_diff = time() - $m_time;
237
 
238
  if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) {
@@ -241,43 +311,183 @@ class CustomCSSandJS_Admin {
241
  $h_time = mysql2date( __( 'Y/m/d' ), $m_time );
242
  }
243
 
244
- echo $h_time;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  }
246
  }
247
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
 
249
 
250
  /**
251
  * Reformat the `post` screen
252
  */
253
  function current_screen_post() {
254
-
 
 
 
 
 
 
 
 
 
 
 
255
  if ( isset( $_GET['post'] ) ) {
256
  $action = 'Edit';
257
- $language = $this->get_options( $_GET['post'] )['language'];
258
  } else {
259
  $action = 'Add';
260
- $language = isset( $_GET['language'] ) ? $_GET['language'] : 'css';
261
  }
 
262
 
263
- $title = $action . ' ' . strtoupper( $language ) . ' code';
 
 
 
 
 
 
 
264
 
265
  ?>
266
  <script type="text/javascript">
267
  /* <![CDATA[ */
268
  jQuery(window).ready(function($){
269
- $("#wpbody-content h1").text('<?php echo $title; ?>');
270
- $("#message.updated.notice").html('<p>Code updated</p>');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  });
272
  /* ]]> */
273
  </script>
274
- <style type="text/css">
275
- .update.notice a { display: none; }
276
- </style>
277
  <?php
278
  }
279
 
280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281
 
282
  /**
283
  * Add the codemirror editor in the `post` screen
@@ -291,22 +501,54 @@ class CustomCSSandJS_Admin {
291
 
292
  if ( empty( $post->title ) && empty( $post->post_content ) ) {
293
  $new_post = true;
294
- $language = isset( $_GET['language'] ) ? $_GET['language'] : 'css';
295
  } else {
296
  $new_post = false;
297
  if ( ! isset( $_GET['post'] ) ) $_GET['post'] = $post->id;
298
- $language = $this->get_options( $_GET['post'] )['language'];
299
  }
 
300
 
301
  switch ( $language ) {
302
  case 'js' :
303
  if ( $new_post ) {
304
- $post->post_content = '/* Your code goes here */ ' . PHP_EOL . PHP_EOL;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  }
306
- $code_mirror_mode = 'javascript';
307
- $code_mirror_before = '<script type=\"text/javascript\">';
308
  $code_mirror_after = '</script>';
309
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  case 'php' :
311
  if ( $new_post ) {
312
  $post->post_content = '/* The following will be executed as if it were written in functions.php. */' . PHP_EOL . PHP_EOL;
@@ -318,68 +560,52 @@ class CustomCSSandJS_Admin {
318
  break;
319
  default :
320
  if ( $new_post ) {
321
- $post->post_content .= '.example {' . PHP_EOL;
322
- $post->post_content .= "\t" . 'color: #eee;' . PHP_EOL;
323
- $post->post_content .= '}' . PHP_EOL . PHP_EOL;
 
 
 
 
 
 
 
 
324
  }
325
- $code_mirror_mode = 'css';
326
- $code_mirror_before = '<style type=\"text/css\">';
327
  $code_mirror_after = '</style>';
328
 
329
- }
330
 
331
  ?>
332
- <style type="text/css">
333
- .page-title-action { display: none; }
334
- #minor-publishing { display: none; }
335
- #post-body #normal-sortables { min-height: 0px; }
336
- .CodeMirror {
337
- height: 405px;
338
- margin-top: 15px;
339
- border: 1px solid #ddd;
340
- box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
341
- border-bottom: none;
342
- }
343
- .CodeMirror pre { padding-left: 7px; line-height: 1.25; }
344
- .CodeMirror:before {
345
- content: "<?php echo $code_mirror_before; ?>";
346
- width: 50%;
347
- display: block;
348
- padding: 3px 6px;
349
- color: #8F8F8F;
350
- margin-left: 29px;
351
- border-left: 1px solid #ddd;
352
- }
353
- .CodeMirrorAfter {
354
- border: 1px solid #ddd;
355
- border-top: none;
356
- background-color: #f7f7f7;
357
- }
358
- .CodeMirrorAfter div {
359
- color: #8F8F8F;
360
- margin-left: 29px;
361
- border-left: 1px solid #ddd;
362
- padding: 3px 8px;
363
- background-color: #fff;
364
- }
365
- .cm-s-default .cm-atom { color: #549d18; }
366
- .cm-s-default .cm-property { color: #b62625; }
367
- .cm-s-default .cm-qualifier, .cm-s-default .cm-tag { color: #4731E4; }
368
-
369
- </style>
370
  <form style="position: relative; margin-top: .5em;">
371
- <textarea id="custom-code" name="content"><?php echo $post->post_content; ?></textarea>
372
- <div class="CodeMirrorAfter"><div><?php echo htmlentities( $code_mirror_after );?></div></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
  </form>
374
- <script>
375
- var editor = CodeMirror.fromTextArea(document.getElementById("custom-code"), {
376
- lineNumbers: true,
377
- mode: "<?php echo $code_mirror_mode; ?>",
378
- matchBrackets: true
379
- });
380
- </script>
381
- <?php
382
-
383
  }
384
 
385
 
@@ -390,108 +616,265 @@ class CustomCSSandJS_Admin {
390
  function custom_code_options_meta_box_callback( $post ) {
391
 
392
  $options = $this->get_options( $post->ID );
 
 
393
 
394
- if ( isset( $_GET['language'] ) ) {
395
- $options['language'] = $_GET['language'];
396
- }
397
-
398
- $selected = array(
399
- 'header' => '',
400
- 'footer' => '',
401
- 'internal' => '',
402
- 'external' => '',
403
- 'priority' => 5,
404
- 'frontend' => '',
405
- 'admin' => '',
406
- );
407
-
408
- if ( isset( $options['priority'] ) ) {
409
- $selected['priority'] = $options['priority'];
410
- }
411
 
412
- if ( isset( $options['type'] ) ) {
413
- $selected[ $options['type'] ] = ' checked="checked"';
414
  }
415
 
416
- if ( isset( $options['linking'] ) ) {
417
- $selected[ $options['linking'] ] = ' checked="checked"';
 
418
  }
419
 
420
- if ( isset( $options['side'] ) ) {
421
- $selected[ $options['side'] ] = ' checked="checked"';
422
- }
423
 
424
  wp_nonce_field( 'options_save_meta_box_data', 'custom-css-js_meta_box_nonce' );
425
- ?>
426
- <style type="text/css">
427
- .radio-group input { margin-top: 1px; }
428
- .radio-group label { padding: 2px 0; }
429
- .options_meta_box h3 { margin-top: 10px !important; }
430
- .radio-group { line-height: 30px; padding-left: 10px; }
431
- .radio-group .dashicons-before:before { margin: 7px 3px 0 3px; }
432
- .options_meta_box select { margin-left: 10px; }
433
- </style>
434
-
435
 
 
436
  <div class="options_meta_box">
437
- <h3>Linking type</h3>
438
- <div class="radio-group">
439
- <input type="radio" <?php echo $selected['internal']; ?>value="internal" name="custom_code_linking" id="custom_code_linking-internal"><label class="dashicons-before dashicons-editor-alignleft" for="custom_code_linking-internal"> In the HTML Document</label><br />
440
- <input type="radio" <?php echo $selected['external']; ?>value="external" name="custom_code_linking" id="custom_code_linking-external"><label class="dashicons-before dashicons-media-code" for="custom_code_linking-external"> External File</label><br />
441
- </div>
442
 
 
443
 
444
- <h3>Where</h3>
445
- <div class="radio-group">
446
- <input type="radio" <?php echo $selected['header']; ?>value="header" name="custom_code_type" id="custom_code_type-header"><label class="dashicons-before dashicons-arrow-up-alt2" for="custom_code_type-header"> Header</label><br />
447
- <input type="radio" <?php echo $selected['footer']; ?>value="footer" name="custom_code_type" id="custom_code_type-footer"><label class="dashicons-before dashicons-arrow-down-alt2" for="custom_code_type-footer"> Footer</label><br />
448
- </div>
449
 
 
 
 
 
 
 
 
450
 
451
- <?php /*
452
- <h3>Priority</h3>
453
- <select name="custom_code_priority">
454
- <?php
 
 
455
 
456
- $priorities = array( 1 => '1 highest', '2', '3', '4', '5 default', '6', '7', '8', '9', '10 lowest');
457
 
458
- foreach( $priorities as $_key => $_value ) {
459
- $checked = '';
460
- if ( $_key == $selected['priority'] ) {
461
- $checked = 'selected="selected" ';
462
  }
463
 
464
- echo "\t" . '<option value="'.$_key.'"'.$checked .'>'.$_value.'</option>' . PHP_EOL;
465
  }
466
 
 
 
467
  ?>
468
- </select>
469
- */ ?>
470
- <input type="hidden" name="custom_code_priority" value="5" />
471
 
 
472
 
 
473
 
474
- <h3>Where</h3>
475
- <div class="radio-group">
476
- <input type="radio" <?php echo $selected['frontend']; ?>value="frontend" name="custom_code_side" id="custom_code_side-frontend"><label class="dashicons-before dashicons-tagcloud" for="custom_code_side-frontend"> In Frontend</label><br />
477
- <input type="radio" <?php echo $selected['admin']; ?>value="admin" name="custom_code_side" id="custom_code_side-admin"><label class="dashicons-before dashicons-id" for="custom_code_side-admin"> In Admin</label><br />
478
  </div>
479
 
480
- <input type="hidden" name="custom_code_language" value="<?php echo $options['language']; ?>" />
481
-
482
- <div style="clear: both;"></div>
 
 
483
 
484
 
485
  <?php
486
  }
487
 
488
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
489
  /**
490
  * Save the post and the metadata
491
  */
492
  function options_save_meta_box_data( $post_id ) {
493
 
494
-
495
  // The usual checks
496
  if ( ! isset( $_POST['custom-css-js_meta_box_nonce'] ) ) {
497
  return;
@@ -514,70 +897,146 @@ class CustomCSSandJS_Admin {
514
  'type' => 'header',
515
  'linking' => 'internal',
516
  'priority' => 5,
517
- 'side' => 'frontend',
518
  'language' => 'css',
519
  );
520
 
 
 
 
 
 
 
 
 
 
 
521
  foreach( $defaults as $_field => $_default ) {
522
- $options[ $_field ] = isset( $_POST['custom_code_'.$_field] ) ? $_POST['custom_code_'.$_field] : $_default;
523
  }
524
 
525
  update_post_meta( $post_id, 'options', $options );
526
 
 
 
 
 
 
527
 
528
  // Save the Custom Code in a file in `wp-content/uploads/custom-css-js`
529
  if ( $options['linking'] == 'internal' ) {
530
-
531
- $before = '<!-- start Simple Custom CSS and JS -->' . PHP_EOL;
532
  $after = '<!-- end Simple Custom CSS and JS -->' . PHP_EOL;
533
- if ( $options['language'] = 'css' ) {
534
  $before .= '<style type="text/css">' . PHP_EOL;
535
  $after = '</style>' . PHP_EOL . $after;
536
  }
537
  if ( $options['language'] == 'js' ) {
 
538
  $before .= '<script type="text/javascript">' . PHP_EOL;
539
  $after = '</script>' . PHP_EOL . $after;
 
540
  }
541
  }
542
 
543
  if ( $options['linking'] == 'external' ) {
544
  $before = '/******* Do not edit this file *******' . PHP_EOL .
545
- 'Simple Custom CSS and JS - by Silkypress.com' . PHP_EOL .
546
  'Saved: '.date('M d Y | H:i:s').' */' . PHP_EOL;
547
  }
548
 
549
- if ( wp_is_writable( $this->main->upload_dir ) ) {
550
  $file_name = $post_id . '.' . $options['language'];
551
  $file_content = $before . stripslashes($_POST['content']) . $after;
552
- @file_put_contents( $this->main->upload_dir . '/' . $file_name , $file_content );
553
  }
554
 
555
 
556
  $this->build_search_tree();
557
  }
558
 
559
-
560
  /**
561
- * Build a tree where you can quickly find the needed custom-css-js posts
 
 
 
 
562
  */
563
- private function build_search_tree() {
564
-
565
- $posts = query_posts( 'post_type=custom-css-js&post_status=publish' );
566
 
567
- if ( ! is_array( $posts ) || count( $posts ) == 0 ) {
 
568
  return false;
569
  }
570
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
571
  $tree = array();
572
  foreach ( $posts as $_post ) {
 
 
 
 
573
  $options = $this->get_options( $_post->ID );
574
-
 
575
  $tree_branch = $options['side'] . '-' .$options['language'] . '-' . $options['type'] . '-' . $options['linking'];
576
 
577
- $tree[ $tree_branch ][] = $_post->ID . '.' . $options['language'] ;
 
 
 
 
 
 
 
578
 
579
  }
580
 
 
581
  update_option( 'custom-css-js-tree', $tree );
582
  }
583
 
@@ -588,6 +1047,146 @@ class CustomCSSandJS_Admin {
588
  $this->build_search_tree( );
589
  }
590
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
591
  }
592
 
593
  return new CustomCSSandJS_Admin();
9
  }
10
 
11
  /**
12
+ * CustomCSSandJS_Admin
13
  */
14
  class CustomCSSandJS_Admin {
15
 
 
 
 
 
 
16
  /**
17
  * Default options for a new page
18
  */
33
  * Constructor
34
  */
35
  public function __construct() {
36
+
37
+ $this->add_functions();
38
+ }
39
+
40
+ /**
41
+ * Add actions and filters
42
+ */
43
+ function add_functions() {
44
+
45
+ // Add filters
46
+ $filters = array(
47
+ 'manage_custom-css-js_posts_columns' => 'manage_custom_posts_columns',
48
+ );
49
+ foreach( $filters as $_key => $_value ) {
50
+ add_filter( $_key, array( $this, $_value ) );
51
+ }
52
+
53
+ // Add actions
54
+ $actions = array(
55
+ 'admin_menu' => 'admin_menu',
56
+ 'admin_enqueue_scripts' => 'admin_enqueue_scripts',
57
+ 'current_screen' => 'current_screen',
58
+ 'admin_notices' => 'create_uploads_directory',
59
+ 'edit_form_after_title' => 'codemirror_editor',
60
+ 'add_meta_boxes' => 'add_meta_boxes',
61
+ 'save_post' => 'options_save_meta_box_data',
62
+ 'trashed_post' => 'trash_post',
63
+ 'untrashed_post' => 'trash_post',
64
+ 'wp_loaded' => 'compatibility_shortcoder',
65
+ 'wp_ajax_ccj_active_code' => 'wp_ajax_ccj_active_code',
66
+ 'post_submitbox_start' => 'post_submitbox_start',
67
+ );
68
+ foreach( $actions as $_key => $_value ) {
69
+ add_action( $_key, array( $this, $_value ) );
70
+ }
71
+
72
+
73
+ // Add some custom actions/filters
74
  add_action( 'manage_custom-css-js_posts_custom_column', array( $this, 'manage_posts_columns' ), 10, 2 );
75
+ add_filter( 'post_row_actions', array( $this, 'post_row_actions' ), 10, 2 );
76
+ }
77
+
78
+
79
+ /**
80
+ * Add submenu pages
81
+ */
82
+ function admin_menu() {
83
+ $menu_slug = 'edit.php?post_type=custom-css-js';
84
+ $submenu_slug = 'post-new.php?post_type=custom-css-js';
85
+
86
+ remove_submenu_page( $menu_slug, $submenu_slug);
87
+
88
+ $title = __('Add Custom CSS', 'custom-css-js');
89
+ add_submenu_page( $menu_slug, $title, $title, 'publish_custom_csss', $submenu_slug .'&language=css');
90
+
91
+ $title = __('Add Custom JS', 'custom-css-js');
92
+ add_submenu_page( $menu_slug, $title, $title, 'publish_custom_csss', $submenu_slug . '&language=js');
93
+
94
+ $title = __('Add Custom HTML', 'custom-css-js');
95
+ add_submenu_page( $menu_slug, $title, $title, 'publish_custom_csss', $submenu_slug . '&language=html');
96
 
 
97
  }
98
 
99
 
101
  * Enqueue the scripts and styles
102
  */
103
  public function admin_enqueue_scripts( $hook ) {
104
+
105
+ $screen = get_current_screen();
106
+
107
+ // Only for custom-css-js post type
108
+ if ( $screen->post_type != 'custom-css-js' )
109
  return false;
110
 
111
+ // Some handy variables
112
+ $a = plugins_url( '/', CCJ_PLUGIN_FILE). 'assets';
113
+ $cm = $a . '/codemirror';
114
+ $v = CCJ_VERSION;
115
+
116
+ wp_register_script( 'ccj-admin', $a . '/ccj_admin.js', array('jquery', 'jquery-ui-resizable'), $v, false );
117
+ wp_localize_script( 'ccj-admin', 'CCJ', $this->cm_localize() );
118
+ wp_enqueue_script( 'ccj-admin' );
119
+ wp_enqueue_style( 'ccj-admin', $a . '/ccj_admin.css', array(), $v );
120
+
121
+
122
+ // Only for the new/edit Code's page
123
+ if ( $hook == 'post-new.php' || $hook == 'post.php' ) {
124
+ wp_enqueue_style( 'jquery-ui', 'https://code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css', array(), $v );
125
+ wp_enqueue_script( 'ccj-codemirror', $cm . '/lib/codemirror.js', array( 'jquery' ), $v, false);
126
+ wp_enqueue_style( 'ccj-codemirror', $cm . '/lib/codemirror.css', array(), $v );
127
+ wp_enqueue_script( 'ccj-admin_url_rules', $a . '/ccj_admin-url_rules.js', array('jquery'), $v, false );
128
+ wp_enqueue_script( 'ccj-scrollbars', $cm . '/addon/scroll/simplescrollbars.js', array('ccj-codemirror'), $v, false );
129
+ wp_enqueue_style( 'ccj-scrollbars', $cm . '/addon/scroll/simplescrollbars.css', array(), $v );
130
+
131
+ // Add the language modes
132
+ $cmm = $cm . '/mode/';
133
+ wp_enqueue_script('cm-xml', $cmm . 'xml/xml.js', array('ccj-codemirror'), $v, false);
134
+ wp_enqueue_script('cm-js', $cmm . 'javascript/javascript.js', array('ccj-codemirror'), $v, false);
135
+ wp_enqueue_script('cm-css', $cmm . 'css/css.js', array('ccj-codemirror'), $v, false);
136
+ wp_enqueue_script('cm-htmlmixed', $cmm . 'htmlmixed/htmlmixed.js', array('ccj-codemirror'), $v, false);
137
+
138
+ $cma = $cm . '/addon/';
139
+ wp_enqueue_script('cm-dialog', $cma . 'dialog/dialog.js', array('ccj-codemirror'), $v, false);
140
+ wp_enqueue_script('cm-search', $cma . 'search/search.js', array('ccj-codemirror'), $v, false);
141
+ wp_enqueue_script('cm-searchcursor', $cma . 'search/searchcursor.js',array('ccj-codemirror'), $v, false);
142
+ wp_enqueue_script('cm-jump-to-line', $cma . 'search/jump-to-line.js', array('ccj-codemirror'), $v, false);
143
+ wp_enqueue_style('cm-dialog', $cma . 'dialog/dialog.css', array(), $v );
144
+
145
+ // remove the assets from other plugins so it doesn't interfere with CodeMirror
146
+ global $wp_scripts;
147
+ if (is_array($wp_scripts->registered) && count($wp_scripts->registered) != 0) {
148
+ foreach($wp_scripts->registered as $_key => $_value) {
149
+ if (!isset($_value->src)) continue;
150
+
151
+ if (strstr($_value->src, 'wp-content/plugins') !== false && strstr($_value->src, 'plugins/custom-css-js/assets') === false) {
152
+ unset($wp_scripts->registered[$_key]);
153
+ }
154
+ }
155
+ }
156
 
157
+ }
158
+ }
 
 
 
159
 
 
 
 
 
 
160
 
161
+ /**
162
+ * Send variables to the ccj_admin.js script
163
+ */
164
+ public function cm_localize() {
165
+
166
+ $vars = array(
167
+ 'scroll' => '1',
168
+ 'active' => __('Active', 'custom-css-js'),
169
+ 'inactive' => __('Inactive', 'custom-css-js'),
170
+ 'activate' => __('Activate', 'custom-css-js'),
171
+ 'deactivate' => __('Deactivate', 'custom-css-js'),
172
+ 'active_title' => __('The code is active. Click to deactivate it', 'custom-css-js'),
173
+ 'deactive_title' => __('The code is inactive. Click to activate it', 'custom-css-js'),
174
+ );
175
 
176
+ if ( ! function_exists( 'is_plugin_active' ) ) {
177
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
178
+ }
179
 
180
+ // Plugins which conflict with the CodeMirror editor
181
+ $conflicting_plugins = array(
182
+ 'types/wpcf.php',
183
+ 'advanced-ads-code-highlighter/advanced-ads-code-highlighter.php',
184
+ 'wp-custom-backend-css/wp-custom-backend-css.php',
185
+ 'custom-css-whole-site-and-per-post/h5ab-custom-styling.php',
186
+ 'html-editor-syntax-highlighter/html-editor-syntax-highlighter.php',
187
+ );
188
 
189
+ foreach( $conflicting_plugins as $_plugin ) {
190
+ if ( is_plugin_active( $_plugin ) ) {
191
+ $vars['scroll'] = '0';
192
+ }
193
+ }
194
 
195
+ return $vars;
 
196
  }
197
 
198
  public function add_meta_boxes() {
199
+ add_meta_box('custom-code-options', __('Options', 'custom-css-js'), array( $this, 'custom_code_options_meta_box_callback'), 'custom-css-js', 'side', 'low');
200
+
201
+ remove_meta_box( 'slugdiv', 'custom-css-js', 'normal' );
202
  }
203
 
204
 
232
  return false;
233
  }
234
 
235
+ if ( $current_screen->base == 'post' ) {
236
+ add_action( 'admin_head', array( $this, 'current_screen_post' ) );
237
  }
238
 
239
+ if ( $current_screen->base == 'edit' ) {
240
+ add_action( 'admin_head', array( $this, 'current_screen_edit' ) );
241
  }
242
+
243
+ wp_deregister_script( 'autosave' );
244
  }
245
 
246
 
251
  function add_new_buttons() {
252
  $current_screen = get_current_screen();
253
 
254
+ if ( (isset($current_screen->action ) && $current_screen->action == 'add') || $current_screen->post_type != 'custom-css-js' ) {
255
  return false;
256
  }
257
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  <div class="updated buttons">
259
+ <a href="post-new.php?post_type=custom-css-js&language=css" class="custom-btn custom-css-btn"><?php _e('Add CSS code', 'custom-css-js'); ?></a>
260
+ <a href="post-new.php?post_type=custom-css-js&language=js" class="custom-btn custom-js-btn"><?php _e('Add JS code', 'custom-css-js'); ?></a>
261
+ <a href="post-new.php?post_type=custom-css-js&language=html" class="custom-btn custom-js-btn"><?php _e('Add HTML code', 'custom-css-js'); ?></a>
262
  <!-- a href="post-new.php?post_type=custom-css-js&language=php" class="custom-btn custom-php-btn">Add PHP code</a -->
263
  </div>
264
  <?php
265
  }
266
 
267
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
 
269
  /**
270
  * Add new columns in the `edit` screen
271
  */
272
  function manage_custom_posts_columns( $columns ) {
273
  return array(
274
+ 'cb' => '<input type="checkbox" />',
275
+ 'active' => '<span class="ccj-dashicons dashicons dashicons-star-empty" title="'.__('Active', 'custom-css-js') .'"></span>',
276
+ 'type' => __('Type', 'custom-css-js'),
277
+ 'title' => __('Title', 'custom-css-js'),
278
+ 'author' => __('Author', 'custom-css-js'),
279
+ 'date' => __('Date', 'custom-css-js'),
280
+ 'modified' => __('Modified', 'custom-css-js'),
281
  );
282
  }
283
 
293
  }
294
 
295
  if ( $column == 'modified' ) {
296
+ if ( ! isset( $wp_version ) ) {
297
+ include( ABSPATH . WPINC . '/version.php' );
298
+ }
299
+
300
+ if ( version_compare( $wp_version, '4.6', '>=' ) ) {
301
+ $m_time = get_the_modified_time( 'G', $post_id );
302
+ } else {
303
+ $m_time = get_the_modified_time( 'G', false, $post_id );
304
+ }
305
+
306
  $time_diff = time() - $m_time;
307
 
308
  if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) {
311
  $h_time = mysql2date( __( 'Y/m/d' ), $m_time );
312
  }
313
 
314
+ echo $h_time;
315
+ }
316
+
317
+ if ( $column == 'active' ) {
318
+ $url = wp_nonce_url( admin_url( 'admin-ajax.php?action=ccj_active_code&code_id=' . $post_id ), 'ccj-active-code-' .$post_id );
319
+ if ( $this->is_active( $post_id ) ) {
320
+ $active_title = __('The code is active. Click to deactivate it', 'custom-css-js');
321
+ $active_icon = 'dashicons-star-filled';
322
+ } else {
323
+ $active_title = __('The code is inactive. Click to activate it', 'custom-css-js');
324
+ $active_icon = 'dashicons-star-empty ccj_row';
325
+ }
326
+ echo '<a href="' . esc_url( $url ) . '" class="ccj_activate_deactivate" data-code-id="'.$post_id.'" title="'.$active_title . '">' .
327
+ '<span class="dashicons '.$active_icon.'"></span>'.
328
+ '</a>';
329
  }
330
  }
331
 
332
+ /**
333
+ * Activate/deactivate a code
334
+ *
335
+ * @return void
336
+ */
337
+ function wp_ajax_ccj_active_code() {
338
+ if ( ! isset( $_GET['code_id'] ) ) die();
339
+
340
+ $code_id = absint( $_GET['code_id'] );
341
+
342
+ $response = 'error';
343
+ if ( check_admin_referer( 'ccj-active-code-' . $code_id) ) {
344
+
345
+ if ( 'custom-css-js' === get_post_type( $code_id ) ) {
346
+ $active = get_post_meta($code_id, '_active', true );
347
+ if ( $active === false || $active === '' ) {
348
+ $active = 'yes';
349
+ }
350
+ $response = $active;
351
+ update_post_meta( $code_id, '_active', $active === 'yes' ? 'no' : 'yes' );
352
+
353
+ $this->build_search_tree();
354
+ }
355
+ }
356
+ echo $response;
357
+
358
+ die();
359
+ }
360
+
361
+ /**
362
+ * Check if a code is active
363
+ *
364
+ * @return bool
365
+ */
366
+ function is_active( $post_id ) {
367
+ return get_post_meta( $post_id, '_active', true ) !== 'no';
368
+ }
369
+
370
+ /**
371
+ * Reformat the `edit` screen
372
+ */
373
+ function current_screen_edit() {
374
+ ?>
375
+ <script type="text/javascript">
376
+ /* <![CDATA[ */
377
+ jQuery(window).ready(function($){
378
+ var h1 = '<?php _e('Custom Code', 'custom-css-js'); ?> ';
379
+ h1 += '<a href="post-new.php?post_type=custom-css-js&language=css" class="page-title-action"><?php _e('Add CSS Code', 'custom-css-js'); ?></a>';
380
+ h1 += '<a href="post-new.php?post_type=custom-css-js&language=js" class="page-title-action"><?php _e('Add JS Code', 'custom-css-js'); ?></a>';
381
+ h1 += '<a href="post-new.php?post_type=custom-css-js&language=html" class="page-title-action"><?php _e('Add HTML Code', 'custom-css-js'); ?></a>';
382
+ $("#wpbody-content h1").html(h1);
383
+ });
384
+
385
+ </script>
386
+ <?php
387
+ }
388
 
389
 
390
  /**
391
  * Reformat the `post` screen
392
  */
393
  function current_screen_post() {
394
+
395
+ $this->remove_unallowed_metaboxes();
396
+
397
+ $strings = array(
398
+ 'Add CSS Code' => __('Add CSS Code', 'custom-css-js'),
399
+ 'Add JS Code' => __('Add JS Code', 'custom-css-js'),
400
+ 'Add HTML Code' => __('Add HTML Code', 'custom-css-js'),
401
+ 'Edit CSS Code' => __('Edit CSS Code', 'custom-css-js'),
402
+ 'Edit JS Code' => __('Edit JS Code', 'custom-css-js'),
403
+ 'Edit HTML Code' => __('Edit HTML Code', 'custom-css-js'),
404
+ );
405
+
406
  if ( isset( $_GET['post'] ) ) {
407
  $action = 'Edit';
408
+ $post_id = esc_attr($_GET['post']);
409
  } else {
410
  $action = 'Add';
411
+ $post_id = false;
412
  }
413
+ $language = $this->get_language($post_id);
414
 
415
+ $title = $action . ' ' . strtoupper( $language ) . ' Code';
416
+ $title = (isset($strings[$title])) ? $strings[$title] : $strings['Add CSS Code'];
417
+
418
+ if ( $action == 'Edit' ) {
419
+ $title .= ' <a href="post-new.php?post_type=custom-css-js&language=css" class="page-title-action">'.__('Add CSS Code', 'custom-css-js') .'</a> ';
420
+ $title .= '<a href="post-new.php?post_type=custom-css-js&language=js" class="page-title-action">'.__('Add JS Code', 'custom-css-js') .'</a>';
421
+ $title .= '<a href="post-new.php?post_type=custom-css-js&language=html" class="page-title-action">'.__('Add HTML Code', 'custom-css-js') .'</a>';
422
+ }
423
 
424
  ?>
425
  <script type="text/javascript">
426
  /* <![CDATA[ */
427
  jQuery(window).ready(function($){
428
+ $("#wpbody-content h1").html('<?php echo $title; ?>');
429
+ $("#message.updated.notice").html('<p><?php _e('Code updated', 'custom-css-js'); ?></p>');
430
+
431
+ var from_top = -$("#normal-sortables").height();
432
+ if ( from_top != 0 ) {
433
+ $(".ccj_only_premium-first").css('margin-top', from_top.toString() + 'px' );
434
+ } else {
435
+ $(".ccj_only_premium-first").hide();
436
+ }
437
+
438
+ /*
439
+ $("#normal-sortables").mouseenter(function() {
440
+ $(".ccj_only_premium-first div").css('display', 'block');
441
+ }).mouseleave(function() {
442
+ $(".ccj_only_premium-first div").css('display', 'none');
443
+ });
444
+ */
445
  });
446
  /* ]]> */
447
  </script>
 
 
 
448
  <?php
449
  }
450
 
451
 
452
+ /**
453
+ * Remove unallowed metaboxes from custom-css-js edit page
454
+ *
455
+ * Use the custom-css-js-meta-boxes filter to add/remove allowed metaboxdes on the page
456
+ */
457
+ function remove_unallowed_metaboxes() {
458
+ global $wp_meta_boxes;
459
+
460
+ // Side boxes
461
+ $allowed = array( 'submitdiv', 'custom-code-options' );
462
+
463
+ $allowed = apply_filters( 'custom-css-js-meta-boxes', $allowed );
464
+
465
+ foreach( $wp_meta_boxes['custom-css-js']['side'] as $_priority => $_boxes ) {
466
+ foreach( $_boxes as $_key => $_value ) {
467
+ if ( ! in_array( $_key, $allowed ) ) {
468
+ unset( $wp_meta_boxes['custom-css-js']['side'][$_priority][$_key] );
469
+ }
470
+ }
471
+ }
472
+
473
+ // Normal boxes
474
+ $allowed = array( 'slugdiv', 'previewdiv', 'url-rules', 'revisionsdiv' );
475
+
476
+ $allowed = apply_filters( 'custom-css-js-meta-boxes-normal', $allowed );
477
+
478
+ foreach( $wp_meta_boxes['custom-css-js']['normal'] as $_priority => $_boxes ) {
479
+ foreach( $_boxes as $_key => $_value ) {
480
+ if ( ! in_array( $_key, $allowed ) ) {
481
+ unset( $wp_meta_boxes['custom-css-js']['normal'][$_priority][$_key] );
482
+ }
483
+ }
484
+ }
485
+
486
+
487
+ unset($wp_meta_boxes['custom-css-js']['advanced']);
488
+ }
489
+
490
+
491
 
492
  /**
493
  * Add the codemirror editor in the `post` screen
501
 
502
  if ( empty( $post->title ) && empty( $post->post_content ) ) {
503
  $new_post = true;
504
+ $post_id = false;
505
  } else {
506
  $new_post = false;
507
  if ( ! isset( $_GET['post'] ) ) $_GET['post'] = $post->id;
508
+ $post_id = esc_attr($_GET['post']);
509
  }
510
+ $language = $this->get_language($post_id);
511
 
512
  switch ( $language ) {
513
  case 'js' :
514
  if ( $new_post ) {
515
+ $post->post_content = __('/* Add your JavaScript code here.
516
+
517
+ If you are using the jQuery library, then don\'t forget to wrap your code inside jQuery.ready() as follows:
518
+
519
+ jQuery(document).ready(function( $ ){
520
+ // Your code in here
521
+ });
522
+
523
+ --
524
+
525
+ If you want to link a JavaScript file that resides on another server (similar to
526
+ <script src="https://example.com/your-js-file.js"></script>), then please use
527
+ the "Add HTML Code" page, as this is a HTML code that links a JavaScript file.
528
+
529
+ End of comment */ ', 'custom-css-js') . PHP_EOL . PHP_EOL;
530
  }
531
+ $code_mirror_mode = 'text/javascript';
532
+ $code_mirror_before = '<script type="text/javascript">';
533
  $code_mirror_after = '</script>';
534
  break;
535
+ case 'html' :
536
+ if ( $new_post ) {
537
+ $post->post_content = __('<!-- Add HTML code to the header or the footer.
538
+
539
+ For example, you can use the following code for loading the jQuery library from Google CDN:
540
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
541
+
542
+ or the following one for loading the Bootstrap library from MaxCDN:
543
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
544
+
545
+ -- End of the comment --> ', 'custom-css-js') . PHP_EOL . PHP_EOL;
546
+ }
547
+ $code_mirror_mode = 'html';
548
+ $code_mirror_before = '';
549
+ $code_mirror_after = '';
550
+ break;
551
+
552
  case 'php' :
553
  if ( $new_post ) {
554
  $post->post_content = '/* The following will be executed as if it were written in functions.php. */' . PHP_EOL . PHP_EOL;
560
  break;
561
  default :
562
  if ( $new_post ) {
563
+ $post->post_content = __('/* Add your CSS code here.
564
+
565
+ For example:
566
+ .example {
567
+ color: red;
568
+ }
569
+
570
+ For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp
571
+
572
+ End of comment */ ', 'custom-css-js') . PHP_EOL . PHP_EOL;
573
+
574
  }
575
+ $code_mirror_mode = 'text/css';
576
+ $code_mirror_before = '<style type="text/css">';
577
  $code_mirror_after = '</style>';
578
 
579
+ }
580
 
581
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
582
  <form style="position: relative; margin-top: .5em;">
583
+
584
+ <div class="code-mirror-before"><div><?php echo htmlentities( $code_mirror_before );?></div></div>
585
+ <textarea class="wp-editor-area" id="content" mode="<?php echo htmlentities($code_mirror_mode); ?>" name="content"><?php echo $post->post_content; ?></textarea>
586
+ <div class="code-mirror-after"><div><?php echo htmlentities( $code_mirror_after );?></div></div>
587
+
588
+ <table id="post-status-info"><tbody><tr>
589
+ <td class="autosave-info">
590
+ <span class="autosave-message">&nbsp;</span>
591
+ <?php
592
+ if ( 'auto-draft' != $post->post_status ) {
593
+ echo '<span id="last-edit">';
594
+ if ( $last_user = get_userdata( get_post_meta( $post->ID, '_edit_last', true ) ) ) {
595
+ printf(__('Last edited by %1$s on %2$s at %3$s', 'custom-css-js-pro'), esc_html( $last_user->display_name ), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
596
+ } else {
597
+ printf(__('Last edited on %1$s at %2$s', 'custom-css-js-pro'), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
598
+ }
599
+ echo '</span>';
600
+ } ?>
601
+ </td>
602
+ </tr></tbody></table>
603
+
604
+
605
+ <input type="hidden" id="update-post_<?php echo $post->ID ?>" value="<?php echo wp_create_nonce('update-post_'. $post->ID ); ?>" />
606
  </form>
607
+ <?php
608
+
 
 
 
 
 
 
 
609
  }
610
 
611
 
616
  function custom_code_options_meta_box_callback( $post ) {
617
 
618
  $options = $this->get_options( $post->ID );
619
+ if ( ! isset($options['preprocessor'] ) )
620
+ $options['preprocessor'] = 'none';
621
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
622
 
623
+ if ( isset( $_GET['language'] ) ) {
624
+ $options['language'] = $this->get_language();
625
  }
626
 
627
+ $meta = $this->get_options_meta();
628
+ if ( $options['language'] == 'html' ) {
629
+ $meta = $this->get_options_meta_html();
630
  }
631
 
 
 
 
632
 
633
  wp_nonce_field( 'options_save_meta_box_data', 'custom-css-js_meta_box_nonce' );
 
 
 
 
 
 
 
 
 
 
634
 
635
+ ?>
636
  <div class="options_meta_box">
637
+ <?php
 
 
 
 
638
 
639
+ $output = '';
640
 
641
+ foreach( $meta as $_key => $a ) {
642
+ $close_div = false;
 
 
 
643
 
644
+ if ( ($_key == 'preprocessor' && $options['language'] == 'css') ||
645
+ ($_key == 'linking' && $options['language'] == 'html') ||
646
+ $_key == 'priority' ||
647
+ $_key == 'minify' ) {
648
+ $close_div = true;
649
+ $output .= '<div class="ccj_opaque">';
650
+ }
651
 
652
+ // Don't show Pre-processors for JavaScript Codes
653
+ if ( $options['language'] == 'js' && $_key == 'preprocessor' ) {
654
+ continue;
655
+ }
656
+
657
+ $output .= '<h3>' . $a['title'] . '</h3>' . PHP_EOL;
658
 
659
+ $output .= $this->render_input( $_key, $a, $options );
660
 
661
+ if ( $close_div ) {
662
+ $output .= '</div>';
 
 
663
  }
664
 
 
665
  }
666
 
667
+ echo $output;
668
+
669
  ?>
 
 
 
670
 
671
+ <input type="hidden" name="custom_code_language" value="<?php echo $options['language']; ?>" />
672
 
673
+ <div style="clear: both;"></div>
674
 
 
 
 
 
675
  </div>
676
 
677
+ <div class="ccj_only_premium ccj_only_premium-right">
678
+ <div>
679
+ <a href="https://www.silkypress.com/simple-custom-css-js-pro/?utm_source=wordpress&utm_campaign=ccj_free&utm_medium=banner" target="_blank"><?php _e('Available only in <br />Simple Custom CSS and JS Pro', 'custom-css-js'); ?></a>
680
+ </div>
681
+ </div>
682
 
683
 
684
  <?php
685
  }
686
 
687
 
688
+ /**
689
+ * Get an array with all the information for building the code's options
690
+ */
691
+ function get_options_meta() {
692
+ $options = array(
693
+ 'linking' => array(
694
+ 'title' => __('Linking type', 'custom-css-js'),
695
+ 'type' => 'radio',
696
+ 'default' => 'internal',
697
+ 'values' => array(
698
+ 'external' => array(
699
+ 'title' => __('External File', 'custom-css-js'),
700
+ 'dashicon' => 'media-code',
701
+ ),
702
+ 'internal' => array(
703
+ 'title' => __('Internal', 'custom-css-js'),
704
+ 'dashicon' => 'editor-alignleft',
705
+ ),
706
+ ),
707
+ ),
708
+ 'type' => array(
709
+ 'title' => __('Where on page', 'custom-css-js'),
710
+ 'type' => 'radio',
711
+ 'default' => 'header',
712
+ 'values' => array(
713
+ 'header' => array(
714
+ 'title' => __('Header', 'custom-css-js'),
715
+ 'dashicon' => 'arrow-up-alt2',
716
+ ),
717
+ 'footer' => array(
718
+ 'title' => __('Footer', 'custom-css-js'),
719
+ 'dashicon' => 'arrow-down-alt2',
720
+ ),
721
+ ),
722
+ ),
723
+ 'side' => array(
724
+ 'title' => __('Where in site', 'custom-css-js'),
725
+ 'type' => 'radio',
726
+ 'default' => 'frontend',
727
+ 'values' => array(
728
+ 'frontend' => array(
729
+ 'title' => __('In Frontend', 'custom-css-js'),
730
+ 'dashicon' => 'tagcloud',
731
+ ),
732
+ 'admin' => array(
733
+ 'title' => __('In Admin', 'custom-css-js'),
734
+ 'dashicon' => 'id',
735
+ ),
736
+ 'login' => array(
737
+ 'title' => __('On Login Page', 'custom-css-js'),
738
+ 'dashicon' => 'admin-network',
739
+ ),
740
+ ),
741
+ ),
742
+ 'preprocessor' => array(
743
+ 'title' => __('CSS Preprocessor', 'custom-css-js'),
744
+ 'type' => 'radio',
745
+ 'default' => 'none',
746
+ 'values' => array(
747
+ 'none' => array(
748
+ 'title' => __('None', 'custom-css-js'),
749
+ ),
750
+ 'less' => array(
751
+ 'title' => __('Less', 'custom-css-js'),
752
+ ),
753
+ 'sass' => array(
754
+ 'title' => __('SASS (only SCSS syntax)', 'custom-css-js'),
755
+ ),
756
+ ),
757
+ 'disabled' => true,
758
+ ),
759
+ 'minify' => array(
760
+ 'title' => __('Minify the code', 'custom-css-js'),
761
+ 'type' => 'checkbox',
762
+ 'default' => false,
763
+ 'dashicon' => 'editor-contract',
764
+ 'disabled' => true,
765
+ ),
766
+ 'priority' => array(
767
+ 'title' => __('Priority', 'custom-css-js'),
768
+ 'type' => 'select',
769
+ 'default' => 5,
770
+ 'dashicon' => 'sort',
771
+ 'values' => array(
772
+ 1 => _x('1 (highest)', '1 is the highest priority', 'custom-css-js'),
773
+ 2 => '2',
774
+ 3 => '3',
775
+ 4 => '4',
776
+ 5 => '5',
777
+ 6 => '6',
778
+ 7 => '7',
779
+ 8 => '8',
780
+ 9 => '9',
781
+ 10 => _x('10 (lowest)', '10 is the lowest priority', 'custom-css-js'),
782
+ ),
783
+ 'disabled' => true,
784
+ ),
785
+ );
786
+
787
+ return $options;
788
+ }
789
+
790
+
791
+ /**
792
+ * Get an array with all the information for building the code's options
793
+ */
794
+ function get_options_meta_html() {
795
+ $options = array(
796
+ 'type' => array(
797
+ 'title' => __('Where on page', 'custom-css-js'),
798
+ 'type' => 'radio',
799
+ 'default' => 'header',
800
+ 'values' => array(
801
+ 'header' => array(
802
+ 'title' => __('Header', 'custom-css-js'),
803
+ 'dashicon' => 'arrow-up-alt2',
804
+ ),
805
+ 'footer' => array(
806
+ 'title' => __('Footer', 'custom-css-js'),
807
+ 'dashicon' => 'arrow-down-alt2',
808
+ ),
809
+ ),
810
+ ),
811
+ 'side' => array(
812
+ 'title' => __('Where in site', 'custom-css-js'),
813
+ 'type' => 'radio',
814
+ 'default' => 'frontend',
815
+ 'values' => array(
816
+ 'frontend' => array(
817
+ 'title' => __('In Frontend', 'custom-css-js'),
818
+ 'dashicon' => 'tagcloud',
819
+ ),
820
+ 'admin' => array(
821
+ 'title' => __('In Admin', 'custom-css-js'),
822
+ 'dashicon' => 'id',
823
+ ),
824
+ ),
825
+ ),
826
+ 'linking' => array(
827
+ 'title' => __('On which device', 'custom-css-js'),
828
+ 'type' => 'radio',
829
+ 'default' => 'both',
830
+ 'dashicon' => '',
831
+ 'values' => array(
832
+ 'desktop' => array(
833
+ 'title' => __('Desktop', 'custom-css-js'),
834
+ 'dashicon' => 'desktop',
835
+ ),
836
+ 'mobile' => array(
837
+ 'title' => __('Mobile', 'custom-css-js'),
838
+ 'dashicon' => 'smartphone',
839
+ ),
840
+ 'both' => array(
841
+ 'title' => __('Both', 'custom-css-js'),
842
+ 'dashicon' => 'tablet',
843
+ ),
844
+ ),
845
+ 'disabled' => true,
846
+ ),
847
+ 'priority' => array(
848
+ 'title' => __('Priority', 'custom-css-js'),
849
+ 'type' => 'select',
850
+ 'default' => 5,
851
+ 'dashicon' => 'sort',
852
+ 'values' => array(
853
+ 1 => _x('1 (highest)', '1 is the highest priority', 'custom-css-js'),
854
+ 2 => '2',
855
+ 3 => '3',
856
+ 4 => '4',
857
+ 5 => '5',
858
+ 6 => '6',
859
+ 7 => '7',
860
+ 8 => '8',
861
+ 9 => '9',
862
+ 10 => _x('10 (lowest)', '10 is the lowest priority', 'custom-css-js'),
863
+ ),
864
+ 'disabled' => true,
865
+ ),
866
+
867
+ );
868
+
869
+ return $options;
870
+ }
871
+
872
+
873
  /**
874
  * Save the post and the metadata
875
  */
876
  function options_save_meta_box_data( $post_id ) {
877
 
 
878
  // The usual checks
879
  if ( ! isset( $_POST['custom-css-js_meta_box_nonce'] ) ) {
880
  return;
897
  'type' => 'header',
898
  'linking' => 'internal',
899
  'priority' => 5,
900
+ 'side' => 'frontend',
901
  'language' => 'css',
902
  );
903
 
904
+ if ( $_POST['custom_code_language'] == 'html' ) {
905
+ $defaults = array(
906
+ 'type' => 'header',
907
+ 'linking' => 'both',
908
+ 'side' => 'frontend',
909
+ 'language' => 'html',
910
+ 'priority' => 5,
911
+ );
912
+ }
913
+
914
  foreach( $defaults as $_field => $_default ) {
915
+ $options[ $_field ] = isset( $_POST['custom_code_'.$_field] ) ? esc_attr($_POST['custom_code_'.$_field]) : $_default;
916
  }
917
 
918
  update_post_meta( $post_id, 'options', $options );
919
 
920
+ if ( $options['language'] == 'html' ) {
921
+ $this->build_search_tree();
922
+ return;
923
+ }
924
+
925
 
926
  // Save the Custom Code in a file in `wp-content/uploads/custom-css-js`
927
  if ( $options['linking'] == 'internal' ) {
928
+
929
+ $before = '<!-- start Simple Custom CSS and JS -->' . PHP_EOL;
930
  $after = '<!-- end Simple Custom CSS and JS -->' . PHP_EOL;
931
+ if ( $options['language'] == 'css' ) {
932
  $before .= '<style type="text/css">' . PHP_EOL;
933
  $after = '</style>' . PHP_EOL . $after;
934
  }
935
  if ( $options['language'] == 'js' ) {
936
+ if ( ! preg_match( '/<script\b[^>]*>([\s\S]*?)<\/script>/im', $_POST['content'] ) ) {
937
  $before .= '<script type="text/javascript">' . PHP_EOL;
938
  $after = '</script>' . PHP_EOL . $after;
939
+ }
940
  }
941
  }
942
 
943
  if ( $options['linking'] == 'external' ) {
944
  $before = '/******* Do not edit this file *******' . PHP_EOL .
945
+ 'Simple Custom CSS and JS - by Silkypress.com' . PHP_EOL .
946
  'Saved: '.date('M d Y | H:i:s').' */' . PHP_EOL;
947
  }
948
 
949
+ if ( wp_is_writable( CCJ_UPLOAD_DIR ) ) {
950
  $file_name = $post_id . '.' . $options['language'];
951
  $file_content = $before . stripslashes($_POST['content']) . $after;
952
+ @file_put_contents( CCJ_UPLOAD_DIR . '/' . $file_name , $file_content );
953
  }
954
 
955
 
956
  $this->build_search_tree();
957
  }
958
 
 
959
  /**
960
+ * Create the custom-css-js dir in uploads directory
961
+ *
962
+ * Show a message if the directory is not writable
963
+ *
964
+ * Create an empty index.php file inside
965
  */
966
+ function create_uploads_directory() {
967
+ $current_screen = get_current_screen();
 
968
 
969
+ // Check if we are editing a custom-css-js post
970
+ if ( $current_screen->base != 'post' || $current_screen->post_type != 'custom-css-js' ) {
971
  return false;
972
  }
973
 
974
+ $dir = CCJ_UPLOAD_DIR;
975
+
976
+ // Create the dir if it doesn't exist
977
+ if ( ! file_exists( $dir ) ) {
978
+ wp_mkdir_p( $dir );
979
+ }
980
+
981
+ // Show a message if it couldn't create the dir
982
+ if ( ! file_exists( $dir ) ) : ?>
983
+ <div class="notice notice-error is-dismissible">
984
+ <p><?php printf(__('The %s directory could not be created', 'custom-css-js'), '<b>custom-css-js</b>'); ?></p>
985
+ <p><?php _e('Please run the following commands in order to make the directory', 'custom-css-js'); ?>: <br /><strong>mkdir <?php echo $dir; ?>; </strong><br /><strong>chmod 777 <?php echo $dir; ?>;</strong></p>
986
+ </div>
987
+ <?php return; endif;
988
+
989
+
990
+ // Show a message if the dir is not writable
991
+ if ( ! wp_is_writable( $dir ) ) : ?>
992
+ <div class="notice notice-error is-dismissible">
993
+ <p><?php printf(__('The %s directory is not writable, therefore the CSS and JS files cannot be saved.', 'custom-css-js'), '<b>'.$dir.'</b>'); ?></p>
994
+ <p><?php _e('Please run the following command to make the directory writable', 'custom-css-js'); ?>:<br /><strong>chmod 777 <?php echo $dir; ?> </strong></p>
995
+ </div>
996
+ <?php return; endif;
997
+
998
+
999
+ // Write a blank index.php
1000
+ if ( ! file_exists( $dir. '/index.php' ) ) {
1001
+ $content = '<?php' . PHP_EOL . '// Silence is golden.';
1002
+ @file_put_contents( $dir. '/index.php', $content );
1003
+ }
1004
+ }
1005
+
1006
+
1007
+ /**
1008
+ * Build a tree where you can quickly find the needed custom-css-js posts
1009
+ *
1010
+ * @return void
1011
+ */
1012
+ private function build_search_tree() {
1013
+
1014
+ // Retrieve all the custom-css-js codes
1015
+ $posts = query_posts( 'post_type=custom-css-js&post_status=publish&nopaging=true' );
1016
+
1017
  $tree = array();
1018
  foreach ( $posts as $_post ) {
1019
+ if ( ! $this->is_active( $_post->ID ) ) {
1020
+ continue;
1021
+ }
1022
+
1023
  $options = $this->get_options( $_post->ID );
1024
+
1025
+ // Get the branch name, example: frontend-css-header-external
1026
  $tree_branch = $options['side'] . '-' .$options['language'] . '-' . $options['type'] . '-' . $options['linking'];
1027
 
1028
+ $filename = $_post->ID . '.' . $options['language'];
1029
+
1030
+ if ( $options['linking'] == 'external' ) {
1031
+ $filename .= '?v=' . rand(1, 10000);
1032
+ }
1033
+
1034
+ // Add the code file to the tree branch
1035
+ $tree[ $tree_branch ][] = $filename;
1036
 
1037
  }
1038
 
1039
+ // Save the tree in the database
1040
  update_option( 'custom-css-js-tree', $tree );
1041
  }
1042
 
1047
  $this->build_search_tree( );
1048
  }
1049
 
1050
+
1051
+ /**
1052
+ * Compatibility with `shortcoder` plugin
1053
+ */
1054
+ function compatibility_shortcoder() {
1055
+ ob_start( array( $this, 'compatibility_shortcoder_html' ) );
1056
+ }
1057
+ function compatibility_shortcoder_html( $html ) {
1058
+ if ( strpos( $html, 'QTags.addButton' ) === false ) return $html;
1059
+ if ( strpos( $html, 'codemirror/codemirror-compressed.js' ) === false ) return $html;
1060
+
1061
+ return str_replace( 'QTags.addButton', '// QTags.addButton', $html );
1062
+ }
1063
+
1064
+ /**
1065
+ * Render the checkboxes, radios, selects and inputs
1066
+ */
1067
+ function render_input( $_key, $a, $options ) {
1068
+ $name = 'custom_code_' . $_key;
1069
+ $output = '';
1070
+
1071
+ // Show radio type options
1072
+ if ( $a['type'] === 'radio' ) {
1073
+ $output .= '<div class="radio-group">' . PHP_EOL;
1074
+ foreach( $a['values'] as $__key => $__value ) {
1075
+ $selected = '';
1076
+ $id = $name . '-' . $__key;
1077
+ $dashicons = isset($__value['dashicon'] ) ? 'dashicons-before dashicons-' . $__value['dashicon'] : '';
1078
+ if ( isset( $a['disabled'] ) && $a['disabled'] ) {
1079
+ $selected = ' disabled="disabled"';
1080
+ }
1081
+ $selected .= ( $__key == $options[$_key] ) ? ' checked="checked" ' : '';
1082
+ $output .= '<input type="radio" '. $selected.'value="'.$__key.'" name="'.$name.'" id="'.$id.'">' . PHP_EOL;
1083
+ $output .= '<label class="'.$dashicons.'" for="'.$id.'"> '.$__value['title'].'</label><br />' . PHP_EOL;
1084
+ }
1085
+ $output .= '</div>' . PHP_EOL;
1086
+ }
1087
+
1088
+ // Show checkbox type options
1089
+ if ( $a['type'] == 'checkbox' ) {
1090
+ $dashicons = isset($a['dashicon'] ) ? 'dashicons-before dashicons-' . $a['dashicon'] : '';
1091
+ $selected = ( isset($options[$_key]) && $options[$_key] == '1') ? ' checked="checked" ' : '';
1092
+ if ( isset( $a['disabled'] ) && $a['disabled'] ) {
1093
+ $selected .= ' disabled="disabled"';
1094
+ }
1095
+ $output .= '<div class="radio-group">' . PHP_EOL;
1096
+ $output .= '<input type="checkbox" '.$selected.' value="1" name="'.$name.'" id="'.$name.'">' . PHP_EOL;
1097
+ $output .= '<label class="'.$dashicons.'" for="'.$name.'"> '.$a['title'].'</label>';
1098
+ $output .= '</div>' . PHP_EOL;
1099
+ }
1100
+
1101
+
1102
+ // Show select type options
1103
+ if ( $a['type'] == 'select' ) {
1104
+ $output .= '<div class="radio-group">' . PHP_EOL;
1105
+ $output .= '<select name="'.$name.'" id="'.$name.'">' . PHP_EOL;
1106
+ foreach( $a['values'] as $__key => $__value ) {
1107
+ $selected = ( isset($options[$_key]) && $options[$_key] == $__key) ? ' selected="selected"' : '';
1108
+ $output .= '<option value="'.$__key.'"'.$selected.'>' . $__value . '</option>' . PHP_EOL;
1109
+ }
1110
+ $output .= '</select>' . PHP_EOL;
1111
+ $output .= '</div>' . PHP_EOL;
1112
+ }
1113
+
1114
+
1115
+ return $output;
1116
+
1117
+ }
1118
+
1119
+
1120
+ /**
1121
+ * Get the language for the current post
1122
+ */
1123
+ function get_language( $post_id = false ) {
1124
+ if( $post_id !== false ) {
1125
+ $options = $this->get_options( $post_id );
1126
+ $language = $options['language'];
1127
+ } else {
1128
+ $language = isset( $_GET['language'] ) ? esc_attr(strtolower($_GET['language'])) : 'css';
1129
+ }
1130
+ if ( !in_array($language, array('css', 'js', 'html'))) $language = 'css';
1131
+
1132
+ return $language;
1133
+ }
1134
+
1135
+
1136
+ /**
1137
+ * Show the activate/deactivate link in the row's action area
1138
+ */
1139
+ function post_row_actions($actions, $post) {
1140
+ if ( 'custom-css-js' !== $post->post_type ) {
1141
+ return $actions;
1142
+ }
1143
+
1144
+ $url = wp_nonce_url( admin_url( 'admin-ajax.php?action=ccj_active_code&code_id=' . $post->ID), 'ccj-active-code-'. $post->ID );
1145
+ if ( $this->is_active( $post->ID) ) {
1146
+ $active_title = __('The code is active. Click to deactivate it', 'custom-css-js');
1147
+ $active_text = __('Deactivate', 'custom-css-js');
1148
+ } else {
1149
+ $active_title = __('The code is inactive. Click to activate it', 'custom-css-js');
1150
+ $active_text = __('Activate', 'custom-css-js');
1151
+ }
1152
+ $actions['activate'] = '<a href="' . esc_url( $url ) . '" title="'. $active_title . '" class="ccj_activate_deactivate" data-code-id="'.$post->ID.'">' . $active_text . '</a>';
1153
+
1154
+ return $actions;
1155
+ }
1156
+
1157
+
1158
+ /**
1159
+ * Show the activate/deactivate link in admin.
1160
+ */
1161
+ public function post_submitbox_start() {
1162
+ global $post;
1163
+
1164
+ if ( ! is_object( $post ) ) return;
1165
+
1166
+ if ( 'custom-css-js' !== $post->post_type ) return;
1167
+
1168
+ if ( !isset( $_GET['post'] ) ) return;
1169
+
1170
+ $url = wp_nonce_url( admin_url( 'admin-ajax.php?action=ccj_active_code&code_id=' . $post->ID), 'ccj-active-code-'. $post->ID );
1171
+
1172
+
1173
+ if ( $this->is_active( $post->ID) ) {
1174
+ $text = __('Active', 'custom-css-js');
1175
+ $action = __('Deactivate', 'custom-css-js');
1176
+ } else {
1177
+ $text = __('Inactive', 'custom-css-js');
1178
+ $action = __('Activate', 'custom-css-js');
1179
+ }
1180
+ ?>
1181
+ <div id="activate-action"><span style="font-weight: bold;"><?php echo $text; ?></span>
1182
+ (<a class="ccj_activate_deactivate" data-code-id="<?php echo $post->ID; ?>" href="<?php echo esc_url( $url ); ?>"><?php echo $action ?></a>)
1183
+ </div>
1184
+ <?php
1185
+ }
1186
+
1187
+
1188
+
1189
+
1190
  }
1191
 
1192
  return new CustomCSSandJS_Admin();
includes/admin-warnings.php ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Custom CSS and JS
4
+ *
5
+ */
6
+
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ exit; // Exit if accessed directly
9
+ }
10
+
11
+ /**
12
+ * CustomCSSandJS_Warnings
13
+ */
14
+ class CustomCSSandJS_Warnings {
15
+
16
+ /**
17
+ * Constructor
18
+ */
19
+ public function __construct() {
20
+
21
+ if ( ! function_exists( 'is_plugin_active' ) ) {
22
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
23
+ }
24
+
25
+ $this->check_qtranslatex();
26
+ add_action( 'wp_ajax_ccj_dismiss', array( $this, 'notice_dismiss' ) );
27
+ }
28
+
29
+ /**
30
+ * Check if qTranslate plugin is active and doesn't have the custom-css-js removed from the settings
31
+ */
32
+ function check_qtranslatex() {
33
+
34
+ if ( ! is_plugin_active( 'qtranslate-x/qtranslate.php' ) ) return false;
35
+
36
+ if ( get_option('ccj_dismiss_qtranslate') !== false ) {
37
+ return;
38
+ }
39
+
40
+ $qtranslate_post_type_excluded = get_option('qtranslate_post_type_excluded');
41
+
42
+ if ( ! is_array( $qtranslate_post_type_excluded ) || array_search( 'custom-css-js', $qtranslate_post_type_excluded ) === false ) {
43
+ var_dump( $qtranslate_post_type_excluded );
44
+ add_action( 'admin_notices', array( $this, 'check_qtranslate_notice' ) );
45
+ return;
46
+ }
47
+ }
48
+
49
+ /**
50
+ * Show a warning about qTranslate
51
+ */
52
+ function check_qtranslate_notice() {
53
+ $id = 'ccj_dismiss_qtranslate';
54
+ $class = 'notice notice-warning is-dismissible';
55
+ $message = sprintf(__( 'Please remove the <b>custom-css-js</b> post type from the <b>qTranslate settings</b> in order to avoid some malfunctions in the Simple Custom CSS & JS plugin. Check out <a href="%s" target="_blank">this screenshot</a> for more details on how to do that.', 'custom-css-js'), 'https://www.silkypress.com/wp-content/uploads/2016/08/ccj_qtranslate_compatibility.png' );
56
+
57
+ printf( '<div class="%1$s" id="%2$s"><p>%3$s</p></div>', $class, $id, $message );
58
+
59
+ $this->dismiss_js( $id );
60
+
61
+ }
62
+
63
+ /**
64
+ * Allow the dismiss button to remove the notice
65
+ */
66
+ function dismiss_js( $slug ) {
67
+ ?>
68
+ <script type='text/javascript'>
69
+ jQuery(function($){
70
+ $(document).on( 'click', '#<?php echo $slug; ?> .notice-dismiss', function() {
71
+ var data = {
72
+ action: 'ccj_dismiss',
73
+ option: '<?php echo $slug; ?>',
74
+ };
75
+ $.post(ajaxurl, data, function(response ) {
76
+ $('#<?php echo $slug; ?>').fadeOut('slow');
77
+ });
78
+ });
79
+ });
80
+ </script>
81
+ <?php
82
+ }
83
+
84
+
85
+ /**
86
+ * Ajax response for `notice_dismiss` action
87
+ */
88
+ function notice_dismiss() {
89
+
90
+ $option = $_POST['option'];
91
+
92
+ update_option( $option, 1 );
93
+
94
+ wp_die();
95
+ }
96
+
97
+ }
98
+
99
+
100
+ return new CustomCSSandJS_Warnings();
languages/custom-css-js-fr_FR.mo ADDED
Binary file
languages/custom-css-js-fr_FR.po ADDED
@@ -0,0 +1,501 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Simple Custom CSS and JS - Stable (latest release) in French (France)
2
+ # This file is distributed under the same license as the Plugins - Simple Custom CSS and JS - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: +0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: fr\n"
12
+ "Project-Id-Version: Plugins - Simple Custom CSS and JS - Stable (latest release)\n"
13
+
14
+ #: includes/admin-screens.php:496
15
+ msgid ""
16
+ "/* Add your JavaScript code here.\n"
17
+ " \n"
18
+ "If you are using the jQuery library, then don't forget to wrap your code inside jQuery.ready() as follows:\n"
19
+ "\n"
20
+ "jQuery(document).ready(function( $ ){\n"
21
+ " // Your code in here \n"
22
+ "});\n"
23
+ "\n"
24
+ "--\n"
25
+ "\n"
26
+ "If you want to link a JavaScript file that resides on another server (similar to \n"
27
+ "<script src=\"https://example.com/your-js-file.js\"></script>), then please use \n"
28
+ "the \"Add HTML Code\" page, as this is a HTML code that links a JavaScript file.\n"
29
+ "\n"
30
+ "End of comment */ "
31
+ msgstr ""
32
+ "/* Ajoutez votre code JavaScript ici.\n"
33
+ " \n"
34
+ "Si vous utilisez la bibliotheque jQuery library, noubliez pas de wrapper votre code dans le jQuery.ready() comme ceci :\n"
35
+ "\n"
36
+ "jQuery(document).ready(function( $ ){\n"
37
+ " // Votre code ici \n"
38
+ "});\n"
39
+ "\n"
40
+ "--\n"
41
+ "\n"
42
+ "Si vous voulez lier un fichier JavaScript qui se trouve sur un autre serveur (similaire a \n"
43
+ "<script src=\"https://example.com/your-js-file.js\"></script>), utilisez \n"
44
+ "la page \"Ajouter du code HTML\", car c'est du code HTML qui appelle un fichier JavaScript.\n"
45
+ "\n"
46
+ "Fin du commentaire */ "
47
+
48
+ #: includes/admin-screens.php:162 includes/admin-screens.php:1111
49
+ #: includes/admin-screens.php:1139
50
+ msgid "Deactivate"
51
+ msgstr "Désactiver"
52
+
53
+ #: includes/admin-screens.php:161 includes/admin-screens.php:1114
54
+ #: includes/admin-screens.php:1142
55
+ msgid "Activate"
56
+ msgstr "Activer"
57
+
58
+ #: includes/admin-screens.php:160 includes/admin-screens.php:1141
59
+ msgid "Inactive"
60
+ msgstr "Inactif"
61
+
62
+ #: includes/admin-screens.php:701
63
+ msgid "On Login Page"
64
+ msgstr "Sur la page de Login"
65
+
66
+ #. Author URI of the plugin/theme
67
+ msgid "https://www.silkypress.com/"
68
+ msgstr "https://www.silkypress.com/"
69
+
70
+ #. Author of the plugin/theme
71
+ msgid "Diana Burduja"
72
+ msgstr "Diana Burduja"
73
+
74
+ #. Description of the plugin/theme
75
+ msgid "Easily add Custom CSS or JS to your website with an awesome editor."
76
+ msgstr "Ajoutez facilement du code CSS et JS à votre site avec ce puissant éditeur."
77
+
78
+ #. Plugin URI of the plugin/theme
79
+ msgid "https://wordpress.org/plugins/custom-css-js/"
80
+ msgstr "https://wordpress.org/plugins/custom-css-js/"
81
+
82
+ #. Plugin Name of the plugin/theme
83
+ msgid "Simple Custom CSS and JS"
84
+ msgstr "Simple Custom CSS and JS"
85
+
86
+ #: includes/admin-warnings.php:55
87
+ msgid "Please remove the <b>custom-css-js</b> post type from the <b>qTranslate settings</b> in order to avoid some malfunctions in the Simple Custom CSS & JS plugin. Check out <a href=\"%s\" target=\"_blank\">this screenshot</a> for more details on how to do that."
88
+ msgstr "Veuillez retirer le post type <b>custom-css-js</b> de la configuration de <b>qTranslate</b> pour éviter certains effets néfastes avec Simple Custom CSS & JS plugin. Reportez vous à <a href=\"%s\" target=\"_blank\">cette image</a> pour plus de détail sur la façon de faire."
89
+
90
+ #: includes/admin-screens.php:958
91
+ msgid "Please run the following command to make the directory writable"
92
+ msgstr "Veuillez exécuter la commande suivante pour rendre le répertoire modifiable."
93
+
94
+ #: includes/admin-screens.php:957
95
+ msgid "The %s directory is not writable, therefore the CSS and JS files cannot be saved."
96
+ msgstr "Le répertoire %s n'est pas modifiable, les fichiers CSS et JS ne peuvent être sauvegardés."
97
+
98
+ #: includes/admin-screens.php:949
99
+ msgid "Please run the following commands in order to make the directory"
100
+ msgstr "Veuillez exécuter les commandes suivantes pour créer le répertoire "
101
+
102
+ #: includes/admin-screens.php:948
103
+ msgid "The %s directory could not be created"
104
+ msgstr "Le répertoire %s ne peut pas être créé"
105
+
106
+ #: includes/admin-screens.php:805
107
+ msgid "Both"
108
+ msgstr "Les deux"
109
+
110
+ #: includes/admin-screens.php:801
111
+ msgid "Mobile"
112
+ msgstr "Mobile"
113
+
114
+ #: includes/admin-screens.php:797
115
+ msgid "Desktop"
116
+ msgstr "Ordinateur"
117
+
118
+ #: includes/admin-screens.php:791
119
+ msgid "On which device"
120
+ msgstr "Sur quel appareil"
121
+
122
+ #: includes/admin-screens.php:745 includes/admin-screens.php:826
123
+ msgctxt "10 is the lowest priority"
124
+ msgid "10 (lowest)"
125
+ msgstr "10 (la plus basse)"
126
+
127
+ #: includes/admin-screens.php:736 includes/admin-screens.php:817
128
+ msgctxt "1 is the highest priority"
129
+ msgid "1 (highest)"
130
+ msgstr "1 (la plus haute)"
131
+
132
+ #: includes/admin-screens.php:731 includes/admin-screens.php:812
133
+ msgid "Priority"
134
+ msgstr "Priorité"
135
+
136
+ #: includes/admin-screens.php:724
137
+ msgid "Minify the code"
138
+ msgstr "Minifier le code"
139
+
140
+ #: includes/admin-screens.php:718
141
+ msgid "SASS (only SCSS syntax)"
142
+ msgstr "SASS (syntaxe SCSS seulement)"
143
+
144
+ #: includes/admin-screens.php:715
145
+ msgid "Less"
146
+ msgstr "Less"
147
+
148
+ #: includes/admin-screens.php:712
149
+ msgid "None"
150
+ msgstr "aucun"
151
+
152
+ #: includes/admin-screens.php:707
153
+ msgid "CSS Preprocessor"
154
+ msgstr "Préprocesseur CSS"
155
+
156
+ #: includes/admin-screens.php:697 includes/admin-screens.php:785
157
+ msgid "In Admin"
158
+ msgstr "Dans l'administration"
159
+
160
+ #: includes/admin-screens.php:693 includes/admin-screens.php:781
161
+ msgid "In Frontend"
162
+ msgstr "Sur le site"
163
+
164
+ #: includes/admin-screens.php:688 includes/admin-screens.php:776
165
+ msgid "Where in site"
166
+ msgstr "Où dans le site"
167
+
168
+ #: includes/admin-screens.php:682 includes/admin-screens.php:770
169
+ msgid "Footer"
170
+ msgstr "Pied de page"
171
+
172
+ #: includes/admin-screens.php:678 includes/admin-screens.php:766
173
+ msgid "Header"
174
+ msgstr "En-tête de page"
175
+
176
+ #: includes/admin-screens.php:673 includes/admin-screens.php:761
177
+ msgid "Where on page"
178
+ msgstr "Où dans la page"
179
+
180
+ #: includes/admin-screens.php:667
181
+ msgid "Internal"
182
+ msgstr "Interne"
183
+
184
+ #: includes/admin-screens.php:663
185
+ msgid "External File"
186
+ msgstr "Fichier externe"
187
+
188
+ #: includes/admin-screens.php:658
189
+ msgid "Linking type"
190
+ msgstr "Type de liaison"
191
+
192
+ #: includes/admin-screens.php:544
193
+ msgid ""
194
+ "/* Add your CSS code here.\n"
195
+ " \n"
196
+ "For example:\n"
197
+ ".example {\n"
198
+ " color: red;\n"
199
+ "}\n"
200
+ "\n"
201
+ "For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp\n"
202
+ "\n"
203
+ "End of comment */ "
204
+ msgstr ""
205
+ "/* Ajouter votre code CSS ici.\n"
206
+ " \n"
207
+ "Par exemple:\n"
208
+ ".exemple {\n"
209
+ " color: red;\n"
210
+ "}\n"
211
+ "\n"
212
+ "Pour améliorer vos connaissances en CSS, visitez http://www.w3schools.com/css/css_syntax.asp\n"
213
+ "\n"
214
+ "Fin du commentaire */ "
215
+
216
+ #: includes/admin-screens.php:518
217
+ msgid ""
218
+ "<!-- Add HTML code to the header or the footer. \n"
219
+ "\n"
220
+ "For example, you can use the following code for loading the jQuery library from Google CDN:\n"
221
+ "<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js\"></script>\n"
222
+ "\n"
223
+ "or the following one for loading the Bootstrap library from MaxCDN:\n"
224
+ "<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">\n"
225
+ "\n"
226
+ "-- End of the comment --> "
227
+ msgstr ""
228
+ "<!-- Ajoutez du code HTML dans l'en-tete ou le pied. \n"
229
+ "\n"
230
+ "Par exemple, utilisez le code suivant pour charger la bibliotheque jQuery depuis le CDN de Google :\n"
231
+ "<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js\"></script>\n"
232
+ "\n"
233
+ "ou celui-ci pour charger la bibliotheque Bootstrap depuis MaxCDN:\n"
234
+ "<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">\n"
235
+ "\n"
236
+ "-- Fin du commentaire --> "
237
+
238
+ #: includes/admin-screens.php:410
239
+ msgid "Code updated"
240
+ msgstr "Code mis à jour"
241
+
242
+ #: includes/admin-screens.php:372 includes/admin-screens.php:402
243
+ msgid "Add HTML Code"
244
+ msgstr "Ajouter du code HTML"
245
+
246
+ #: includes/admin-screens.php:371 includes/admin-screens.php:401
247
+ msgid "Add JS Code"
248
+ msgstr "Ajouter du code JS"
249
+
250
+ #: includes/admin-screens.php:370 includes/admin-screens.php:400
251
+ msgid "Add CSS Code"
252
+ msgstr "Ajouter du code CSS"
253
+
254
+ #: includes/admin-screens.php:369
255
+ msgid "Custom Code"
256
+ msgstr "Code personnalisé"
257
+
258
+ #: includes/admin-screens.php:164 includes/admin-screens.php:314
259
+ #: includes/admin-screens.php:1113
260
+ msgid "The code is inactive. Click to activate it"
261
+ msgstr "Le code est inactif. Cliquez pour l'activer"
262
+
263
+ #: includes/admin-screens.php:163 includes/admin-screens.php:311
264
+ #: includes/admin-screens.php:1110
265
+ msgid "The code is active. Click to deactivate it"
266
+ msgstr "Le code est actif. Cliquez pour le désactiver "
267
+
268
+ #: includes/admin-screens.php:302
269
+ msgid "Y/m/d"
270
+ msgstr "Y/m/d"
271
+
272
+ #: includes/admin-screens.php:300
273
+ msgid "%s ago"
274
+ msgstr "Il y a %s"
275
+
276
+ #: includes/admin-screens.php:271
277
+ msgid "Modified"
278
+ msgstr "Modifié"
279
+
280
+ #: includes/admin-screens.php:270
281
+ msgid "Date"
282
+ msgstr "Date"
283
+
284
+ #: includes/admin-screens.php:268
285
+ msgid "Title"
286
+ msgstr "Titre"
287
+
288
+ #: includes/admin-screens.php:267
289
+ msgid "Type"
290
+ msgstr "Type"
291
+
292
+ #: includes/admin-screens.php:159 includes/admin-screens.php:266
293
+ #: includes/admin-screens.php:1138
294
+ msgid "Active"
295
+ msgstr "Actif"
296
+
297
+ #: includes/admin-screens.php:252
298
+ msgid "Add HTML code"
299
+ msgstr "Ajouter du code HTML"
300
+
301
+ #: includes/admin-screens.php:251
302
+ msgid "Add JS code"
303
+ msgstr "Ajouter du code JS"
304
+
305
+ #: includes/admin-screens.php:250
306
+ msgid "Add CSS code"
307
+ msgstr "Ajouter du code CSS"
308
+
309
+ #: includes/admin-screens.php:190
310
+ msgid "Options"
311
+ msgstr "Options"
312
+
313
+ #: includes/admin-screens.php:94
314
+ msgid "Add Custom HTML"
315
+ msgstr "Ajouter du HTML personnalisé"
316
+
317
+ #: includes/admin-screens.php:91
318
+ msgid "Add Custom JS"
319
+ msgstr "Ajouter du JS personnalisé"
320
+
321
+ #: includes/admin-screens.php:88
322
+ msgid "Add Custom CSS"
323
+ msgstr "Ajouter du CSS personnalisé"
324
+
325
+ #: includes/admin-notices.php:125 includes/admin-notices.php:190
326
+ msgid "Dismiss this notice"
327
+ msgstr "Effacer cette notification"
328
+
329
+ #: includes/admin-notices.php:125
330
+ msgid "Get your discount now"
331
+ msgstr "Obtenez votre remise maintenant"
332
+
333
+ #: includes/admin-addons.php:140 includes/admin-addons.php:163
334
+ msgid "Restore"
335
+ msgstr "Restaurer"
336
+
337
+ #: includes/admin-addons.php:139 includes/admin-addons.php:173
338
+ msgid "Delete"
339
+ msgstr "Effacer"
340
+
341
+ #: includes/admin-addons.php:138 includes/admin-screens.php:269
342
+ msgid "Author"
343
+ msgstr "Auteur"
344
+
345
+ #: includes/admin-addons.php:137
346
+ msgid "Revision"
347
+ msgstr "Révision"
348
+
349
+ #: includes/admin-addons.php:136 includes/admin-addons.php:169
350
+ msgid "Compare"
351
+ msgstr "Comparer"
352
+
353
+ #: includes/admin-addons.php:114
354
+ msgctxt "revision date format"
355
+ msgid "F j, Y @ H:i:s"
356
+ msgstr "F j, Y @ H:i:s"
357
+
358
+ #: includes/admin-addons.php:103
359
+ msgid "Add"
360
+ msgstr "Ajouter"
361
+
362
+ #: includes/admin-addons.php:102
363
+ msgid "Text filter"
364
+ msgstr "Filtre de texte"
365
+
366
+ #: includes/admin-addons.php:100 includes/admin-addons.php:101
367
+ msgid "URL"
368
+ msgstr "URL"
369
+
370
+ #: includes/admin-addons.php:89
371
+ msgid "Ends by"
372
+ msgstr "Se termine par"
373
+
374
+ #: includes/admin-addons.php:88
375
+ msgid "Starts with"
376
+ msgstr "Commence par"
377
+
378
+ #: includes/admin-addons.php:87
379
+ msgid "Not equal to"
380
+ msgstr "Différent de"
381
+
382
+ #: includes/admin-addons.php:86
383
+ msgid "Is equal to"
384
+ msgstr "Egal à"
385
+
386
+ #: includes/admin-addons.php:85
387
+ msgid "Not contains"
388
+ msgstr "Ne contient pas"
389
+
390
+ #: includes/admin-addons.php:84
391
+ msgid "Contains"
392
+ msgstr "Contient"
393
+
394
+ #: includes/admin-addons.php:83
395
+ msgid "First page"
396
+ msgstr "Première page"
397
+
398
+ #: includes/admin-addons.php:82
399
+ msgid "All Website"
400
+ msgstr "Tout le site"
401
+
402
+ #: includes/admin-addons.php:68
403
+ msgid "Preview Changes"
404
+ msgstr "Prévisualiser"
405
+
406
+ #: includes/admin-addons.php:67
407
+ msgid "Full URL on which to preview the changes ..."
408
+ msgstr "URL où prévisualiser les modifications ..."
409
+
410
+ #: includes/admin-addons.php:56
411
+ msgid "Code Revisions"
412
+ msgstr "Révisions du code"
413
+
414
+ #: includes/admin-addons.php:55
415
+ msgid "Apply only on these URLs"
416
+ msgstr "Appliquer seulement à ces URLs"
417
+
418
+ #: includes/admin-addons.php:54
419
+ msgid "Preview"
420
+ msgstr "Prévisualiser"
421
+
422
+ #: includes/admin-addons.php:42 includes/admin-screens.php:643
423
+ msgid "Available only in <br />Simple Custom CSS and JS Pro"
424
+ msgstr "Uniquement disponible dans <br />Simple Custom CSS and JS Pro"
425
+
426
+ #: custom-css-js.php:387
427
+ msgid "Settings"
428
+ msgstr "Configuration"
429
+
430
+ #: custom-css-js.php:292
431
+ msgid "Web Designer"
432
+ msgstr "Designer Web"
433
+
434
+ #: custom-css-js.php:247
435
+ msgid "Custom CSS and JS code"
436
+ msgstr "Code CSS et JS personnalisé "
437
+
438
+ #: custom-css-js.php:226
439
+ msgid "No Custom Code found in Trash."
440
+ msgstr "Aucun code personnalisé trouvé dans la corbeille."
441
+
442
+ #: custom-css-js.php:225
443
+ msgid "No Custom Code found."
444
+ msgstr "Aucun code personnalisé trouvé."
445
+
446
+ #: custom-css-js.php:224
447
+ msgid "Parent Custom Code:"
448
+ msgstr "Code personnalisé parent :"
449
+
450
+ #: custom-css-js.php:223
451
+ msgid "Search Custom Code"
452
+ msgstr "Rechercher du code personnalisé"
453
+
454
+ #: custom-css-js.php:222
455
+ msgid "All Custom Code"
456
+ msgstr "Tous les codes personnalisés"
457
+
458
+ #: custom-css-js.php:221
459
+ msgid "View Custom Code"
460
+ msgstr "Voir le code personnalisé"
461
+
462
+ #: custom-css-js.php:220
463
+ msgid "Edit Custom Code"
464
+ msgstr "Modifier le code personnalisé"
465
+
466
+ #: custom-css-js.php:219
467
+ msgid "New Custom Code"
468
+ msgstr "Nouveau code personnalisé"
469
+
470
+ #: custom-css-js.php:218
471
+ msgid "Add Custom Code"
472
+ msgstr "Ajouter du code personnalisé "
473
+
474
+ #: custom-css-js.php:217
475
+ msgctxt "add new"
476
+ msgid "Add Custom Code"
477
+ msgstr "Ajouter du code personnalisé"
478
+
479
+ #: custom-css-js.php:216
480
+ msgctxt "add new on admin bar"
481
+ msgid "Custom Code"
482
+ msgstr "Code personnalisé"
483
+
484
+ #: custom-css-js.php:215
485
+ msgctxt "admin menu"
486
+ msgid "Custom CSS & JS"
487
+ msgstr "CSS et JS personnalisés"
488
+
489
+ #: custom-css-js.php:214
490
+ msgctxt "post type singular name"
491
+ msgid "Custom Code"
492
+ msgstr "Code personnalisé"
493
+
494
+ #: custom-css-js.php:213
495
+ msgctxt "post type general name"
496
+ msgid "Custom Code"
497
+ msgstr "Code personnalisé"
498
+
499
+ #: custom-css-js.php:51 custom-css-js.php:58
500
+ msgid "Cheatin&#8217; huh?"
501
+ msgstr "Cheatin&#8217; huh?"
languages/custom-css-js-pl_PL.mo ADDED
Binary file
languages/custom-css-js-pl_PL.po ADDED
@@ -0,0 +1,450 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - Simple Custom CSS and JS - Stable (latest release) in Polish
2
+ # This file is distributed under the same license as the Plugins - Simple Custom CSS and JS - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: +0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/2.4.0-alpha\n"
11
+ "Language: pl\n"
12
+ "Project-Id-Version: Plugins - Simple Custom CSS and JS - Stable (latest release)\n"
13
+
14
+ #. Author URI of the plugin/theme
15
+ msgid "https://www.silkypress.com/"
16
+ msgstr "https://www.silkypress.com/"
17
+
18
+ #. Author of the plugin/theme
19
+ msgid "Diana Burduja"
20
+ msgstr "Diana Burduja"
21
+
22
+ #. Description of the plugin/theme
23
+ msgid "Easily add Custom CSS or JS to your website with an awesome editor."
24
+ msgstr "Dodawaj wstawki z własnym kodem CSS lub JS do swojej strony w łatwy sposób z użyciem wygodnego edytora."
25
+
26
+ #. Plugin URI of the plugin/theme
27
+ msgid "https://wordpress.org/plugins/custom-css-js/"
28
+ msgstr "https://pl.wordpress.org/plugins/custom-css-js/"
29
+
30
+ #. Plugin Name of the plugin/theme
31
+ msgid "Simple Custom CSS and JS"
32
+ msgstr "Simple Custom CSS and JS"
33
+
34
+ #: includes/admin-warnings.php:55
35
+ msgid "Please remove the <b>custom-css-js</b> post type from the <b>qTranslate settings</b> in order to avoid some malfunctions in the Simple Custom CSS & JS plugin. Check out <a href=\"%s\" target=\"_blank\">this screenshot</a> for more details on how to do that."
36
+ msgstr "Proszę usuń typ postu <b>custom-css-js</b> z <b>ustawień qTranslate</b>, aby uniknąć problemów z zapisywaniem wstawek we wtyczce Simple Custom CSS & JS. Zobacz <a href=\"%s\" target=\"_blank\">ten zrzut ekranu</a> by dowiedzieć się, jak to zrobić."
37
+
38
+ #: includes/admin-screens.php:958
39
+ msgid "Please run the following command to make the directory writable"
40
+ msgstr "Proszę wykonaj poniższą komendę, aby uczynić katalog zapisywalnym"
41
+
42
+ #: includes/admin-screens.php:957
43
+ msgid "The %s directory is not writable, therefore the CSS and JS files cannot be saved."
44
+ msgstr "Katalog %s nie umożliwia zapisu, dlatego pliki CSS oraz JS nie mogą zostać zapisane."
45
+
46
+ #: includes/admin-screens.php:949
47
+ msgid "Please run the following commands in order to make the directory"
48
+ msgstr "Uruchom proszę poniższe komendy aby utworzyć folder"
49
+
50
+ #: includes/admin-screens.php:948
51
+ msgid "The %s directory could not be created"
52
+ msgstr "Folder %s nie mógł zostać utworzony"
53
+
54
+ #: includes/admin-screens.php:805
55
+ msgid "Both"
56
+ msgstr "Oba urządzenia"
57
+
58
+ #: includes/admin-screens.php:801
59
+ msgid "Mobile"
60
+ msgstr "Urządzenia mobilne"
61
+
62
+ #: includes/admin-screens.php:797
63
+ msgid "Desktop"
64
+ msgstr "Komputer stacjonarny"
65
+
66
+ #: includes/admin-screens.php:791
67
+ msgid "On which device"
68
+ msgstr "Na jakim urządzeniu"
69
+
70
+ #: includes/admin-screens.php:745 includes/admin-screens.php:826
71
+ msgctxt "10 is the lowest priority"
72
+ msgid "10 (lowest)"
73
+ msgstr "10 (najniższy)"
74
+
75
+ #: includes/admin-screens.php:736 includes/admin-screens.php:817
76
+ msgctxt "1 is the highest priority"
77
+ msgid "1 (highest)"
78
+ msgstr "1 (najwyższy)"
79
+
80
+ #: includes/admin-screens.php:731 includes/admin-screens.php:812
81
+ msgid "Priority"
82
+ msgstr "Priorytet"
83
+
84
+ #: includes/admin-screens.php:724
85
+ msgid "Minify the code"
86
+ msgstr "Zredukuj kod"
87
+
88
+ #: includes/admin-screens.php:718
89
+ msgid "SASS (only SCSS syntax)"
90
+ msgstr "SASS (tylko składnia SCSS)"
91
+
92
+ #: includes/admin-screens.php:715
93
+ msgid "Less"
94
+ msgstr "Less"
95
+
96
+ #: includes/admin-screens.php:712
97
+ msgid "None"
98
+ msgstr "Brak"
99
+
100
+ #: includes/admin-screens.php:707
101
+ msgid "CSS Preprocessor"
102
+ msgstr "Preprocesor CSS"
103
+
104
+ #: includes/admin-screens.php:697 includes/admin-screens.php:785
105
+ msgid "In Admin"
106
+ msgstr "Panel admina"
107
+
108
+ #: includes/admin-screens.php:693 includes/admin-screens.php:781
109
+ msgid "In Frontend"
110
+ msgstr "Witryna"
111
+
112
+ #: includes/admin-screens.php:688 includes/admin-screens.php:776
113
+ msgid "Where in site"
114
+ msgstr "Gdzie na stronie"
115
+
116
+ #: includes/admin-screens.php:682 includes/admin-screens.php:770
117
+ msgid "Footer"
118
+ msgstr "Stopka"
119
+
120
+ #: includes/admin-screens.php:678 includes/admin-screens.php:766
121
+ msgid "Header"
122
+ msgstr "Nagłówek"
123
+
124
+ #: includes/admin-screens.php:673 includes/admin-screens.php:761
125
+ msgid "Where on page"
126
+ msgstr "Gdzie w kodzie strony"
127
+
128
+ #: includes/admin-screens.php:667
129
+ msgid "Internal"
130
+ msgstr "Wewnętrzne"
131
+
132
+ #: includes/admin-screens.php:663
133
+ msgid "External File"
134
+ msgstr "Zewnętrzny plik"
135
+
136
+ #: includes/admin-screens.php:658
137
+ msgid "Linking type"
138
+ msgstr "Linkowanie"
139
+
140
+ #: includes/admin-screens.php:544
141
+ msgid ""
142
+ "/* Add your CSS code here.\n"
143
+ " \n"
144
+ "For example:\n"
145
+ ".example {\n"
146
+ " color: red;\n"
147
+ "}\n"
148
+ "\n"
149
+ "For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp\n"
150
+ "\n"
151
+ "End of comment */ "
152
+ msgstr ""
153
+ "/* Dodaj swój kod CSS tutaj.\n"
154
+ " \n"
155
+ "Na przykład:\n"
156
+ ".przyklad {\n"
157
+ " color: red;\n"
158
+ "}\n"
159
+ "\n"
160
+ "Sprawdź poniższą stronę, jeśli chcesz poszerzyć swoją wiedzę nt. CSS:\n"
161
+ "http://www.w3schools.com/css/css_syntax.asp\n"
162
+ "\n"
163
+ "Koniec komentarza */ "
164
+
165
+ #: includes/admin-screens.php:518
166
+ msgid ""
167
+ "<!-- Add HTML code to the header or the footer. \n"
168
+ "\n"
169
+ "For example, you can use the following code for loading the jQuery library from Google CDN:\n"
170
+ "<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js\"></script>\n"
171
+ "\n"
172
+ "or the following one for loading the Bootstrap library from MaxCDN:\n"
173
+ "<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">\n"
174
+ "\n"
175
+ "-- End of the comment --> "
176
+ msgstr ""
177
+ "<!-- Dodaj swój kod HTML do nagłówka lub stopki. \n"
178
+ "\n"
179
+ "Na przykład możesz użyć poniższego kodu aby załadować bibliotekę jQuery z Google CDN:\n"
180
+ "<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js\"></script>\n"
181
+ "\n"
182
+ "lub poniższego kodu do załadowania biblioteki Bootstrap z MaxCDN:\n"
183
+ "<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">\n"
184
+ "\n"
185
+ "-- Koniec komentarza --> "
186
+
187
+ #: includes/admin-screens.php:410
188
+ msgid "Code updated"
189
+ msgstr "Kod wstawki zaktualizowany"
190
+
191
+ #: includes/admin-screens.php:372 includes/admin-screens.php:402
192
+ msgid "Add HTML Code"
193
+ msgstr "Dodaj kod HTML"
194
+
195
+ #: includes/admin-screens.php:371 includes/admin-screens.php:401
196
+ msgid "Add JS Code"
197
+ msgstr "Dodaj kod JS"
198
+
199
+ #: includes/admin-screens.php:370 includes/admin-screens.php:400
200
+ msgid "Add CSS Code"
201
+ msgstr "Dodaj kod CSS"
202
+
203
+ #: includes/admin-screens.php:369
204
+ msgid "Custom Code"
205
+ msgstr "Wstawki kodu"
206
+
207
+ #: includes/admin-screens.php:164 includes/admin-screens.php:314
208
+ #: includes/admin-screens.php:1113
209
+ msgid "The code is inactive. Click to activate it"
210
+ msgstr "Kod jest nieaktywny. Kliknij tutaj, aby go aktywować"
211
+
212
+ #: includes/admin-screens.php:163 includes/admin-screens.php:311
213
+ #: includes/admin-screens.php:1110
214
+ msgid "The code is active. Click to deactivate it"
215
+ msgstr "Kod jest aktywny. Kliknij tutaj, aby go dezaktywować"
216
+
217
+ #: includes/admin-screens.php:302
218
+ msgid "Y/m/d"
219
+ msgstr "Y/m/d"
220
+
221
+ #: includes/admin-screens.php:300
222
+ msgid "%s ago"
223
+ msgstr "%s temu"
224
+
225
+ #: includes/admin-screens.php:271
226
+ msgid "Modified"
227
+ msgstr "Data modyfikacji"
228
+
229
+ #: includes/admin-screens.php:270
230
+ msgid "Date"
231
+ msgstr "Data utworzenia"
232
+
233
+ #: includes/admin-screens.php:268
234
+ msgid "Title"
235
+ msgstr "Tytuł"
236
+
237
+ #: includes/admin-screens.php:267
238
+ msgid "Type"
239
+ msgstr "Typ kodu"
240
+
241
+ #: includes/admin-screens.php:159 includes/admin-screens.php:266
242
+ #: includes/admin-screens.php:1138
243
+ msgid "Active"
244
+ msgstr "Czy kod jest aktywny?"
245
+
246
+ #: includes/admin-screens.php:252
247
+ msgid "Add HTML code"
248
+ msgstr "Dodaj kod HTML"
249
+
250
+ #: includes/admin-screens.php:251
251
+ msgid "Add JS code"
252
+ msgstr "Dodaj kod JS"
253
+
254
+ #: includes/admin-screens.php:250
255
+ msgid "Add CSS code"
256
+ msgstr "Dodaj kod CSS"
257
+
258
+ #: includes/admin-screens.php:190
259
+ msgid "Options"
260
+ msgstr "Opcje"
261
+
262
+ #: includes/admin-screens.php:94
263
+ msgid "Add Custom HTML"
264
+ msgstr "Dodaj wstawkę HTML"
265
+
266
+ #: includes/admin-screens.php:91
267
+ msgid "Add Custom JS"
268
+ msgstr "Dodaj wstawkę JS"
269
+
270
+ #: includes/admin-screens.php:88
271
+ msgid "Add Custom CSS"
272
+ msgstr "Dodaj wstawkę CSS"
273
+
274
+ #: includes/admin-notices.php:125 includes/admin-notices.php:190
275
+ msgid "Dismiss this notice"
276
+ msgstr "Odrzuć wiadomość"
277
+
278
+ #: includes/admin-notices.php:125
279
+ msgid "Get your discount now"
280
+ msgstr "Uzyskaj rabat"
281
+
282
+ #: includes/admin-addons.php:140 includes/admin-addons.php:163
283
+ msgid "Restore"
284
+ msgstr "Przywróć wersję"
285
+
286
+ #: includes/admin-addons.php:139 includes/admin-addons.php:173
287
+ msgid "Delete"
288
+ msgstr "Usuń wersję"
289
+
290
+ #: includes/admin-addons.php:138 includes/admin-screens.php:269
291
+ msgid "Author"
292
+ msgstr "Autor"
293
+
294
+ #: includes/admin-addons.php:137
295
+ msgid "Revision"
296
+ msgstr "Wersja"
297
+
298
+ #: includes/admin-addons.php:136 includes/admin-addons.php:169
299
+ msgid "Compare"
300
+ msgstr "Porównaj wersje"
301
+
302
+ #: includes/admin-addons.php:114
303
+ msgctxt "revision date format"
304
+ msgid "F j, Y @ H:i:s"
305
+ msgstr "F j, Y @ H:i:s"
306
+
307
+ #: includes/admin-addons.php:103
308
+ msgid "Add"
309
+ msgstr "Dodaj"
310
+
311
+ #: includes/admin-addons.php:102
312
+ msgid "Text filter"
313
+ msgstr "Filtr tekstowy"
314
+
315
+ #: includes/admin-addons.php:100 includes/admin-addons.php:101
316
+ msgid "URL"
317
+ msgstr "Adres URL"
318
+
319
+ #: includes/admin-addons.php:89
320
+ msgid "Ends by"
321
+ msgstr "Kończy się na"
322
+
323
+ #: includes/admin-addons.php:88
324
+ msgid "Starts with"
325
+ msgstr "Zaczyna się na"
326
+
327
+ #: includes/admin-addons.php:87
328
+ msgid "Not equal to"
329
+ msgstr "Nie jest równe"
330
+
331
+ #: includes/admin-addons.php:86
332
+ msgid "Is equal to"
333
+ msgstr "Jest równe"
334
+
335
+ #: includes/admin-addons.php:85
336
+ msgid "Not contains"
337
+ msgstr "Nie zawiera"
338
+
339
+ #: includes/admin-addons.php:84
340
+ msgid "Contains"
341
+ msgstr "Zawiera"
342
+
343
+ #: includes/admin-addons.php:83
344
+ msgid "First page"
345
+ msgstr "Pierwsza strona"
346
+
347
+ #: includes/admin-addons.php:82
348
+ msgid "All Website"
349
+ msgstr "Cała strona"
350
+
351
+ #: includes/admin-addons.php:68
352
+ msgid "Preview Changes"
353
+ msgstr "Podejrzyj zmiany"
354
+
355
+ #: includes/admin-addons.php:67
356
+ msgid "Full URL on which to preview the changes ..."
357
+ msgstr "Pełen adres URL na którym chcesz podejrzeć zmiany ..."
358
+
359
+ #: includes/admin-addons.php:56
360
+ msgid "Code Revisions"
361
+ msgstr "Wersje kodu"
362
+
363
+ #: includes/admin-addons.php:55
364
+ msgid "Apply only on these URLs"
365
+ msgstr "Zastosuj tylko dla tych adresów URL"
366
+
367
+ #: includes/admin-addons.php:54
368
+ msgid "Preview"
369
+ msgstr "Podejrzyj"
370
+
371
+ #: includes/admin-addons.php:42 includes/admin-screens.php:643
372
+ msgid "Available only in <br />Simple Custom CSS and JS Pro"
373
+ msgstr "Dostępne tylko w <br />Simple Custom CSS and JS Pro"
374
+
375
+ #: custom-css-js.php:387
376
+ msgid "Settings"
377
+ msgstr "Ustawienia"
378
+
379
+ #: custom-css-js.php:292
380
+ msgid "Web Designer"
381
+ msgstr "Web Designer"
382
+
383
+ #: custom-css-js.php:247
384
+ msgid "Custom CSS and JS code"
385
+ msgstr "Wstawki kodu CSS i JS"
386
+
387
+ #: custom-css-js.php:226
388
+ msgid "No Custom Code found in Trash."
389
+ msgstr "Nie znaleziono wstawek w Koszu"
390
+
391
+ #: custom-css-js.php:225
392
+ msgid "No Custom Code found."
393
+ msgstr "Nie znaleziono wstawek"
394
+
395
+ #: custom-css-js.php:224
396
+ msgid "Parent Custom Code:"
397
+ msgstr "Kod macierzysty:"
398
+
399
+ #: custom-css-js.php:223
400
+ msgid "Search Custom Code"
401
+ msgstr "Szukaj wstawek"
402
+
403
+ #: custom-css-js.php:222
404
+ msgid "All Custom Code"
405
+ msgstr "Wszystkie wstawki"
406
+
407
+ #: custom-css-js.php:221
408
+ msgid "View Custom Code"
409
+ msgstr "Zobacz kod"
410
+
411
+ #: custom-css-js.php:220
412
+ msgid "Edit Custom Code"
413
+ msgstr "Edytuj kod"
414
+
415
+ #: custom-css-js.php:219
416
+ msgid "New Custom Code"
417
+ msgstr "Nowa wstawka"
418
+
419
+ #: custom-css-js.php:218
420
+ msgid "Add Custom Code"
421
+ msgstr "Dodaj wstawkę"
422
+
423
+ #: custom-css-js.php:217
424
+ msgctxt "add new"
425
+ msgid "Add Custom Code"
426
+ msgstr "Dodaj nową wstawkę"
427
+
428
+ #: custom-css-js.php:216
429
+ msgctxt "add new on admin bar"
430
+ msgid "Custom Code"
431
+ msgstr "Wstawki kodu"
432
+
433
+ #: custom-css-js.php:215
434
+ msgctxt "admin menu"
435
+ msgid "Custom CSS & JS"
436
+ msgstr "Custom CSS & JS"
437
+
438
+ #: custom-css-js.php:214
439
+ msgctxt "post type singular name"
440
+ msgid "Custom Code"
441
+ msgstr "Wstawki kodu"
442
+
443
+ #: custom-css-js.php:213
444
+ msgctxt "post type general name"
445
+ msgid "Custom Code"
446
+ msgstr "Wstawki kodu"
447
+
448
+ #: custom-css-js.php:51 custom-css-js.php:58
449
+ msgid "Cheatin&#8217; huh?"
450
+ msgstr "Kantujesz, co nie? :)"
languages/custom-css-js-tr_TR.mo ADDED
Binary file
languages/custom-css-js-tr_TR.po ADDED
@@ -0,0 +1,501 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Simple Custom CSS and JS
2
+ # This file is distributed under the same license as the Simple Custom CSS and JS package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Simple Custom CSS and JS 3.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-css-js-"
7
+ "svn\n"
8
+ "POT-Creation-Date: 2017-05-13 18:45:06+00:00\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2017-08-07 22:47+0300\n"
13
+ "Language-Team: \n"
14
+ "X-Generator: Poedit 2.0.3\n"
15
+ "Last-Translator: Adnan Uludag <auludag@mac.com>\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "Language: tr_TR\n"
18
+
19
+ #: custom-css-js.php:56 custom-css-js.php:63
20
+ msgid "Cheatin&#8217; huh?"
21
+ msgstr "Kandırıkçılık ha?"
22
+
23
+ #: custom-css-js.php:198
24
+ msgctxt "post type general name"
25
+ msgid "Custom Code"
26
+ msgstr "Özel Kod"
27
+
28
+ #: custom-css-js.php:199
29
+ msgctxt "post type singular name"
30
+ msgid "Custom Code"
31
+ msgstr "Özel Kod"
32
+
33
+ #: custom-css-js.php:200
34
+ msgctxt "admin menu"
35
+ msgid "Custom CSS & JS"
36
+ msgstr "Özel CSS & JS"
37
+
38
+ #: custom-css-js.php:201
39
+ msgctxt "add new on admin bar"
40
+ msgid "Custom Code"
41
+ msgstr "Özel Kod"
42
+
43
+ #: custom-css-js.php:202
44
+ msgctxt "add new"
45
+ msgid "Add Custom Code"
46
+ msgstr "Özel Kod Ekle"
47
+
48
+ #: custom-css-js.php:203
49
+ msgid "Add Custom Code"
50
+ msgstr "Özel Kod Ekle"
51
+
52
+ #: custom-css-js.php:204
53
+ msgid "New Custom Code"
54
+ msgstr "Yeni Özel Kod"
55
+
56
+ #: custom-css-js.php:205
57
+ msgid "Edit Custom Code"
58
+ msgstr "Özel Kodu Düzenle"
59
+
60
+ #: custom-css-js.php:206
61
+ msgid "View Custom Code"
62
+ msgstr "Özel Kodu Görüntüle"
63
+
64
+ #: custom-css-js.php:207
65
+ msgid "All Custom Code"
66
+ msgstr "Tüm Özel Kodlar"
67
+
68
+ #: custom-css-js.php:208
69
+ msgid "Search Custom Code"
70
+ msgstr "Özel Kod ara"
71
+
72
+ #: custom-css-js.php:209
73
+ msgid "Parent Custom Code:"
74
+ msgstr "Ana Özel Kod:"
75
+
76
+ #: custom-css-js.php:210
77
+ msgid "No Custom Code found."
78
+ msgstr "Özel Kod bulunmadı."
79
+
80
+ #: custom-css-js.php:211
81
+ msgid "No Custom Code found in Trash."
82
+ msgstr "Çöp kutusunda özel kod bulunmadı."
83
+
84
+ #: custom-css-js.php:232
85
+ msgid "Custom CSS and JS code"
86
+ msgstr "Özel CSS ve JS Kodu"
87
+
88
+ #: custom-css-js.php:277
89
+ msgid "Web Designer"
90
+ msgstr "Web Tasarımcı"
91
+
92
+ #: custom-css-js.php:372
93
+ msgid "Settings"
94
+ msgstr "Ayarlar"
95
+
96
+ #: includes/admin-addons.php:42 includes/admin-screens.php:631
97
+ msgid "Available only in <br />Simple Custom CSS and JS Pro"
98
+ msgstr "Sadece <br />Simple Custom CSS and JS Pro<br />versiyonunda mevcut"
99
+
100
+ #: includes/admin-addons.php:54
101
+ msgid "Preview"
102
+ msgstr "Öngörünüm"
103
+
104
+ #: includes/admin-addons.php:55
105
+ msgid "Apply only on these URLs"
106
+ msgstr "Sadece bu URL lere uygula"
107
+
108
+ #: includes/admin-addons.php:56
109
+ msgid "Code Revisions"
110
+ msgstr "Kod revizyonları"
111
+
112
+ #: includes/admin-addons.php:67
113
+ msgid "Full URL on which to preview the changes ..."
114
+ msgstr "Değişikliklerin öngörünümünü istediğiniz URL in tam adresi …"
115
+
116
+ #: includes/admin-addons.php:68
117
+ msgid "Preview Changes"
118
+ msgstr "Değişiklikleri ön izle"
119
+
120
+ #: includes/admin-addons.php:82
121
+ msgid "All Website"
122
+ msgstr "Tüm Web Siteleri"
123
+
124
+ #: includes/admin-addons.php:83
125
+ msgid "First page"
126
+ msgstr "İlk Sayfa"
127
+
128
+ #: includes/admin-addons.php:84
129
+ msgid "Contains"
130
+ msgstr "içeriyor"
131
+
132
+ #: includes/admin-addons.php:85
133
+ msgid "Not contains"
134
+ msgstr "içermiyor"
135
+
136
+ #: includes/admin-addons.php:86
137
+ msgid "Is equal to"
138
+ msgstr "eşit"
139
+
140
+ #: includes/admin-addons.php:87
141
+ msgid "Not equal to"
142
+ msgstr "eşit değil"
143
+
144
+ #: includes/admin-addons.php:88
145
+ msgid "Starts with"
146
+ msgstr "Şunla başlıyor"
147
+
148
+ #: includes/admin-addons.php:89
149
+ msgid "Ends by"
150
+ msgstr "şunla bitiyor"
151
+
152
+ #: includes/admin-addons.php:100 includes/admin-addons.php:101
153
+ msgid "URL"
154
+ msgstr "URL"
155
+
156
+ #: includes/admin-addons.php:102
157
+ msgid "Text filter"
158
+ msgstr "Tekst süzgeci"
159
+
160
+ #: includes/admin-addons.php:103
161
+ msgid "Add"
162
+ msgstr "Ekle"
163
+
164
+ #: includes/admin-addons.php:114
165
+ msgctxt "revision date format"
166
+ msgid "F j, Y @ H:i:s"
167
+ msgstr "F j, Y @ H:i:s"
168
+
169
+ #: includes/admin-addons.php:136 includes/admin-addons.php:169
170
+ msgid "Compare"
171
+ msgstr "Karşılaştır"
172
+
173
+ #: includes/admin-addons.php:137
174
+ msgid "Revision"
175
+ msgstr "Revizyon"
176
+
177
+ #: includes/admin-addons.php:138 includes/admin-screens.php:268
178
+ msgid "Author"
179
+ msgstr "Yazar"
180
+
181
+ #: includes/admin-addons.php:139 includes/admin-addons.php:173
182
+ msgid "Delete"
183
+ msgstr "Sil"
184
+
185
+ #: includes/admin-addons.php:140 includes/admin-addons.php:163
186
+ msgid "Restore"
187
+ msgstr "Geri yükle"
188
+
189
+ #: includes/admin-notices.php:125
190
+ msgid "Get your discount now"
191
+ msgstr "Şimdi indirimi al"
192
+
193
+ #: includes/admin-notices.php:125 includes/admin-notices.php:190
194
+ msgid "Dismiss this notice"
195
+ msgstr "Bu uyarıyı yoksay"
196
+
197
+ #: includes/admin-screens.php:94
198
+ msgid "Add Custom CSS"
199
+ msgstr "Özel CSS Ekle"
200
+
201
+ #: includes/admin-screens.php:97
202
+ msgid "Add Custom JS"
203
+ msgstr "Özel JS Ekle"
204
+
205
+ #: includes/admin-screens.php:100
206
+ msgid "Add Custom HTML"
207
+ msgstr "Özel HTML Ekle"
208
+
209
+ #: includes/admin-screens.php:189
210
+ msgid "Options"
211
+ msgstr "Seçenekler"
212
+
213
+ #: includes/admin-screens.php:249
214
+ msgid "Add CSS code"
215
+ msgstr "CSS Kodu ekle"
216
+
217
+ #: includes/admin-screens.php:250
218
+ msgid "Add JS code"
219
+ msgstr "JS Kodu ekle"
220
+
221
+ #: includes/admin-screens.php:251
222
+ msgid "Add HTML code"
223
+ msgstr "HTML Kodu ekle"
224
+
225
+ #: includes/admin-screens.php:265
226
+ msgid "Active"
227
+ msgstr "Aktif"
228
+
229
+ #: includes/admin-screens.php:266
230
+ msgid "Type"
231
+ msgstr "Çeşidi"
232
+
233
+ #: includes/admin-screens.php:267
234
+ msgid "Title"
235
+ msgstr "Başlık"
236
+
237
+ #: includes/admin-screens.php:269
238
+ msgid "Date"
239
+ msgstr "Tarih"
240
+
241
+ #: includes/admin-screens.php:270
242
+ msgid "Modified"
243
+ msgstr "Değiştirilme"
244
+
245
+ #: includes/admin-screens.php:299
246
+ msgid "%s ago"
247
+ msgstr "%s önce"
248
+
249
+ #: includes/admin-screens.php:301
250
+ msgid "Y/m/d"
251
+ msgstr "Y/m/d"
252
+
253
+ #: includes/admin-screens.php:309
254
+ msgid "Toggle active"
255
+ msgstr "Aktiflik durumunu değiştir"
256
+
257
+ #: includes/admin-screens.php:311
258
+ msgid "The code is active. Click to deactivate it"
259
+ msgstr "Bu kod faal. Devre dışı bırakmak için tıklayınız"
260
+
261
+ #: includes/admin-screens.php:314
262
+ msgid "The code is inactive. Click to activate it"
263
+ msgstr "Bu kod faal değil. Faal hale getirmek için tıklayınız"
264
+
265
+ #: includes/admin-screens.php:365
266
+ msgid "Custom Code"
267
+ msgstr "Özel Kod"
268
+
269
+ #: includes/admin-screens.php:366 includes/admin-screens.php:397
270
+ msgid "Add CSS Code"
271
+ msgstr "CSS Kodu Ekle"
272
+
273
+ #: includes/admin-screens.php:367 includes/admin-screens.php:398
274
+ msgid "Add JS Code"
275
+ msgstr "JS Kodu Ekle"
276
+
277
+ #: includes/admin-screens.php:368 includes/admin-screens.php:399
278
+ msgid "Add HTML Code"
279
+ msgstr "HTML Kodu Ekle"
280
+
281
+ #: includes/admin-screens.php:407
282
+ msgid "Code updated"
283
+ msgstr "Kod güncellendi"
284
+
285
+ #: includes/admin-screens.php:490
286
+ msgid ""
287
+ "/* Add your JavaScript code here.\n"
288
+ " \n"
289
+ "If you are using the jQuery library, then don't forget to wrap your code "
290
+ "inside jQuery.ready() as follows:\n"
291
+ "\n"
292
+ "jQuery(document).ready(function( $ ){\n"
293
+ " // Your code in here \n"
294
+ "});\n"
295
+ "\n"
296
+ "End of comment */ "
297
+ msgstr ""
298
+ "/* Javascript kodunuzu buraya ekleyiniz..\n"
299
+ " \n"
300
+ "Eğer jQuery kutuphanesi kullaniyorsaniz, kodunuzu asagidaki gibi jQuery."
301
+ "ready() icine koymayi unutmayiniz:\n"
302
+ "\n"
303
+ "jQuery(document).ready(function( $ ){\n"
304
+ " //Kodunuz buraya gelecek \n"
305
+ "});\n"
306
+ "\n"
307
+ "Yorum sonu */ "
308
+
309
+ #: includes/admin-screens.php:506
310
+ msgid ""
311
+ "<!-- Add HTML code to the header or the footer. \n"
312
+ "\n"
313
+ "For example, you can use the following code for loading the jQuery library "
314
+ "from Google CDN:\n"
315
+ "<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min."
316
+ "js\"></script>\n"
317
+ "\n"
318
+ "or the following one for loading the Bootstrap library from MaxCDN:\n"
319
+ "<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/"
320
+ "bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-"
321
+ "BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" "
322
+ "crossorigin=\"anonymous\">\n"
323
+ "\n"
324
+ "-- End of the comment --> "
325
+ msgstr ""
326
+ "<!-- HTML kodunu sayfa üstbaşlığına (header) veya sayfa altbaşlığına "
327
+ "ekler. \n"
328
+ "\n"
329
+ "Örnegin, Google CDN den jQuery kutuphanesini cagirmak icin asagidaki kodu "
330
+ "kullanabilirsiniz:\n"
331
+ "<script src=“https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min."
332
+ "js”></script>\n"
333
+ "\n"
334
+ "veya MaxCDN den Bootstrap kutuphanesini cagirmak icin asagidakini "
335
+ "kullanabilirsiniz:\n"
336
+ "<link rel=“stylesheet” href=“https://maxcdn.bootstrapcdn.com/"
337
+ "bootstrap/3.3.7/css/bootstrap.min.css” integrity=“sha384-"
338
+ "BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u” "
339
+ "crossorigin=“anonymous”>\n"
340
+ "\n"
341
+ " -- Yorum Sonu --> "
342
+
343
+ #: includes/admin-screens.php:532
344
+ msgid ""
345
+ "/* Add your CSS code here.\n"
346
+ " \n"
347
+ "For example:\n"
348
+ ".example {\n"
349
+ " color: red;\n"
350
+ "}\n"
351
+ "\n"
352
+ "For brushing up on your CSS knowledge, check out http://www.w3schools.com/"
353
+ "css/css_syntax.asp\n"
354
+ "\n"
355
+ "End of comment */ "
356
+ msgstr ""
357
+ "/* CSS kodunuzu buraya ekleyiniz.\n"
358
+ " \n"
359
+ "Ornegin :\n"
360
+ ".ornek {\n"
361
+ " color: red;\n"
362
+ "}\n"
363
+ "\n"
364
+ "CSS bilgilerinizi parlatmak icin, suraya bakiniz: http://www.w3schools.com/"
365
+ "css/css_syntax.asp\n"
366
+ "\n"
367
+ "yorum sonu*/ "
368
+
369
+ #: includes/admin-screens.php:646
370
+ msgid "Linking type"
371
+ msgstr "Linkleme çeşidi"
372
+
373
+ #: includes/admin-screens.php:651
374
+ msgid "External File"
375
+ msgstr "Harici Dosya"
376
+
377
+ #: includes/admin-screens.php:655
378
+ msgid "Internal"
379
+ msgstr "Dahili"
380
+
381
+ #: includes/admin-screens.php:661 includes/admin-screens.php:745
382
+ msgid "Where on page"
383
+ msgstr "Sayfanın neresinde"
384
+
385
+ #: includes/admin-screens.php:666 includes/admin-screens.php:750
386
+ msgid "Header"
387
+ msgstr "Üstbaşlık (Header)"
388
+
389
+ #: includes/admin-screens.php:670 includes/admin-screens.php:754
390
+ msgid "Footer"
391
+ msgstr "Altbaşlık (Footer)"
392
+
393
+ #: includes/admin-screens.php:676 includes/admin-screens.php:760
394
+ msgid "Where in site"
395
+ msgstr "Sitede nerede"
396
+
397
+ #: includes/admin-screens.php:681 includes/admin-screens.php:765
398
+ msgid "In Frontend"
399
+ msgstr "Önyüzde"
400
+
401
+ #: includes/admin-screens.php:685 includes/admin-screens.php:769
402
+ msgid "In Admin"
403
+ msgstr "Yönetici panelinde"
404
+
405
+ #: includes/admin-screens.php:691
406
+ msgid "CSS Preprocessor"
407
+ msgstr "CSS Önişleyici"
408
+
409
+ #: includes/admin-screens.php:696
410
+ msgid "None"
411
+ msgstr "Yok"
412
+
413
+ #: includes/admin-screens.php:699
414
+ msgid "Less"
415
+ msgstr "Less"
416
+
417
+ #: includes/admin-screens.php:702
418
+ msgid "SASS (only SCSS syntax)"
419
+ msgstr "SASS (sadece SCSS yazımı)"
420
+
421
+ #: includes/admin-screens.php:708
422
+ msgid "Minify the code"
423
+ msgstr "Kodu küçült"
424
+
425
+ #: includes/admin-screens.php:715 includes/admin-screens.php:796
426
+ msgid "Priority"
427
+ msgstr "Öncelik"
428
+
429
+ #: includes/admin-screens.php:720 includes/admin-screens.php:801
430
+ msgctxt "1 is the highest priority"
431
+ msgid "1 (highest)"
432
+ msgstr "1 (En yüksek)"
433
+
434
+ #: includes/admin-screens.php:729 includes/admin-screens.php:810
435
+ msgctxt "10 is the lowest priority"
436
+ msgid "10 (lowest)"
437
+ msgstr "10 (en düşük)"
438
+
439
+ #: includes/admin-screens.php:775
440
+ msgid "On which device"
441
+ msgstr "Hangi cihazlarda"
442
+
443
+ #: includes/admin-screens.php:781
444
+ msgid "Desktop"
445
+ msgstr "Masaüstü"
446
+
447
+ #: includes/admin-screens.php:785
448
+ msgid "Mobile"
449
+ msgstr "Mobil"
450
+
451
+ #: includes/admin-screens.php:789
452
+ msgid "Both"
453
+ msgstr "Her ikisi"
454
+
455
+ #: includes/admin-screens.php:932
456
+ msgid "The %s directory could not be created"
457
+ msgstr "%s klasörü oluşturulamadı"
458
+
459
+ #: includes/admin-screens.php:933
460
+ msgid "Please run the following commands in order to make the directory"
461
+ msgstr "Klasör oluşturmak için lütfen aşağıdaki komutları çalıştırın"
462
+
463
+ #: includes/admin-screens.php:941
464
+ msgid ""
465
+ "The %s directory is not writable, therefore the CSS and JS files cannot be "
466
+ "saved."
467
+ msgstr ""
468
+ "%s klasörü yazılabilir değil, o yüzden CSS ve JS dosyaları kaydedilemedi."
469
+
470
+ #: includes/admin-screens.php:942
471
+ msgid "Please run the following command to make the directory writable"
472
+ msgstr "Lütfen klasörü yazılabilir yapmak için aşağıdaki komutu çalıştırın"
473
+
474
+ #: includes/admin-warnings.php:55
475
+ msgid ""
476
+ "Please remove the <b>custom-css-js</b> post type from the <b>qTranslate "
477
+ "settings</b> in order to avoid some malfunctions in the Simple Custom CSS & "
478
+ "JS plugin. Check out <a href=\"%s\" target=\"_blank\">this screenshot</a> "
479
+ "for more details on how to do that."
480
+ msgstr ""
481
+ "Simple Custom CSS & JS eklentisinde işlev bozukluklarından kaçınmak için "
482
+ "lütfen <b>qTranslate ayarlarından </b> <b>custom-css-js</b> yazı tipini "
483
+ "kaldırınız. Bunu nasıl yapacağınızın detayları hakkında <a href=“%s” "
484
+ "target=“_blank”>bu ekran görüntüsüne </a> bakınız."
485
+
486
+ #. Plugin URI of the plugin/theme
487
+ msgid "https://wordpress.org/plugins/custom-css-js/"
488
+ msgstr "https://wordpress.org/plugins/custom-css-js/"
489
+
490
+ #. Description of the plugin/theme
491
+ msgid "Easily add Custom CSS or JS to your website with an awesome editor."
492
+ msgstr ""
493
+ "Websitenize harika bir düzenleyici ile özel CSS veya JS i kolayca ekleyin."
494
+
495
+ #. Author of the plugin/theme
496
+ msgid "Diana Burduja"
497
+ msgstr "Diana Burduja"
498
+
499
+ #. Author URI of the plugin/theme
500
+ msgid "https://www.silkypress.com/"
501
+ msgstr "https://www.silkypress.com/"
languages/custom-css-js.pot ADDED
@@ -0,0 +1,500 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Simple Custom CSS and JS
2
+ # This file is distributed under the same license as the Simple Custom CSS and JS package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Simple Custom CSS and JS 3.6\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-css-js-"
7
+ "svn\n"
8
+ "POT-Creation-Date: 2017-09-28 11:58:14+00:00\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+
16
+ #: custom-css-js.php:51 custom-css-js.php:58
17
+ msgid "Cheatin&#8217; huh?"
18
+ msgstr ""
19
+
20
+ #: custom-css-js.php:213
21
+ msgctxt "post type general name"
22
+ msgid "Custom Code"
23
+ msgstr ""
24
+
25
+ #: custom-css-js.php:214
26
+ msgctxt "post type singular name"
27
+ msgid "Custom Code"
28
+ msgstr ""
29
+
30
+ #: custom-css-js.php:215
31
+ msgctxt "admin menu"
32
+ msgid "Custom CSS & JS"
33
+ msgstr ""
34
+
35
+ #: custom-css-js.php:216
36
+ msgctxt "add new on admin bar"
37
+ msgid "Custom Code"
38
+ msgstr ""
39
+
40
+ #: custom-css-js.php:217
41
+ msgctxt "add new"
42
+ msgid "Add Custom Code"
43
+ msgstr ""
44
+
45
+ #: custom-css-js.php:218
46
+ msgid "Add Custom Code"
47
+ msgstr ""
48
+
49
+ #: custom-css-js.php:219
50
+ msgid "New Custom Code"
51
+ msgstr ""
52
+
53
+ #: custom-css-js.php:220
54
+ msgid "Edit Custom Code"
55
+ msgstr ""
56
+
57
+ #: custom-css-js.php:221
58
+ msgid "View Custom Code"
59
+ msgstr ""
60
+
61
+ #: custom-css-js.php:222
62
+ msgid "All Custom Code"
63
+ msgstr ""
64
+
65
+ #: custom-css-js.php:223
66
+ msgid "Search Custom Code"
67
+ msgstr ""
68
+
69
+ #: custom-css-js.php:224
70
+ msgid "Parent Custom Code:"
71
+ msgstr ""
72
+
73
+ #: custom-css-js.php:225
74
+ msgid "No Custom Code found."
75
+ msgstr ""
76
+
77
+ #: custom-css-js.php:226
78
+ msgid "No Custom Code found in Trash."
79
+ msgstr ""
80
+
81
+ #: custom-css-js.php:247
82
+ msgid "Custom CSS and JS code"
83
+ msgstr ""
84
+
85
+ #: custom-css-js.php:292
86
+ msgid "Web Designer"
87
+ msgstr ""
88
+
89
+ #: custom-css-js.php:387
90
+ msgid "Settings"
91
+ msgstr ""
92
+
93
+ #: includes/admin-addons.php:42 includes/admin-screens.php:653
94
+ msgid "Available only in <br />Simple Custom CSS and JS Pro"
95
+ msgstr ""
96
+
97
+ #: includes/admin-addons.php:54
98
+ msgid "Preview"
99
+ msgstr ""
100
+
101
+ #: includes/admin-addons.php:55
102
+ msgid "Apply only on these URLs"
103
+ msgstr ""
104
+
105
+ #: includes/admin-addons.php:56
106
+ msgid "Code Revisions"
107
+ msgstr ""
108
+
109
+ #: includes/admin-addons.php:67
110
+ msgid "Full URL on which to preview the changes ..."
111
+ msgstr ""
112
+
113
+ #: includes/admin-addons.php:68
114
+ msgid "Preview Changes"
115
+ msgstr ""
116
+
117
+ #: includes/admin-addons.php:82
118
+ msgid "All Website"
119
+ msgstr ""
120
+
121
+ #: includes/admin-addons.php:83
122
+ msgid "First page"
123
+ msgstr ""
124
+
125
+ #: includes/admin-addons.php:84
126
+ msgid "Contains"
127
+ msgstr ""
128
+
129
+ #: includes/admin-addons.php:85
130
+ msgid "Not contains"
131
+ msgstr ""
132
+
133
+ #: includes/admin-addons.php:86
134
+ msgid "Is equal to"
135
+ msgstr ""
136
+
137
+ #: includes/admin-addons.php:87
138
+ msgid "Not equal to"
139
+ msgstr ""
140
+
141
+ #: includes/admin-addons.php:88
142
+ msgid "Starts with"
143
+ msgstr ""
144
+
145
+ #: includes/admin-addons.php:89
146
+ msgid "Ends by"
147
+ msgstr ""
148
+
149
+ #: includes/admin-addons.php:100 includes/admin-addons.php:101
150
+ msgid "URL"
151
+ msgstr ""
152
+
153
+ #: includes/admin-addons.php:102
154
+ msgid "Text filter"
155
+ msgstr ""
156
+
157
+ #: includes/admin-addons.php:103
158
+ msgid "Add"
159
+ msgstr ""
160
+
161
+ #: includes/admin-addons.php:114
162
+ msgctxt "revision date format"
163
+ msgid "F j, Y @ H:i:s"
164
+ msgstr ""
165
+
166
+ #: includes/admin-addons.php:136 includes/admin-addons.php:169
167
+ msgid "Compare"
168
+ msgstr ""
169
+
170
+ #: includes/admin-addons.php:137
171
+ msgid "Revision"
172
+ msgstr ""
173
+
174
+ #: includes/admin-addons.php:138 includes/admin-screens.php:269
175
+ msgid "Author"
176
+ msgstr ""
177
+
178
+ #: includes/admin-addons.php:139 includes/admin-addons.php:173
179
+ msgid "Delete"
180
+ msgstr ""
181
+
182
+ #: includes/admin-addons.php:140 includes/admin-addons.php:163
183
+ msgid "Restore"
184
+ msgstr ""
185
+
186
+ #: includes/admin-notices.php:125
187
+ msgid "Get your discount now"
188
+ msgstr ""
189
+
190
+ #: includes/admin-notices.php:125 includes/admin-notices.php:190
191
+ msgid "Dismiss this notice"
192
+ msgstr ""
193
+
194
+ #: includes/admin-screens.php:88
195
+ msgid "Add Custom CSS"
196
+ msgstr ""
197
+
198
+ #: includes/admin-screens.php:91
199
+ msgid "Add Custom JS"
200
+ msgstr ""
201
+
202
+ #: includes/admin-screens.php:94
203
+ msgid "Add Custom HTML"
204
+ msgstr ""
205
+
206
+ #: includes/admin-screens.php:159 includes/admin-screens.php:266
207
+ #: includes/admin-screens.php:1148
208
+ msgid "Active"
209
+ msgstr ""
210
+
211
+ #: includes/admin-screens.php:160 includes/admin-screens.php:1151
212
+ msgid "Inactive"
213
+ msgstr ""
214
+
215
+ #: includes/admin-screens.php:161 includes/admin-screens.php:1124
216
+ #: includes/admin-screens.php:1152
217
+ msgid "Activate"
218
+ msgstr ""
219
+
220
+ #: includes/admin-screens.php:162 includes/admin-screens.php:1121
221
+ #: includes/admin-screens.php:1149
222
+ msgid "Deactivate"
223
+ msgstr ""
224
+
225
+ #: includes/admin-screens.php:163 includes/admin-screens.php:311
226
+ #: includes/admin-screens.php:1120
227
+ msgid "The code is active. Click to deactivate it"
228
+ msgstr ""
229
+
230
+ #: includes/admin-screens.php:164 includes/admin-screens.php:314
231
+ #: includes/admin-screens.php:1123
232
+ msgid "The code is inactive. Click to activate it"
233
+ msgstr ""
234
+
235
+ #: includes/admin-screens.php:190
236
+ msgid "Options"
237
+ msgstr ""
238
+
239
+ #: includes/admin-screens.php:250
240
+ msgid "Add CSS code"
241
+ msgstr ""
242
+
243
+ #: includes/admin-screens.php:251
244
+ msgid "Add JS code"
245
+ msgstr ""
246
+
247
+ #: includes/admin-screens.php:252
248
+ msgid "Add HTML code"
249
+ msgstr ""
250
+
251
+ #: includes/admin-screens.php:267
252
+ msgid "Type"
253
+ msgstr ""
254
+
255
+ #: includes/admin-screens.php:268
256
+ msgid "Title"
257
+ msgstr ""
258
+
259
+ #: includes/admin-screens.php:270
260
+ msgid "Date"
261
+ msgstr ""
262
+
263
+ #: includes/admin-screens.php:271
264
+ msgid "Modified"
265
+ msgstr ""
266
+
267
+ #: includes/admin-screens.php:300
268
+ msgid "%s ago"
269
+ msgstr ""
270
+
271
+ #: includes/admin-screens.php:302
272
+ msgid "Y/m/d"
273
+ msgstr ""
274
+
275
+ #: includes/admin-screens.php:369
276
+ msgid "Custom Code"
277
+ msgstr ""
278
+
279
+ #: includes/admin-screens.php:370 includes/admin-screens.php:389
280
+ #: includes/admin-screens.php:410
281
+ msgid "Add CSS Code"
282
+ msgstr ""
283
+
284
+ #: includes/admin-screens.php:371 includes/admin-screens.php:390
285
+ #: includes/admin-screens.php:411
286
+ msgid "Add JS Code"
287
+ msgstr ""
288
+
289
+ #: includes/admin-screens.php:372 includes/admin-screens.php:391
290
+ #: includes/admin-screens.php:412
291
+ msgid "Add HTML Code"
292
+ msgstr ""
293
+
294
+ #: includes/admin-screens.php:392
295
+ msgid "Edit CSS Code"
296
+ msgstr ""
297
+
298
+ #: includes/admin-screens.php:393
299
+ msgid "Edit JS Code"
300
+ msgstr ""
301
+
302
+ #: includes/admin-screens.php:394
303
+ msgid "Edit HTML Code"
304
+ msgstr ""
305
+
306
+ #: includes/admin-screens.php:420
307
+ msgid "Code updated"
308
+ msgstr ""
309
+
310
+ #: includes/admin-screens.php:506
311
+ msgid ""
312
+ "/* Add your JavaScript code here.\n"
313
+ " \n"
314
+ "If you are using the jQuery library, then don't forget to wrap your code "
315
+ "inside jQuery.ready() as follows:\n"
316
+ "\n"
317
+ "jQuery(document).ready(function( $ ){\n"
318
+ " // Your code in here \n"
319
+ "});\n"
320
+ "\n"
321
+ "--\n"
322
+ "\n"
323
+ "If you want to link a JavaScript file that resides on another server "
324
+ "(similar to \n"
325
+ "<script src=\"https://example.com/your-js-file.js\"></script>), then please "
326
+ "use \n"
327
+ "the \"Add HTML Code\" page, as this is a HTML code that links a JavaScript "
328
+ "file.\n"
329
+ "\n"
330
+ "End of comment */ "
331
+ msgstr ""
332
+
333
+ #: includes/admin-screens.php:528
334
+ msgid ""
335
+ "<!-- Add HTML code to the header or the footer. \n"
336
+ "\n"
337
+ "For example, you can use the following code for loading the jQuery library "
338
+ "from Google CDN:\n"
339
+ "<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min."
340
+ "js\"></script>\n"
341
+ "\n"
342
+ "or the following one for loading the Bootstrap library from MaxCDN:\n"
343
+ "<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/"
344
+ "bootstrap/3.3.7/css/bootstrap.min.css\" integrity=\"sha384-"
345
+ "BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" "
346
+ "crossorigin=\"anonymous\">\n"
347
+ "\n"
348
+ "-- End of the comment --> "
349
+ msgstr ""
350
+
351
+ #: includes/admin-screens.php:554
352
+ msgid ""
353
+ "/* Add your CSS code here.\n"
354
+ " \n"
355
+ "For example:\n"
356
+ ".example {\n"
357
+ " color: red;\n"
358
+ "}\n"
359
+ "\n"
360
+ "For brushing up on your CSS knowledge, check out http://www.w3schools.com/"
361
+ "css/css_syntax.asp\n"
362
+ "\n"
363
+ "End of comment */ "
364
+ msgstr ""
365
+
366
+ #: includes/admin-screens.php:668
367
+ msgid "Linking type"
368
+ msgstr ""
369
+
370
+ #: includes/admin-screens.php:673
371
+ msgid "External File"
372
+ msgstr ""
373
+
374
+ #: includes/admin-screens.php:677
375
+ msgid "Internal"
376
+ msgstr ""
377
+
378
+ #: includes/admin-screens.php:683 includes/admin-screens.php:771
379
+ msgid "Where on page"
380
+ msgstr ""
381
+
382
+ #: includes/admin-screens.php:688 includes/admin-screens.php:776
383
+ msgid "Header"
384
+ msgstr ""
385
+
386
+ #: includes/admin-screens.php:692 includes/admin-screens.php:780
387
+ msgid "Footer"
388
+ msgstr ""
389
+
390
+ #: includes/admin-screens.php:698 includes/admin-screens.php:786
391
+ msgid "Where in site"
392
+ msgstr ""
393
+
394
+ #: includes/admin-screens.php:703 includes/admin-screens.php:791
395
+ msgid "In Frontend"
396
+ msgstr ""
397
+
398
+ #: includes/admin-screens.php:707 includes/admin-screens.php:795
399
+ msgid "In Admin"
400
+ msgstr ""
401
+
402
+ #: includes/admin-screens.php:711
403
+ msgid "On Login Page"
404
+ msgstr ""
405
+
406
+ #: includes/admin-screens.php:717
407
+ msgid "CSS Preprocessor"
408
+ msgstr ""
409
+
410
+ #: includes/admin-screens.php:722
411
+ msgid "None"
412
+ msgstr ""
413
+
414
+ #: includes/admin-screens.php:725
415
+ msgid "Less"
416
+ msgstr ""
417
+
418
+ #: includes/admin-screens.php:728
419
+ msgid "SASS (only SCSS syntax)"
420
+ msgstr ""
421
+
422
+ #: includes/admin-screens.php:734
423
+ msgid "Minify the code"
424
+ msgstr ""
425
+
426
+ #: includes/admin-screens.php:741 includes/admin-screens.php:822
427
+ msgid "Priority"
428
+ msgstr ""
429
+
430
+ #: includes/admin-screens.php:746 includes/admin-screens.php:827
431
+ msgctxt "1 is the highest priority"
432
+ msgid "1 (highest)"
433
+ msgstr ""
434
+
435
+ #: includes/admin-screens.php:755 includes/admin-screens.php:836
436
+ msgctxt "10 is the lowest priority"
437
+ msgid "10 (lowest)"
438
+ msgstr ""
439
+
440
+ #: includes/admin-screens.php:801
441
+ msgid "On which device"
442
+ msgstr ""
443
+
444
+ #: includes/admin-screens.php:807
445
+ msgid "Desktop"
446
+ msgstr ""
447
+
448
+ #: includes/admin-screens.php:811
449
+ msgid "Mobile"
450
+ msgstr ""
451
+
452
+ #: includes/admin-screens.php:815
453
+ msgid "Both"
454
+ msgstr ""
455
+
456
+ #: includes/admin-screens.php:958
457
+ msgid "The %s directory could not be created"
458
+ msgstr ""
459
+
460
+ #: includes/admin-screens.php:959
461
+ msgid "Please run the following commands in order to make the directory"
462
+ msgstr ""
463
+
464
+ #: includes/admin-screens.php:967
465
+ msgid ""
466
+ "The %s directory is not writable, therefore the CSS and JS files cannot be "
467
+ "saved."
468
+ msgstr ""
469
+
470
+ #: includes/admin-screens.php:968
471
+ msgid "Please run the following command to make the directory writable"
472
+ msgstr ""
473
+
474
+ #: includes/admin-warnings.php:55
475
+ msgid ""
476
+ "Please remove the <b>custom-css-js</b> post type from the <b>qTranslate "
477
+ "settings</b> in order to avoid some malfunctions in the Simple Custom CSS & "
478
+ "JS plugin. Check out <a href=\"%s\" target=\"_blank\">this screenshot</a> "
479
+ "for more details on how to do that."
480
+ msgstr ""
481
+
482
+ #. Plugin Name of the plugin/theme
483
+ msgid "Simple Custom CSS and JS"
484
+ msgstr ""
485
+
486
+ #. Plugin URI of the plugin/theme
487
+ msgid "https://wordpress.org/plugins/custom-css-js/"
488
+ msgstr ""
489
+
490
+ #. Description of the plugin/theme
491
+ msgid "Easily add Custom CSS or JS to your website with an awesome editor."
492
+ msgstr ""
493
+
494
+ #. Author of the plugin/theme
495
+ msgid "Diana Burduja"
496
+ msgstr ""
497
+
498
+ #. Author URI of the plugin/theme
499
+ msgid "https://www.silkypress.com/"
500
+ msgstr ""
readme.txt CHANGED
@@ -1,12 +1,12 @@
1
  === Simple Custom CSS and JS ===
2
  Created: 06/12/2015
3
  Contributors: diana_burduja
4
- Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=diana.burduja@gmail.com&lc=AT&item_name=Diana%20Burduja&item_number=WP%2dImage%2dZoooom%2dplugin&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
5
  Email: diana@burduja.eu
6
  Tags: CSS, JS, javascript, custom CSS, custom JS, custom style, site css, add style, customize theme, custom code, external css, css3, style, styles, stylesheet, theme, editor, design, admin
7
  Requires at least: 3.0.1
8
- Tested up to: 4.4
9
- Stable tag: 1.2
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
12
 
@@ -24,48 +24,6 @@ Customize your WordPress site's appearance by easily adding custom CSS and JS co
24
  * Add as many codes as you want
25
  * Keep your changes also when you change the theme
26
 
27
- = Frequently Asked Questions =
28
- * **Can I recover the codes if I previous uninstalled the plugin?**
29
- No, on the `Custom CSS and JS` plugin's uninstall all the added code will be removed. Before uninstalling make sure you don't need the codes anymore.
30
-
31
- * **What if I want to add multiple external CSS codes?**
32
- If you write multiple codes of the same type (for example: two external CSS codes), then all of them will be printed one after another
33
-
34
- * **Will this plugin affect the loading time?**
35
- When you click the `Save` button the codes will be cached in files, so there are no tedious database queries.
36
-
37
- * **Does the plugin modify the code I write in the editor?**
38
- No, the code is printed exactly as in the editor. It is not modified/checked/validated in any way. You take the full responsability for what is written in there.
39
-
40
- * **My code doesn't show on the website**
41
- Try one of the following:
42
- 1. If you are using any caching plugin (like "W3 Total Cache" or "WP Fastest Cache"), then don't forget to delete the cache before seing the code printed on the website.
43
- 2. Make sure the code is in **Published** state (not **Draft** or **in Trash**).
44
- 3. Check if the `wp-content/uploads/custom-css-js` folder exists and is writable
45
-
46
- * **Does it work with a Multisite Network?**
47
- Yes.
48
-
49
- * **What if I change the theme?**
50
- The CSS and JS are independent of the theme and they will persist through a theme change. This is particularly useful if you apply CSS and JS for modifying a plugin's output.
51
-
52
- * **Can I use a CSS preprocesor like LESS or Sass?**
53
- No, for the moment only plain CSS is supported.
54
-
55
- * **Can I upload images for use with my CSS?**
56
- Yes. You can upload an image to your Media Library, then refer to it by its direct URL from within the CSS stylesheet. For example:
57
- `div#content {
58
- background-image: url('http://example.com/wp-content/uploads/2015/12/image.jpg');
59
- }`
60
-
61
- * **Can I use CSS rules like @import and @font-face?**
62
- Yes.
63
-
64
- * **CSS Help.**
65
- If you are just starting with CSS, then here you'll find some resources:
66
- * [codecademy.com - Learn HTML & CSS](https://www.codecademy.com/learn/web)
67
- * [Wordpress.org - Finding Your CSS Styles](https://codex.wordpress.org/Finding_Your_CSS_Styles)
68
-
69
  == Installation ==
70
 
71
  * From the WP admin panel, click "Plugins" -> "Add new".
@@ -95,13 +53,56 @@ OR...
95
  = Requirements =
96
  PHP >= 5.3
97
 
98
- = Browser requirements =
99
  * Firefox - version 4 and up
100
  * Chrome - any version
101
  * Safari - version 5.2 and up
102
  * Internet Explorer - version 8 and up
103
  * Opera - version 9 and up
104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  == Screenshots ==
106
 
107
  1. Manage Custom Codes
@@ -110,15 +111,147 @@ PHP >= 5.3
110
 
111
  3. Add/Edit CSS
112
 
 
 
113
  == Changelog ==
114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  = 1.2 =
116
  * 14/12/2015
117
- * Fix: when a code was sent into Trash it wasn still shown on the website
118
 
119
  = 1.1 =
120
  * 10/12/2015
121
- * Tweak: for external files use wp_head and wp_footer instead of wp_enqueue_style. Otherwise the css and js is inserted before all the other scripts and are overwritten.
122
  * Tweak: Save all the codes in files in order to save on database queries
123
  * Tweak: Rewrite the readme.txt in the form of FAQ for better explanations
124
 
1
  === Simple Custom CSS and JS ===
2
  Created: 06/12/2015
3
  Contributors: diana_burduja
4
+ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=diana.burduja@gmail.com&lc=AT&item_name=Diana%20Burduja&item_number=Simple%2dCustom%2dCSS%2dand%2dJS%2dplugin&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
5
  Email: diana@burduja.eu
6
  Tags: CSS, JS, javascript, custom CSS, custom JS, custom style, site css, add style, customize theme, custom code, external css, css3, style, styles, stylesheet, theme, editor, design, admin
7
  Requires at least: 3.0.1
8
+ Tested up to: 4.9
9
+ Stable tag: 3.9
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
12
 
24
  * Add as many codes as you want
25
  * Keep your changes also when you change the theme
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  == Installation ==
28
 
29
  * From the WP admin panel, click "Plugins" -> "Add new".
53
  = Requirements =
54
  PHP >= 5.3
55
 
56
+ **Browser requirements**
57
  * Firefox - version 4 and up
58
  * Chrome - any version
59
  * Safari - version 5.2 and up
60
  * Internet Explorer - version 8 and up
61
  * Opera - version 9 and up
62
 
63
+ = What if I want to add multiple external CSS codes? =
64
+ If you write multiple codes of the same type (for example: two external CSS codes), then all of them will be printed one after another
65
+
66
+ = Will this plugin affect the loading time? =
67
+ When you click the `Save` button the codes will be cached in files, so there are no tedious database queries.
68
+
69
+ = Does the plugin modify the code I write in the editor? =
70
+ No, the code is printed exactly as in the editor. It is not modified/checked/validated in any way. You take the full responsability for what is written in there.
71
+
72
+ = My code doesn't show on the website =
73
+ Try one of the following:
74
+ 1. If you are using any caching plugin (like "W3 Total Cache" or "WP Fastest Cache"), then don't forget to delete the cache before seing the code printed on the website.
75
+ 2. Make sure the code is in **Published** state (not **Draft** or **in Trash**).
76
+ 3. Check if the `wp-content/uploads/custom-css-js` folder exists and is writable
77
+
78
+ = Does it work with a Multisite Network? =
79
+ Yes.
80
+
81
+ = What if I change the theme? =
82
+ The CSS and JS are independent of the theme and they will persist through a theme change. This is particularly useful if you apply CSS and JS for modifying a plugin's output.
83
+
84
+ = Can I use a CSS preprocesor like LESS or Sass? =
85
+ For the moment only plain CSS is supported, but you can check out the [Pro version](https://www.silkypress.com/simple-custom-css-js-pro/?utm_source=wordpress&utm_campaign=ccj_free&utm_medium=banner) in case you need a CSS preprocessor.
86
+
87
+ = Can I upload images for use with my CSS? =
88
+ Yes. You can upload an image to your Media Library, then refer to it by its direct URL from within the CSS stylesheet. For example:
89
+ `div#content {
90
+ background-image: url('http://example.com/wp-content/uploads/2015/12/image.jpg');
91
+ }`
92
+
93
+ = Can I use CSS rules like @import and @font-face? =
94
+ Yes.
95
+
96
+ = Who can publish/edit/delete Custom Codes? =
97
+ By default only the Administrator will be able to publish/edit/delete Custom Codes. Check out [this article](https://www.silkypress.com/simple_custom_css_js/user-capabilities-simple-custom-css-js-plugin/) for more details on roles and user capabilities customizations.
98
+
99
+ = Compatibility with qTranslate X plugin =
100
+ * If the [qTranslate X](https://wordpress.org/plugins/qtranslate-x/) plugin is adding some `[:]` or `[:en]` characters to your code, then you need to remove the `custom-css-js` post type from the qTranslate settings. Check out [this screenshot](https://www.silkypress.com/wp-content/uploads/2016/08/ccj_qtranslate_compatibility.png) on how to do that.
101
+
102
+ = My website has HTTPS urls, but the codes are linked as HTTP =
103
+ The URL for the linked Codes is built just like the URL for other media (from Media Library) by using the WordPress Address option found on the WP Admin -> Settings -> General page, as shown in [this screenshot](https://www.silkypress.com/wp-content/uploads/2016/12/ccj-siteurl.png). If the WordPress Address has HTTPS in the url, then the Custom Codes and all the other media will have HTTPS in the url.
104
+
105
+
106
  == Screenshots ==
107
 
108
  1. Manage Custom Codes
111
 
112
  3. Add/Edit CSS
113
 
114
+ $. Add/Edit HTML
115
+
116
  == Changelog ==
117
 
118
+ = 3.9 =
119
+ * 12/01/2017
120
+ * Feature: add "Last edited ..." information under the editor
121
+ * Fix: jump to line when searching
122
+ * Tweak: add message that the Code Revision data is dummy
123
+
124
+ = 3.8 =
125
+ * 10/19/2017
126
+ * Declare compatibility with WooCommerce 3.2 (https://woocommerce.wordpress.com/2017/08/28/new-version-check-in-woocommerce-3-2/)
127
+ * Fix: avoid conflicts with other plugins that implement the CodeMirror editor
128
+ * Update the CodeMirror library to 5.28 version
129
+
130
+ = 3.7
131
+ * 10/06/2017
132
+ * Add French and Polish translation
133
+
134
+ = 3.6 =
135
+ * 09/07/2017
136
+ * Fix: compatibility with the CSS Plus plugin
137
+
138
+ = 3.5 =
139
+ * 08/25/2017
140
+ * Code refactoring
141
+ * Add activate/deactivate link to row actions and in Publish box
142
+ * Make the activate/deactivate links work with AJAX
143
+ * Add Turkish translation
144
+
145
+ = 3.4 =
146
+ * 07/11/2017
147
+ * Security fix according to VN: JVN#31459091 / TN: JPCERT#91837758
148
+
149
+ = 3.3 =
150
+ * 06/23/2017
151
+ * Feature: option for adding Codes to the Login Page
152
+
153
+ = 3.2 =
154
+ * 06/13/2017
155
+ * Fix: compatibility issue with the HTML Editor Syntax Highlighter plugin
156
+
157
+ = 3.1 =
158
+ * 05/14/2017
159
+ * Feature: prepare the plugin for translation
160
+
161
+ = 3.0 =
162
+ * 04/12/2017
163
+ * Feature: create the Web Designer role
164
+ * Feature: allow Custom Codes to be managed only by users with the right capabilities
165
+
166
+ = 2.10 =
167
+ * 02/05/2017
168
+ * Feature: circumvent external file caching by adding a GET parameter
169
+ * Add special offer for Simple Custom CSS and JS pro
170
+
171
+ = 2.9 =
172
+ * 12/05/2016
173
+ * Compatibility with WP4.7. The "custom HTML code" was not showing up anymore
174
+
175
+ = 2.8 =
176
+ * 10/09/2016
177
+ * Feature: add search within the editor accessible with Ctrl+F
178
+ * Feature: make the inactive rows opaque
179
+
180
+ = 2.7 =
181
+ * 09/04/2016
182
+ * Fix: there was a space in the htmlmixed.%20js url
183
+ * Feature: make the editor resizable
184
+
185
+ = 2.6 =
186
+ * 08/31/2016
187
+ * Feature: add HTML code
188
+ * Fix: add htmlentities when showing them in the editor
189
+ * Feature: when adding a code, show more explanations as comments
190
+
191
+ = 2.5 =
192
+ * 08/25/2016
193
+ * Fix: compatibility with other plugins that interfere with the CodeMirror editor
194
+
195
+ = 2.4 =
196
+ * 08/01/2016
197
+ * Add the "Add CSS Code" and "Add JS Code" buttons next to the page title
198
+ * Compatibility with WP 4.6: the "Modified" column in the Codes listing was empty
199
+
200
+ = 2.3 =
201
+ * 06/22/2016
202
+ * Add the includes/admin-notices.php and includes/admin-addons.php
203
+ * Feature: change the editor's scrollbar so it can be caught with the mouse
204
+
205
+ = 2.2 =
206
+ * 06/22/2016
207
+ * Check compatibility WordPress 4.5.3
208
+ * Add special offer for Simple Custom CSS and JS pro
209
+
210
+ = 2.1 =
211
+ * 04/24/2016
212
+ * Fix: on multisite installs have to create the custom-css-js folder in the upload dir for each site
213
+ * Fix: the `deactivate code` star wasn't working when first time clicked
214
+ * Fix: In the add/edit Code page filter which meta boxes are allowed
215
+ * Fix: If the custom-css-js folder is not created of is not writable, issue an admin notice.
216
+
217
+ = 2.0 =
218
+ * 04/11/2016
219
+ * Feature: enable/disable codes
220
+ * Feature: add a GET parameter at the end of external files in order to over circumvent caching
221
+ * Fix: don't add the "<script>" tag from the code if already present.
222
+
223
+ = 1.6 =
224
+ * 03/26/2016
225
+ * Fix: the number of codes were limited because query_posts is automatically inserting a limit
226
+
227
+ = 1.5 =
228
+ * 10/03/2016
229
+ * Fix: solved a conflict with the `shortcoder` plugin.
230
+
231
+ = 1.4 =
232
+ * 04/01/2016
233
+ * Tweak: Do not enqueue scripts unless we are editing the a custom-css-js type post.
234
+ * Fix: The register_activation_hook was throwing a notice
235
+ * Fix: add window.onload when initializing the CodeMirror editor
236
+ * Tweak: Differentiated the option names for "Where on page" and "Where in site"
237
+ * Fix: set the correct language modes to CodeMirror object
238
+ * Tweak: remove the `slug` metabox
239
+ * Tweak: use the compressed version of CodeMirror
240
+
241
+ = 1.3 =
242
+ * 27/12/2015
243
+ * Tweak: changed the submenus to "Add Custom CSS" and "Add Custom JS" instead of "New Custom Code"
244
+ * Tweak: Use `admin_head` instead of `admin_enqueue_scripts` for external files in order to add priority to the code
245
+ * Fix: The javascript code was not shown
246
+ * Fix: For longer code the last line in the editor was hidding because of the CodeMirrorBefore div.
247
+
248
  = 1.2 =
249
  * 14/12/2015
250
+ * Fix: when a code was sent into Trash it still wasn't shown on the website
251
 
252
  = 1.1 =
253
  * 10/12/2015
254
+ * Tweak: for external files use wp_head and wp_footer instead of wp_enqueue_style. Otherwise the CSS and JS is inserted before all the other scripts and are overwritten.
255
  * Tweak: Save all the codes in files in order to save on database queries
256
  * Tweak: Rewrite the readme.txt in the form of FAQ for better explanations
257