Simple Custom CSS and JS - Version 1.3

Version Description

  • 27/12/2015
  • Tweak: changed the submenus to "Add Custom CSS" and "Add Custom JS" instead of "New Custom Code"
  • Tweak: Use admin_head instead of admin_enqueue_scripts for external files in order to add priority to the code
  • Fix: The javascript code was not shown
  • Fix: For longer code the last line in the editor was hidding because of the CodeMirrorBefore div.
Download this release

Release Info

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

Code changes from version 2.10 to 1.3

assets/ccj_admin-url_rules.js DELETED
@@ -1,294 +0,0 @@
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 DELETED
@@ -1,379 +0,0 @@
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 DELETED
@@ -1,60 +0,0 @@
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
- });
60
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/addon/dialog.css DELETED
@@ -1,32 +0,0 @@
1
- .CodeMirror-dialog {
2
- position: absolute;
3
- left: 0; right: 0;
4
- background: inherit;
5
- z-index: 15;
6
- padding: .1em .8em;
7
- overflow: hidden;
8
- color: inherit;
9
- }
10
-
11
- .CodeMirror-dialog-top {
12
- border-bottom: 1px solid #eee;
13
- top: 0;
14
- }
15
-
16
- .CodeMirror-dialog-bottom {
17
- border-top: 1px solid #eee;
18
- bottom: 0;
19
- }
20
-
21
- .CodeMirror-dialog input {
22
- border: none;
23
- outline: none;
24
- background: transparent;
25
- width: 20em;
26
- color: inherit;
27
- font-family: monospace;
28
- }
29
-
30
- .CodeMirror-dialog button {
31
- font-size: 70%;
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/addon/dialog.js DELETED
@@ -1,157 +0,0 @@
1
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
- // Distributed under an MIT license: http://codemirror.net/LICENSE
3
-
4
- // Open simple dialogs on top of an editor. Relies on dialog.css.
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
- function dialogDiv(cm, template, bottom) {
15
- var wrap = cm.getWrapperElement();
16
- var dialog;
17
- dialog = wrap.appendChild(document.createElement("div"));
18
- if (bottom)
19
- dialog.className = "CodeMirror-dialog CodeMirror-dialog-bottom";
20
- else
21
- dialog.className = "CodeMirror-dialog CodeMirror-dialog-top";
22
-
23
- if (typeof template == "string") {
24
- dialog.innerHTML = template;
25
- } else { // Assuming it's a detached DOM element.
26
- dialog.appendChild(template);
27
- }
28
- return dialog;
29
- }
30
-
31
- function closeNotification(cm, newVal) {
32
- if (cm.state.currentNotificationClose)
33
- cm.state.currentNotificationClose();
34
- cm.state.currentNotificationClose = newVal;
35
- }
36
-
37
- CodeMirror.defineExtension("openDialog", function(template, callback, options) {
38
- if (!options) options = {};
39
-
40
- closeNotification(this, null);
41
-
42
- var dialog = dialogDiv(this, template, options.bottom);
43
- var closed = false, me = this;
44
- function close(newVal) {
45
- if (typeof newVal == 'string') {
46
- inp.value = newVal;
47
- } else {
48
- if (closed) return;
49
- closed = true;
50
- dialog.parentNode.removeChild(dialog);
51
- me.focus();
52
-
53
- if (options.onClose) options.onClose(dialog);
54
- }
55
- }
56
-
57
- var inp = dialog.getElementsByTagName("input")[0], button;
58
- if (inp) {
59
- inp.focus();
60
-
61
- if (options.value) {
62
- inp.value = options.value;
63
- if (options.selectValueOnOpen !== false) {
64
- inp.select();
65
- }
66
- }
67
-
68
- if (options.onInput)
69
- CodeMirror.on(inp, "input", function(e) { options.onInput(e, inp.value, close);});
70
- if (options.onKeyUp)
71
- CodeMirror.on(inp, "keyup", function(e) {options.onKeyUp(e, inp.value, close);});
72
-
73
- CodeMirror.on(inp, "keydown", function(e) {
74
- if (options && options.onKeyDown && options.onKeyDown(e, inp.value, close)) { return; }
75
- if (e.keyCode == 27 || (options.closeOnEnter !== false && e.keyCode == 13)) {
76
- inp.blur();
77
- CodeMirror.e_stop(e);
78
- close();
79
- }
80
- if (e.keyCode == 13) callback(inp.value, e);
81
- });
82
-
83
- if (options.closeOnBlur !== false) CodeMirror.on(inp, "blur", close);
84
- } else if (button = dialog.getElementsByTagName("button")[0]) {
85
- CodeMirror.on(button, "click", function() {
86
- close();
87
- me.focus();
88
- });
89
-
90
- if (options.closeOnBlur !== false) CodeMirror.on(button, "blur", close);
91
-
92
- button.focus();
93
- }
94
- return close;
95
- });
96
-
97
- CodeMirror.defineExtension("openConfirm", function(template, callbacks, options) {
98
- closeNotification(this, null);
99
- var dialog = dialogDiv(this, template, options && options.bottom);
100
- var buttons = dialog.getElementsByTagName("button");
101
- var closed = false, me = this, blurring = 1;
102
- function close() {
103
- if (closed) return;
104
- closed = true;
105
- dialog.parentNode.removeChild(dialog);
106
- me.focus();
107
- }
108
- buttons[0].focus();
109
- for (var i = 0; i < buttons.length; ++i) {
110
- var b = buttons[i];
111
- (function(callback) {
112
- CodeMirror.on(b, "click", function(e) {
113
- CodeMirror.e_preventDefault(e);
114
- close();
115
- if (callback) callback(me);
116
- });
117
- })(callbacks[i]);
118
- CodeMirror.on(b, "blur", function() {
119
- --blurring;
120
- setTimeout(function() { if (blurring <= 0) close(); }, 200);
121
- });
122
- CodeMirror.on(b, "focus", function() { ++blurring; });
123
- }
124
- });
125
-
126
- /*
127
- * openNotification
128
- * Opens a notification, that can be closed with an optional timer
129
- * (default 5000ms timer) and always closes on click.
130
- *
131
- * If a notification is opened while another is opened, it will close the
132
- * currently opened one and open the new one immediately.
133
- */
134
- CodeMirror.defineExtension("openNotification", function(template, options) {
135
- closeNotification(this, close);
136
- var dialog = dialogDiv(this, template, options && options.bottom);
137
- var closed = false, doneTimer;
138
- var duration = options && typeof options.duration !== "undefined" ? options.duration : 5000;
139
-
140
- function close() {
141
- if (closed) return;
142
- closed = true;
143
- clearTimeout(doneTimer);
144
- dialog.parentNode.removeChild(dialog);
145
- }
146
-
147
- CodeMirror.on(dialog, 'click', function(e) {
148
- CodeMirror.e_preventDefault(e);
149
- close();
150
- });
151
-
152
- if (duration)
153
- doneTimer = setTimeout(close, duration);
154
-
155
- return close;
156
- });
157
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/addon/jump-to-line.js DELETED
@@ -1,49 +0,0 @@
1
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
- // Distributed under an MIT license: http://codemirror.net/LICENSE
3
-
4
- // Defines jumpToLine command. Uses dialog.js if present.
5
-
6
- (function(mod) {
7
- if (typeof exports == "object" && typeof module == "object") // CommonJS
8
- mod(require("../../lib/codemirror"), require("../dialog/dialog"));
9
- else if (typeof define == "function" && define.amd) // AMD
10
- define(["../../lib/codemirror", "../dialog/dialog"], mod);
11
- else // Plain browser env
12
- mod(CodeMirror);
13
- })(function(CodeMirror) {
14
- "use strict";
15
-
16
- function dialog(cm, text, shortText, deflt, f) {
17
- if (cm.openDialog) cm.openDialog(text, f, {value: deflt, selectValueOnOpen: true});
18
- else f(prompt(shortText, deflt));
19
- }
20
-
21
- var jumpDialog =
22
- '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>';
23
-
24
- function interpretLine(cm, string) {
25
- var num = Number(string)
26
- if (/^[-+]/.test(string)) return cm.getCursor().line + num
27
- else return num - 1
28
- }
29
-
30
- CodeMirror.commands.jumpToLine = function(cm) {
31
- var cur = cm.getCursor();
32
- dialog(cm, jumpDialog, "Jump to line:", (cur.line + 1) + ":" + cur.ch, function(posStr) {
33
- if (!posStr) return;
34
-
35
- var match;
36
- if (match = /^\s*([\+\-]?\d+)\s*\:\s*(\d+)\s*$/.exec(posStr)) {
37
- cm.setCursor(interpretLine(cm, match[1]), Number(match[2]))
38
- } else if (match = /^\s*([\+\-]?\d+(\.\d+)?)\%\s*/.exec(posStr)) {
39
- var line = Math.round(cm.lineCount() * Number(match[1]) / 100);
40
- if (/^[-+]/.test(match[1])) line = cur.line + line + 1;
41
- cm.setCursor(line - 1, cur.ch);
42
- } else if (match = /^\s*\:?\s*([\+\-]?\d+)\s*/.exec(posStr)) {
43
- cm.setCursor(interpretLine(cm, match[1]), cur.ch);
44
- }
45
- });
46
- };
47
-
48
- CodeMirror.keyMap["default"]["Alt-G"] = "jumpToLine";
49
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/addon/matchesonscrollbar.css DELETED
@@ -1,8 +0,0 @@
1
- .CodeMirror-search-match {
2
- background: gold;
3
- border-top: 1px solid orange;
4
- border-bottom: 1px solid orange;
5
- -moz-box-sizing: border-box;
6
- box-sizing: border-box;
7
- opacity: .5;
8
- }
 
 
 
 
 
 
 
 
assets/codemirror/addon/scroll/simplescrollbars.css DELETED
@@ -1,66 +0,0 @@
1
- .CodeMirror-simplescroll-horizontal div, .CodeMirror-simplescroll-vertical div {
2
- position: absolute;
3
- background: #ccc;
4
- -moz-box-sizing: border-box;
5
- box-sizing: border-box;
6
- border: 1px solid #bbb;
7
- border-radius: 2px;
8
- }
9
-
10
- .CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical {
11
- position: absolute;
12
- z-index: 6;
13
- background: #eee;
14
- }
15
-
16
- .CodeMirror-simplescroll-horizontal {
17
- bottom: 0; left: 0;
18
- height: 8px;
19
- }
20
- .CodeMirror-simplescroll-horizontal div {
21
- bottom: 0;
22
- height: 100%;
23
- }
24
-
25
- .CodeMirror-simplescroll-vertical {
26
- right: 0; top: 0;
27
- width: 8px;
28
- }
29
- .CodeMirror-simplescroll-vertical div {
30
- right: 0;
31
- width: 100%;
32
- }
33
-
34
-
35
- .CodeMirror-overlayscroll .CodeMirror-scrollbar-filler, .CodeMirror-overlayscroll .CodeMirror-gutter-filler {
36
- display: none;
37
- }
38
-
39
- .CodeMirror-overlayscroll-horizontal div, .CodeMirror-overlayscroll-vertical div {
40
- position: absolute;
41
- background: #bcd;
42
- border-radius: 3px;
43
- }
44
-
45
- .CodeMirror-overlayscroll-horizontal, .CodeMirror-overlayscroll-vertical {
46
- position: absolute;
47
- z-index: 6;
48
- }
49
-
50
- .CodeMirror-overlayscroll-horizontal {
51
- bottom: 0; left: 0;
52
- height: 6px;
53
- }
54
- .CodeMirror-overlayscroll-horizontal div {
55
- bottom: 0;
56
- height: 100%;
57
- }
58
-
59
- .CodeMirror-overlayscroll-vertical {
60
- right: 0; top: 0;
61
- width: 6px;
62
- }
63
- .CodeMirror-overlayscroll-vertical div {
64
- right: 0;
65
- width: 100%;
66
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/addon/scroll/simplescrollbars.js DELETED
@@ -1,152 +0,0 @@
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
- function Bar(cls, orientation, scroll) {
15
- this.orientation = orientation;
16
- this.scroll = scroll;
17
- this.screen = this.total = this.size = 1;
18
- this.pos = 0;
19
-
20
- this.node = document.createElement("div");
21
- this.node.className = cls + "-" + orientation;
22
- this.inner = this.node.appendChild(document.createElement("div"));
23
-
24
- var self = this;
25
- CodeMirror.on(this.inner, "mousedown", function(e) {
26
- if (e.which != 1) return;
27
- CodeMirror.e_preventDefault(e);
28
- var axis = self.orientation == "horizontal" ? "pageX" : "pageY";
29
- var start = e[axis], startpos = self.pos;
30
- function done() {
31
- CodeMirror.off(document, "mousemove", move);
32
- CodeMirror.off(document, "mouseup", done);
33
- }
34
- function move(e) {
35
- if (e.which != 1) return done();
36
- self.moveTo(startpos + (e[axis] - start) * (self.total / self.size));
37
- }
38
- CodeMirror.on(document, "mousemove", move);
39
- CodeMirror.on(document, "mouseup", done);
40
- });
41
-
42
- CodeMirror.on(this.node, "click", function(e) {
43
- CodeMirror.e_preventDefault(e);
44
- var innerBox = self.inner.getBoundingClientRect(), where;
45
- if (self.orientation == "horizontal")
46
- where = e.clientX < innerBox.left ? -1 : e.clientX > innerBox.right ? 1 : 0;
47
- else
48
- where = e.clientY < innerBox.top ? -1 : e.clientY > innerBox.bottom ? 1 : 0;
49
- self.moveTo(self.pos + where * self.screen);
50
- });
51
-
52
- function onWheel(e) {
53
- var moved = CodeMirror.wheelEventPixels(e)[self.orientation == "horizontal" ? "x" : "y"];
54
- var oldPos = self.pos;
55
- self.moveTo(self.pos + moved);
56
- if (self.pos != oldPos) CodeMirror.e_preventDefault(e);
57
- }
58
- CodeMirror.on(this.node, "mousewheel", onWheel);
59
- CodeMirror.on(this.node, "DOMMouseScroll", onWheel);
60
- }
61
-
62
- Bar.prototype.setPos = function(pos, force) {
63
- if (pos < 0) pos = 0;
64
- if (pos > this.total - this.screen) pos = this.total - this.screen;
65
- if (!force && pos == this.pos) return false;
66
- this.pos = pos;
67
- this.inner.style[this.orientation == "horizontal" ? "left" : "top"] =
68
- (pos * (this.size / this.total)) + "px";
69
- return true
70
- };
71
-
72
- Bar.prototype.moveTo = function(pos) {
73
- if (this.setPos(pos)) this.scroll(pos, this.orientation);
74
- }
75
-
76
- var minButtonSize = 10;
77
-
78
- Bar.prototype.update = function(scrollSize, clientSize, barSize) {
79
- var sizeChanged = this.screen != clientSize || this.total != scrollSize || this.size != barSize
80
- if (sizeChanged) {
81
- this.screen = clientSize;
82
- this.total = scrollSize;
83
- this.size = barSize;
84
- }
85
-
86
- var buttonSize = this.screen * (this.size / this.total);
87
- if (buttonSize < minButtonSize) {
88
- this.size -= minButtonSize - buttonSize;
89
- buttonSize = minButtonSize;
90
- }
91
- this.inner.style[this.orientation == "horizontal" ? "width" : "height"] =
92
- buttonSize + "px";
93
- this.setPos(this.pos, sizeChanged);
94
- };
95
-
96
- function SimpleScrollbars(cls, place, scroll) {
97
- this.addClass = cls;
98
- this.horiz = new Bar(cls, "horizontal", scroll);
99
- place(this.horiz.node);
100
- this.vert = new Bar(cls, "vertical", scroll);
101
- place(this.vert.node);
102
- this.width = null;
103
- }
104
-
105
- SimpleScrollbars.prototype.update = function(measure) {
106
- if (this.width == null) {
107
- var style = window.getComputedStyle ? window.getComputedStyle(this.horiz.node) : this.horiz.node.currentStyle;
108
- if (style) this.width = parseInt(style.height);
109
- }
110
- var width = this.width || 0;
111
-
112
- var needsH = measure.scrollWidth > measure.clientWidth + 1;
113
- var needsV = measure.scrollHeight > measure.clientHeight + 1;
114
- this.vert.node.style.display = needsV ? "block" : "none";
115
- this.horiz.node.style.display = needsH ? "block" : "none";
116
-
117
- if (needsV) {
118
- this.vert.update(measure.scrollHeight, measure.clientHeight,
119
- measure.viewHeight - (needsH ? width : 0));
120
- this.vert.node.style.bottom = needsH ? width + "px" : "0";
121
- }
122
- if (needsH) {
123
- this.horiz.update(measure.scrollWidth, measure.clientWidth,
124
- measure.viewWidth - (needsV ? width : 0) - measure.barLeft);
125
- this.horiz.node.style.right = needsV ? width + "px" : "0";
126
- this.horiz.node.style.left = measure.barLeft + "px";
127
- }
128
-
129
- return {right: needsV ? width : 0, bottom: needsH ? width : 0};
130
- };
131
-
132
- SimpleScrollbars.prototype.setScrollTop = function(pos) {
133
- this.vert.setPos(pos);
134
- };
135
-
136
- SimpleScrollbars.prototype.setScrollLeft = function(pos) {
137
- this.horiz.setPos(pos);
138
- };
139
-
140
- SimpleScrollbars.prototype.clear = function() {
141
- var parent = this.horiz.node.parentNode;
142
- parent.removeChild(this.horiz.node);
143
- parent.removeChild(this.vert.node);
144
- };
145
-
146
- CodeMirror.scrollbarModel.simple = function(place, scroll) {
147
- return new SimpleScrollbars("CodeMirror-simplescroll", place, scroll);
148
- };
149
- CodeMirror.scrollbarModel.overlay = function(place, scroll) {
150
- return new SimpleScrollbars("CodeMirror-overlayscroll", place, scroll);
151
- };
152
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/addon/search.js DELETED
@@ -1,249 +0,0 @@
1
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
- // Distributed under an MIT license: http://codemirror.net/LICENSE
3
-
4
- // Define search commands. Depends on dialog.js or another
5
- // implementation of the openDialog method.
6
-
7
- // Replace works a little oddly -- it will do the replace on the next
8
- // Ctrl-G (or whatever is bound to findNext) press. You prevent a
9
- // replace by making sure the match is no longer selected when hitting
10
- // Ctrl-G.
11
-
12
- (function(mod) {
13
- if (typeof exports == "object" && typeof module == "object") // CommonJS
14
- mod(require("../../lib/codemirror"), require("./searchcursor"), require("../dialog/dialog"));
15
- else if (typeof define == "function" && define.amd) // AMD
16
- define(["../../lib/codemirror", "./searchcursor", "../dialog/dialog"], mod);
17
- else // Plain browser env
18
- mod(CodeMirror);
19
- })(function(CodeMirror) {
20
- "use strict";
21
-
22
- function searchOverlay(query, caseInsensitive) {
23
- if (typeof query == "string")
24
- query = new RegExp(query.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"), caseInsensitive ? "gi" : "g");
25
- else if (!query.global)
26
- query = new RegExp(query.source, query.ignoreCase ? "gi" : "g");
27
-
28
- return {token: function(stream) {
29
- query.lastIndex = stream.pos;
30
- var match = query.exec(stream.string);
31
- if (match && match.index == stream.pos) {
32
- stream.pos += match[0].length || 1;
33
- return "searching";
34
- } else if (match) {
35
- stream.pos = match.index;
36
- } else {
37
- stream.skipToEnd();
38
- }
39
- }};
40
- }
41
-
42
- function SearchState() {
43
- this.posFrom = this.posTo = this.lastQuery = this.query = null;
44
- this.overlay = null;
45
- }
46
-
47
- function getSearchState(cm) {
48
- return cm.state.search || (cm.state.search = new SearchState());
49
- }
50
-
51
- function queryCaseInsensitive(query) {
52
- return typeof query == "string" && query == query.toLowerCase();
53
- }
54
-
55
- function getSearchCursor(cm, query, pos) {
56
- // Heuristic: if the query string is all lowercase, do a case insensitive search.
57
- return cm.getSearchCursor(query, pos, queryCaseInsensitive(query));
58
- }
59
-
60
- function persistentDialog(cm, text, deflt, onEnter, onKeyDown) {
61
- cm.openDialog(text, onEnter, {
62
- value: deflt,
63
- selectValueOnOpen: true,
64
- closeOnEnter: false,
65
- onClose: function() { clearSearch(cm); },
66
- onKeyDown: onKeyDown
67
- });
68
- }
69
-
70
- function dialog(cm, text, shortText, deflt, f) {
71
- if (cm.openDialog) cm.openDialog(text, f, {value: deflt, selectValueOnOpen: true});
72
- else f(prompt(shortText, deflt));
73
- }
74
-
75
- function confirmDialog(cm, text, shortText, fs) {
76
- if (cm.openConfirm) cm.openConfirm(text, fs);
77
- else if (confirm(shortText)) fs[0]();
78
- }
79
-
80
- function parseString(string) {
81
- return string.replace(/\\(.)/g, function(_, ch) {
82
- if (ch == "n") return "\n"
83
- if (ch == "r") return "\r"
84
- return ch
85
- })
86
- }
87
-
88
- function parseQuery(query) {
89
- var isRE = query.match(/^\/(.*)\/([a-z]*)$/);
90
- if (isRE) {
91
- try { query = new RegExp(isRE[1], isRE[2].indexOf("i") == -1 ? "" : "i"); }
92
- catch(e) {} // Not a regular expression after all, do a string search
93
- } else {
94
- query = parseString(query)
95
- }
96
- if (typeof query == "string" ? query == "" : query.test(""))
97
- query = /x^/;
98
- return query;
99
- }
100
-
101
- var queryDialog =
102
- 'Search: <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>';
103
-
104
- function startSearch(cm, state, query) {
105
- state.queryText = query;
106
- state.query = parseQuery(query);
107
- cm.removeOverlay(state.overlay, queryCaseInsensitive(state.query));
108
- state.overlay = searchOverlay(state.query, queryCaseInsensitive(state.query));
109
- cm.addOverlay(state.overlay);
110
- if (cm.showMatchesOnScrollbar) {
111
- if (state.annotate) { state.annotate.clear(); state.annotate = null; }
112
- state.annotate = cm.showMatchesOnScrollbar(state.query, queryCaseInsensitive(state.query));
113
- }
114
- }
115
-
116
- function doSearch(cm, rev, persistent, immediate) {
117
- var state = getSearchState(cm);
118
- if (state.query) return findNext(cm, rev);
119
- var q = cm.getSelection() || state.lastQuery;
120
- if (persistent && cm.openDialog) {
121
- var hiding = null
122
- var searchNext = function(query, event) {
123
- CodeMirror.e_stop(event);
124
- if (!query) return;
125
- if (query != state.queryText) {
126
- startSearch(cm, state, query);
127
- state.posFrom = state.posTo = cm.getCursor();
128
- }
129
- if (hiding) hiding.style.opacity = 1
130
- findNext(cm, event.shiftKey, function(_, to) {
131
- var dialog
132
- if (to.line < 3 && document.querySelector &&
133
- (dialog = cm.display.wrapper.querySelector(".CodeMirror-dialog")) &&
134
- dialog.getBoundingClientRect().bottom - 4 > cm.cursorCoords(to, "window").top)
135
- (hiding = dialog).style.opacity = .4
136
- })
137
- };
138
- persistentDialog(cm, queryDialog, q, searchNext, function(event, query) {
139
- var cmd = CodeMirror.keyMap[cm.getOption("keyMap")][CodeMirror.keyName(event)];
140
- if (cmd == "findNext" || cmd == "findPrev") {
141
- CodeMirror.e_stop(event);
142
- startSearch(cm, getSearchState(cm), query);
143
- cm.execCommand(cmd);
144
- } else if (cmd == "find" || cmd == "findPersistent") {
145
- CodeMirror.e_stop(event);
146
- searchNext(query, event);
147
- }
148
- });
149
- if (immediate) {
150
- startSearch(cm, state, q);
151
- findNext(cm, rev);
152
- }
153
- } else {
154
- dialog(cm, queryDialog, "Search for:", q, function(query) {
155
- if (query && !state.query) cm.operation(function() {
156
- startSearch(cm, state, query);
157
- state.posFrom = state.posTo = cm.getCursor();
158
- findNext(cm, rev);
159
- });
160
- });
161
- }
162
- }
163
-
164
- function findNext(cm, rev, callback) {cm.operation(function() {
165
- var state = getSearchState(cm);
166
- var cursor = getSearchCursor(cm, state.query, rev ? state.posFrom : state.posTo);
167
- if (!cursor.find(rev)) {
168
- cursor = getSearchCursor(cm, state.query, rev ? CodeMirror.Pos(cm.lastLine()) : CodeMirror.Pos(cm.firstLine(), 0));
169
- if (!cursor.find(rev)) return;
170
- }
171
- cm.setSelection(cursor.from(), cursor.to());
172
- cm.scrollIntoView({from: cursor.from(), to: cursor.to()}, 20);
173
- state.posFrom = cursor.from(); state.posTo = cursor.to();
174
- if (callback) callback(cursor.from(), cursor.to())
175
- });}
176
-
177
- function clearSearch(cm) {cm.operation(function() {
178
- var state = getSearchState(cm);
179
- state.lastQuery = state.query;
180
- if (!state.query) return;
181
- state.query = state.queryText = null;
182
- cm.removeOverlay(state.overlay);
183
- if (state.annotate) { state.annotate.clear(); state.annotate = null; }
184
- });}
185
-
186
- var replaceQueryDialog =
187
- ' <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>';
188
- var replacementQueryDialog = 'With: <input type="text" style="width: 10em" class="CodeMirror-search-field"/>';
189
- var doReplaceConfirm = "Replace? <button>Yes</button> <button>No</button> <button>All</button> <button>Stop</button>";
190
-
191
- function replaceAll(cm, query, text) {
192
- cm.operation(function() {
193
- for (var cursor = getSearchCursor(cm, query); cursor.findNext();) {
194
- if (typeof query != "string") {
195
- var match = cm.getRange(cursor.from(), cursor.to()).match(query);
196
- cursor.replace(text.replace(/\$(\d)/g, function(_, i) {return match[i];}));
197
- } else cursor.replace(text);
198
- }
199
- });
200
- }
201
-
202
- function replace(cm, all) {
203
- if (cm.getOption("readOnly")) return;
204
- var query = cm.getSelection() || getSearchState(cm).lastQuery;
205
- var dialogText = all ? "Replace all:" : "Replace:"
206
- dialog(cm, dialogText + replaceQueryDialog, dialogText, query, function(query) {
207
- if (!query) return;
208
- query = parseQuery(query);
209
- dialog(cm, replacementQueryDialog, "Replace with:", "", function(text) {
210
- text = parseString(text)
211
- if (all) {
212
- replaceAll(cm, query, text)
213
- } else {
214
- clearSearch(cm);
215
- var cursor = getSearchCursor(cm, query, cm.getCursor("from"));
216
- var advance = function() {
217
- var start = cursor.from(), match;
218
- if (!(match = cursor.findNext())) {
219
- cursor = getSearchCursor(cm, query);
220
- if (!(match = cursor.findNext()) ||
221
- (start && cursor.from().line == start.line && cursor.from().ch == start.ch)) return;
222
- }
223
- cm.setSelection(cursor.from(), cursor.to());
224
- cm.scrollIntoView({from: cursor.from(), to: cursor.to()});
225
- confirmDialog(cm, doReplaceConfirm, "Replace?",
226
- [function() {doReplace(match);}, advance,
227
- function() {replaceAll(cm, query, text)}]);
228
- };
229
- var doReplace = function(match) {
230
- cursor.replace(typeof query == "string" ? text :
231
- text.replace(/\$(\d)/g, function(_, i) {return match[i];}));
232
- advance();
233
- };
234
- advance();
235
- }
236
- });
237
- });
238
- }
239
-
240
- CodeMirror.commands.find = function(cm) {clearSearch(cm); doSearch(cm);};
241
- CodeMirror.commands.findPersistent = function(cm) {clearSearch(cm); doSearch(cm, false, true);};
242
- CodeMirror.commands.findPersistentNext = function(cm) {doSearch(cm, false, true, true);};
243
- CodeMirror.commands.findPersistentPrev = function(cm) {doSearch(cm, true, true, true);};
244
- CodeMirror.commands.findNext = doSearch;
245
- CodeMirror.commands.findPrev = function(cm) {doSearch(cm, true);};
246
- CodeMirror.commands.clearSearch = clearSearch;
247
- CodeMirror.commands.replace = replace;
248
- CodeMirror.commands.replaceAll = function(cm) {replace(cm, true);};
249
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/addon/searchcursor.js DELETED
@@ -1,189 +0,0 @@
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
- var Pos = CodeMirror.Pos;
14
-
15
- function SearchCursor(doc, query, pos, caseFold) {
16
- this.atOccurrence = false; this.doc = doc;
17
- if (caseFold == null && typeof query == "string") caseFold = false;
18
-
19
- pos = pos ? doc.clipPos(pos) : Pos(0, 0);
20
- this.pos = {from: pos, to: pos};
21
-
22
- // The matches method is filled in based on the type of query.
23
- // It takes a position and a direction, and returns an object
24
- // describing the next occurrence of the query, or null if no
25
- // more matches were found.
26
- if (typeof query != "string") { // Regexp match
27
- if (!query.global) query = new RegExp(query.source, query.ignoreCase ? "ig" : "g");
28
- this.matches = function(reverse, pos) {
29
- if (reverse) {
30
- query.lastIndex = 0;
31
- var line = doc.getLine(pos.line).slice(0, pos.ch), cutOff = 0, match, start;
32
- for (;;) {
33
- query.lastIndex = cutOff;
34
- var newMatch = query.exec(line);
35
- if (!newMatch) break;
36
- match = newMatch;
37
- start = match.index;
38
- cutOff = match.index + (match[0].length || 1);
39
- if (cutOff == line.length) break;
40
- }
41
- var matchLen = (match && match[0].length) || 0;
42
- if (!matchLen) {
43
- if (start == 0 && line.length == 0) {match = undefined;}
44
- else if (start != doc.getLine(pos.line).length) {
45
- matchLen++;
46
- }
47
- }
48
- } else {
49
- query.lastIndex = pos.ch;
50
- var line = doc.getLine(pos.line), match = query.exec(line);
51
- var matchLen = (match && match[0].length) || 0;
52
- var start = match && match.index;
53
- if (start + matchLen != line.length && !matchLen) matchLen = 1;
54
- }
55
- if (match && matchLen)
56
- return {from: Pos(pos.line, start),
57
- to: Pos(pos.line, start + matchLen),
58
- match: match};
59
- };
60
- } else { // String query
61
- var origQuery = query;
62
- if (caseFold) query = query.toLowerCase();
63
- var fold = caseFold ? function(str){return str.toLowerCase();} : function(str){return str;};
64
- var target = query.split("\n");
65
- // Different methods for single-line and multi-line queries
66
- if (target.length == 1) {
67
- if (!query.length) {
68
- // Empty string would match anything and never progress, so
69
- // we define it to match nothing instead.
70
- this.matches = function() {};
71
- } else {
72
- this.matches = function(reverse, pos) {
73
- if (reverse) {
74
- var orig = doc.getLine(pos.line).slice(0, pos.ch), line = fold(orig);
75
- var match = line.lastIndexOf(query);
76
- if (match > -1) {
77
- match = adjustPos(orig, line, match);
78
- return {from: Pos(pos.line, match), to: Pos(pos.line, match + origQuery.length)};
79
- }
80
- } else {
81
- var orig = doc.getLine(pos.line).slice(pos.ch), line = fold(orig);
82
- var match = line.indexOf(query);
83
- if (match > -1) {
84
- match = adjustPos(orig, line, match) + pos.ch;
85
- return {from: Pos(pos.line, match), to: Pos(pos.line, match + origQuery.length)};
86
- }
87
- }
88
- };
89
- }
90
- } else {
91
- var origTarget = origQuery.split("\n");
92
- this.matches = function(reverse, pos) {
93
- var last = target.length - 1;
94
- if (reverse) {
95
- if (pos.line - (target.length - 1) < doc.firstLine()) return;
96
- if (fold(doc.getLine(pos.line).slice(0, origTarget[last].length)) != target[target.length - 1]) return;
97
- var to = Pos(pos.line, origTarget[last].length);
98
- for (var ln = pos.line - 1, i = last - 1; i >= 1; --i, --ln)
99
- if (target[i] != fold(doc.getLine(ln))) return;
100
- var line = doc.getLine(ln), cut = line.length - origTarget[0].length;
101
- if (fold(line.slice(cut)) != target[0]) return;
102
- return {from: Pos(ln, cut), to: to};
103
- } else {
104
- if (pos.line + (target.length - 1) > doc.lastLine()) return;
105
- var line = doc.getLine(pos.line), cut = line.length - origTarget[0].length;
106
- if (fold(line.slice(cut)) != target[0]) return;
107
- var from = Pos(pos.line, cut);
108
- for (var ln = pos.line + 1, i = 1; i < last; ++i, ++ln)
109
- if (target[i] != fold(doc.getLine(ln))) return;
110
- if (fold(doc.getLine(ln).slice(0, origTarget[last].length)) != target[last]) return;
111
- return {from: from, to: Pos(ln, origTarget[last].length)};
112
- }
113
- };
114
- }
115
- }
116
- }
117
-
118
- SearchCursor.prototype = {
119
- findNext: function() {return this.find(false);},
120
- findPrevious: function() {return this.find(true);},
121
-
122
- find: function(reverse) {
123
- var self = this, pos = this.doc.clipPos(reverse ? this.pos.from : this.pos.to);
124
- function savePosAndFail(line) {
125
- var pos = Pos(line, 0);
126
- self.pos = {from: pos, to: pos};
127
- self.atOccurrence = false;
128
- return false;
129
- }
130
-
131
- for (;;) {
132
- if (this.pos = this.matches(reverse, pos)) {
133
- this.atOccurrence = true;
134
- return this.pos.match || true;
135
- }
136
- if (reverse) {
137
- if (!pos.line) return savePosAndFail(0);
138
- pos = Pos(pos.line-1, this.doc.getLine(pos.line-1).length);
139
- }
140
- else {
141
- var maxLine = this.doc.lineCount();
142
- if (pos.line == maxLine - 1) return savePosAndFail(maxLine);
143
- pos = Pos(pos.line + 1, 0);
144
- }
145
- }
146
- },
147
-
148
- from: function() {if (this.atOccurrence) return this.pos.from;},
149
- to: function() {if (this.atOccurrence) return this.pos.to;},
150
-
151
- replace: function(newText, origin) {
152
- if (!this.atOccurrence) return;
153
- var lines = CodeMirror.splitLines(newText);
154
- this.doc.replaceRange(lines, this.pos.from, this.pos.to, origin);
155
- this.pos.to = Pos(this.pos.from.line + lines.length - 1,
156
- lines[lines.length - 1].length + (lines.length == 1 ? this.pos.from.ch : 0));
157
- }
158
- };
159
-
160
- // Maps a position in a case-folded line back to a position in the original line
161
- // (compensating for codepoints increasing in number during folding)
162
- function adjustPos(orig, folded, pos) {
163
- if (orig.length == folded.length) return pos;
164
- for (var pos1 = Math.min(pos, orig.length);;) {
165
- var len1 = orig.slice(0, pos1).toLowerCase().length;
166
- if (len1 < pos) ++pos1;
167
- else if (len1 > pos) --pos1;
168
- else return pos1;
169
- }
170
- }
171
-
172
- CodeMirror.defineExtension("getSearchCursor", function(query, pos, caseFold) {
173
- return new SearchCursor(this.doc, query, pos, caseFold);
174
- });
175
- CodeMirror.defineDocExtension("getSearchCursor", function(query, pos, caseFold) {
176
- return new SearchCursor(this, query, pos, caseFold);
177
- });
178
-
179
- CodeMirror.defineExtension("selectMatches", function(query, caseFold) {
180
- var ranges = [];
181
- var cur = this.getSearchCursor(query, this.getCursor("from"), caseFold);
182
- while (cur.findNext()) {
183
- if (CodeMirror.cmpPos(cur.to(), this.getCursor("to")) > 0) break;
184
- ranges.push({anchor: cur.from(), head: cur.to()});
185
- }
186
- if (ranges.length)
187
- this.setSelections(ranges, 0);
188
- });
189
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/codemirror-compressed.css DELETED
@@ -1 +0,0 @@
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;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-ruler{border-left:1px solid #ccc;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-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,.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-invalidchar,.cm-s-default .cm-error{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;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.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}.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-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}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected,.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.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/codemirror-compressed.js DELETED
@@ -1,21 +0,0 @@
1
- /* CodeMirror - Minified & Bundled
2
- Generated on 1/4/2016 with http://codemirror.net/doc/compress.html
3
- Version: HEAD
4
-
5
- CodeMirror Library:
6
- - codemirror.js
7
- Modes:
8
- - css.js
9
- - htmlmixed.js
10
- - javascript.js
11
- Add-ons:
12
- - matchbrackets.js
13
- */
14
-
15
- !function(a){if("object"==typeof exports&&"object"==typeof module)module.exports=a();else{if("function"==typeof define&&define.amd)return define([],a);(this||window).CodeMirror=a()}}(function(){"use strict";function x(a,b){if(!(this instanceof x))return new x(a,b);this.options=b=b?mg(b):{},mg(Dd,b,!1),K(b);var c=b.value;"string"==typeof c&&(c=new df(c,b.mode,null,b.lineSeparator)),this.doc=c;var d=new x.inputStyles[b.inputStyle](this),e=this.display=new y(a,c,d);e.wrapper.CodeMirror=this,G(this),E(this),b.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),b.autofocus&&!p&&e.input.focus(),O(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 bg,keySeq:null,specialChars:null};var i=this;f&&11>g&&setTimeout(function(){i.display.input.reset(!0)},20),sc(this),Gg(),Yb(this),this.curOp.forceUpdate=!0,hf(this,c),b.autofocus&&!p||i.hasFocus()?setTimeout(ng(ad,this),20):bd(this);for(var j in Ed)Ed.hasOwnProperty(j)&&Ed[j](this,b[j],Gd);T(this),b.finishInit&&b.finishInit(this);for(var k=0;k<Kd.length;++k)Kd[k](this);$b(this),h&&b.lineWrapping&&"optimizelegibility"==getComputedStyle(e.lineDiv).textRendering&&(e.lineDiv.style.textRendering="auto")}function y(a,b,d){var e=this;this.input=d,e.scrollbarFiller=ug("div",null,"CodeMirror-scrollbar-filler"),e.scrollbarFiller.setAttribute("cm-not-content","true"),e.gutterFiller=ug("div",null,"CodeMirror-gutter-filler"),e.gutterFiller.setAttribute("cm-not-content","true"),e.lineDiv=ug("div",null,"CodeMirror-code"),e.selectionDiv=ug("div",null,null,"position: relative; z-index: 1"),e.cursorDiv=ug("div",null,"CodeMirror-cursors"),e.measure=ug("div",null,"CodeMirror-measure"),e.lineMeasure=ug("div",null,"CodeMirror-measure"),e.lineSpace=ug("div",[e.measure,e.lineMeasure,e.selectionDiv,e.cursorDiv,e.lineDiv],null,"position: relative; outline: none"),e.mover=ug("div",[ug("div",[e.lineSpace],"CodeMirror-lines")],null,"position: relative"),e.sizer=ug("div",[e.mover],"CodeMirror-sizer"),e.sizerWidth=null,e.heightForcer=ug("div",null,null,"position: absolute; height: "+Yf+"px; width: 1px;"),e.gutters=ug("div",null,"CodeMirror-gutters"),e.lineGutter=null,e.scroller=ug("div",[e.sizer,e.heightForcer,e.gutters],"CodeMirror-scroll"),e.scroller.setAttribute("tabIndex","-1"),e.wrapper=ug("div",[e.scrollbarFiller,e.gutterFiller,e.scroller],"CodeMirror"),f&&8>g&&(e.gutters.style.zIndex=-1,e.scroller.style.paddingRight=0),h||c&&p||(e.scroller.draggable=!0),a&&(a.appendChild?a.appendChild(e.wrapper):a(e.wrapper)),e.viewFrom=e.viewTo=b.first,e.reportedViewFrom=e.reportedViewTo=b.first,e.view=[],e.renderedView=null,e.externalMeasured=null,e.viewOffset=0,e.lastWrapHeight=e.lastWrapWidth=0,e.updateLineNumbers=null,e.nativeBarWidth=e.barHeight=e.barWidth=0,e.scrollbarsClipped=!1,e.lineNumWidth=e.lineNumInnerWidth=e.lineNumChars=null,e.alignWidgets=!1,e.cachedCharWidth=e.cachedTextHeight=e.cachedPaddingH=null,e.maxLine=null,e.maxLineLength=0,e.maxLineChanged=!1,e.wheelDX=e.wheelDY=e.wheelStartX=e.wheelStartY=null,e.shift=!1,e.selForContextMenu=null,e.activeTouch=null,d.init(e)}function z(a){a.doc.mode=x.getMode(a.options,a.doc.modeOption),A(a)}function A(a){a.doc.iter(function(a){a.stateAfter&&(a.stateAfter=null),a.styles&&(a.styles=null)}),a.doc.frontier=a.doc.first,lb(a,100),a.state.modeGen++,a.curOp&&lc(a)}function B(a){a.options.lineWrapping?(Cg(a.display.wrapper,"CodeMirror-wrap"),a.display.sizer.style.minWidth="",a.display.sizerWidth=null):(Bg(a.display.wrapper,"CodeMirror-wrap"),J(a)),D(a),lc(a),Ib(a),setTimeout(function(){P(a)},100)}function C(a){var b=Ub(a.display),c=a.options.lineWrapping,d=c&&Math.max(5,a.display.scroller.clientWidth/Vb(a.display)-3);return function(e){if(ze(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 D(a){var b=a.doc,c=C(a);b.iter(function(a){var b=c(a);b!=a.height&&mf(a,b)})}function E(a){a.display.wrapper.className=a.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+a.options.theme.replace(/(^|\s)\s*/g," cm-s-"),Ib(a)}function F(a){G(a),lc(a),setTimeout(function(){S(a)},20)}function G(a){var b=a.display.gutters,c=a.options.gutters;wg(b);for(var d=0;d<c.length;++d){var e=c[d],f=b.appendChild(ug("div",null,"CodeMirror-gutter "+e));"CodeMirror-linenumbers"==e&&(a.display.lineGutter=f,f.style.width=(a.display.lineNumWidth||1)+"px")}b.style.display=d?"":"none",H(a)}function H(a){var b=a.display.gutters.offsetWidth;a.display.sizer.style.marginLeft=b+"px"}function I(a){if(0==a.height)return 0;for(var c,b=a.text.length,d=a;c=se(d);){var e=c.find(0,!0);d=e.from.line,b+=e.from.ch-e.to.ch}for(d=a;c=te(d);){var e=c.find(0,!0);b-=d.text.length-e.from.ch,d=e.to.line,b+=d.text.length-e.to.ch}return b}function J(a){var b=a.display,c=a.doc;b.maxLine=jf(c,c.first),b.maxLineLength=I(b.maxLine),b.maxLineChanged=!0,c.iter(function(a){var c=I(a);c>b.maxLineLength&&(b.maxLineLength=c,b.maxLine=a)})}function K(a){var b=ig(a.gutters,"CodeMirror-linenumbers");-1==b&&a.lineNumbers?a.gutters=a.gutters.concat(["CodeMirror-linenumbers"]):b>-1&&!a.lineNumbers&&(a.gutters=a.gutters.slice(0),a.gutters.splice(b,1))}function L(a){var b=a.display,c=b.gutters.offsetWidth,d=Math.round(a.doc.height+qb(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+sb(a)+b.barHeight,nativeBarWidth:b.nativeBarWidth,gutterWidth:c}}function M(a,b,c){this.cm=c;var d=this.vert=ug("div",[ug("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),e=this.horiz=ug("div",[ug("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");a(d),a(e),Mf(d,"scroll",function(){d.clientHeight&&b(d.scrollTop,"vertical")}),Mf(e,"scroll",function(){e.clientWidth&&b(e.scrollLeft,"horizontal")}),this.checkedZeroWidth=!1,f&&8>g&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")}function N(){}function O(a){a.display.scrollbars&&(a.display.scrollbars.clear(),a.display.scrollbars.addClass&&Bg(a.display.wrapper,a.display.scrollbars.addClass)),a.display.scrollbars=new x.scrollbarModel[a.options.scrollbarStyle](function(b){a.display.wrapper.insertBefore(b,a.display.scrollbarFiller),Mf(b,"mousedown",function(){a.state.focused&&setTimeout(function(){a.display.input.focus()},0)}),b.setAttribute("cm-not-content","true")},function(b,c){"horizontal"==c?Lc(a,b):Kc(a,b)},a),a.display.scrollbars.addClass&&Cg(a.display.wrapper,a.display.scrollbars.addClass)}function P(a,b){b||(b=L(a));var c=a.display.barWidth,d=a.display.barHeight;Q(a,b);for(var e=0;4>e&&c!=a.display.barWidth||d!=a.display.barHeight;e++)c!=a.display.barWidth&&a.options.lineWrapping&&aa(a),Q(a,L(a)),c=a.display.barWidth,d=a.display.barHeight}function Q(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",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 R(a,b,c){var d=c&&null!=c.top?Math.max(0,c.top):a.scroller.scrollTop;d=Math.floor(d-pb(a));var e=c&&null!=c.bottom?c.bottom:d+a.wrapper.clientHeight,f=of(b,d),g=of(b,e);if(c&&c.ensure){var h=c.ensure.from.line,i=c.ensure.to.line;f>h?(f=h,g=of(b,pf(jf(b,h))+a.wrapper.clientHeight)):Math.min(i,b.lastLine())>=g&&(f=of(b,pf(jf(b,i))-a.wrapper.clientHeight),g=i)}return{from:f,to:Math.max(g,f+1)}}function S(a){var b=a.display,c=b.view;if(b.alignWidgets||b.gutters.firstChild&&a.options.fixedGutter){for(var d=V(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&&c[g].gutter&&(c[g].gutter.style.left=f);var h=c[g].alignable;if(h)for(var i=0;i<h.length;i++)h[i].style.left=f}a.options.fixedGutter&&(b.gutters.style.left=d+e+"px")}}function T(a){if(!a.options.lineNumbers)return!1;var b=a.doc,c=U(a.options,b.first+b.size-1),d=a.display;if(c.length!=d.lineNumChars){var e=d.measure.appendChild(ug("div",[ug("div",c)],"CodeMirror-linenumber CodeMirror-gutter-elt")),f=e.firstChild.offsetWidth,g=e.offsetWidth-f;return d.lineGutter.style.width="",d.lineNumInnerWidth=Math.max(f,d.lineGutter.offsetWidth-g)+1,d.lineNumWidth=d.lineNumInnerWidth+g,d.lineNumChars=d.lineNumInnerWidth?c.length:-1,d.lineGutter.style.width=d.lineNumWidth+"px",H(a),!0}return!1}function U(a,b){return String(a.lineNumberFormatter(b+a.firstLineNumber))}function V(a){return a.scroller.getBoundingClientRect().left-a.sizer.getBoundingClientRect().left}function W(a,b,c){var d=a.display;this.viewport=b,this.visible=R(d,a.doc,b),this.editorIsHidden=!d.wrapper.offsetWidth,this.wrapperHeight=d.wrapper.clientHeight,this.wrapperWidth=d.wrapper.clientWidth,this.oldDisplayWidth=tb(a),this.force=c,this.dims=ca(a),this.events=[]}function X(a){var b=a.display;!b.scrollbarsClipped&&b.scroller.offsetWidth&&(b.nativeBarWidth=b.scroller.offsetWidth-b.scroller.clientWidth,b.heightForcer.style.height=sb(a)+"px",b.sizer.style.marginBottom=-b.nativeBarWidth+"px",b.sizer.style.borderRightWidth=sb(a)+"px",b.scrollbarsClipped=!0)}function Y(a,b){var c=a.display,d=a.doc;if(b.editorIsHidden)return nc(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==rc(a))return!1;T(a)&&(nc(a),b.dims=ca(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&&f-c.viewFrom<20&&(f=Math.max(d.first,c.viewFrom)),c.viewTo>g&&c.viewTo-g<20&&(g=Math.min(e,c.viewTo)),w&&(f=xe(a.doc,f),g=ye(a.doc,g));var h=f!=c.viewFrom||g!=c.viewTo||c.lastWrapHeight!=b.wrapperHeight||c.lastWrapWidth!=b.wrapperWidth;qc(a,f,g),c.viewOffset=pf(jf(a.doc,c.viewFrom)),a.display.mover.style.top=c.viewOffset+"px";var i=rc(a);if(!h&&0==i&&!b.force&&c.renderedView==c.view&&(null==c.updateLineNumbers||c.updateLineNumbers>=c.viewTo))return!1;var j=zg();return i>4&&(c.lineDiv.style.display="none"),da(a,c.updateLineNumbers,b.dims),i>4&&(c.lineDiv.style.display=""),c.renderedView=c.view,j&&zg()!=j&&j.offsetHeight&&j.focus(),wg(c.cursorDiv),wg(c.selectionDiv),c.gutters.style.height=c.sizer.style.minHeight=0,h&&(c.lastWrapHeight=b.wrapperHeight,c.lastWrapWidth=b.wrapperWidth,lb(a,400)),c.updateLineNumbers=null,!0}function Z(a,b){for(var c=b.viewport,d=!0;(d&&a.options.lineWrapping&&b.oldDisplayWidth!=tb(a)||(c&&null!=c.top&&(c={top:Math.min(a.doc.height+qb(a.display)-ub(a),c.top)}),b.visible=R(a.display,a.doc,c),!(b.visible.from>=a.display.viewFrom&&b.visible.to<=a.display.viewTo)))&&Y(a,b);d=!1){aa(a);var e=L(a);gb(a),_(a,e),P(a,e)}b.signal(a,"update",a),(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 $(a,b){var c=new W(a,b);if(Y(a,c)){aa(a),Z(a,c);var d=L(a);gb(a),_(a,d),P(a,d),c.finish()}}function _(a,b){a.display.sizer.style.minHeight=b.docHeight+"px";var c=b.docHeight+a.display.barHeight;a.display.heightForcer.style.top=c+"px",a.display.gutters.style.height=Math.max(c+sb(a),b.clientHeight)+"px"}function aa(a){for(var b=a.display,c=b.lineDiv.offsetTop,d=0;d<b.view.length;d++){var h,e=b.view[d];if(!e.hidden){if(f&&8>g){var i=e.node.offsetTop+e.node.offsetHeight;h=i-c,c=i}else{var j=e.node.getBoundingClientRect();h=j.bottom-j.top}var k=e.line.height-h;if(2>h&&(h=Ub(b)),(k>.001||-.001>k)&&(mf(e.line,h),ba(e.line),e.rest))for(var l=0;l<e.rest.length;l++)ba(e.rest[l])}}}function ba(a){if(a.widgets)for(var b=0;b<a.widgets.length;++b)a.widgets[b].height=a.widgets[b].node.parentNode.offsetHeight}function ca(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:V(b),gutterTotalWidth:b.gutters.offsetWidth,gutterLeft:c,gutterWidth:d,wrapperWidth:b.wrapper.clientWidth}}function da(a,b,c){function i(b){var c=b.nextSibling;return h&&q&&a.display.currentWheelTarget==b?b.style.display="none":b.parentNode.removeChild(b),c}for(var d=a.display,e=a.options.lineNumbers,f=d.lineDiv,g=f.firstChild,j=d.view,k=d.viewFrom,l=0;l<j.length;l++){var m=j[l];if(m.hidden);else if(m.node&&m.node.parentNode==f){for(;g!=m.node;)g=i(g);var o=e&&null!=b&&k>=b&&m.lineNumber;m.changes&&(ig(m.changes,"gutter")>-1&&(o=!1),ea(a,m,k,c)),o&&(wg(m.lineNumber),m.lineNumber.appendChild(document.createTextNode(U(a.options,k)))),g=m.node.nextSibling}else{var n=ma(a,m,k,c);f.insertBefore(n,g)}k+=m.size}for(;g;)g=i(g)}function ea(a,b,c,d){for(var e=0;e<b.changes.length;e++){var f=b.changes[e];"text"==f?ia(a,b):"gutter"==f?ka(a,b,c,d):"class"==f?ja(b):"widget"==f&&la(a,b,d)}b.changes=null}function fa(a){return a.node==a.text&&(a.node=ug("div",null,null,"position: relative"),a.text.parentNode&&a.text.parentNode.replaceChild(a.node,a.text),a.node.appendChild(a.text),f&&8>g&&(a.node.style.zIndex=2)),a.node}function ga(a){var b=a.bgClass?a.bgClass+" "+(a.line.bgClass||""):a.line.bgClass;if(b&&(b+=" CodeMirror-linebackground"),a.background)b?a.background.className=b:(a.background.parentNode.removeChild(a.background),a.background=null);else if(b){var c=fa(a);a.background=c.insertBefore(ug("div",null,b),c.firstChild)}}function ha(a,b){var c=a.display.externalMeasured;return c&&c.line==b.line?(a.display.externalMeasured=null,b.measure=c.measure,c.built):Te(a,b)}function ia(a,b){var c=b.text.className,d=ha(a,b);b.text==b.node&&(b.node=d.pre),b.text.parentNode.replaceChild(d.pre,b.text),b.text=d.pre,d.bgClass!=b.bgClass||d.textClass!=b.textClass?(b.bgClass=d.bgClass,b.textClass=d.textClass,ja(b)):c&&(b.text.className=c)}function ja(a){ga(a),a.line.wrapClass?fa(a).className=a.line.wrapClass:a.node!=a.text&&(a.node.className="");var b=a.textClass?a.textClass+" "+(a.line.textClass||""):a.line.textClass;a.text.className=b||""}function ka(a,b,c,d){if(b.gutter&&(b.node.removeChild(b.gutter),b.gutter=null),b.gutterBackground&&(b.node.removeChild(b.gutterBackground),b.gutterBackground=null),b.line.gutterClass){var e=fa(b);b.gutterBackground=ug("div",null,"CodeMirror-gutter-background "+b.line.gutterClass,"left: "+(a.options.fixedGutter?d.fixedPos:-d.gutterTotalWidth)+"px; width: "+d.gutterTotalWidth+"px"),e.insertBefore(b.gutterBackground,b.text)}var f=b.line.gutterMarkers;if(a.options.lineNumbers||f){var e=fa(b),g=b.gutter=ug("div",null,"CodeMirror-gutter-wrapper","left: "+(a.options.fixedGutter?d.fixedPos:-d.gutterTotalWidth)+"px");if(a.display.input.setUneditable(g),e.insertBefore(g,b.text),b.line.gutterClass&&(g.className+=" "+b.line.gutterClass),!a.options.lineNumbers||f&&f["CodeMirror-linenumbers"]||(b.lineNumber=g.appendChild(ug("div",U(a.options,c),"CodeMirror-linenumber CodeMirror-gutter-elt","left: "+d.gutterLeft["CodeMirror-linenumbers"]+"px; width: "+a.display.lineNumInnerWidth+"px"))),f)for(var h=0;h<a.options.gutters.length;++h){var i=a.options.gutters[h],j=f.hasOwnProperty(i)&&f[i];j&&g.appendChild(ug("div",[j],"CodeMirror-gutter-elt","left: "+d.gutterLeft[i]+"px; width: "+d.gutterWidth[i]+"px"))}}}function la(a,b,c){b.alignable&&(b.alignable=null);for(var e,d=b.node.firstChild;d;d=e){var e=d.nextSibling;"CodeMirror-linewidget"==d.className&&b.node.removeChild(d)}na(a,b,c)}function ma(a,b,c,d){var e=ha(a,b);return b.text=b.node=e.pre,e.bgClass&&(b.bgClass=e.bgClass),e.textClass&&(b.textClass=e.textClass),ja(b),ka(a,b,c,d),na(a,b,d),b.node}function na(a,b,c){if(oa(a,b.line,b,c,!0),b.rest)for(var d=0;d<b.rest.length;d++)oa(a,b.rest[d],b,c,!1)}function oa(a,b,c,d,e){if(b.widgets)for(var f=fa(c),g=0,h=b.widgets;g<h.length;++g){var i=h[g],j=ug("div",[i.node],"CodeMirror-linewidget");i.handleMouseEvents||j.setAttribute("cm-ignore-events","true"),pa(i,j,c,d),a.display.input.setUneditable(j),e&&i.above?f.insertBefore(j,c.gutter||c.text):f.appendChild(j),Sf(i,"redraw")}}function pa(a,b,c,d){if(a.noHScroll){(c.alignable||(c.alignable=[])).push(b);var e=d.wrapperWidth;b.style.left=d.fixedPos+"px",a.coverGutter||(e-=d.gutterTotalWidth,b.style.paddingLeft=d.gutterTotalWidth+"px"),b.style.width=e+"px"}a.coverGutter&&(b.style.zIndex=5,b.style.position="relative",a.noHScroll||(b.style.marginLeft=-d.gutterTotalWidth+"px"))}function sa(a){return qa(a.line,a.ch)}function ta(a,b){return ra(a,b)<0?b:a}function ua(a,b){return ra(a,b)<0?a:b}function va(a){a.state.focused||(a.display.input.focus(),ad(a))}function xa(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=f.splitLines(b),i=null;if(g&&d.ranges.length>1)if(wa&&wa.join("\n")==b){if(d.ranges.length%wa.length==0){i=[];for(var j=0;j<wa.length;j++)i.push(f.splitLines(wa[j]))}}else h.length==d.ranges.length&&(i=jg(h,function(a){return[a]}));for(var j=d.ranges.length-1;j>=0;j--){var k=d.ranges[j],l=k.from(),m=k.to();k.empty()&&(c&&c>0?l=qa(l.line,l.ch-c):a.state.overwrite&&!g&&(m=qa(m.line,Math.min(jf(f,m.line).text.length,m.ch+gg(h).length))));var n=a.curOp.updateInput,o={from:l,to:m,text:i?i[j%i.length]:h,origin:e||(g?"paste":a.state.cutIncoming?"cut":"+input")};kd(a.doc,o),Sf(a,"inputRead",a,o)}b&&!g&&za(a,b),wd(a),a.curOp.updateInput=n,a.curOp.typing=!0,a.state.pasteIncoming=a.state.cutIncoming=!1}function ya(a,b){var c=a.clipboardData&&a.clipboardData.getData("text/plain");return c?(a.preventDefault(),b.isReadOnly()||b.options.disableInput||fc(b,function(){xa(b,c,0,null,"paste")}),!0):void 0}function za(a,b){if(a.options.electricChars&&a.options.smartIndent)for(var c=a.doc.sel,d=c.ranges.length-1;d>=0;d--){var e=c.ranges[d];if(!(e.head.ch>100||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(b.indexOf(f.electricChars.charAt(h))>-1){g=yd(a,e.head.line,"smart");break}}else f.electricInput&&f.electricInput.test(jf(a.doc,e.head.line).text.slice(0,e.head.ch))&&(g=yd(a,e.head.line,"smart"));g&&Sf(a,"electricInput",a,e.head.line)}}}function Aa(a){for(var b=[],c=[],d=0;d<a.doc.sel.ranges.length;d++){var e=a.doc.sel.ranges[d].head.line,f={anchor:qa(e,0),head:qa(e+1,0)};c.push(f),b.push(a.getRange(f.anchor,f.head))}return{text:b,ranges:c}}function Ba(a){a.setAttribute("autocorrect","off"),a.setAttribute("autocapitalize","off"),a.setAttribute("spellcheck","false")}function Ca(a){this.cm=a,this.prevInput="",this.pollingFast=!1,this.polling=new bg,this.inaccurateSelection=!1,this.hasSelection=!1,this.composing=null}function Da(){var a=ug("textarea",null,null,"position: absolute; padding: 0; width: 1px; height: 1em; outline: none"),b=ug("div",[a],null,"overflow: hidden; position: relative; width: 3px; height: 0px;");return h?a.style.width="1000px":a.setAttribute("wrap","off"),o&&(a.style.border="1px solid black"),Ba(a),b}function Ea(a){this.cm=a,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new bg,this.gracePeriod=!1}function Fa(a,b){var c=zb(a,b.line);if(!c||c.hidden)return null;var d=jf(a.doc,b.line),e=wb(c,d,b.line),f=qf(d),g="left";if(f){var h=bh(f,b.ch);g=h%2?"right":"left"}var i=Db(e.map,b.ch,g);return i.offset="right"==i.collapse?i.end:i.start,i}function Ga(a,b){return b&&(a.bad=!0),a}function Ha(a,b,c){var d;if(b==a.display.lineDiv){if(d=a.display.lineDiv.childNodes[c],!d)return Ga(a.clipPos(qa(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 Ia(f,b,c)}}function Ia(a,b,c){function k(b,c,d){for(var e=-1;e<(j?j.length:0);e++)for(var f=0>e?i.map:j[e],g=0;g<f.length;g+=3){var h=f[g+2];if(h==b||h==c){var k=nf(0>e?a.line:a.rest[e]),l=f[g]+d;return(0>d||h!=b)&&(l=f[g+(d?1:0)]),qa(k,l)}}}var d=a.text.firstChild,e=!1;if(!b||!yg(d,b))return Ga(qa(nf(a.line),0),!0);if(b==d&&(e=!0,b=d.childNodes[c],c=0,!b)){var f=a.rest?gg(a.rest):a.line;return Ga(qa(nf(f),f.text.length),e)}var g=3==b.nodeType?b:null,h=b;for(g||1!=b.childNodes.length||3!=b.firstChild.nodeType||(g=b.firstChild,c&&(c=g.nodeValue.length));h.parentNode!=d;)h=h.parentNode;var i=a.measure,j=i.maps,l=k(g,h,c);if(l)return Ga(l,e);for(var m=h.nextSibling,n=g?g.nodeValue.length-c:0;m;m=m.nextSibling){if(l=k(m,m.firstChild,0))return Ga(qa(l.line,l.ch-n),e);n+=m.textContent.length}for(var o=h.previousSibling,n=c;o;o=o.previousSibling){if(l=k(o,o.firstChild,-1))return Ga(qa(l.line,l.ch+n),e);n+=m.textContent.length}}function Ja(a,b,c,d,e){function i(a){return function(b){return b.id==a}}function j(b){if(1==b.nodeType){var c=b.getAttribute("cm-text");if(null!=c)return""==c&&(c=b.textContent.replace(/\u200b/g,"")),void(f+=c);var l,k=b.getAttribute("cm-marker");if(k){var m=a.findMarks(qa(d,0),qa(e+1,0),i(+k));return void(m.length&&(l=m[0].find())&&(f+=kf(a.doc,l.from,l.to).join(h)))}if("false"==b.getAttribute("contenteditable"))return;for(var n=0;n<b.childNodes.length;n++)j(b.childNodes[n]);/^(pre|div|p)$/i.test(b.nodeName)&&(g=!0)}else if(3==b.nodeType){var o=b.nodeValue;if(!o)return;g&&(f+=h,g=!1),f+=o}}for(var f="",g=!1,h=a.doc.lineSeparator();j(b),b!=c;)b=b.nextSibling;return f}function Ka(a,b){this.ranges=a,this.primIndex=b}function La(a,b){this.anchor=a,this.head=b}function Ma(a,b){var c=a[b];a.sort(function(a,b){return ra(a.from(),b.from())}),b=ig(a,c);for(var d=1;d<a.length;d++){var e=a[d],f=a[d-1];if(ra(f.to(),e.from())>=0){var g=ua(f.from(),e.from()),h=ta(f.to(),e.to()),i=f.empty()?e.from()==e.head:f.from()==f.head;b>=d&&--b,a.splice(--d,2,new La(i?h:g,i?g:h))}}return new Ka(a,b)}function Na(a,b){return new Ka([new La(a,b||a)],0)}function Oa(a,b){return Math.max(a.first,Math.min(b,a.first+a.size-1))}function Pa(a,b){if(b.line<a.first)return qa(a.first,0);var c=a.first+a.size-1;return b.line>c?qa(c,jf(a,c).text.length):Qa(b,jf(a,b.line).text.length)}function Qa(a,b){var c=a.ch;return null==c||c>b?qa(a.line,b):0>c?qa(a.line,0):a}function Ra(a,b){return b>=a.first&&b<a.first+a.size}function Sa(a,b){for(var c=[],d=0;d<b.length;d++)c[d]=Pa(a,b[d]);return c}function Ta(a,b,c,d){if(a.cm&&a.cm.display.shift||a.extend){var e=b.anchor;if(d){var f=ra(c,e)<0;f!=ra(d,e)<0?(e=c,c=d):f!=ra(c,d)<0&&(c=d)}return new La(e,c)}return new La(d||c,c)}function Ua(a,b,c,d){$a(a,new Ka([Ta(a,a.sel.primary(),b,c)],0),d)}function Va(a,b,c){for(var d=[],e=0;e<a.sel.ranges.length;e++)d[e]=Ta(a,a.sel.ranges[e],b[e],null);var f=Ma(d,a.sel.primIndex);$a(a,f,c)}function Wa(a,b,c,d){var e=a.sel.ranges.slice(0);e[b]=c,$a(a,Ma(e,a.sel.primIndex),d)}function Xa(a,b,c,d){$a(a,Na(b,c),d)}function Ya(a,b,c){var d={ranges:b.ranges,update:function(b){this.ranges=[];for(var c=0;c<b.length;c++)this.ranges[c]=new La(Pa(a,b[c].anchor),Pa(a,b[c].head))},origin:c&&c.origin};return Qf(a,"beforeSelectionChange",a,d),a.cm&&Qf(a.cm,"beforeSelectionChange",a.cm,d),d.ranges!=b.ranges?Ma(d.ranges,d.ranges.length-1):b}function Za(a,b,c){var d=a.history.done,e=gg(d);e&&e.ranges?(d[d.length-1]=b,_a(a,b,c)):$a(a,b,c)}function $a(a,b,c){_a(a,b,c),xf(a,a.sel,a.cm?a.cm.curOp.id:NaN,c)}function _a(a,b,c){(Wf(a,"beforeSelectionChange")||a.cm&&Wf(a.cm,"beforeSelectionChange"))&&(b=Ya(a,b,c));var d=c&&c.bias||(ra(b.primary().head,a.sel.primary().head)<0?-1:1);ab(a,cb(a,b,d,!0)),c&&c.scroll===!1||!a.cm||wd(a.cm)}function ab(a,b){b.equals(a.sel)||(a.sel=b,a.cm&&(a.cm.curOp.updateInput=a.cm.curOp.selectionChanged=!0,Vf(a.cm)),Sf(a,"cursorActivity",a))}function bb(a){ab(a,cb(a,a.sel,null,!1),$f)}function cb(a,b,c,d){for(var e,f=0;f<b.ranges.length;f++){var g=b.ranges[f],h=b.ranges.length==a.sel.ranges.length&&a.sel.ranges[f],i=eb(a,g.anchor,h&&h.anchor,c,d),j=eb(a,g.head,h&&h.head,c,d);(e||i!=g.anchor||j!=g.head)&&(e||(e=b.ranges.slice(0,f)),e[f]=new La(i,j))}return e?Ma(e,b.primIndex):b}function db(a,b,c,d,e){var f=jf(a,b.line);if(f.markedSpans)for(var g=0;g<f.markedSpans.length;++g){var h=f.markedSpans[g],i=h.marker;if((null==h.from||(i.inclusiveLeft?h.from<=b.ch:h.from<b.ch))&&(null==h.to||(i.inclusiveRight?h.to>=b.ch:h.to>b.ch))){if(e&&(Qf(i,"beforeCursorEnter"),i.explicitlyCleared)){if(f.markedSpans){--g;continue}break}if(!i.atomic)continue;if(c){var k,j=i.find(0>d?1:-1);if((0>d?i.inclusiveRight:i.inclusiveLeft)&&(j=fb(a,j,-d,f)),j&&j.line==b.line&&(k=ra(j,c))&&(0>d?0>k:k>0))return db(a,j,b,d,e)}var l=i.find(0>d?-1:1);return(0>d?i.inclusiveLeft:i.inclusiveRight)&&(l=fb(a,l,d,f)),l?db(a,l,b,d,e):null}}return b}function eb(a,b,c,d,e){var f=d||1,g=db(a,b,c,f,e)||!e&&db(a,b,c,f,!0)||db(a,b,c,-f,e)||!e&&db(a,b,c,-f,!0);return g?g:(a.cantEdit=!0,qa(a.first,0))}function fb(a,b,c,d){return 0>c&&0==b.ch?b.line>a.first?Pa(a,qa(b.line-1)):null:c>0&&b.ch==(d||jf(a,b.line)).text.length?b.line<a.first+a.size-1?qa(b.line+1,0):null:new qa(b.line,b.ch+c)}function gb(a){a.display.input.showSelection(a.display.input.prepareSelection())}function hb(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(b!==!1||g!=c.sel.primIndex){var h=c.sel.ranges[g],i=h.empty();(i||a.options.showCursorWhenSelecting)&&ib(a,h.head,e),i||jb(a,h,f)}return d}function ib(a,b,c){var d=Ob(a,b,"div",null,null,!a.options.singleCursorHeightPerLine),e=c.appendChild(ug("div","\xa0","CodeMirror-cursor"));if(e.style.left=d.left+"px",e.style.top=d.top+"px",e.style.height=Math.max(0,d.bottom-d.top)*a.options.cursorHeight+"px",d.other){var f=c.appendChild(ug("div","\xa0","CodeMirror-cursor CodeMirror-secondarycursor"));f.style.display="",f.style.left=d.other.left+"px",f.style.top=d.other.top+"px",f.style.height=.85*(d.other.bottom-d.other.top)+"px"}}function jb(a,b,c){function j(a,b,c,d){0>b&&(b=0),b=Math.round(b),d=Math.round(d),f.appendChild(ug("div",null,"CodeMirror-selected","position: absolute; left: "+a+"px; top: "+b+"px; width: "+(null==c?i-a:c)+"px; height: "+(d-b)+"px"))}function k(b,c,d){function m(c,d){return Nb(a,qa(b,c),"div",f,d)}var k,l,f=jf(e,b),g=f.text.length;return Tg(qf(f),c||0,null==d?g:d,function(a,b,e){var n,o,p,f=m(a,"left");if(a==b)n=f,o=p=f.left;else{if(n=m(b-1,"right"),"rtl"==e){var q=f;f=n,n=q}o=f.left,p=n.right}null==c&&0==a&&(o=h),n.top-f.top>3&&(j(o,f.top,null,f.bottom),o=h,f.bottom<n.top&&j(o,f.bottom,null,n.top)),null==d&&b==g&&(p=i),(!k||f.top<k.top||f.top==k.top&&f.left<k.left)&&(k=f),(!l||n.bottom>l.bottom||n.bottom==l.bottom&&n.right>l.right)&&(l=n),h+1>o&&(o=h),j(o,n.top,p-o,n.bottom)}),{start:k,end:l}}var d=a.display,e=a.doc,f=document.createDocumentFragment(),g=rb(a.display),h=g.left,i=Math.max(d.sizerWidth,tb(a)-d.sizer.offsetLeft)-g.right,l=b.from(),m=b.to();if(l.line==m.line)k(l.line,l.ch,m.ch);else{var n=jf(e,l.line),o=jf(e,m.line),p=ve(n)==ve(o),q=k(l.line,l.ch,p?n.text.length+1:null).end,r=k(m.line,p?0:null,m.ch).start;p&&(q.top<r.top-2?(j(q.right,q.top,null,q.bottom),j(h,r.top,r.left,r.bottom)):j(q.right,q.top,r.left-q.right,q.bottom)),q.bottom<r.top&&j(h,q.bottom,null,r.top)}c.appendChild(f)}function kb(a){if(a.state.focused){var b=a.display;clearInterval(b.blinker);var c=!0;b.cursorDiv.style.visibility="",a.options.cursorBlinkRate>0?b.blinker=setInterval(function(){b.cursorDiv.style.visibility=(c=!c)?"":"hidden"},a.options.cursorBlinkRate):a.options.cursorBlinkRate<0&&(b.cursorDiv.style.visibility="hidden")}}function lb(a,b){a.doc.mode.startState&&a.doc.frontier<a.display.viewTo&&a.state.highlight.set(b,ng(mb,a))}function mb(a){var b=a.doc;if(b.frontier<b.first&&(b.frontier=b.first),!(b.frontier>=a.display.viewTo)){var c=+new Date+a.options.workTime,d=Md(b.mode,ob(a,b.frontier)),e=[];b.iter(b.frontier,Math.min(b.first+b.size,a.display.viewTo+500),function(f){if(b.frontier>=a.display.viewFrom){var g=f.styles,h=f.text.length>a.options.maxHighlightLength,i=Ne(a,f,h?Md(b.mode,d):d,!0);f.styles=i.styles;var j=f.styleClasses,k=i.classes;k?f.styleClasses=k:j&&(f.styleClasses=null);for(var l=!g||g.length!=f.styles.length||j!=k&&(!j||!k||j.bgClass!=k.bgClass||j.textClass!=k.textClass),m=0;!l&&m<g.length;++m)l=g[m]!=f.styles[m];l&&e.push(b.frontier),f.stateAfter=h?d:Md(b.mode,d)}else f.text.length<=a.options.maxHighlightLength&&Pe(a,f.text,d),f.stateAfter=b.frontier%5==0?Md(b.mode,d):null;return++b.frontier,+new Date>c?(lb(a,a.options.workDelay),!0):void 0}),e.length&&fc(a,function(){for(var b=0;b<e.length;b++)mc(a,e[b],"text")})}}function nb(a,b,c){for(var d,e,f=a.doc,g=c?-1:b-(a.doc.mode.innerMode?1e3:100),h=b;h>g;--h){if(h<=f.first)return f.first;var i=jf(f,h-1);if(i.stateAfter&&(!c||h<=f.frontier))return h;var j=cg(i.text,null,a.options.tabSize);(null==e||d>j)&&(e=h-1,d=j)}return e}function ob(a,b,c){var d=a.doc,e=a.display;if(!d.mode.startState)return!0;var f=nb(a,b,c),g=f>d.first&&jf(d,f-1).stateAfter;return g=g?Md(d.mode,g):Nd(d.mode),d.iter(f,b,function(c){Pe(a,c.text,g);var h=f==b-1||f%5==0||f>=e.viewFrom&&f<e.viewTo;c.stateAfter=h?Md(d.mode,g):null,++f}),c&&(d.frontier=f),g}function pb(a){return a.lineSpace.offsetTop}function qb(a){return a.mover.offsetHeight-a.lineSpace.offsetHeight}function rb(a){if(a.cachedPaddingH)return a.cachedPaddingH;var b=xg(a.measure,ug("pre","x")),c=window.getComputedStyle?window.getComputedStyle(b):b.currentStyle,d={left:parseInt(c.paddingLeft),right:parseInt(c.paddingRight)};return isNaN(d.left)||isNaN(d.right)||(a.cachedPaddingH=d),d}function sb(a){return Yf-a.display.nativeBarWidth}function tb(a){return a.display.scroller.clientWidth-sb(a)-a.display.barWidth}function ub(a){return a.display.scroller.clientHeight-sb(a)-a.display.barHeight}function vb(a,b,c){var d=a.options.lineWrapping,e=d&&tb(a);if(!b.measure.heights||d&&b.measure.width!=e){var f=b.measure.heights=[];if(d){b.measure.width=e;for(var g=b.text.firstChild.getClientRects(),h=0;h<g.length-1;h++){var i=g[h],j=g[h+1];Math.abs(i.bottom-j.bottom)>2&&f.push((i.bottom+j.top)/2-c.top)}}f.push(c.bottom-c.top)}}function wb(a,b,c){if(a.line==b)return{map:a.measure.map,cache:a.measure.cache};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(var d=0;d<a.rest.length;d++)if(nf(a.rest[d])>c)return{map:a.measure.maps[d],cache:a.measure.caches[d],before:!0}}function xb(a,b){b=ve(b);var c=nf(b),d=a.display.externalMeasured=new jc(a.doc,b,c);d.lineN=c;var e=d.built=Te(a,d);return d.text=e.pre,xg(a.display.lineMeasure,e.pre),d}function yb(a,b,c,d){return Bb(a,Ab(a,b),c,d)}function zb(a,b){if(b>=a.display.viewFrom&&b<a.display.viewTo)return a.display.view[oc(a,b)];var c=a.display.externalMeasured;return c&&b>=c.lineN&&b<c.lineN+c.size?c:void 0}function Ab(a,b){var c=nf(b),d=zb(a,c);d&&!d.text?d=null:d&&d.changes&&(ea(a,d,c,ca(a)),a.curOp.forceUpdate=!0),d||(d=xb(a,b));var e=wb(d,b,c);return{line:b,view:d,rect:null,map:e.map,cache:e.cache,before:e.before,hasHeights:!1}}function Bb(a,b,c,d,e){b.before&&(c=-1);var g,f=c+(d||"");return b.cache.hasOwnProperty(f)?g=b.cache[f]:(b.rect||(b.rect=b.view.text.getBoundingClientRect()),b.hasHeights||(vb(a,b.view,b.rect),b.hasHeights=!0),g=Eb(a,b,c,d),g.bogus||(b.cache[f]=g)),{left:g.left,right:g.right,top:e?g.rtop:g.top,bottom:e?g.rbottom:g.bottom}}function Db(a,b,c){for(var d,e,f,g,h=0;h<a.length;h+=3){var i=a[h],j=a[h+1];if(i>b?(e=0,f=1,g="left"):j>b?(e=b-i,f=e+1):(h==a.length-3||b==j&&a[h+3]>b)&&(f=j-i,e=f-1,b>=j&&(g="right")),null!=e){if(d=a[h+2],i==j&&c==(d.insertLeft?"left":"right")&&(g=c),"left"==c&&0==e)for(;h&&a[h-2]==a[h-3]&&a[h-1].insertLeft;)d=a[(h-=3)+2],
16
- g="left";if("right"==c&&e==j-i)for(;h<a.length-3&&a[h+3]==a[h+4]&&!a[h+5].insertLeft;)d=a[(h+=3)+2],g="right";break}}return{node:d,start:e,end:f,collapse:g,coverStart:i,coverEnd:j}}function Eb(a,b,c,d){var l,e=Db(b.map,c,d),h=e.node,i=e.start,j=e.end,k=e.collapse;if(3==h.nodeType){for(var m=0;4>m;m++){for(;i&&tg(b.line.text.charAt(e.coverStart+i));)--i;for(;e.coverStart+j<e.coverEnd&&tg(b.line.text.charAt(e.coverStart+j));)++j;if(f&&9>g&&0==i&&j==e.coverEnd-e.coverStart)l=h.parentNode.getBoundingClientRect();else if(f&&a.options.lineWrapping){var n=vg(h,i,j).getClientRects();l=n.length?n["right"==d?n.length-1:0]:Cb}else l=vg(h,i,j).getBoundingClientRect()||Cb;if(l.left||l.right||0==i)break;j=i,i-=1,k="right"}f&&11>g&&(l=Fb(a.display.measure,l))}else{i>0&&(k=d="right");var n;l=a.options.lineWrapping&&(n=h.getClientRects()).length>1?n["right"==d?n.length-1:0]:h.getBoundingClientRect()}if(f&&9>g&&!i&&(!l||!l.left&&!l.right)){var o=h.parentNode.getClientRects()[0];l=o?{left:o.left,right:o.left+Vb(a.display),top:o.top,bottom:o.bottom}:Cb}for(var p=l.top-b.rect.top,q=l.bottom-b.rect.top,r=(p+q)/2,s=b.view.measure.heights,m=0;m<s.length-1&&!(r<s[m]);m++);var t=m?s[m-1]:0,u=s[m],v={left:("right"==k?l.right:l.left)-b.rect.left,right:("left"==k?l.left:l.right)-b.rect.left,top:t,bottom:u};return l.left||l.right||(v.bogus=!0),a.options.singleCursorHeightPerLine||(v.rtop=p,v.rbottom=q),v}function Fb(a,b){if(!window.screen||null==screen.logicalXDPI||screen.logicalXDPI==screen.deviceXDPI||!Rg(a))return b;var c=screen.logicalXDPI/screen.deviceXDPI,d=screen.logicalYDPI/screen.deviceYDPI;return{left:b.left*c,right:b.right*c,top:b.top*d,bottom:b.bottom*d}}function Gb(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]={}}function Hb(a){a.display.externalMeasure=null,wg(a.display.lineMeasure);for(var b=0;b<a.display.view.length;b++)Gb(a.display.view[b])}function Ib(a){Hb(a),a.display.cachedCharWidth=a.display.cachedTextHeight=a.display.cachedPaddingH=null,a.options.lineWrapping||(a.display.maxLineChanged=!0),a.display.lineNumChars=null}function Jb(){return window.pageXOffset||(document.documentElement||document.body).scrollLeft}function Kb(){return window.pageYOffset||(document.documentElement||document.body).scrollTop}function Lb(a,b,c,d){if(b.widgets)for(var e=0;e<b.widgets.length;++e)if(b.widgets[e].above){var f=De(b.widgets[e]);c.top+=f,c.bottom+=f}if("line"==d)return c;d||(d="local");var g=pf(b);if("local"==d?g+=pb(a.display):g-=a.display.viewOffset,"page"==d||"window"==d){var h=a.display.lineSpace.getBoundingClientRect();g+=h.top+("window"==d?0:Kb());var i=h.left+("window"==d?0:Jb());c.left+=i,c.right+=i}return c.top+=g,c.bottom+=g,c}function Mb(a,b,c){if("div"==c)return b;var d=b.left,e=b.top;if("page"==c)d-=Jb(),e-=Kb();else if("local"==c||!c){var f=a.display.sizer.getBoundingClientRect();d+=f.left,e+=f.top}var g=a.display.lineSpace.getBoundingClientRect();return{left:d-g.left,top:e-g.top}}function Nb(a,b,c,d,e){return d||(d=jf(a.doc,b.line)),Lb(a,d,yb(a,d,b.ch,e),c)}function Ob(a,b,c,d,e,f){function g(b,g){var h=Bb(a,e,b,g?"right":"left",f);return g?h.left=h.right:h.right=h.left,Lb(a,d,h,c)}function h(a,b){var c=i[b],d=c.level%2;return a==Ug(c)&&b&&c.level<i[b-1].level?(c=i[--b],a=Vg(c)-(c.level%2?0:1),d=!0):a==Vg(c)&&b<i.length-1&&c.level<i[b+1].level&&(c=i[++b],a=Ug(c)-c.level%2,d=!1),d&&a==c.to&&a>c.from?g(a-1):g(a,d)}d=d||jf(a.doc,b.line),e||(e=Ab(a,d));var i=qf(d),j=b.ch;if(!i)return g(j);var k=bh(i,j),l=h(j,k);return null!=ah&&(l.other=h(j,ah)),l}function Pb(a,b){var c=0,b=Pa(a.doc,b);a.options.lineWrapping||(c=Vb(a.display)*b.ch);var d=jf(a.doc,b.line),e=pf(d)+pb(a.display);return{left:c,right:c,top:e,bottom:e+d.height}}function Qb(a,b,c,d){var e=qa(a,b);return e.xRel=d,c&&(e.outside=!0),e}function Rb(a,b,c){var d=a.doc;if(c+=a.display.viewOffset,0>c)return Qb(d.first,0,!0,-1);var e=of(d,c),f=d.first+d.size-1;if(e>f)return Qb(d.first+d.size-1,jf(d,f).text.length,!0,1);0>b&&(b=0);for(var g=jf(d,e);;){var h=Sb(a,g,e,b,c),i=te(g),j=i&&i.find(0,!0);if(!i||!(h.ch>j.from.ch||h.ch==j.from.ch&&h.xRel>0))return h;e=nf(g=j.to.line)}}function Sb(a,b,c,d,e){function j(d){var e=Ob(a,qa(c,d),"line",b,i);return g=!0,f>e.bottom?e.left-h:f<e.top?e.left+h:(g=!1,e.left)}var f=e-pf(b),g=!1,h=2*a.display.wrapper.clientWidth,i=Ab(a,b),k=qf(b),l=b.text.length,m=Wg(b),n=Xg(b),o=j(m),p=g,q=j(n),r=g;if(d>q)return Qb(c,n,r,1);for(;;){if(k?n==m||n==dh(b,m,1):1>=n-m){for(var s=o>d||q-d>=d-o?m:n,t=d-(s==m?o:q);tg(b.text.charAt(s));)++s;var u=Qb(c,s,s==m?p:r,-1>t?-1:t>1?1:0);return u}var v=Math.ceil(l/2),w=m+v;if(k){w=m;for(var x=0;v>x;++x)w=dh(b,w,1)}var y=j(w);y>d?(n=w,q=y,(r=g)&&(q+=1e3),l=v):(m=w,o=y,p=g,l-=v)}}function Ub(a){if(null!=a.cachedTextHeight)return a.cachedTextHeight;if(null==Tb){Tb=ug("pre");for(var b=0;49>b;++b)Tb.appendChild(document.createTextNode("x")),Tb.appendChild(ug("br"));Tb.appendChild(document.createTextNode("x"))}xg(a.measure,Tb);var c=Tb.offsetHeight/50;return c>3&&(a.cachedTextHeight=c),wg(a.measure),c||1}function Vb(a){if(null!=a.cachedCharWidth)return a.cachedCharWidth;var b=ug("span","xxxxxxxxxx"),c=ug("pre",[b]);xg(a.measure,c);var d=b.getBoundingClientRect(),e=(d.right-d.left)/10;return e>2&&(a.cachedCharWidth=e),e||10}function Yb(a){a.curOp={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:++Xb},Wb?Wb.ops.push(a.curOp):a.curOp.ownsGroup=Wb={ops:[a.curOp],delayedCallbacks:[]}}function Zb(a){var b=a.delayedCallbacks,c=0;do{for(;c<b.length;c++)b[c].call(null);for(var d=0;d<a.ops.length;d++){var e=a.ops[d];if(e.cursorActivityHandlers)for(;e.cursorActivityCalled<e.cursorActivityHandlers.length;)e.cursorActivityHandlers[e.cursorActivityCalled++].call(null,e.cm)}}while(c<b.length)}function $b(a){var b=a.curOp,c=b.ownsGroup;if(c)try{Zb(c)}finally{Wb=null;for(var d=0;d<c.ops.length;d++)c.ops[d].cm.curOp=null;_b(c)}}function _b(a){for(var b=a.ops,c=0;c<b.length;c++)ac(b[c]);for(var c=0;c<b.length;c++)bc(b[c]);for(var c=0;c<b.length;c++)cc(b[c]);for(var c=0;c<b.length;c++)dc(b[c]);for(var c=0;c<b.length;c++)ec(b[c])}function ac(a){var b=a.cm,c=b.display;X(b),a.updateMaxLine&&J(b),a.mustUpdate=a.viewChanged||a.forceUpdate||null!=a.scrollTop||a.scrollToPos&&(a.scrollToPos.from.line<c.viewFrom||a.scrollToPos.to.line>=c.viewTo)||c.maxLineChanged&&b.options.lineWrapping,a.update=a.mustUpdate&&new W(b,a.mustUpdate&&{top:a.scrollTop,ensure:a.scrollToPos},a.forceUpdate)}function bc(a){a.updatedDisplay=a.mustUpdate&&Y(a.cm,a.update)}function cc(a){var b=a.cm,c=b.display;a.updatedDisplay&&aa(b),a.barMeasure=L(b),c.maxLineChanged&&!b.options.lineWrapping&&(a.adjustWidthTo=yb(b,c.maxLine,c.maxLine.text.length).left+3,b.display.sizerWidth=a.adjustWidthTo,a.barMeasure.scrollWidth=Math.max(c.scroller.clientWidth,c.sizer.offsetLeft+a.adjustWidthTo+sb(b)+b.display.barWidth),a.maxScrollLeft=Math.max(0,c.sizer.offsetLeft+a.adjustWidthTo-tb(b))),(a.updatedDisplay||a.selectionChanged)&&(a.preparedSelection=c.input.prepareSelection())}function dc(a){var b=a.cm;null!=a.adjustWidthTo&&(b.display.sizer.style.minWidth=a.adjustWidthTo+"px",a.maxScrollLeft<b.doc.scrollLeft&&Lc(b,Math.min(b.display.scroller.scrollLeft,a.maxScrollLeft),!0),b.display.maxLineChanged=!1),a.preparedSelection&&b.display.input.showSelection(a.preparedSelection),a.updatedDisplay&&_(b,a.barMeasure),(a.updatedDisplay||a.startHeight!=b.doc.height)&&P(b,a.barMeasure),a.selectionChanged&&kb(b),b.state.focused&&a.updateInput&&b.display.input.reset(a.typing),!a.focus||a.focus!=zg()||document.hasFocus&&!document.hasFocus()||va(a.cm)}function ec(a){var b=a.cm,c=b.display,d=b.doc;if(a.updatedDisplay&&Z(b,a.update),null==c.wheelStartX||null==a.scrollTop&&null==a.scrollLeft&&!a.scrollToPos||(c.wheelStartX=c.wheelStartY=null),null==a.scrollTop||c.scroller.scrollTop==a.scrollTop&&!a.forceScroll||(d.scrollTop=Math.max(0,Math.min(c.scroller.scrollHeight-c.scroller.clientHeight,a.scrollTop)),c.scrollbars.setScrollTop(d.scrollTop),c.scroller.scrollTop=d.scrollTop),null==a.scrollLeft||c.scroller.scrollLeft==a.scrollLeft&&!a.forceScroll||(d.scrollLeft=Math.max(0,Math.min(c.scroller.scrollWidth-tb(b),a.scrollLeft)),c.scrollbars.setScrollLeft(d.scrollLeft),c.scroller.scrollLeft=d.scrollLeft,S(b)),a.scrollToPos){var e=sd(b,Pa(d,a.scrollToPos.from),Pa(d,a.scrollToPos.to),a.scrollToPos.margin);a.scrollToPos.isCursor&&b.state.focused&&rd(b,e)}var f=a.maybeHiddenMarkers,g=a.maybeUnhiddenMarkers;if(f)for(var h=0;h<f.length;++h)f[h].lines.length||Qf(f[h],"hide");if(g)for(var h=0;h<g.length;++h)g[h].lines.length&&Qf(g[h],"unhide");c.wrapper.offsetHeight&&(d.scrollTop=b.display.scroller.scrollTop),a.changeObjs&&Qf(b,"changes",b,a.changeObjs),a.update&&a.update.finish()}function fc(a,b){if(a.curOp)return b();Yb(a);try{return b()}finally{$b(a)}}function gc(a,b){return function(){if(a.curOp)return b.apply(a,arguments);Yb(a);try{return b.apply(a,arguments)}finally{$b(a)}}}function hc(a){return function(){if(this.curOp)return a.apply(this,arguments);Yb(this);try{return a.apply(this,arguments)}finally{$b(this)}}}function ic(a){return function(){var b=this.cm;if(!b||b.curOp)return a.apply(this,arguments);Yb(b);try{return a.apply(this,arguments)}finally{$b(b)}}}function jc(a,b,c){this.line=b,this.rest=we(b),this.size=this.rest?nf(gg(this.rest))-c+1:1,this.node=this.text=null,this.hidden=ze(a,b)}function kc(a,b,c){for(var e,d=[],f=b;c>f;f=e){var g=new jc(a.doc,jf(a.doc,f),f);e=f+g.size,d.push(g)}return d}function lc(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;if(d&&c<e.viewTo&&(null==e.updateLineNumbers||e.updateLineNumbers>b)&&(e.updateLineNumbers=b),a.curOp.viewChanged=!0,b>=e.viewTo)w&&xe(a.doc,b)<e.viewTo&&nc(a);else if(c<=e.viewFrom)w&&ye(a.doc,c+d)>e.viewFrom?nc(a):(e.viewFrom+=d,e.viewTo+=d);else if(b<=e.viewFrom&&c>=e.viewTo)nc(a);else if(b<=e.viewFrom){var f=pc(a,c,c+d,1);f?(e.view=e.view.slice(f.index),e.viewFrom=f.lineN,e.viewTo+=d):nc(a)}else if(c>=e.viewTo){var f=pc(a,b,b,-1);f?(e.view=e.view.slice(0,f.index),e.viewTo=f.lineN):nc(a)}else{var g=pc(a,b,b,-1),h=pc(a,c,c+d,1);g&&h?(e.view=e.view.slice(0,g.index).concat(kc(a,g.lineN,h.lineN)).concat(e.view.slice(h.index)),e.viewTo+=d):nc(a)}var i=e.externalMeasured;i&&(c<i.lineN?i.lineN+=d:b<i.lineN+i.size&&(e.externalMeasured=null))}function mc(a,b,c){a.curOp.viewChanged=!0;var d=a.display,e=a.display.externalMeasured;if(e&&b>=e.lineN&&b<e.lineN+e.size&&(d.externalMeasured=null),!(b<d.viewFrom||b>=d.viewTo)){var f=d.view[oc(a,b)];if(null!=f.node){var g=f.changes||(f.changes=[]);-1==ig(g,c)&&g.push(c)}}}function nc(a){a.display.viewFrom=a.display.viewTo=a.doc.first,a.display.view=[],a.display.viewOffset=0}function oc(a,b){if(b>=a.display.viewTo)return null;if(b-=a.display.viewFrom,0>b)return null;for(var c=a.display.view,d=0;d<c.length;d++)if(b-=c[d].size,0>b)return d}function pc(a,b,c,d){var f,e=oc(a,b),g=a.display.view;if(!w||c==a.doc.first+a.doc.size)return{index:e,lineN:c};for(var h=0,i=a.display.viewFrom;e>h;h++)i+=g[h].size;if(i!=b){if(d>0){if(e==g.length-1)return null;f=i+g[e].size-b,e++}else f=i-b;b+=f,c+=f}for(;xe(a.doc,c)!=c;){if(e==(0>d?0:g.length-1))return null;c+=d*g[e-(0>d?1:0)].size,e+=d}return{index:e,lineN:c}}function qc(a,b,c){var d=a.display,e=d.view;0==e.length||b>=d.viewTo||c<=d.viewFrom?(d.view=kc(a,b,c),d.viewFrom=b):(d.viewFrom>b?d.view=kc(a,b,d.viewFrom).concat(d.view):d.viewFrom<b&&(d.view=d.view.slice(oc(a,b))),d.viewFrom=b,d.viewTo<c?d.view=d.view.concat(kc(a,d.viewTo,c)):d.viewTo>c&&(d.view=d.view.slice(0,oc(a,c)))),d.viewTo=c}function rc(a){for(var b=a.display.view,c=0,d=0;d<b.length;d++){var e=b[d];e.hidden||e.node&&!e.changes||++c}return c}function sc(a){function e(){b.activeTouch&&(c=setTimeout(function(){b.activeTouch=null},1e3),d=b.activeTouch,d.end=+new Date)}function h(a){if(1!=a.touches.length)return!1;var b=a.touches[0];return b.radiusX<=1&&b.radiusY<=1}function i(a,b){if(null==b.left)return!0;var c=b.left-a.left,d=b.top-a.top;return c*c+d*d>400}var b=a.display;Mf(b.scroller,"mousedown",gc(a,xc)),f&&11>g?Mf(b.scroller,"dblclick",gc(a,function(b){if(!Uf(a,b)){var c=wc(a,b);if(c&&!Ec(a,b)&&!vc(a.display,b)){Gf(b);var d=a.findWordAt(c);Ua(a.doc,d.anchor,d.head)}}})):Mf(b.scroller,"dblclick",function(b){Uf(a,b)||Gf(b)}),u||Mf(b.scroller,"contextmenu",function(b){cd(a,b)});var c,d={end:0};Mf(b.scroller,"touchstart",function(e){if(!Uf(a,e)&&!h(e)){clearTimeout(c);var f=+new Date;b.activeTouch={start:f,moved:!1,prev:f-d.end<=300?d:null},1==e.touches.length&&(b.activeTouch.left=e.touches[0].pageX,b.activeTouch.top=e.touches[0].pageY)}}),Mf(b.scroller,"touchmove",function(){b.activeTouch&&(b.activeTouch.moved=!0)}),Mf(b.scroller,"touchend",function(c){var d=b.activeTouch;if(d&&!vc(b,c)&&null!=d.left&&!d.moved&&new Date-d.start<300){var g,f=a.coordsChar(b.activeTouch,"page");g=!d.prev||i(d,d.prev)?new La(f,f):!d.prev.prev||i(d,d.prev.prev)?a.findWordAt(f):new La(qa(f.line,0),Pa(a.doc,qa(f.line+1,0))),a.setSelection(g.anchor,g.head),a.focus(),Gf(c)}e()}),Mf(b.scroller,"touchcancel",e),Mf(b.scroller,"scroll",function(){b.scroller.clientHeight&&(Kc(a,b.scroller.scrollTop),Lc(a,b.scroller.scrollLeft,!0),Qf(a,"scroll",a))}),Mf(b.scroller,"mousewheel",function(b){Pc(a,b)}),Mf(b.scroller,"DOMMouseScroll",function(b){Pc(a,b)}),Mf(b.wrapper,"scroll",function(){b.wrapper.scrollTop=b.wrapper.scrollLeft=0}),b.dragFunctions={enter:function(b){Uf(a,b)||Jf(b)},over:function(b){Uf(a,b)||(Ic(a,b),Jf(b))},start:function(b){Hc(a,b)},drop:gc(a,Gc),leave:function(){Jc(a)}};var j=b.input.getField();Mf(j,"keyup",function(b){Zc.call(a,b)}),Mf(j,"keydown",gc(a,Xc)),Mf(j,"keypress",gc(a,$c)),Mf(j,"focus",ng(ad,a)),Mf(j,"blur",ng(bd,a))}function tc(a,b,c){var d=c&&c!=x.Init;if(!b!=!d){var e=a.display.dragFunctions,f=b?Mf:Pf;f(a.display.scroller,"dragstart",e.start),f(a.display.scroller,"dragenter",e.enter),f(a.display.scroller,"dragover",e.over),f(a.display.scroller,"dragleave",e.leave),f(a.display.scroller,"drop",e.drop)}}function uc(a){var b=a.display;(b.lastWrapHeight!=b.wrapper.clientHeight||b.lastWrapWidth!=b.wrapper.clientWidth)&&(b.cachedCharWidth=b.cachedTextHeight=b.cachedPaddingH=null,b.scrollbarsClipped=!1,a.setSize())}function vc(a,b){for(var c=Kf(b);c!=a.wrapper;c=c.parentNode)if(!c||1==c.nodeType&&"true"==c.getAttribute("cm-ignore-events")||c.parentNode==a.sizer&&c!=a.mover)return!0}function wc(a,b,c,d){var e=a.display;if(!c&&"true"==Kf(b).getAttribute("cm-not-content"))return null;var f,g,h=e.lineSpace.getBoundingClientRect();try{f=b.clientX-h.left,g=b.clientY-h.top}catch(b){return null}var j,i=Rb(a,f,g);if(d&&1==i.xRel&&(j=jf(a.doc,i.line).text).length==i.ch){var k=cg(j,j.length,a.options.tabSize)-j.length;i=qa(i.line,Math.max(0,Math.round((f-rb(a.display).left)/Vb(a.display))-k))}return i}function xc(a){var b=this,c=b.display;if(!(Uf(b,a)||c.activeTouch&&c.input.supportsTouch())){if(c.shift=a.shiftKey,vc(c,a))return void(h||(c.scroller.draggable=!1,setTimeout(function(){c.scroller.draggable=!0},100)));if(!Ec(b,a)){var d=wc(b,a);switch(window.focus(),Lf(a)){case 1:b.state.selectingText?b.state.selectingText(a):d?Ac(b,a,d):Kf(a)==c.scroller&&Gf(a);break;case 2:h&&(b.state.lastMiddleDown=+new Date),d&&Ua(b.doc,d),setTimeout(function(){c.input.focus()},20),Gf(a);break;case 3:u?cd(b,a):_c(b)}}}}function Ac(a,b,c){f?setTimeout(ng(va,a),0):a.curOp.focus=zg();var e,d=+new Date;zc&&zc.time>d-400&&0==ra(zc.pos,c)?e="triple":yc&&yc.time>d-400&&0==ra(yc.pos,c)?(e="double",zc={time:d,pos:c}):(e="single",yc={time:d,pos:c});var i,g=a.doc.sel,h=q?b.metaKey:b.ctrlKey;a.options.dragDrop&&Ig&&!a.isReadOnly()&&"single"==e&&(i=g.contains(c))>-1&&(ra((i=g.ranges[i]).from(),c)<0||c.xRel>0)&&(ra(i.to(),c)>0||c.xRel<0)?Bc(a,b,c,h):Cc(a,b,c,e,h)}function Bc(a,b,c,d){var e=a.display,i=+new Date,j=gc(a,function(k){h&&(e.scroller.draggable=!1),a.state.draggingText=!1,Pf(document,"mouseup",j),Pf(e.scroller,"drop",j),Math.abs(b.clientX-k.clientX)+Math.abs(b.clientY-k.clientY)<10&&(Gf(k),!d&&+new Date-200<i&&Ua(a.doc,c),h||f&&9==g?setTimeout(function(){document.body.focus(),e.input.focus()},20):e.input.focus())});h&&(e.scroller.draggable=!0),a.state.draggingText=j,e.scroller.dragDrop&&e.scroller.dragDrop(),Mf(document,"mouseup",j),Mf(e.scroller,"drop",j)}function Cc(a,b,c,d,e){function o(b){if(0!=ra(n,b))if(n=b,"rect"==d){for(var e=[],f=a.options.tabSize,k=cg(jf(g,c.line).text,c.ch,f),l=cg(jf(g,b.line).text,b.ch,f),m=Math.min(k,l),o=Math.max(k,l),p=Math.min(c.line,b.line),q=Math.min(a.lastLine(),Math.max(c.line,b.line));q>=p;p++){var r=jf(g,p).text,s=dg(r,m,f);m==o?e.push(new La(qa(p,s),qa(p,s))):r.length>s&&e.push(new La(qa(p,s),qa(p,dg(r,o,f))))}e.length||e.push(new La(c,c)),$a(g,Ma(j.ranges.slice(0,i).concat(e),i),{origin:"*mouse",scroll:!1}),a.scrollIntoView(b)}else{var t=h,u=t.anchor,v=b;if("single"!=d){if("double"==d)var w=a.findWordAt(b);else var w=new La(qa(b.line,0),Pa(g,qa(b.line+1,0)));ra(w.anchor,u)>0?(v=w.head,u=ua(t.from(),w.anchor)):(v=w.anchor,u=ta(t.to(),w.head))}var e=j.ranges.slice(0);e[i]=new La(Pa(g,u),v),$a(g,Ma(e,i),_f)}}function r(b){var c=++q,e=wc(a,b,!0,"rect"==d);if(e)if(0!=ra(e,n)){a.curOp.focus=zg(),o(e);var h=R(f,g);(e.line>=h.to||e.line<h.from)&&setTimeout(gc(a,function(){q==c&&r(b)}),150)}else{var i=b.clientY<p.top?-20:b.clientY>p.bottom?20:0;i&&setTimeout(gc(a,function(){q==c&&(f.scroller.scrollTop+=i,r(b))}),50)}}function s(b){a.state.selectingText=!1,q=1/0,Gf(b),f.input.focus(),Pf(document,"mousemove",t),Pf(document,"mouseup",u),g.history.lastSelOrigin=null}var f=a.display,g=a.doc;Gf(b);var h,i,j=g.sel,k=j.ranges;if(e&&!b.shiftKey?(i=g.sel.contains(c),h=i>-1?k[i]:new La(c,c)):(h=g.sel.primary(),i=g.sel.primIndex),b.altKey)d="rect",e||(h=new La(c,c)),c=wc(a,b,!0,!0),i=-1;else if("double"==d){var l=a.findWordAt(c);h=a.display.shift||g.extend?Ta(g,h,l.anchor,l.head):l}else if("triple"==d){var m=new La(qa(c.line,0),Pa(g,qa(c.line+1,0)));h=a.display.shift||g.extend?Ta(g,h,m.anchor,m.head):m}else h=Ta(g,h,c);e?-1==i?(i=k.length,$a(g,Ma(k.concat([h]),i),{scroll:!1,origin:"*mouse"})):k.length>1&&k[i].empty()&&"single"==d&&!b.shiftKey?($a(g,Ma(k.slice(0,i).concat(k.slice(i+1)),0),{scroll:!1,origin:"*mouse"}),j=g.sel):Wa(g,i,h,_f):(i=0,$a(g,new Ka([h],0),_f),j=g.sel);var n=c,p=f.wrapper.getBoundingClientRect(),q=0,t=gc(a,function(a){Lf(a)?r(a):s(a)}),u=gc(a,s);a.state.selectingText=u,Mf(document,"mousemove",t),Mf(document,"mouseup",u)}function Dc(a,b,c,d){try{var e=b.clientX,f=b.clientY}catch(b){return!1}if(e>=Math.floor(a.display.gutters.getBoundingClientRect().right))return!1;d&&Gf(b);var g=a.display,h=g.lineDiv.getBoundingClientRect();if(f>h.bottom||!Wf(a,c))return If(b);f-=h.top-g.viewOffset;for(var i=0;i<a.options.gutters.length;++i){var j=g.gutters.childNodes[i];if(j&&j.getBoundingClientRect().right>=e){var k=of(a.doc,f),l=a.options.gutters[i];return Qf(a,c,a,k,l,b),If(b)}}}function Ec(a,b){return Dc(a,b,"gutterClick",!0)}function Gc(a){var b=this;if(Jc(b),!Uf(b,a)&&!vc(b.display,a)){Gf(a),f&&(Fc=+new Date);var c=wc(b,a,!0),d=a.dataTransfer.files;if(c&&!b.isReadOnly())if(d&&d.length&&window.FileReader&&window.File)for(var e=d.length,g=Array(e),h=0,i=function(a,d){if(!b.options.allowDropFileTypes||-1!=ig(b.options.allowDropFileTypes,a.type)){var f=new FileReader;f.onload=gc(b,function(){var a=f.result;if(/[\x00-\x08\x0e-\x1f]{2}/.test(a)&&(a=""),g[d]=a,++h==e){c=Pa(b.doc,c);var i={from:c,to:c,text:b.doc.splitLines(g.join(b.doc.lineSeparator())),origin:"paste"};kd(b.doc,i),Za(b.doc,Na(c,ed(i)))}}),f.readAsText(a)}},j=0;e>j;++j)i(d[j],j);else{if(b.state.draggingText&&b.doc.sel.contains(c)>-1)return b.state.draggingText(a),void setTimeout(function(){b.display.input.focus()},20);try{var g=a.dataTransfer.getData("Text");if(g){if(b.state.draggingText&&!(q?a.altKey:a.ctrlKey))var k=b.listSelections();if(_a(b.doc,Na(c,c)),k)for(var j=0;j<k.length;++j)qd(b.doc,"",k[j].anchor,k[j].head,"drag");b.replaceSelection(g,"around","paste"),b.display.input.focus()}}catch(a){}}}}function Hc(a,b){if(f&&(!a.state.draggingText||+new Date-Fc<100))return void Jf(b);if(!Uf(a,b)&&!vc(a.display,b)&&(b.dataTransfer.setData("Text",a.getSelection()),b.dataTransfer.setDragImage&&!l)){var c=ug("img",null,null,"position: fixed; left: 0; top: 0;");c.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",k&&(c.width=c.height=1,a.display.wrapper.appendChild(c),c._top=c.offsetTop),b.dataTransfer.setDragImage(c,0,0),k&&c.parentNode.removeChild(c)}}function Ic(a,b){var c=wc(a,b);if(c){var d=document.createDocumentFragment();ib(a,c,d),a.display.dragCursor||(a.display.dragCursor=ug("div",null,"CodeMirror-cursors CodeMirror-dragcursors"),a.display.lineSpace.insertBefore(a.display.dragCursor,a.display.cursorDiv)),xg(a.display.dragCursor,d)}}function Jc(a){a.display.dragCursor&&(a.display.lineSpace.removeChild(a.display.dragCursor),a.display.dragCursor=null)}function Kc(a,b){Math.abs(a.doc.scrollTop-b)<2||(a.doc.scrollTop=b,c||$(a,{top:b}),a.display.scroller.scrollTop!=b&&(a.display.scroller.scrollTop=b),a.display.scrollbars.setScrollTop(b),c&&$(a),lb(a,100))}function Lc(a,b,c){(c?b==a.doc.scrollLeft:Math.abs(a.doc.scrollLeft-b)<2)||(b=Math.min(b,a.display.scroller.scrollWidth-a.display.scroller.clientWidth),a.doc.scrollLeft=b,S(a),a.display.scroller.scrollLeft!=b&&(a.display.scroller.scrollLeft=b),a.display.scrollbars.setScrollLeft(b))}function Pc(a,b){var d=Oc(b),e=d.x,f=d.y,g=a.display,i=g.scroller,j=i.scrollWidth>i.clientWidth,l=i.scrollHeight>i.clientHeight;if(e&&j||f&&l){if(f&&q&&h)a:for(var m=b.target,n=g.view;m!=i;m=m.parentNode)for(var o=0;o<n.length;o++)if(n[o].node==m){a.display.currentWheelTarget=m;break a}if(e&&!c&&!k&&null!=Nc)return f&&l&&Kc(a,Math.max(0,Math.min(i.scrollTop+f*Nc,i.scrollHeight-i.clientHeight))),Lc(a,Math.max(0,Math.min(i.scrollLeft+e*Nc,i.scrollWidth-i.clientWidth))),(!f||f&&l)&&Gf(b),void(g.wheelStartX=null);if(f&&null!=Nc){var p=f*Nc,r=a.doc.scrollTop,s=r+g.wrapper.clientHeight;0>p?r=Math.max(0,r+p-50):s=Math.min(a.doc.height,s+p+50),$(a,{top:r,bottom:s})}20>Mc&&(null==g.wheelStartX?(g.wheelStartX=i.scrollLeft,g.wheelStartY=i.scrollTop,g.wheelDX=e,g.wheelDY=f,setTimeout(function(){if(null!=g.wheelStartX){var a=i.scrollLeft-g.wheelStartX,b=i.scrollTop-g.wheelStartY,c=b&&g.wheelDY&&b/g.wheelDY||a&&g.wheelDX&&a/g.wheelDX;g.wheelStartX=g.wheelStartY=null,c&&(Nc=(Nc*Mc+c)/(Mc+1),++Mc)}},200)):(g.wheelDX+=e,g.wheelDY+=f))}}function Qc(a,b,c){if("string"==typeof b&&(b=Od[b],!b))return!1;a.display.input.ensurePolled();var d=a.display.shift,e=!1;try{a.isReadOnly()&&(a.state.suppressEdits=!0),c&&(a.display.shift=!1),e=b(a)!=Zf}finally{a.display.shift=d,a.state.suppressEdits=!1}return e}function Rc(a,b,c){for(var d=0;d<a.state.keyMaps.length;d++){var e=Rd(b,a.state.keyMaps[d],c,a);if(e)return e}return a.options.extraKeys&&Rd(b,a.options.extraKeys,c,a)||Rd(b,a.options.keyMap,c,a)}function Tc(a,b,c,d){var e=a.state.keySeq;if(e){if(Sd(b))return"handled";Sc.set(50,function(){a.state.keySeq==e&&(a.state.keySeq=null,a.display.input.reset())}),b=e+" "+b}var f=Rc(a,b,d);return"multi"==f&&(a.state.keySeq=b),"handled"==f&&Sf(a,"keyHandled",a,b,c),("handled"==f||"multi"==f)&&(Gf(c),kb(a)),e&&!f&&/\'$/.test(b)?(Gf(c),!0):!!f}function Uc(a,b){var c=Td(b,!0);return c?b.shiftKey&&!a.state.keySeq?Tc(a,"Shift-"+c,b,function(b){return Qc(a,b,!0)})||Tc(a,c,b,function(b){return("string"==typeof b?/^go[A-Z]/.test(b):b.motion)?Qc(a,b):void 0}):Tc(a,c,b,function(b){return Qc(a,b)}):!1}function Vc(a,b,c){return Tc(a,"'"+c+"'",b,function(b){return Qc(a,b,!0)})}function Xc(a){var b=this;if(b.curOp.focus=zg(),!Uf(b,a)){f&&11>g&&27==a.keyCode&&(a.returnValue=!1);var c=a.keyCode;b.display.shift=16==c||a.shiftKey;var d=Uc(b,a);k&&(Wc=d?c:null,!d&&88==c&&!Pg&&(q?a.metaKey:a.ctrlKey)&&b.replaceSelection("",null,"cut")),18!=c||/\bCodeMirror-crosshair\b/.test(b.display.lineDiv.className)||Yc(b)}}function Yc(a){function c(a){18!=a.keyCode&&a.altKey||(Bg(b,"CodeMirror-crosshair"),Pf(document,"keyup",c),Pf(document,"mouseover",c))}var b=a.display.lineDiv;Cg(b,"CodeMirror-crosshair"),Mf(document,"keyup",c),Mf(document,"mouseover",c)}function Zc(a){16==a.keyCode&&(this.doc.sel.shift=!1),Uf(this,a)}function $c(a){var b=this;if(!(vc(b.display,a)||Uf(b,a)||a.ctrlKey&&!a.altKey||q&&a.metaKey)){var c=a.keyCode,d=a.charCode;if(k&&c==Wc)return Wc=null,void Gf(a);if(!k||a.which&&!(a.which<10)||!Uc(b,a)){var e=String.fromCharCode(null==d?c:d);Vc(b,a,e)||b.display.input.onKeyPress(a)}}}function _c(a){a.state.delayingBlurEvent=!0,setTimeout(function(){a.state.delayingBlurEvent&&(a.state.delayingBlurEvent=!1,bd(a))},100)}function ad(a){a.state.delayingBlurEvent&&(a.state.delayingBlurEvent=!1),"nocursor"!=a.options.readOnly&&(a.state.focused||(Qf(a,"focus",a),a.state.focused=!0,Cg(a.display.wrapper,"CodeMirror-focused"),a.curOp||a.display.selForContextMenu==a.doc.sel||(a.display.input.reset(),h&&setTimeout(function(){a.display.input.reset(!0)},20)),a.display.input.receivedFocus()),kb(a))}function bd(a){a.state.delayingBlurEvent||(a.state.focused&&(Qf(a,"blur",a),a.state.focused=!1,Bg(a.display.wrapper,"CodeMirror-focused")),clearInterval(a.display.blinker),setTimeout(function(){a.state.focused||(a.display.shift=!1)},150))}function cd(a,b){vc(a.display,b)||dd(a,b)||Uf(a,b,"contextmenu")||a.display.input.onContextMenu(b)}function dd(a,b){return Wf(a,"gutterContextMenu")?Dc(a,b,"gutterContextMenu",!1):!1}function fd(a,b){if(ra(a,b.from)<0)return a;if(ra(a,b.to)<=0)return ed(b);var c=a.line+b.text.length-(b.to.line-b.from.line)-1,d=a.ch;return a.line==b.to.line&&(d+=ed(b).ch-b.to.ch),qa(c,d)}function gd(a,b){for(var c=[],d=0;d<a.sel.ranges.length;d++){var e=a.sel.ranges[d];c.push(new La(fd(e.anchor,b),fd(e.head,b)))}return Ma(c,a.sel.primIndex)}function hd(a,b,c){return a.line==b.line?qa(c.line,a.ch-b.ch+c.ch):qa(c.line+(a.line-b.line),a.ch)}function id(a,b,c){for(var d=[],e=qa(a.first,0),f=e,g=0;g<b.length;g++){var h=b[g],i=hd(h.from,e,f),j=hd(ed(h),e,f);if(e=h.to,f=j,"around"==c){var k=a.sel.ranges[g],l=ra(k.head,k.anchor)<0;d[g]=new La(l?j:i,l?i:j)}else d[g]=new La(i,i)}return new Ka(d,a.sel.primIndex)}function jd(a,b,c){var d={canceled:!1,from:b.from,to:b.to,text:b.text,origin:b.origin,cancel:function(){this.canceled=!0}};return c&&(d.update=function(b,c,d,e){b&&(this.from=Pa(a,b)),c&&(this.to=Pa(a,c)),d&&(this.text=d),void 0!==e&&(this.origin=e)}),Qf(a,"beforeChange",a,d),a.cm&&Qf(a.cm,"beforeChange",a.cm,d),d.canceled?null:{from:d.from,to:d.to,text:d.text,origin:d.origin}}function kd(a,b,c){if(a.cm){if(!a.cm.curOp)return gc(a.cm,kd)(a,b,c);if(a.cm.state.suppressEdits)return}if(!(Wf(a,"beforeChange")||a.cm&&Wf(a.cm,"beforeChange"))||(b=jd(a,b,!0))){var d=v&&!c&&le(a,b.from,b.to);if(d)for(var e=d.length-1;e>=0;--e)ld(a,{from:d[e].from,to:d[e].to,text:e?[""]:b.text});else ld(a,b)}}function ld(a,b){if(1!=b.text.length||""!=b.text[0]||0!=ra(b.from,b.to)){var c=gd(a,b);vf(a,b,c,a.cm?a.cm.curOp.id:NaN),od(a,b,c,ie(a,b));var d=[];gf(a,function(a,c){c||-1!=ig(d,a.history)||(Ff(a.history,b),d.push(a.history)),od(a,b,null,ie(a,b))})}}function md(a,b,c){if(!a.cm||!a.cm.state.suppressEdits){for(var e,d=a.history,f=a.sel,g="undo"==b?d.done:d.undone,h="undo"==b?d.undone:d.done,i=0;i<g.length&&(e=g[i],c?!e.ranges||e.equals(a.sel):e.ranges);i++);if(i!=g.length){for(d.lastOrigin=d.lastSelOrigin=null;e=g.pop(),e.ranges;){if(yf(e,h),c&&!e.equals(a.sel))return void $a(a,e,{clearRedo:!1});f=e}var j=[];yf(f,h),h.push({changes:j,generation:d.generation}),d.generation=e.generation||++d.maxGeneration;for(var k=Wf(a,"beforeChange")||a.cm&&Wf(a.cm,"beforeChange"),i=e.changes.length-1;i>=0;--i){var l=e.changes[i];if(l.origin=b,k&&!jd(a,l,!1))return void(g.length=0);j.push(sf(a,l));var m=i?gd(a,l):gg(g);od(a,l,m,ke(a,l)),!i&&a.cm&&a.cm.scrollIntoView({from:l.from,to:ed(l)});var n=[];gf(a,function(a,b){b||-1!=ig(n,a.history)||(Ff(a.history,l),n.push(a.history)),od(a,l,null,ke(a,l))})}}}}function nd(a,b){if(0!=b&&(a.first+=b,a.sel=new Ka(jg(a.sel.ranges,function(a){return new La(qa(a.anchor.line+b,a.anchor.ch),qa(a.head.line+b,a.head.ch))}),a.sel.primIndex),a.cm)){lc(a.cm,a.first,a.first-b,b);for(var c=a.cm.display,d=c.viewFrom;d<c.viewTo;d++)mc(a.cm,d,"gutter")}}function od(a,b,c,d){if(a.cm&&!a.cm.curOp)return gc(a.cm,od)(a,b,c,d);if(b.to.line<a.first)return void nd(a,b.text.length-1-(b.to.line-b.from.line));if(!(b.from.line>a.lastLine())){if(b.from.line<a.first){var e=b.text.length-1-(a.first-b.from.line);nd(a,e),b={from:qa(a.first,0),to:qa(b.to.line+e,b.to.ch),text:[gg(b.text)],origin:b.origin}}var f=a.lastLine();b.to.line>f&&(b={from:b.from,to:qa(f,jf(a,f).text.length),text:[b.text[0]],origin:b.origin}),b.removed=kf(a,b.from,b.to),c||(c=gd(a,b)),a.cm?pd(a.cm,b,d):_e(a,b,d),_a(a,c,$f)}}function pd(a,b,c){var d=a.doc,e=a.display,f=b.from,g=b.to,h=!1,i=f.line;a.options.lineWrapping||(i=nf(ve(jf(d,f.line))),d.iter(i,g.line+1,function(a){return a==e.maxLine?(h=!0,!0):void 0})),d.sel.contains(b.from,b.to)>-1&&Vf(a),_e(d,b,c,C(a)),a.options.lineWrapping||(d.iter(i,f.line+b.text.length,function(a){var b=I(a);b>e.maxLineLength&&(e.maxLine=a,e.maxLineLength=b,e.maxLineChanged=!0,h=!1)}),h&&(a.curOp.updateMaxLine=!0)),d.frontier=Math.min(d.frontier,f.line),lb(a,400);var j=b.text.length-(g.line-f.line)-1;b.full?lc(a):f.line!=g.line||1!=b.text.length||$e(a.doc,b)?lc(a,f.line,g.line+1,j):mc(a,f.line,"text");var k=Wf(a,"changes"),l=Wf(a,"change");if(l||k){var m={from:f,to:g,text:b.text,removed:b.removed,origin:b.origin};l&&Sf(a,"change",a,m),k&&(a.curOp.changeObjs||(a.curOp.changeObjs=[])).push(m)}a.display.selForContextMenu=null}function qd(a,b,c,d,e){if(d||(d=c),ra(d,c)<0){var f=d;d=c,c=f}"string"==typeof b&&(b=a.splitLines(b)),kd(a,{from:c,to:d,text:b,origin:e})}function rd(a,b){if(!Uf(a,"scrollCursorIntoView")){var c=a.display,d=c.sizer.getBoundingClientRect(),e=null;if(b.top+d.top<0?e=!0:b.bottom+d.top>(window.innerHeight||document.documentElement.clientHeight)&&(e=!1),null!=e&&!n){var f=ug("div","\u200b",null,"position: absolute; top: "+(b.top-c.viewOffset-pb(a.display))+"px; height: "+(b.bottom-b.top+sb(a)+c.barHeight)+"px; left: "+b.left+"px; width: 2px;");a.display.lineSpace.appendChild(f),f.scrollIntoView(e),a.display.lineSpace.removeChild(f)}}}function sd(a,b,c,d){null==d&&(d=0);for(var e=0;5>e;e++){var f=!1,g=Ob(a,b),h=c&&c!=b?Ob(a,c):g,i=ud(a,Math.min(g.left,h.left),Math.min(g.top,h.top)-d,Math.max(g.left,h.left),Math.max(g.bottom,h.bottom)+d),j=a.doc.scrollTop,k=a.doc.scrollLeft;if(null!=i.scrollTop&&(Kc(a,i.scrollTop),Math.abs(a.doc.scrollTop-j)>1&&(f=!0)),null!=i.scrollLeft&&(Lc(a,i.scrollLeft),Math.abs(a.doc.scrollLeft-k)>1&&(f=!0)),!f)break}return g}function td(a,b,c,d,e){var f=ud(a,b,c,d,e);null!=f.scrollTop&&Kc(a,f.scrollTop),null!=f.scrollLeft&&Lc(a,f.scrollLeft)}function ud(a,b,c,d,e){var f=a.display,g=Ub(a.display);0>c&&(c=0);var h=a.curOp&&null!=a.curOp.scrollTop?a.curOp.scrollTop:f.scroller.scrollTop,i=ub(a),j={};e-c>i&&(e=c+i);var k=a.doc.height+qb(f),l=g>c,m=e>k-g;if(h>c)j.scrollTop=l?0:c;else if(e>h+i){var n=Math.min(c,(m?k:e)-i);n!=h&&(j.scrollTop=n)}var o=a.curOp&&null!=a.curOp.scrollLeft?a.curOp.scrollLeft:f.scroller.scrollLeft,p=tb(a)-(a.options.fixedGutter?f.gutters.offsetWidth:0),q=d-b>p;return q&&(d=b+p),10>b?j.scrollLeft=0:o>b?j.scrollLeft=Math.max(0,b-(q?0:10)):d>p+o-3&&(j.scrollLeft=d+(q?0:10)-p),j}function vd(a,b,c){(null!=b||null!=c)&&xd(a),null!=b&&(a.curOp.scrollLeft=(null==a.curOp.scrollLeft?a.doc.scrollLeft:a.curOp.scrollLeft)+b),null!=c&&(a.curOp.scrollTop=(null==a.curOp.scrollTop?a.doc.scrollTop:a.curOp.scrollTop)+c)}function wd(a){xd(a);var b=a.getCursor(),c=b,d=b;a.options.lineWrapping||(c=b.ch?qa(b.line,b.ch-1):b,d=qa(b.line,b.ch+1)),a.curOp.scrollToPos={from:c,to:d,margin:a.options.cursorScrollMargin,isCursor:!0}}function xd(a){var b=a.curOp.scrollToPos;if(b){a.curOp.scrollToPos=null;var c=Pb(a,b.from),d=Pb(a,b.to),e=ud(a,Math.min(c.left,d.left),Math.min(c.top,d.top)-b.margin,Math.max(c.right,d.right),Math.max(c.bottom,d.bottom)+b.margin);
17
- a.scrollTo(e.scrollLeft,e.scrollTop)}}function yd(a,b,c,d){var f,e=a.doc;null==c&&(c="add"),"smart"==c&&(e.mode.indent?f=ob(a,b):c="prev");var g=a.options.tabSize,h=jf(e,b),i=cg(h.text,null,g);h.stateAfter&&(h.stateAfter=null);var k,j=h.text.match(/^\s*/)[0];if(d||/\S/.test(h.text)){if("smart"==c&&(k=e.mode.indent(f,h.text.slice(j.length),h.text),k==Zf||k>150)){if(!d)return;c="prev"}}else k=0,c="not";"prev"==c?k=b>e.first?cg(jf(e,b-1).text,null,g):0:"add"==c?k=i+a.options.indentUnit:"subtract"==c?k=i-a.options.indentUnit:"number"==typeof c&&(k=i+c),k=Math.max(0,k);var l="",m=0;if(a.options.indentWithTabs)for(var n=Math.floor(k/g);n;--n)m+=g,l+=" ";if(k>m&&(l+=fg(k-m)),l!=j)return qd(e,l,qa(b,0),qa(b,j.length),"+input"),h.stateAfter=null,!0;for(var n=0;n<e.sel.ranges.length;n++){var o=e.sel.ranges[n];if(o.head.line==b&&o.head.ch<j.length){var m=qa(b,j.length);Wa(e,n,new La(m,m));break}}}function zd(a,b,c,d){var e=b,f=b;return"number"==typeof b?f=jf(a,Oa(a,b)):e=nf(b),null==e?null:(d(f,e)&&a.cm&&mc(a.cm,e,c),f)}function Ad(a,b){for(var c=a.doc.sel.ranges,d=[],e=0;e<c.length;e++){for(var f=b(c[e]);d.length&&ra(f.from,gg(d).to)<=0;){var g=d.pop();if(ra(g.from,f.from)<0){f.from=g.from;break}}d.push(f)}fc(a,function(){for(var b=d.length-1;b>=0;b--)qd(a.doc,"",d[b].from,d[b].to,"+delete");wd(a)})}function Bd(a,b,c,d,e){function k(){var b=f+c;return b<a.first||b>=a.first+a.size?j=!1:(f=b,i=jf(a,b))}function l(a){var b=(e?dh:eh)(i,g,c,!0);if(null==b){if(a||!k())return j=!1;g=e?(0>c?Xg:Wg)(i):0>c?i.text.length:0}else g=b;return!0}var f=b.line,g=b.ch,h=c,i=jf(a,f),j=!0;if("char"==d)l();else if("column"==d)l(!0);else if("word"==d||"group"==d)for(var m=null,n="group"==d,o=a.cm&&a.cm.getHelper(b,"wordChars"),p=!0;!(0>c)||l(!p);p=!1){var q=i.text.charAt(g)||"\n",r=qg(q,o)?"w":n&&"\n"==q?"n":!n||/\s/.test(q)?null:"p";if(!n||p||r||(r="s"),m&&m!=r){0>c&&(c=1,l());break}if(r&&(m=r),c>0&&!l(!p))break}var s=eb(a,qa(f,g),b,h,!0);return j||(s.hitSide=!0),s}function Cd(a,b,c,d){var g,e=a.doc,f=b.left;if("page"==d){var h=Math.min(a.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight);g=b.top+c*(h-(0>c?1.5:.5)*Ub(a.display))}else"line"==d&&(g=c>0?b.bottom+3:b.top-3);for(;;){var i=Rb(a,f,g);if(!i.outside)break;if(0>c?0>=g:g>=e.height){i.hitSide=!0;break}g+=5*c}return i}function Fd(a,b,c,d){x.defaults[a]=b,c&&(Ed[a]=d?function(a,b,d){d!=Gd&&c(a,b,d)}:c)}function Qd(a){for(var c,d,e,f,b=a.split(/-(?!$)/),a=b[b.length-1],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=!0;else{if(!/^s(hift)$/i.test(h))throw new Error("Unrecognized modifier name: "+h);e=!0}}return c&&(a="Alt-"+a),d&&(a="Ctrl-"+a),f&&(a="Cmd-"+a),e&&(a="Shift-"+a),a}function Ud(a){return"string"==typeof a?Pd[a]:a}function Yd(a,b,c,d,e){if(d&&d.shared)return $d(a,b,c,d,e);if(a.cm&&!a.cm.curOp)return gc(a.cm,Yd)(a,b,c,d,e);var f=new Xd(a,e),g=ra(b,c);if(d&&mg(d,f,!1),g>0||0==g&&f.clearWhenEmpty!==!1)return f;if(f.replacedWith&&(f.collapsed=!0,f.widgetNode=ug("span",[f.replacedWith],"CodeMirror-widget"),d.handleMouseEvents||f.widgetNode.setAttribute("cm-ignore-events","true"),d.insertLeft&&(f.widgetNode.insertLeft=!0)),f.collapsed){if(ue(a,b.line,b,c,f)||b.line!=c.line&&ue(a,c.line,b,c,f))throw new Error("Inserting collapsed marker partially overlapping an existing one");w=!0}f.addToHistory&&vf(a,{from:b,to:c,origin:"markText"},a.sel,NaN);var j,h=b.line,i=a.cm;if(a.iter(h,c.line+1,function(a){i&&f.collapsed&&!i.options.lineWrapping&&ve(a)==i.display.maxLine&&(j=!0),f.collapsed&&h!=b.line&&mf(a,0),fe(a,new ce(f,h==b.line?b.ch:null,h==c.line?c.ch:null)),++h}),f.collapsed&&a.iter(b.line,c.line+1,function(b){ze(a,b)&&mf(b,0)}),f.clearOnEnter&&Mf(f,"beforeCursorEnter",function(){f.clear()}),f.readOnly&&(v=!0,(a.history.done.length||a.history.undone.length)&&a.clearHistory()),f.collapsed&&(f.id=++Wd,f.atomic=!0),i){if(j&&(i.curOp.updateMaxLine=!0),f.collapsed)lc(i,b.line,c.line+1);else if(f.className||f.title||f.startStyle||f.endStyle||f.css)for(var k=b.line;k<=c.line;k++)mc(i,k,"text");f.atomic&&bb(i.doc),Sf(i,"markerAdded",i,f)}return f}function $d(a,b,c,d,e){d=mg(d),d.shared=!1;var f=[Yd(a,b,c,d,e)],g=f[0],h=d.widgetNode;return gf(a,function(a){h&&(d.widgetNode=h.cloneNode(!0)),f.push(Yd(a,Pa(a,b),Pa(a,c),d,e));for(var i=0;i<a.linked.length;++i)if(a.linked[i].isParent)return;g=gg(f)}),new Zd(f,g)}function _d(a){return a.findMarks(qa(a.first,0),a.clipPos(qa(a.lastLine())),function(a){return a.parent})}function ae(a,b){for(var c=0;c<b.length;c++){var d=b[c],e=d.find(),f=a.clipPos(e.from),g=a.clipPos(e.to);if(ra(f,g)){var h=Yd(a,f,g,d.primary,d.primary.type);d.markers.push(h),h.parent=d}}}function be(a){for(var b=0;b<a.length;b++){var c=a[b],d=[c.primary.doc];gf(c.primary.doc,function(a){d.push(a)});for(var e=0;e<c.markers.length;e++){var f=c.markers[e];-1==ig(d,f.doc)&&(f.parent=null,c.markers.splice(e--,1))}}}function ce(a,b,c){this.marker=a,this.from=b,this.to=c}function de(a,b){if(a)for(var c=0;c<a.length;++c){var d=a[c];if(d.marker==b)return d}}function ee(a,b){for(var c,d=0;d<a.length;++d)a[d]!=b&&(c||(c=[])).push(a[d]);return c}function fe(a,b){a.markedSpans=a.markedSpans?a.markedSpans.concat([b]):[b],b.marker.attachLine(a)}function ge(a,b,c){if(a)for(var e,d=0;d<a.length;++d){var f=a[d],g=f.marker,h=null==f.from||(g.inclusiveLeft?f.from<=b:f.from<b);if(h||f.from==b&&"bookmark"==g.type&&(!c||!f.marker.insertLeft)){var i=null==f.to||(g.inclusiveRight?f.to>=b:f.to>b);(e||(e=[])).push(new ce(g,f.from,i?null:f.to))}}return e}function he(a,b,c){if(a)for(var e,d=0;d<a.length;++d){var f=a[d],g=f.marker,h=null==f.to||(g.inclusiveRight?f.to>=b:f.to>b);if(h||f.from==b&&"bookmark"==g.type&&(!c||f.marker.insertLeft)){var i=null==f.from||(g.inclusiveLeft?f.from<=b:f.from<b);(e||(e=[])).push(new ce(g,i?null:f.from-b,null==f.to?null:f.to-b))}}return e}function ie(a,b){if(b.full)return null;var c=Ra(a,b.from.line)&&jf(a,b.from.line).markedSpans,d=Ra(a,b.to.line)&&jf(a,b.to.line).markedSpans;if(!c&&!d)return null;var e=b.from.ch,f=b.to.ch,g=0==ra(b.from,b.to),h=ge(c,e,g),i=he(d,f,g),j=1==b.text.length,k=gg(b.text).length+(j?e:0);if(h)for(var l=0;l<h.length;++l){var m=h[l];if(null==m.to){var n=de(i,m.marker);n?j&&(m.to=null==n.to?null:n.to+k):m.to=e}}if(i)for(var l=0;l<i.length;++l){var m=i[l];if(null!=m.to&&(m.to+=k),null==m.from){var n=de(h,m.marker);n||(m.from=k,j&&(h||(h=[])).push(m))}else m.from+=k,j&&(h||(h=[])).push(m)}h&&(h=je(h)),i&&i!=h&&(i=je(i));var o=[h];if(!j){var q,p=b.text.length-2;if(p>0&&h)for(var l=0;l<h.length;++l)null==h[l].to&&(q||(q=[])).push(new ce(h[l].marker,null,null));for(var l=0;p>l;++l)o.push(q);o.push(i)}return o}function je(a){for(var b=0;b<a.length;++b){var c=a[b];null!=c.from&&c.from==c.to&&c.marker.clearWhenEmpty!==!1&&a.splice(b--,1)}return a.length?a:null}function ke(a,b){var c=Bf(a,b),d=ie(a,b);if(!c)return d;if(!d)return c;for(var e=0;e<c.length;++e){var f=c[e],g=d[e];if(f&&g)a:for(var h=0;h<g.length;++h){for(var i=g[h],j=0;j<f.length;++j)if(f[j].marker==i.marker)continue a;f.push(i)}else g&&(c[e]=g)}return c}function le(a,b,c){var d=null;if(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||d&&-1!=ig(d,c)||(d||(d=[])).push(c)}}),!d)return null;for(var e=[{from:b,to:c}],f=0;f<d.length;++f)for(var g=d[f],h=g.find(0),i=0;i<e.length;++i){var j=e[i];if(!(ra(j.to,h.from)<0||ra(j.from,h.to)>0)){var k=[i,1],l=ra(j.from,h.from),m=ra(j.to,h.to);(0>l||!g.inclusiveLeft&&!l)&&k.push({from:j.from,to:h.from}),(m>0||!g.inclusiveRight&&!m)&&k.push({from:h.to,to:j.to}),e.splice.apply(e,k),i+=k.length-1}}return e}function me(a){var b=a.markedSpans;if(b){for(var c=0;c<b.length;++c)b[c].marker.detachLine(a);a.markedSpans=null}}function ne(a,b){if(b){for(var c=0;c<b.length;++c)b[c].marker.attachLine(a);a.markedSpans=b}}function oe(a){return a.inclusiveLeft?-1:0}function pe(a){return a.inclusiveRight?1:0}function qe(a,b){var c=a.lines.length-b.lines.length;if(0!=c)return c;var d=a.find(),e=b.find(),f=ra(d.from,e.from)||oe(a)-oe(b);if(f)return-f;var g=ra(d.to,e.to)||pe(a)-pe(b);return g?g:b.id-a.id}function re(a,b){var d,c=w&&a.markedSpans;if(c)for(var e,f=0;f<c.length;++f)e=c[f],e.marker.collapsed&&null==(b?e.from:e.to)&&(!d||qe(d,e.marker)<0)&&(d=e.marker);return d}function se(a){return re(a,!0)}function te(a){return re(a,!1)}function ue(a,b,c,d,e){var f=jf(a,b),g=w&&f.markedSpans;if(g)for(var h=0;h<g.length;++h){var i=g[h];if(i.marker.collapsed){var j=i.marker.find(0),k=ra(j.from,c)||oe(i.marker)-oe(e),l=ra(j.to,d)||pe(i.marker)-pe(e);if(!(k>=0&&0>=l||0>=k&&l>=0)&&(0>=k&&(ra(j.to,c)>0||i.marker.inclusiveRight&&e.inclusiveLeft)||k>=0&&(ra(j.from,d)<0||i.marker.inclusiveLeft&&e.inclusiveRight)))return!0}}}function ve(a){for(var b;b=se(a);)a=b.find(-1,!0).line;return a}function we(a){for(var b,c;b=te(a);)a=b.find(1,!0).line,(c||(c=[])).push(a);return c}function xe(a,b){var c=jf(a,b),d=ve(c);return c==d?b:nf(d)}function ye(a,b){if(b>a.lastLine())return b;var d,c=jf(a,b);if(!ze(a,c))return b;for(;d=te(c);)c=d.find(1,!0).line;return nf(c)+1}function ze(a,b){var c=w&&b.markedSpans;if(c)for(var d,e=0;e<c.length;++e)if(d=c[e],d.marker.collapsed){if(null==d.from)return!0;if(!d.marker.widgetNode&&0==d.from&&d.marker.inclusiveLeft&&Ae(a,b,d))return!0}}function Ae(a,b,c){if(null==c.to){var d=c.marker.find(1,!0);return Ae(a,d.line,de(d.line.markedSpans,c.marker))}if(c.marker.inclusiveRight&&c.to==b.text.length)return!0;for(var e,f=0;f<b.markedSpans.length;++f)if(e=b.markedSpans[f],e.marker.collapsed&&!e.marker.widgetNode&&e.from==c.to&&(null==e.to||e.to!=c.from)&&(e.marker.inclusiveLeft||c.marker.inclusiveRight)&&Ae(a,b,e))return!0}function Ce(a,b,c){pf(b)<(a.curOp&&a.curOp.scrollTop||a.doc.scrollTop)&&vd(a,null,c)}function De(a){if(null!=a.height)return a.height;var b=a.doc.cm;if(!b)return 0;if(!yg(document.body,a.node)){var c="position: relative;";a.coverGutter&&(c+="margin-left: -"+b.display.gutters.offsetWidth+"px;"),a.noHScroll&&(c+="width: "+b.display.wrapper.clientWidth+"px;"),xg(b.display.measure,ug("div",[a.node],null,c))}return a.height=a.node.parentNode.offsetHeight}function Ee(a,b,c,d){var e=new Be(a,c,d),f=a.cm;return f&&e.noHScroll&&(f.display.alignWidgets=!0),zd(a,b,"widget",function(b){var c=b.widgets||(b.widgets=[]);if(null==e.insertAt?c.push(e):c.splice(Math.min(c.length-1,Math.max(0,e.insertAt)),0,e),e.line=b,f&&!ze(a,b)){var d=pf(b)<a.scrollTop;mf(b,b.height+De(e)),d&&vd(f,null,e.height),f.curOp.forceUpdate=!0}return!0}),e}function Ge(a,b,c,d){a.text=b,a.stateAfter&&(a.stateAfter=null),a.styles&&(a.styles=null),null!=a.order&&(a.order=null),me(a),ne(a,c);var e=d?d(a):1;e!=a.height&&mf(a,e)}function He(a){a.parent=null,me(a)}function Ie(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]+"(?:$|s)").test(b[d])||(b[d]+=" "+c[2])}return a}function Je(a,b){if(a.blankLine)return a.blankLine(b);if(a.innerMode){var c=x.innerMode(a,b);return c.mode.blankLine?c.mode.blankLine(c.state):void 0}}function Ke(a,b,c,d){for(var e=0;10>e;e++){d&&(d[0]=x.innerMode(a,c).mode);var f=a.token(b,c);if(b.pos>b.start)return f}throw new Error("Mode "+a.name+" failed to advance stream.")}function Le(a,b,c,d){function e(a){return{start:k.start,end:k.pos,string:k.current(),type:h||null,state:a?Md(f.mode,j):j}}var h,f=a.doc,g=f.mode;b=Pa(f,b);var l,i=jf(f,b.line),j=ob(a,b.line,c),k=new Vd(i.text,a.options.tabSize);for(d&&(l=[]);(d||k.pos<b.ch)&&!k.eol();)k.start=k.pos,h=Ke(g,k,j),d&&l.push(e(!0));return d?l:e()}function Me(a,b,c,d,e,f,g){var h=c.flattenSpans;null==h&&(h=a.options.flattenSpans);var l,i=0,j=null,k=new Vd(b,a.options.tabSize),m=a.options.addModeClass&&[null];for(""==b&&Ie(Je(c,d),f);!k.eol();){if(k.pos>a.options.maxHighlightLength?(h=!1,g&&Pe(a,b,d,k.pos),k.pos=b.length,l=null):l=Ie(Ke(c,k,d,m),f),m){var n=m[0].name;n&&(l="m-"+(l?n+" "+l:n))}if(!h||j!=l){for(;i<k.start;)i=Math.min(k.start,i+5e4),e(i,j);j=l}k.start=k.pos}for(;i<k.pos;){var o=Math.min(k.pos,i+5e4);e(o,j),i=o}}function Ne(a,b,c,d){var e=[a.state.modeGen],f={};Me(a,b.text,a.doc.mode,c,function(a,b){e.push(a,b)},f,d);for(var g=0;g<a.state.overlays.length;++g){var h=a.state.overlays[g],i=1,j=0;Me(a,b.text,h.mode,!0,function(a,b){for(var c=i;a>j;){var d=e[i];d>a&&e.splice(i,1,a,e[i+1],d),i+=2,j=Math.min(a,d)}if(b)if(h.opaque)e.splice(c,i-c,a,"cm-overlay "+b),i=c+2;else for(;i>c;c+=2){var f=e[c+1];e[c+1]=(f?f+" ":"")+"cm-overlay "+b}},f)}return{styles:e,classes:f.bgClass||f.textClass?f:null}}function Oe(a,b,c){if(!b.styles||b.styles[0]!=a.state.modeGen){var d=ob(a,nf(b)),e=Ne(a,b,b.text.length>a.options.maxHighlightLength?Md(a.doc.mode,d):d);b.stateAfter=d,b.styles=e.styles,e.classes?b.styleClasses=e.classes:b.styleClasses&&(b.styleClasses=null),c===a.doc.frontier&&a.doc.frontier++}return b.styles}function Pe(a,b,c,d){var e=a.doc.mode,f=new Vd(b,a.options.tabSize);for(f.start=f.pos=d||0,""==b&&Je(e,c);!f.eol();)Ke(e,f,c),f.start=f.pos}function Se(a,b){if(!a||/^\s*$/.test(a))return null;var c=b.addModeClass?Re:Qe;return c[a]||(c[a]=a.replace(/\S+/g,"cm-$&"))}function Te(a,b){var c=ug("span",null,null,h?"padding-right: .1px":null),d={pre:ug("pre",[c],"CodeMirror-line"),content:c,col:0,pos:0,cm:a,splitSpaces:(f||h)&&a.getOption("lineWrapping")};b.measure={};for(var e=0;e<=(b.rest?b.rest.length:0);e++){var i,g=e?b.rest[e-1]:b.line;d.pos=0,d.addToken=Ve,Mg(a.display.measure)&&(i=qf(g))&&(d.addToken=Xe(d.addToken,i)),d.map=[];var j=b!=a.display.externalMeasured&&nf(g);Ze(g,d,Oe(a,g,j)),g.styleClasses&&(g.styleClasses.bgClass&&(d.bgClass=Dg(g.styleClasses.bgClass,d.bgClass||"")),g.styleClasses.textClass&&(d.textClass=Dg(g.styleClasses.textClass,d.textClass||""))),0==d.map.length&&d.map.push(0,0,d.content.appendChild(Kg(a.display.measure))),0==e?(b.measure.map=d.map,b.measure.cache={}):((b.measure.maps||(b.measure.maps=[])).push(d.map),(b.measure.caches||(b.measure.caches=[])).push({}))}return h&&/\bcm-tab\b/.test(d.content.lastChild.className)&&(d.content.className="cm-tab-wrap-hack"),Qf(a,"renderLine",a,b.line,d.pre),d.pre.className&&(d.textClass=Dg(d.pre.className,d.textClass||"")),d}function Ue(a){var b=ug("span","\u2022","cm-invalidchar");return b.title="\\u"+a.charCodeAt(0).toString(16),b.setAttribute("aria-label",b.title),b}function Ve(a,b,c,d,e,h,i){if(b){var j=a.splitSpaces?b.replace(/ {3,}/g,We):b,k=a.cm.state.specialChars,l=!1;if(k.test(b))for(var m=document.createDocumentFragment(),n=0;;){k.lastIndex=n;var o=k.exec(b),p=o?o.index-n:b.length-n;if(p){var q=document.createTextNode(j.slice(n,n+p));f&&9>g?m.appendChild(ug("span",[q])):m.appendChild(q),a.map.push(a.pos,a.pos+p,q),a.col+=p,a.pos+=p}if(!o)break;if(n+=p+1," "==o[0]){var r=a.cm.options.tabSize,s=r-a.col%r,q=m.appendChild(ug("span",fg(s),"cm-tab"));q.setAttribute("role","presentation"),q.setAttribute("cm-text"," "),a.col+=s}else if("\r"==o[0]||"\n"==o[0]){var q=m.appendChild(ug("span","\r"==o[0]?"\u240d":"\u2424","cm-invalidchar"));q.setAttribute("cm-text",o[0]),a.col+=1}else{var q=a.cm.options.specialCharPlaceholder(o[0]);q.setAttribute("cm-text",o[0]),f&&9>g?m.appendChild(ug("span",[q])):m.appendChild(q),a.col+=1}a.map.push(a.pos,a.pos+1,q),a.pos++}else{a.col+=b.length;var m=document.createTextNode(j);a.map.push(a.pos,a.pos+b.length,m),f&&9>g&&(l=!0),a.pos+=b.length}if(c||d||e||l||i){var t=c||"";d&&(t+=d),e&&(t+=e);var u=ug("span",[m],t,i);return h&&(u.title=h),a.content.appendChild(u)}a.content.appendChild(m)}}function We(a){for(var b=" ",c=0;c<a.length-2;++c)b+=c%2?" ":"\xa0";return b+=" "}function Xe(a,b){return function(c,d,e,f,g,h,i){e=e?e+" cm-force-border":"cm-force-border";for(var j=c.pos,k=j+d.length;;){for(var l=0;l<b.length;l++){var m=b[l];if(m.to>j&&m.from<=j)break}if(m.to>=k)return a(c,d,e,f,g,h,i);a(c,d.slice(0,m.to-j),e,f,null,h,i),f=null,d=d.slice(m.to-j),j=m.to}}}function Ye(a,b,c,d){var e=!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}function Ze(a,b,c){var d=a.markedSpans,e=a.text,f=0;if(d)for(var k,l,n,o,p,q,r,h=e.length,i=0,g=1,j="",m=0;;){if(m==i){n=o=p=q=l="",r=null,m=1/0;for(var t,s=[],u=0;u<d.length;++u){var v=d[u],w=v.marker;"bookmark"==w.type&&v.from==i&&w.widgetNode?s.push(w):v.from<=i&&(null==v.to||v.to>i||w.collapsed&&v.to==i&&v.from==i)?(null!=v.to&&v.to!=i&&m>v.to&&(m=v.to,o=""),w.className&&(n+=" "+w.className),w.css&&(l=(l?l+";":"")+w.css),w.startStyle&&v.from==i&&(p+=" "+w.startStyle),w.endStyle&&v.to==m&&(t||(t=[])).push(w.endStyle,v.to),w.title&&!q&&(q=w.title),w.collapsed&&(!r||qe(r.marker,w)<0)&&(r=v)):v.from>i&&m>v.from&&(m=v.from)}if(t)for(var u=0;u<t.length;u+=2)t[u+1]==m&&(o+=" "+t[u]);if(!r||r.from==i)for(var u=0;u<s.length;++u)Ye(b,0,s[u]);if(r&&(r.from||0)==i){if(Ye(b,(null==r.to?h+1:r.to)-i,r.marker,null==r.from),null==r.to)return;r.to==i&&(r=!1)}}if(i>=h)break;for(var x=Math.min(h,m);;){if(j){var y=i+j.length;if(!r){var z=y>x?j.slice(0,x-i):j;b.addToken(b,z,k?k+n:n,p,i+z.length==m?o:"",q,l)}if(y>=x){j=j.slice(x-i),i=x;break}i=y,p=""}j=e.slice(f,f=c[g++]),k=Se(c[g++],b.cm.options)}}else for(var g=1;g<c.length;g+=2)b.addToken(b,e.slice(f,f=c[g]),Se(c[g+1],b.cm.options))}function $e(a,b){return 0==b.from.ch&&0==b.to.ch&&""==gg(b.text)&&(!a.cm||a.cm.options.wholeLineUpdateBefore)}function _e(a,b,c,d){function e(a){return c?c[a]:null}function f(a,c,e){Ge(a,c,e,d),Sf(a,"change",a,b)}function g(a,b){for(var c=a,f=[];b>c;++c)f.push(new Fe(j[c],e(c),d));return f}var h=b.from,i=b.to,j=b.text,k=jf(a,h.line),l=jf(a,i.line),m=gg(j),n=e(j.length-1),o=i.line-h.line;if(b.full)a.insert(0,g(0,j.length)),a.remove(j.length,a.size-j.length);else if($e(a,b)){var p=g(0,j.length-1);f(l,l.text,n),o&&a.remove(h.line,o),p.length&&a.insert(h.line,p)}else if(k==l)if(1==j.length)f(k,k.text.slice(0,h.ch)+m+k.text.slice(i.ch),n);else{var p=g(1,j.length-1);p.push(new Fe(m+k.text.slice(i.ch),n,d)),f(k,k.text.slice(0,h.ch)+j[0],e(0)),a.insert(h.line+1,p)}else if(1==j.length)f(k,k.text.slice(0,h.ch)+j[0]+l.text.slice(i.ch),e(0)),a.remove(h.line+1,o);else{f(k,k.text.slice(0,h.ch)+j[0],e(0)),f(l,m+l.text.slice(i.ch),n);var p=g(1,j.length-1);o>1&&a.remove(h.line+1,o-1),a.insert(h.line+1,p)}Sf(a,"change",a,b)}function af(a){this.lines=a,this.parent=null;for(var b=0,c=0;b<a.length;++b)a[b].parent=this,c+=a[b].height;this.height=c}function bf(a){this.children=a;for(var b=0,c=0,d=0;d<a.length;++d){var e=a[d];b+=e.chunkSize(),c+=e.height,e.parent=this}this.size=b,this.height=c,this.parent=null}function gf(a,b,c){function d(a,e,f){if(a.linked)for(var g=0;g<a.linked.length;++g){var h=a.linked[g];if(h.doc!=e){var i=f&&h.sharedHist;(!c||i)&&(b(h.doc,i),d(h.doc,a,i))}}}d(a,null,!0)}function hf(a,b){if(b.cm)throw new Error("This document is already in use.");a.doc=b,b.cm=a,D(a),z(a),a.options.lineWrapping||J(a),a.options.mode=b.modeOption,lc(a)}function jf(a,b){if(b-=a.first,0>b||b>=a.size)throw new Error("There is no line "+(b+a.first)+" in the document.");for(var c=a;!c.lines;)for(var d=0;;++d){var e=c.children[d],f=e.chunkSize();if(f>b){c=e;break}b-=f}return c.lines[b]}function kf(a,b,c){var d=[],e=b.line;return a.iter(b.line,c.line+1,function(a){var f=a.text;e==c.line&&(f=f.slice(0,c.ch)),e==b.line&&(f=f.slice(b.ch)),d.push(f),++e}),d}function lf(a,b,c){var d=[];return a.iter(b,c,function(a){d.push(a.text)}),d}function mf(a,b){var c=b-a.height;if(c)for(var d=a;d;d=d.parent)d.height+=c}function nf(a){if(null==a.parent)return null;for(var b=a.parent,c=ig(b.lines,a),d=b.parent;d;b=d,d=d.parent)for(var e=0;d.children[e]!=b;++e)c+=d.children[e].chunkSize();return c+b.first}function of(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(f>b){a=e;continue a}b-=f,c+=e.chunkSize()}return c}while(!a.lines);for(var d=0;d<a.lines.length;++d){var g=a.lines[d],h=g.height;if(h>b)break;b-=h}return c+d}function pf(a){a=ve(a);for(var b=0,c=a.parent,d=0;d<c.lines.length;++d){var e=c.lines[d];if(e==a)break;b+=e.height}for(var f=c.parent;f;c=f,f=c.parent)for(var d=0;d<f.children.length;++d){var g=f.children[d];if(g==c)break;b+=g.height}return b}function qf(a){var b=a.order;return null==b&&(b=a.order=fh(a.text)),b}function rf(a){this.done=[],this.undone=[],this.undoDepth=1/0,this.lastModTime=this.lastSelTime=0,this.lastOp=this.lastSelOp=null,this.lastOrigin=this.lastSelOrigin=null,this.generation=this.maxGeneration=a||1}function sf(a,b){var c={from:sa(b.from),to:ed(b),text:kf(a,b.from,b.to)};return zf(a,c,b.from.line,b.to.line+1),gf(a,function(a){zf(a,c,b.from.line,b.to.line+1)},!0),c}function tf(a){for(;a.length;){var b=gg(a);if(!b.ranges)break;a.pop()}}function uf(a,b){return b?(tf(a.done),gg(a.done)):a.done.length&&!gg(a.done).ranges?gg(a.done):a.done.length>1&&!a.done[a.done.length-2].ranges?(a.done.pop(),gg(a.done)):void 0}function vf(a,b,c,d){var e=a.history;e.undone.length=0;var g,f=+new Date;if((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)))&&(g=uf(e,e.lastOp==d))){var h=gg(g.changes);0==ra(b.from,b.to)&&0==ra(b.from,h.to)?h.to=ed(b):g.changes.push(sf(a,b))}else{var i=gg(e.done);for(i&&i.ranges||yf(a.sel,e.done),g={changes:[sf(a,b)],generation:e.generation},e.done.push(g);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,h||Qf(a,"historyAdded")}function wf(a,b,c,d){var e=b.charAt(0);return"*"==e||"+"==e&&c.ranges.length==d.ranges.length&&c.somethingSelected()==d.somethingSelected()&&new Date-a.history.lastSelTime<=(a.cm?a.cm.options.historyEventDelay:500)}function xf(a,b,c,d){var e=a.history,f=d&&d.origin;c==e.lastSelOp||f&&e.lastSelOrigin==f&&(e.lastModTime==e.lastSelTime&&e.lastOrigin==f||wf(a,f,gg(e.done),b))?e.done[e.done.length-1]=b:yf(b,e.done),e.lastSelTime=+new Date,e.lastSelOrigin=f,e.lastSelOp=c,d&&d.clearRedo!==!1&&tf(e.undone)}function yf(a,b){var c=gg(b);c&&c.ranges&&c.equals(a)||b.push(a)}function zf(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(c){c.markedSpans&&((e||(e=b["spans_"+a.id]={}))[f]=c.markedSpans),++f})}function Af(a){if(!a)return null;for(var c,b=0;b<a.length;++b)a[b].marker.explicitlyCleared?c||(c=a.slice(0,b)):c&&c.push(a[b]);return c?c.length?c:null:a}function Bf(a,b){var c=b["spans_"+a.id];if(!c)return null;for(var d=0,e=[];d<b.text.length;++d)e.push(Af(c[d]));return e}function Cf(a,b,c){for(var d=0,e=[];d<a.length;++d){var f=a[d];if(f.ranges)e.push(c?Ka.prototype.deepCopy.call(f):f);else{var g=f.changes,h=[];e.push({changes:h});for(var i=0;i<g.length;++i){var k,j=g[i];if(h.push({from:j.from,to:j.to,text:j.text}),b)for(var l in j)(k=l.match(/^spans_(\d+)$/))&&ig(b,Number(k[1]))>-1&&(gg(h)[l]=j[l],delete j[l])}}}return e}function Df(a,b,c,d){c<a.line?a.line+=d:b<a.line&&(a.line=b,a.ch=0)}function Ef(a,b,c,d){for(var e=0;e<a.length;++e){var f=a[e],g=!0;if(f.ranges){f.copied||(f=a[e]=f.deepCopy(),f.copied=!0);for(var h=0;h<f.ranges.length;h++)Df(f.ranges[h].anchor,b,c,d),Df(f.ranges[h].head,b,c,d)}else{for(var h=0;h<f.changes.length;++h){var i=f.changes[h];if(c<i.from.line)i.from=qa(i.from.line+d,i.from.ch),i.to=qa(i.to.line+d,i.to.ch);else if(b<=i.to.line){g=!1;break}}g||(a.splice(0,e+1),e=0)}}}function Ff(a,b){var c=b.from.line,d=b.to.line,e=b.text.length-(d-c)-1;Ef(a.done,c,d,e),Ef(a.undone,c,d,e)}function If(a){return null!=a.defaultPrevented?a.defaultPrevented:0==a.returnValue}function Kf(a){return a.target||a.srcElement}function Lf(a){var b=a.which;return null==b&&(1&a.button?b=1:2&a.button?b=3:4&a.button&&(b=2)),q&&a.ctrlKey&&1==b&&(b=3),b}function Of(a,b,c){var d=a._handlers&&a._handlers[b];return c?d&&d.length>0?d.slice():Nf:d||Nf}function Sf(a,b){function f(a){return function(){a.apply(null,d)}}var c=Of(a,b,!1);if(c.length){var e,d=Array.prototype.slice.call(arguments,2);Wb?e=Wb.delayedCallbacks:Rf?e=Rf:(e=Rf=[],setTimeout(Tf,0));for(var g=0;g<c.length;++g)e.push(f(c[g]))}}function Tf(){var a=Rf;Rf=null;for(var b=0;b<a.length;++b)a[b]()}function Uf(a,b,c){return"string"==typeof b&&(b={type:b,preventDefault:function(){this.defaultPrevented=!0}}),Qf(a,c||b.type,a,b),If(b)||b.codemirrorIgnore}function Vf(a){var b=a._handlers&&a._handlers.cursorActivity;if(b)for(var c=a.curOp.cursorActivityHandlers||(a.curOp.cursorActivityHandlers=[]),d=0;d<b.length;++d)-1==ig(c,b[d])&&c.push(b[d])}function Wf(a,b){return Of(a,b).length>0}function Xf(a){a.prototype.on=function(a,b){Mf(this,a,b)},a.prototype.off=function(a,b){Pf(this,a,b)}}function bg(){this.id=null}function fg(a){for(;eg.length<=a;)eg.push(gg(eg)+" ");return eg[a]}function gg(a){return a[a.length-1]}function ig(a,b){for(var c=0;c<a.length;++c)if(a[c]==b)return c;return-1}function jg(a,b){for(var c=[],d=0;d<a.length;d++)c[d]=b(a[d],d);return c}function kg(){}function lg(a,b){var c;return Object.create?c=Object.create(a):(kg.prototype=a,c=new kg),b&&mg(b,c),c}function mg(a,b,c){b||(b={});for(var d in a)!a.hasOwnProperty(d)||c===!1&&b.hasOwnProperty(d)||(b[d]=a[d]);return b}function ng(a){var b=Array.prototype.slice.call(arguments,1);return function(){return a.apply(null,b)}}function qg(a,b){return b?b.source.indexOf("\\w")>-1&&pg(a)?!0:b.test(a):pg(a)}function rg(a){for(var b in a)if(a.hasOwnProperty(b)&&a[b])return!1;return!0}function tg(a){return a.charCodeAt(0)>=768&&sg.test(a)}function ug(a,b,c,d){var e=document.createElement(a);if(c&&(e.className=c),d&&(e.style.cssText=d),"string"==typeof b)e.appendChild(document.createTextNode(b));else if(b)for(var f=0;f<b.length;++f)e.appendChild(b[f]);return e}function wg(a){for(var b=a.childNodes.length;b>0;--b)a.removeChild(a.firstChild);return a}function xg(a,b){return wg(a).appendChild(b)}function zg(){for(var a=document.activeElement;a&&a.root&&a.root.activeElement;)a=a.root.activeElement;return a}function Ag(a){return new RegExp("(^|\\s)"+a+"(?:$|\\s)\\s*")}function Dg(a,b){for(var c=a.split(" "),d=0;d<c.length;d++)c[d]&&!Ag(c[d]).test(b)&&(b+=" "+c[d]);return b}function Eg(a){if(document.body.getElementsByClassName)for(var b=document.body.getElementsByClassName("CodeMirror"),c=0;c<b.length;c++){var d=b[c].CodeMirror;d&&a(d)}}function Gg(){Fg||(Hg(),Fg=!0)}function Hg(){var a;Mf(window,"resize",function(){null==a&&(a=setTimeout(function(){a=null,Eg(uc)},100))}),Mf(window,"blur",function(){Eg(bd)})}function Kg(a){if(null==Jg){var b=ug("span","\u200b");xg(a,ug("span",[b,document.createTextNode("x")])),0!=a.firstChild.offsetHeight&&(Jg=b.offsetWidth<=1&&b.offsetHeight>2&&!(f&&8>g))}var c=Jg?ug("span","\u200b"):ug("span","\xa0",null,"display: inline-block; width: 1px; margin-right: -1px");return c.setAttribute("cm-text",""),c}function Mg(a){if(null!=Lg)return Lg;var b=xg(a,document.createTextNode("A\u062eA")),c=vg(b,0,1).getBoundingClientRect();if(!c||c.left==c.right)return!1;var d=vg(b,1,2).getBoundingClientRect();return Lg=d.right-c.right<3}function Rg(a){if(null!=Qg)return Qg;var b=xg(a,ug("span","x")),c=b.getBoundingClientRect(),d=vg(b,0,1).getBoundingClientRect();return Qg=Math.abs(c.left-d.left)>1}function Tg(a,b,c,d){if(!a)return d(b,c,"ltr");for(var e=!1,f=0;f<a.length;++f){var g=a[f];(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 Ug(a){return a.level%2?a.to:a.from}function Vg(a){return a.level%2?a.from:a.to}function Wg(a){var b=qf(a);return b?Ug(b[0]):0}function Xg(a){var b=qf(a);return b?Vg(gg(b)):a.text.length}function Yg(a,b){var c=jf(a.doc,b),d=ve(c);d!=c&&(b=nf(d));var e=qf(d),f=e?e[0].level%2?Xg(d):Wg(d):0;return qa(b,f)}function Zg(a,b){for(var c,d=jf(a.doc,b);c=te(d);)d=c.find(1,!0).line,b=null;var e=qf(d),f=e?e[0].level%2?Wg(d):Xg(d):d.text.length;return qa(null==b?nf(d):b,f)}function $g(a,b){var c=Yg(a,b.line),d=jf(a.doc,c.line),e=qf(d);if(!e||0==e[0].level){var f=Math.max(0,d.text.search(/\S/)),g=b.line==c.line&&b.ch<=f&&b.ch;return qa(c.line,g?0:f)}return c}function _g(a,b,c){var d=a[0].level;return b==d?!0:c==d?!1:c>b}function bh(a,b){ah=null;for(var d,c=0;c<a.length;++c){var e=a[c];if(e.from<b&&e.to>b)return c;if(e.from==b||e.to==b){if(null!=d)return _g(a,e.level,a[d].level)?(e.from!=e.to&&(ah=d),c):(e.from!=e.to&&(ah=c),d);d=c}}return d}function ch(a,b,c,d){if(!d)return b+c;do b+=c;while(b>0&&tg(a.text.charAt(b)));return b}function dh(a,b,c,d){var e=qf(a);if(!e)return eh(a,b,c,d);for(var f=bh(e,b),g=e[f],h=ch(a,b,g.level%2?-c:c,d);;){if(h>g.from&&h<g.to)return h;if(h==g.from||h==g.to)return bh(e,h)==f?h:(g=e[f+=c],c>0==g.level%2?g.to:g.from);if(g=e[f+=c],!g)return null;h=c>0==g.level%2?ch(a,g.to,-1,d):ch(a,g.from,1,d)}}function eh(a,b,c,d){var e=b+c;if(d)for(;e>0&&tg(a.text.charAt(e));)e+=c;return 0>e||e>a.text.length?null:e}var a=navigator.userAgent,b=navigator.platform,c=/gecko\/\d/i.test(a),d=/MSIE \d/.test(a),e=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(a),f=d||e,g=f&&(d?document.documentMode||6:e[1]),h=/WebKit\//.test(a),i=h&&/Qt\/\d+\.\d+/.test(a),j=/Chrome\//.test(a),k=/Opera\//.test(a),l=/Apple Computer/.test(navigator.vendor),m=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(a),n=/PhantomJS/.test(a),o=/AppleWebKit/.test(a)&&/Mobile\/\w+/.test(a),p=o||/Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(a),q=o||/Mac/.test(b),r=/win/i.test(b),s=k&&a.match(/Version\/(\d*\.\d*)/);s&&(s=Number(s[1])),s&&s>=15&&(k=!1,h=!0);var t=q&&(i||k&&(null==s||12.11>s)),u=c||f&&g>=9,v=!1,w=!1;M.prototype=mg({update:function(a){var b=a.scrollWidth>a.clientWidth+1,c=a.scrollHeight>a.clientHeight+1,d=a.nativeBarWidth;if(c){this.vert.style.display="block",this.vert.style.bottom=b?d+"px":"0";var e=a.viewHeight-(b?d:0);this.vert.firstChild.style.height=Math.max(0,a.scrollHeight-a.clientHeight+e)+"px"}else this.vert.style.display="",this.vert.firstChild.style.height="0";if(b){this.horiz.style.display="block",this.horiz.style.right=c?d+"px":"0",this.horiz.style.left=a.barLeft+"px";var f=a.viewWidth-a.barLeft-(c?d:0);this.horiz.firstChild.style.width=a.scrollWidth-a.clientWidth+f+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&a.clientHeight>0&&(0==d&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:c?d:0,bottom:b?d:0}},setScrollLeft:function(a){this.horiz.scrollLeft!=a&&(this.horiz.scrollLeft=a),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz)},setScrollTop:function(a){this.vert.scrollTop!=a&&(this.vert.scrollTop=a),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert)},zeroWidthHack:function(){var a=q&&!m?"12px":"18px";this.horiz.style.height=this.vert.style.width=a,this.horiz.style.pointerEvents=this.vert.style.pointerEvents="none",this.disableHoriz=new bg,this.disableVert=new bg},enableZeroWidthBar:function(a,b){function c(){var d=a.getBoundingClientRect(),e=document.elementFromPoint(d.left+1,d.bottom-1);e!=a?a.style.pointerEvents="none":b.set(1e3,c)}a.style.pointerEvents="auto",b.set(1e3,c)},clear:function(){var a=this.horiz.parentNode;a.removeChild(this.horiz),a.removeChild(this.vert)}},M.prototype),N.prototype=mg({update:function(){return{bottom:0,right:0}},setScrollLeft:function(){},setScrollTop:function(){},clear:function(){}},N.prototype),x.scrollbarModel={"native":M,"null":N},W.prototype.signal=function(a,b){Wf(a,b)&&this.events.push(arguments)},W.prototype.finish=function(){for(var a=0;a<this.events.length;a++)Qf.apply(null,this.events[a])};var qa=x.Pos=function(a,b){return this instanceof qa?(this.line=a,void(this.ch=b)):new qa(a,b)},ra=x.cmpPos=function(a,b){return a.line-b.line||a.ch-b.ch},wa=null;Ca.prototype=mg({init:function(a){function h(a){if(!Uf(c,a)){if(c.somethingSelected())wa=c.getSelections(),
18
- b.inaccurateSelection&&(b.prevInput="",b.inaccurateSelection=!1,e.value=wa.join("\n"),hg(e));else{if(!c.options.lineWiseCopyCut)return;var d=Aa(c);wa=d.text,"cut"==a.type?c.setSelections(d.ranges,null,$f):(b.prevInput="",e.value=d.text.join("\n"),hg(e))}"cut"==a.type&&(c.state.cutIncoming=!0)}}var b=this,c=this.cm,d=this.wrapper=Da(),e=this.textarea=d.firstChild;a.wrapper.insertBefore(d,a.wrapper.firstChild),o&&(e.style.width="0px"),Mf(e,"input",function(){f&&g>=9&&b.hasSelection&&(b.hasSelection=null),b.poll()}),Mf(e,"paste",function(a){Uf(c,a)||ya(a,c)||(c.state.pasteIncoming=!0,b.fastPoll())}),Mf(e,"cut",h),Mf(e,"copy",h),Mf(a.scroller,"paste",function(d){vc(a,d)||Uf(c,d)||(c.state.pasteIncoming=!0,b.focus())}),Mf(a.lineSpace,"selectstart",function(b){vc(a,b)||Gf(b)}),Mf(e,"compositionstart",function(){var a=c.getCursor("from");b.composing&&b.composing.range.clear(),b.composing={start:a,range:c.markText(a,c.getCursor("to"),{className:"CodeMirror-composing"})}}),Mf(e,"compositionend",function(){b.composing&&(b.poll(),b.composing.range.clear(),b.composing=null)})},prepareSelection:function(){var a=this.cm,b=a.display,c=a.doc,d=hb(a);if(a.options.moveInputWithCursor){var e=Ob(a,c.sel.primary().head,"div"),f=b.wrapper.getBoundingClientRect(),g=b.lineDiv.getBoundingClientRect();d.teTop=Math.max(0,Math.min(b.wrapper.clientHeight-10,e.top+g.top-f.top)),d.teLeft=Math.max(0,Math.min(b.wrapper.clientWidth-10,e.left+g.left-f.left))}return d},showSelection:function(a){var b=this.cm,c=b.display;xg(c.cursorDiv,a.cursors),xg(c.selectionDiv,a.selection),null!=a.teTop&&(this.wrapper.style.top=a.teTop+"px",this.wrapper.style.left=a.teLeft+"px")},reset:function(a){if(!this.contextMenuPending){var b,c,d=this.cm,e=d.doc;if(d.somethingSelected()){this.prevInput="";var h=e.sel.primary();b=Pg&&(h.to().line-h.from().line>100||(c=d.getSelection()).length>1e3);var i=b?"-":c||d.getSelection();this.textarea.value=i,d.state.focused&&hg(this.textarea),f&&g>=9&&(this.hasSelection=i)}else a||(this.prevInput=this.textarea.value="",f&&g>=9&&(this.hasSelection=null));this.inaccurateSelection=b}},getField:function(){return this.textarea},supportsTouch:function(){return!1},focus:function(){if("nocursor"!=this.cm.options.readOnly&&(!p||zg()!=this.textarea))try{this.textarea.focus()}catch(a){}},blur:function(){this.textarea.blur()},resetPosition:function(){this.wrapper.style.top=this.wrapper.style.left=0},receivedFocus:function(){this.slowPoll()},slowPoll:function(){var a=this;a.pollingFast||a.polling.set(this.cm.options.pollInterval,function(){a.poll(),a.cm.state.focused&&a.slowPoll()})},fastPoll:function(){function c(){var d=b.poll();d||a?(b.pollingFast=!1,b.slowPoll()):(a=!0,b.polling.set(60,c))}var a=!1,b=this;b.pollingFast=!0,b.polling.set(20,c)},poll:function(){var a=this.cm,b=this.textarea,c=this.prevInput;if(this.contextMenuPending||!a.state.focused||Og(b)&&!c&&!this.composing||a.isReadOnly()||a.options.disableInput||a.state.keySeq)return!1;var d=b.value;if(d==c&&!a.somethingSelected())return!1;if(f&&g>=9&&this.hasSelection===d||q&&/[\uf700-\uf7ff]/.test(d))return a.display.input.reset(),!1;if(a.doc.sel==a.display.selForContextMenu){var e=d.charCodeAt(0);if(8203!=e||c||(c="\u200b"),8666==e)return this.reset(),this.cm.execCommand("undo")}for(var h=0,i=Math.min(c.length,d.length);i>h&&c.charCodeAt(h)==d.charCodeAt(h);)++h;var j=this;return fc(a,function(){xa(a,d.slice(h),c.length-h,null,j.composing?"*compose":null),d.length>1e3||d.indexOf("\n")>-1?b.value=j.prevInput="":j.prevInput=d,j.composing&&(j.composing.range.clear(),j.composing.range=a.markText(j.composing.start,a.getCursor("to"),{className:"CodeMirror-composing"}))}),!0},ensurePolled:function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},onKeyPress:function(){f&&g>=9&&(this.hasSelection=null),this.fastPoll()},onContextMenu:function(a){function o(){if(null!=e.selectionStart){var a=c.somethingSelected(),f="\u200b"+(a?e.value:"");e.value="\u21da",e.value=f,b.prevInput=a?"":"\u200b",e.selectionStart=1,e.selectionEnd=f.length,d.selForContextMenu=c.doc.sel}}function p(){if(b.contextMenuPending=!1,b.wrapper.style.position="relative",e.style.cssText=m,f&&9>g&&d.scrollbars.setScrollTop(d.scroller.scrollTop=j),null!=e.selectionStart){(!f||f&&9>g)&&o();var a=0,h=function(){d.selForContextMenu==c.doc.sel&&0==e.selectionStart&&e.selectionEnd>0&&"\u200b"==b.prevInput?gc(c,Od.selectAll)(c):a++<10?d.detectingSelectAll=setTimeout(h,500):d.input.reset()};d.detectingSelectAll=setTimeout(h,200)}}var b=this,c=b.cm,d=c.display,e=b.textarea,i=wc(c,a),j=d.scroller.scrollTop;if(i&&!k){var l=c.options.resetSelectionOnContextMenu;l&&-1==c.doc.sel.contains(i)&&gc(c,$a)(c.doc,Na(i),$f);var m=e.style.cssText;if(b.wrapper.style.position="absolute",e.style.cssText="position: fixed; width: 30px; height: 30px; top: "+(a.clientY-5)+"px; left: "+(a.clientX-5)+"px; z-index: 1000; background: "+(f?"rgba(255, 255, 255, .05)":"transparent")+"; outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",h)var n=window.scrollY;if(d.input.focus(),h&&window.scrollTo(null,n),d.input.reset(),c.somethingSelected()||(e.value=b.prevInput=" "),b.contextMenuPending=!0,d.selForContextMenu=c.doc.sel,clearTimeout(d.detectingSelectAll),f&&g>=9&&o(),u){Jf(a);var q=function(){Pf(window,"mouseup",q),setTimeout(p,20)};Mf(window,"mouseup",q)}else setTimeout(p,50)}},readOnlyChanged:function(a){a||this.reset()},setUneditable:kg,needsContentAttribute:!1},Ca.prototype),Ea.prototype=mg({init:function(a){function e(a){if(!Uf(c,a)){if(c.somethingSelected())wa=c.getSelections(),"cut"==a.type&&c.replaceSelection("",null,"cut");else{if(!c.options.lineWiseCopyCut)return;var b=Aa(c);wa=b.text,"cut"==a.type&&c.operation(function(){c.setSelections(b.ranges,0,$f),c.replaceSelection("",null,"cut")})}if(a.clipboardData&&!o)a.preventDefault(),a.clipboardData.clearData(),a.clipboardData.setData("text/plain",wa.join("\n"));else{var d=Da(),e=d.firstChild;c.display.lineSpace.insertBefore(d,c.display.lineSpace.firstChild),e.value=wa.join("\n");var f=document.activeElement;hg(e),setTimeout(function(){c.display.lineSpace.removeChild(d),f.focus()},50)}}}var b=this,c=b.cm,d=b.div=a.lineDiv;Ba(d),Mf(d,"paste",function(a){Uf(c,a)||ya(a,c)}),Mf(d,"compositionstart",function(a){var d=a.data;if(b.composing={sel:c.doc.sel,data:d,startData:d},d){var e=c.doc.sel.primary(),f=c.getLine(e.head.line),g=f.indexOf(d,Math.max(0,e.head.ch-d.length));g>-1&&g<=e.head.ch&&(b.composing.sel=Na(qa(e.head.line,g),qa(e.head.line,g+d.length)))}}),Mf(d,"compositionupdate",function(a){b.composing.data=a.data}),Mf(d,"compositionend",function(a){var c=b.composing;c&&(a.data==c.startData||/\u200b/.test(a.data)||(c.data=a.data),setTimeout(function(){c.handled||b.applyComposition(c),b.composing==c&&(b.composing=null)},50))}),Mf(d,"touchstart",function(){b.forceCompositionEnd()}),Mf(d,"input",function(){b.composing||(c.isReadOnly()||!b.pollContent())&&fc(b.cm,function(){lc(c)})}),Mf(d,"copy",e),Mf(d,"cut",e)},prepareSelection:function(){var a=hb(this.cm,!1);return a.focus=this.cm.state.focused,a},showSelection:function(a){a&&this.cm.display.view.length&&(a.focus&&this.showPrimarySelection(),this.showMultipleSelections(a))},showPrimarySelection:function(){var a=window.getSelection(),b=this.cm.doc.sel.primary(),d=Ha(this.cm,a.anchorNode,a.anchorOffset),e=Ha(this.cm,a.focusNode,a.focusOffset);if(!d||d.bad||!e||e.bad||0!=ra(ua(d,e),b.from())||0!=ra(ta(d,e),b.to())){var f=Fa(this.cm,b.from()),g=Fa(this.cm,b.to());if(f||g){var h=this.cm.display.view,i=a.rangeCount&&a.getRangeAt(0);if(f){if(!g){var j=h[h.length-1].measure,k=j.maps?j.maps[j.maps.length-1]:j.map;g={node:k[k.length-1],offset:k[k.length-2]-k[k.length-3]}}}else f={node:h[0].measure.map[2],offset:0};try{var l=vg(f.node,f.offset,g.offset,g.node)}catch(m){}l&&(!c&&this.cm.state.focused?(a.collapse(f.node,f.offset),l.collapsed||a.addRange(l)):(a.removeAllRanges(),a.addRange(l)),i&&null==a.anchorNode?a.addRange(i):c&&this.startGracePeriod()),this.rememberSelection()}}},startGracePeriod:function(){var a=this;clearTimeout(this.gracePeriod),this.gracePeriod=setTimeout(function(){a.gracePeriod=!1,a.selectionChanged()&&a.cm.operation(function(){a.cm.curOp.selectionChanged=!0})},20)},showMultipleSelections:function(a){xg(this.cm.display.cursorDiv,a.cursors),xg(this.cm.display.selectionDiv,a.selection)},rememberSelection:function(){var a=window.getSelection();this.lastAnchorNode=a.anchorNode,this.lastAnchorOffset=a.anchorOffset,this.lastFocusNode=a.focusNode,this.lastFocusOffset=a.focusOffset},selectionInEditor:function(){var a=window.getSelection();if(!a.rangeCount)return!1;var b=a.getRangeAt(0).commonAncestorContainer;return yg(this.div,b)},focus:function(){"nocursor"!=this.cm.options.readOnly&&this.div.focus()},blur:function(){this.div.blur()},getField:function(){return this.div},supportsTouch:function(){return!0},receivedFocus:function(){function b(){a.cm.state.focused&&(a.pollSelection(),a.polling.set(a.cm.options.pollInterval,b))}var a=this;this.selectionInEditor()?this.pollSelection():fc(this.cm,function(){a.cm.curOp.selectionChanged=!0}),this.polling.set(this.cm.options.pollInterval,b)},selectionChanged:function(){var a=window.getSelection();return a.anchorNode!=this.lastAnchorNode||a.anchorOffset!=this.lastAnchorOffset||a.focusNode!=this.lastFocusNode||a.focusOffset!=this.lastFocusOffset},pollSelection:function(){if(!this.composing&&!this.gracePeriod&&this.selectionChanged()){var a=window.getSelection(),b=this.cm;this.rememberSelection();var c=Ha(b,a.anchorNode,a.anchorOffset),d=Ha(b,a.focusNode,a.focusOffset);c&&d&&fc(b,function(){$a(b.doc,Na(c,d),$f),(c.bad||d.bad)&&(b.curOp.selectionChanged=!0)})}},pollContent:function(){var a=this.cm,b=a.display,c=a.doc.sel.primary(),d=c.from(),e=c.to();if(d.line<b.viewFrom||e.line>b.viewTo-1)return!1;var f;if(d.line==b.viewFrom||0==(f=oc(a,d.line)))var g=nf(b.view[0].line),h=b.view[0].node;else var g=nf(b.view[f].line),h=b.view[f-1].node.nextSibling;var i=oc(a,e.line);if(i==b.view.length-1)var j=b.viewTo-1,k=b.lineDiv.lastChild;else var j=nf(b.view[i+1].line)-1,k=b.view[i+1].node.previousSibling;for(var l=a.doc.splitLines(Ja(a,h,k,g,j)),m=kf(a.doc,qa(g,0),qa(j,jf(a.doc,j).text.length));l.length>1&&m.length>1;)if(gg(l)==gg(m))l.pop(),m.pop(),j--;else{if(l[0]!=m[0])break;l.shift(),m.shift(),g++}for(var n=0,o=0,p=l[0],q=m[0],r=Math.min(p.length,q.length);r>n&&p.charCodeAt(n)==q.charCodeAt(n);)++n;for(var s=gg(l),t=gg(m),u=Math.min(s.length-(1==l.length?n:0),t.length-(1==m.length?n:0));u>o&&s.charCodeAt(s.length-o-1)==t.charCodeAt(t.length-o-1);)++o;l[l.length-1]=s.slice(0,s.length-o),l[0]=l[0].slice(n);var v=qa(g,n),w=qa(j,m.length?gg(m).length-o:0);return l.length>1||l[0]||ra(v,w)?(qd(a.doc,l,v,w,"+input"),!0):void 0},ensurePolled:function(){this.forceCompositionEnd()},reset:function(){this.forceCompositionEnd()},forceCompositionEnd:function(){this.composing&&!this.composing.handled&&(this.applyComposition(this.composing),this.composing.handled=!0,this.div.blur(),this.div.focus())},applyComposition:function(a){this.cm.isReadOnly()?gc(this.cm,lc)(this.cm):a.data&&a.data!=a.startData&&gc(this.cm,xa)(this.cm,a.data,0,a.sel)},setUneditable:function(a){a.contentEditable="false"},onKeyPress:function(a){a.preventDefault(),this.cm.isReadOnly()||gc(this.cm,xa)(this.cm,String.fromCharCode(null==a.charCode?a.keyCode:a.charCode),0)},readOnlyChanged:function(a){this.div.contentEditable=String("nocursor"!=a)},onContextMenu:kg,resetPosition:kg,needsContentAttribute:!0},Ea.prototype),x.inputStyles={textarea:Ca,contenteditable:Ea},Ka.prototype={primary:function(){return this.ranges[this.primIndex]},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=this.ranges[b],d=a.ranges[b];if(0!=ra(c.anchor,d.anchor)||0!=ra(c.head,d.head))return!1}return!0},deepCopy:function(){for(var a=[],b=0;b<this.ranges.length;b++)a[b]=new La(sa(this.ranges[b].anchor),sa(this.ranges[b].head));return new Ka(a,this.primIndex)},somethingSelected:function(){for(var a=0;a<this.ranges.length;a++)if(!this.ranges[a].empty())return!0;return!1},contains:function(a,b){b||(b=a);for(var c=0;c<this.ranges.length;c++){var d=this.ranges[c];if(ra(b,d.from())>=0&&ra(a,d.to())<=0)return c}return-1}},La.prototype={from:function(){return ua(this.anchor,this.head)},to:function(){return ta(this.anchor,this.head)},empty:function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch}};var Tb,yc,zc,Cb={left:0,right:0,top:0,bottom:0},Wb=null,Xb=0,Fc=0,Mc=0,Nc=null;f?Nc=-.53:c?Nc=15:j?Nc=-.7:l&&(Nc=-1/3);var Oc=function(a){var b=a.wheelDeltaX,c=a.wheelDeltaY;return null==b&&a.detail&&a.axis==a.HORIZONTAL_AXIS&&(b=a.detail),null==c&&a.detail&&a.axis==a.VERTICAL_AXIS?c=a.detail:null==c&&(c=a.wheelDelta),{x:b,y:c}};x.wheelEventPixels=function(a){var b=Oc(a);return b.x*=Nc,b.y*=Nc,b};var Sc=new bg,Wc=null,ed=x.changeEnd=function(a){return a.text?qa(a.from.line+a.text.length-1,gg(a.text).length+(1==a.text.length?a.from.ch:0)):a.to};x.prototype={constructor:x,focus:function(){window.focus(),this.display.input.focus()},setOption:function(a,b){var c=this.options,d=c[a];(c[a]!=b||"mode"==a)&&(c[a]=b,Ed.hasOwnProperty(a)&&gc(this,Ed[a])(this,b,d))},getOption:function(a){return this.options[a]},getDoc:function(){return this.doc},addKeyMap:function(a,b){this.state.keyMaps[b?"push":"unshift"](Ud(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:hc(function(a,b){var c=a.token?a:x.getMode(this.options,a);if(c.startState)throw new Error("Overlays may not be stateful.");this.state.overlays.push({mode:c,modeSpec:a,opaque:b&&b.opaque}),this.state.modeGen++,lc(this)}),removeOverlay:hc(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)return b.splice(c,1),this.state.modeGen++,void lc(this)}}),indentLine:hc(function(a,b,c){"string"!=typeof b&&"number"!=typeof b&&(b=null==b?this.options.smartIndent?"smart":"prev":b?"add":"subtract"),Ra(this.doc,a)&&yd(this,a,b,c)}),indentSelection:hc(function(a){for(var b=this.doc.sel.ranges,c=-1,d=0;d<b.length;d++){var e=b[d];if(e.empty())e.head.line>c&&(yd(this,e.head.line,a,!0),c=e.head.line,d==this.doc.sel.primIndex&&wd(this));else{var f=e.from(),g=e.to(),h=Math.max(c,f.line);c=Math.min(this.lastLine(),g.line-(g.ch?0:1))+1;for(var i=h;c>i;++i)yd(this,i,a);var j=this.doc.sel.ranges;0==f.ch&&b.length==j.length&&j[d].from().ch>0&&Wa(this.doc,d,new La(f,j[d].to()),$f)}}}),getTokenAt:function(a,b){return Le(this,a,b)},getLineTokens:function(a,b){return Le(this,qa(a),b,!0)},getTokenTypeAt:function(a){a=Pa(this.doc,a);var f,b=Oe(this,jf(this.doc,a.line)),c=0,d=(b.length-1)/2,e=a.ch;if(0==e)f=b[2];else for(;;){var g=c+d>>1;if((g?b[2*g-1]:0)>=e)d=g;else{if(!(b[2*g+1]<e)){f=b[2*g+2];break}c=g+1}}var h=f?f.indexOf("cm-overlay "):-1;return 0>h?f:0==h?null:f.slice(0,h-1)},getModeAt:function(a){var b=this.doc.mode;return b.innerMode?x.innerMode(b,this.getTokenAt(a).state).mode:b},getHelper:function(a,b){return this.getHelpers(a,b)[0]},getHelpers:function(a,b){var c=[];if(!Ld.hasOwnProperty(b))return c;var d=Ld[b],e=this.getModeAt(a);if("string"==typeof e[b])d[e[b]]&&c.push(d[e[b]]);else if(e[b])for(var f=0;f<e[b].length;f++){var g=d[e[b][f]];g&&c.push(g)}else e.helperType&&d[e.helperType]?c.push(d[e.helperType]):d[e.name]&&c.push(d[e.name]);for(var f=0;f<d._global.length;f++){var h=d._global[f];h.pred(e,this)&&-1==ig(c,h.val)&&c.push(h.val)}return c},getStateAfter:function(a,b){var c=this.doc;return a=Oa(c,null==a?c.first+c.size-1:a),ob(this,a+1,b)},cursorCoords:function(a,b){var c,d=this.doc.sel.primary();return c=null==a?d.head:"object"==typeof a?Pa(this.doc,a):a?d.from():d.to(),Ob(this,c,b||"page")},charCoords:function(a,b){return Nb(this,Pa(this.doc,a),b||"page")},coordsChar:function(a,b){return a=Mb(this,a,b||"page"),Rb(this,a.left,a.top)},lineAtHeight:function(a,b){return a=Mb(this,{top:a,left:0},b||"page").top,of(this.doc,a+this.display.viewOffset)},heightAtLine:function(a,b){var d,c=!1;if("number"==typeof a){var e=this.doc.first+this.doc.size-1;a<this.doc.first?a=this.doc.first:a>e&&(a=e,c=!0),d=jf(this.doc,a)}else d=a;return Lb(this,d,{top:0,left:0},b||"page").top+(c?this.doc.height-pf(d):0)},defaultTextHeight:function(){return Ub(this.display)},defaultCharWidth:function(){return Vb(this.display)},setGutterMarker:hc(function(a,b,c){return zd(this.doc,a,"gutter",function(a){var d=a.gutterMarkers||(a.gutterMarkers={});return d[b]=c,!c&&rg(d)&&(a.gutterMarkers=null),!0})}),clearGutter:hc(function(a){var b=this,c=b.doc,d=c.first;c.iter(function(c){c.gutterMarkers&&c.gutterMarkers[a]&&(c.gutterMarkers[a]=null,mc(b,d,"gutter"),rg(c.gutterMarkers)&&(c.gutterMarkers=null)),++d})}),lineInfo:function(a){if("number"==typeof a){if(!Ra(this.doc,a))return null;var b=a;if(a=jf(this.doc,a),!a)return null}else{var b=nf(a);if(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}},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(a,b,c,d,e){var f=this.display;a=Ob(this,Pa(this.doc,a));var g=a.bottom,h=a.left;if(b.style.position="absolute",b.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(b),f.sizer.appendChild(b),"over"==d)g=a.top;else if("above"==d||"near"==d){var i=Math.max(f.wrapper.clientHeight,this.doc.height),j=Math.max(f.sizer.clientWidth,f.lineSpace.clientWidth);("above"==d||a.bottom+b.offsetHeight>i)&&a.top>b.offsetHeight?g=a.top-b.offsetHeight:a.bottom+b.offsetHeight<=i&&(g=a.bottom),h+b.offsetWidth>j&&(h=j-b.offsetWidth)}b.style.top=g+"px",b.style.left=b.style.right="","right"==e?(h=f.sizer.clientWidth-b.offsetWidth,b.style.right="0px"):("left"==e?h=0:"middle"==e&&(h=(f.sizer.clientWidth-b.offsetWidth)/2),b.style.left=h+"px"),c&&td(this,h,g,h+b.offsetWidth,g+b.offsetHeight)},triggerOnKeyDown:hc(Xc),triggerOnKeyPress:hc($c),triggerOnKeyUp:Zc,execCommand:function(a){return Od.hasOwnProperty(a)?Od[a].call(null,this):void 0},triggerElectric:hc(function(a){za(this,a)}),findPosH:function(a,b,c,d){var e=1;0>b&&(e=-1,b=-b);for(var f=0,g=Pa(this.doc,a);b>f&&(g=Bd(this.doc,g,e,c,d),!g.hitSide);++f);return g},moveH:hc(function(a,b){var c=this;c.extendSelectionsBy(function(d){return c.display.shift||c.doc.extend||d.empty()?Bd(c.doc,d.head,a,b,c.options.rtlMoveVisually):0>a?d.from():d.to()},ag)}),deleteH:hc(function(a,b){var c=this.doc.sel,d=this.doc;c.somethingSelected()?d.replaceSelection("",null,"+delete"):Ad(this,function(c){var e=Bd(d,c.head,a,b,!1);return 0>a?{from:e,to:c.head}:{from:c.head,to:e}})}),findPosV:function(a,b,c,d){var e=1,f=d;0>b&&(e=-1,b=-b);for(var g=0,h=Pa(this.doc,a);b>g;++g){var i=Ob(this,h,"div");if(null==f?f=i.left:i.left=f,h=Cd(this,i,e,c),h.hitSide)break}return h},moveV:hc(function(a,b){var c=this,d=this.doc,e=[],f=!c.display.shift&&!d.extend&&d.sel.somethingSelected();if(d.extendSelectionsBy(function(g){if(f)return 0>a?g.from():g.to();var h=Ob(c,g.head,"div");null!=g.goalColumn&&(h.left=g.goalColumn),e.push(h.left);var i=Cd(c,h,a,b);return"page"==b&&g==d.sel.primary()&&vd(c,null,Nb(c,i,"div").top-h.top),i},ag),e.length)for(var g=0;g<d.sel.ranges.length;g++)d.sel.ranges[g].goalColumn=e[g]}),findWordAt:function(a){var b=this.doc,c=jf(b,a.line).text,d=a.ch,e=a.ch;if(c){var f=this.getHelper(a,"wordChars");(a.xRel<0||e==c.length)&&d?--d:++e;for(var g=c.charAt(d),h=qg(g,f)?function(a){return qg(a,f)}:/\s/.test(g)?function(a){return/\s/.test(a)}:function(a){return!/\s/.test(a)&&!qg(a)};d>0&&h(c.charAt(d-1));)--d;for(;e<c.length&&h(c.charAt(e));)++e}return new La(qa(a.line,d),qa(a.line,e))},toggleOverwrite:function(a){(null==a||a!=this.state.overwrite)&&((this.state.overwrite=!this.state.overwrite)?Cg(this.display.cursorDiv,"CodeMirror-overwrite"):Bg(this.display.cursorDiv,"CodeMirror-overwrite"),Qf(this,"overwriteToggle",this,this.state.overwrite))},hasFocus:function(){return this.display.input.getField()==zg()},isReadOnly:function(){return!(!this.options.readOnly&&!this.doc.cantEdit)},scrollTo:hc(function(a,b){(null!=a||null!=b)&&xd(this),null!=a&&(this.curOp.scrollLeft=a),null!=b&&(this.curOp.scrollTop=b)}),getScrollInfo:function(){var a=this.display.scroller;return{left:a.scrollLeft,top:a.scrollTop,height:a.scrollHeight-sb(this)-this.display.barHeight,width:a.scrollWidth-sb(this)-this.display.barWidth,clientHeight:ub(this),clientWidth:tb(this)}},scrollIntoView:hc(function(a,b){if(null==a?(a={from:this.doc.sel.primary().head,to:null},null==b&&(b=this.options.cursorScrollMargin)):"number"==typeof a?a={from:qa(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)xd(this),this.curOp.scrollToPos=a;else{var c=ud(this,Math.min(a.from.left,a.to.left),Math.min(a.from.top,a.to.top)-a.margin,Math.max(a.from.right,a.to.right),Math.max(a.from.bottom,a.to.bottom)+a.margin);this.scrollTo(c.scrollLeft,c.scrollTop)}}),setSize:hc(function(a,b){function d(a){return"number"==typeof a||/^\d+$/.test(String(a))?a+"px":a}var c=this;null!=a&&(c.display.wrapper.style.width=d(a)),null!=b&&(c.display.wrapper.style.height=d(b)),c.options.lineWrapping&&Hb(this);var e=c.display.viewFrom;c.doc.iter(e,c.display.viewTo,function(a){if(a.widgets)for(var b=0;b<a.widgets.length;b++)if(a.widgets[b].noHScroll){mc(c,e,"widget");break}++e}),c.curOp.forceUpdate=!0,Qf(c,"refresh",this)}),operation:function(a){return fc(this,a)},refresh:hc(function(){var a=this.display.cachedTextHeight;lc(this),this.curOp.forceUpdate=!0,Ib(this),this.scrollTo(this.doc.scrollLeft,this.doc.scrollTop),H(this),(null==a||Math.abs(a-Ub(this.display))>.5)&&D(this),Qf(this,"refresh",this)}),swapDoc:hc(function(a){var b=this.doc;return b.cm=null,hf(this,a),Ib(this),this.display.input.reset(),this.scrollTo(a.scrollLeft,a.scrollTop),this.curOp.forceScroll=!0,Sf(this,"swapDoc",this,b),b}),getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},Xf(x);var Dd=x.defaults={},Ed=x.optionHandlers={},Gd=x.Init={toString:function(){return"CodeMirror.Init"}};Fd("value","",function(a,b){a.setValue(b)},!0),Fd("mode",null,function(a,b){a.doc.modeOption=b,z(a)},!0),Fd("indentUnit",2,z,!0),Fd("indentWithTabs",!1),Fd("smartIndent",!0),Fd("tabSize",4,function(a){A(a),Ib(a),lc(a)},!0),Fd("lineSeparator",null,function(a,b){if(a.doc.lineSep=b,b){var c=[],d=a.doc.first;a.doc.iter(function(a){for(var e=0;;){var f=a.text.indexOf(b,e);if(-1==f)break;e=f+b.length,c.push(qa(d,f))}d++});for(var e=c.length-1;e>=0;e--)qd(a.doc,b,c[e],qa(c[e].line,c[e].ch+b.length))}}),Fd("specialChars",/[\t\u0000-\u0019\u00ad\u200b-\u200f\u2028\u2029\ufeff]/g,function(a,b,c){a.state.specialChars=new RegExp(b.source+(b.test(" ")?"":"| "),"g"),c!=x.Init&&a.refresh()}),Fd("specialCharPlaceholder",Ue,function(a){a.refresh()},!0),Fd("electricChars",!0),Fd("inputStyle",p?"contenteditable":"textarea",function(){throw new Error("inputStyle can not (yet) be changed in a running editor")},!0),Fd("rtlMoveVisually",!r),Fd("wholeLineUpdateBefore",!0),Fd("theme","default",function(a){E(a),F(a)},!0),Fd("keyMap","default",function(a,b,c){var d=Ud(b),e=c!=x.Init&&Ud(c);e&&e.detach&&e.detach(a,d),d.attach&&d.attach(a,e||null)}),Fd("extraKeys",null),Fd("lineWrapping",!1,B,!0),Fd("gutters",[],function(a){K(a.options),F(a)},!0),Fd("fixedGutter",!0,function(a,b){a.display.gutters.style.left=b?V(a.display)+"px":"0",a.refresh()},!0),Fd("coverGutterNextToScrollbar",!1,function(a){P(a)},!0),Fd("scrollbarStyle","native",function(a){O(a),P(a),a.display.scrollbars.setScrollTop(a.doc.scrollTop),a.display.scrollbars.setScrollLeft(a.doc.scrollLeft)},!0),Fd("lineNumbers",!1,function(a){K(a.options),F(a)},!0),Fd("firstLineNumber",1,F,!0),Fd("lineNumberFormatter",function(a){return a},F,!0),Fd("showCursorWhenSelecting",!1,gb,!0),Fd("resetSelectionOnContextMenu",!0),Fd("lineWiseCopyCut",!0),Fd("readOnly",!1,function(a,b){"nocursor"==b?(bd(a),a.display.input.blur(),a.display.disabled=!0):a.display.disabled=!1,a.display.input.readOnlyChanged(b)}),Fd("disableInput",!1,function(a,b){b||a.display.input.reset()},!0),Fd("dragDrop",!0,tc),Fd("allowDropFileTypes",null),Fd("cursorBlinkRate",530),Fd("cursorScrollMargin",0),Fd("cursorHeight",1,gb,!0),Fd("singleCursorHeightPerLine",!0,gb,!0),Fd("workTime",100),Fd("workDelay",100),Fd("flattenSpans",!0,A,!0),Fd("addModeClass",!1,A,!0),Fd("pollInterval",100),Fd("undoDepth",200,function(a,b){a.doc.history.undoDepth=b}),Fd("historyEventDelay",1250),Fd("viewportMargin",10,function(a){a.refresh()},!0),Fd("maxHighlightLength",1e4,A,!0),Fd("moveInputWithCursor",!0,function(a,b){b||a.display.input.resetPosition()}),Fd("tabindex",null,function(a,b){a.display.input.getField().tabIndex=b||""}),Fd("autofocus",null);var Hd=x.modes={},Id=x.mimeModes={};x.defineMode=function(a,b){x.defaults.mode||"null"==a||(x.defaults.mode=a),arguments.length>2&&(b.dependencies=Array.prototype.slice.call(arguments,2)),Hd[a]=b},x.defineMIME=function(a,b){Id[a]=b},x.resolveMode=function(a){if("string"==typeof a&&Id.hasOwnProperty(a))a=Id[a];else if(a&&"string"==typeof a.name&&Id.hasOwnProperty(a.name)){var b=Id[a.name];"string"==typeof b&&(b={name:b}),a=lg(b,a),a.name=b.name}else if("string"==typeof a&&/^[\w\-]+\/[\w\-]+\+xml$/.test(a))return x.resolveMode("application/xml");return"string"==typeof a?{name:a}:a||{name:"null"}},x.getMode=function(a,b){var b=x.resolveMode(b),c=Hd[b.name];if(!c)return x.getMode(a,"text/plain");var d=c(a,b);if(Jd.hasOwnProperty(b.name)){var e=Jd[b.name];for(var f in e)e.hasOwnProperty(f)&&(d.hasOwnProperty(f)&&(d["_"+f]=d[f]),d[f]=e[f])}if(d.name=b.name,b.helperType&&(d.helperType=b.helperType),b.modeProps)for(var f in b.modeProps)d[f]=b.modeProps[f];return d},x.defineMode("null",function(){return{token:function(a){a.skipToEnd()}}}),x.defineMIME("text/plain","null");var Jd=x.modeExtensions={};x.extendMode=function(a,b){var c=Jd.hasOwnProperty(a)?Jd[a]:Jd[a]={};mg(b,c)},x.defineExtension=function(a,b){x.prototype[a]=b},x.defineDocExtension=function(a,b){df.prototype[a]=b},x.defineOption=Fd;var Kd=[];x.defineInitHook=function(a){Kd.push(a)};var Ld=x.helpers={};x.registerHelper=function(a,b,c){Ld.hasOwnProperty(a)||(Ld[a]=x[a]={_global:[]}),Ld[a][b]=c},x.registerGlobalHelper=function(a,b,c,d){x.registerHelper(a,b,d),Ld[a]._global.push({pred:c,val:d})};var Md=x.copyState=function(a,b){if(b===!0)return b;if(a.copyState)return a.copyState(b);var c={};for(var d in b){var e=b[d];e instanceof Array&&(e=e.concat([])),c[d]=e}return c},Nd=x.startState=function(a,b,c){return a.startState?a.startState(b,c):!0};x.innerMode=function(a,b){for(;a.innerMode;){var c=a.innerMode(b);if(!c||c.mode==a)break;b=c.state,a=c.mode}return c||{mode:a,state:b}};var Od=x.commands={selectAll:function(a){a.setSelection(qa(a.firstLine(),0),qa(a.lastLine()),$f)},singleSelection:function(a){a.setSelection(a.getCursor("anchor"),a.getCursor("head"),$f)},killLine:function(a){Ad(a,function(b){if(b.empty()){var c=jf(a.doc,b.head.line).text.length;return b.head.ch==c&&b.head.line<a.lastLine()?{from:b.head,to:qa(b.head.line+1,0)}:{from:b.head,to:qa(b.head.line,c)}}return{from:b.from(),to:b.to()}})},deleteLine:function(a){Ad(a,function(b){return{from:qa(b.from().line,0),to:Pa(a.doc,qa(b.to().line+1,0))}})},delLineLeft:function(a){Ad(a,function(a){return{from:qa(a.from().line,0),to:a.from()}})},delWrappedLineLeft:function(a){Ad(a,function(b){var c=a.charCoords(b.head,"div").top+5,d=a.coordsChar({left:0,top:c},"div");return{from:d,to:b.from()}})},delWrappedLineRight:function(a){Ad(a,function(b){var c=a.charCoords(b.head,"div").top+5,d=a.coordsChar({left:a.display.lineDiv.offsetWidth+100,top:c},"div");return{from:b.from(),to:d}})},undo:function(a){a.undo()},redo:function(a){a.redo()},undoSelection:function(a){a.undoSelection()},redoSelection:function(a){a.redoSelection()},goDocStart:function(a){a.extendSelection(qa(a.firstLine(),0))},goDocEnd:function(a){a.extendSelection(qa(a.lastLine()))},goLineStart:function(a){a.extendSelectionsBy(function(b){return Yg(a,b.head.line)},{origin:"+move",bias:1})},goLineStartSmart:function(a){a.extendSelectionsBy(function(b){return $g(a,b.head)},{origin:"+move",bias:1})},goLineEnd:function(a){a.extendSelectionsBy(function(b){return Zg(a,b.head.line)},{origin:"+move",bias:-1})},goLineRight:function(a){a.extendSelectionsBy(function(b){var c=a.charCoords(b.head,"div").top+5;return a.coordsChar({left:a.display.lineDiv.offsetWidth+100,top:c},"div")},ag)},goLineLeft:function(a){a.extendSelectionsBy(function(b){var c=a.charCoords(b.head,"div").top+5;return a.coordsChar({left:0,top:c},"div")},ag)},goLineLeftSmart:function(a){a.extendSelectionsBy(function(b){var c=a.charCoords(b.head,"div").top+5,d=a.coordsChar({left:0,top:c},"div");return d.ch<a.getLine(d.line).search(/\S/)?$g(a,b.head):d},ag)},goLineUp:function(a){a.moveV(-1,"line")},goLineDown:function(a){a.moveV(1,"line")},goPageUp:function(a){a.moveV(-1,"page")},goPageDown:function(a){a.moveV(1,"page")},goCharLeft:function(a){a.moveH(-1,"char")},goCharRight:function(a){a.moveH(1,"char")},goColumnLeft:function(a){a.moveH(-1,"column")},goColumnRight:function(a){a.moveH(1,"column")},goWordLeft:function(a){a.moveH(-1,"word")},goGroupRight:function(a){a.moveH(1,"group")},goGroupLeft:function(a){a.moveH(-1,"group")},goWordRight:function(a){a.moveH(1,"word")},delCharBefore:function(a){a.deleteH(-1,"char")},delCharAfter:function(a){a.deleteH(1,"char")},delWordBefore:function(a){a.deleteH(-1,"word")},delWordAfter:function(a){a.deleteH(1,"word")},delGroupBefore:function(a){a.deleteH(-1,"group")},delGroupAfter:function(a){a.deleteH(1,"group")},indentAuto:function(a){a.indentSelection("smart")},indentMore:function(a){a.indentSelection("add")},indentLess:function(a){a.indentSelection("subtract")},insertTab:function(a){a.replaceSelection(" ")},insertSoftTab:function(a){for(var b=[],c=a.listSelections(),d=a.options.tabSize,e=0;e<c.length;e++){var f=c[e].from(),g=cg(a.getLine(f.line),f.ch,d);b.push(new Array(d-g%d+1).join(" "))}a.replaceSelections(b)},defaultTab:function(a){a.somethingSelected()?a.indentSelection("add"):a.execCommand("insertTab")},transposeChars:function(a){fc(a,function(){for(var b=a.listSelections(),c=[],d=0;d<b.length;d++){var e=b[d].head,f=jf(a.doc,e.line).text;if(f)if(e.ch==f.length&&(e=new qa(e.line,e.ch-1)),e.ch>0)e=new qa(e.line,e.ch+1),a.replaceRange(f.charAt(e.ch-1)+f.charAt(e.ch-2),qa(e.line,e.ch-2),e,"+transpose");else if(e.line>a.doc.first){var g=jf(a.doc,e.line-1).text;g&&a.replaceRange(f.charAt(0)+a.doc.lineSeparator()+g.charAt(g.length-1),qa(e.line-1,g.length-1),qa(e.line,1),"+transpose")}c.push(new La(e,e))}a.setSelections(c)})},newlineAndIndent:function(a){fc(a,function(){for(var b=a.listSelections().length,c=0;b>c;c++){var d=a.listSelections()[c];a.replaceRange(a.doc.lineSeparator(),d.anchor,d.head,"+input"),a.indentLine(d.from().line+1,null,!0)}wd(a)})},toggleOverwrite:function(a){a.toggleOverwrite()}},Pd=x.keyMap={};Pd.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",Esc:"singleSelection"},Pd.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",
19
- "Ctrl-G":"findNext","Shift-Ctrl-G":"findPrev","Shift-Ctrl-F":"replace","Shift-Ctrl-R":"replaceAll","Ctrl-[":"indentLess","Ctrl-]":"indentMore","Ctrl-U":"undoSelection","Shift-Ctrl-U":"redoSelection","Alt-U":"redoSelection",fallthrough:"basic"},Pd.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"},Pd.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","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"]},Pd["default"]=q?Pd.macDefault:Pd.pcDefault,x.normalizeKeyMap=function(a){var b={};for(var c in a)if(a.hasOwnProperty(c)){var d=a[c];if(/^(name|fallthrough|(de|at)tach)$/.test(c))continue;if("..."==d){delete a[c];continue}for(var e=jg(c.split(" "),Qd),f=0;f<e.length;f++){var g,h;f==e.length-1?(h=e.join(" "),g=d):(h=e.slice(0,f+1).join(" "),g="...");var i=b[h];if(i){if(i!=g)throw new Error("Inconsistent bindings for "+h)}else b[h]=g}delete a[c]}for(var j in b)a[j]=b[j];return a};var Rd=x.lookupKey=function(a,b,c,d){b=Ud(b);var e=b.call?b.call(a,d):b[a];if(e===!1)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 Rd(a,b.fallthrough,c,d);for(var f=0;f<b.fallthrough.length;f++){var g=Rd(a,b.fallthrough[f],c,d);if(g)return g}}},Sd=x.isModifierKey=function(a){var b="string"==typeof a?a:Sg[a.keyCode];return"Ctrl"==b||"Alt"==b||"Shift"==b||"Mod"==b},Td=x.keyName=function(a,b){if(k&&34==a.keyCode&&a["char"])return!1;var c=Sg[a.keyCode],d=c;return null==d||a.altGraphKey?!1:(a.altKey&&"Alt"!=c&&(d="Alt-"+d),(t?a.metaKey:a.ctrlKey)&&"Ctrl"!=c&&(d="Ctrl-"+d),(t?a.ctrlKey:a.metaKey)&&"Cmd"!=c&&(d="Cmd-"+d),!b&&a.shiftKey&&"Shift"!=c&&(d="Shift-"+d),d)};x.fromTextArea=function(a,b){function d(){a.value=i.getValue()}if(b=b?mg(b):{},b.value=a.value,!b.tabindex&&a.tabIndex&&(b.tabindex=a.tabIndex),!b.placeholder&&a.placeholder&&(b.placeholder=a.placeholder),null==b.autofocus){var c=zg();b.autofocus=c==a||null!=a.getAttribute("autofocus")&&c==document.body}if(a.form&&(Mf(a.form,"submit",d),!b.leaveSubmitMethodAlone)){var e=a.form,f=e.submit;try{var g=e.submit=function(){d(),e.submit=f,e.submit(),e.submit=g}}catch(h){}}b.finishInit=function(b){b.save=d,b.getTextArea=function(){return a},b.toTextArea=function(){b.toTextArea=isNaN,d(),a.parentNode.removeChild(b.getWrapperElement()),a.style.display="",a.form&&(Pf(a.form,"submit",d),"function"==typeof a.form.submit&&(a.form.submit=f))}},a.style.display="none";var i=x(function(b){a.parentNode.insertBefore(b,a.nextSibling)},b);return i};var Vd=x.StringStream=function(a,b){this.pos=this.start=0,this.string=a,this.tabSize=b||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0};Vd.prototype={eol:function(){return this.pos>=this.string.length},sol:function(){return this.pos==this.lineStart},peek:function(){return this.string.charAt(this.pos)||void 0},next:function(){return this.pos<this.string.length?this.string.charAt(this.pos++):void 0},eat:function(a){var b=this.string.charAt(this.pos);if("string"==typeof a)var c=b==a;else var c=b&&(a.test?a.test(b):a(b));return c?(++this.pos,b):void 0},eatWhile:function(a){for(var b=this.pos;this.eat(a););return this.pos>b},eatSpace:function(){for(var a=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>a},skipToEnd:function(){this.pos=this.string.length},skipTo:function(a){var b=this.string.indexOf(a,this.pos);return b>-1?(this.pos=b,!0):void 0},backUp:function(a){this.pos-=a},column:function(){return this.lastColumnPos<this.start&&(this.lastColumnValue=cg(this.string,this.start,this.tabSize,this.lastColumnPos,this.lastColumnValue),this.lastColumnPos=this.start),this.lastColumnValue-(this.lineStart?cg(this.string,this.lineStart,this.tabSize):0)},indentation:function(){return cg(this.string,null,this.tabSize)-(this.lineStart?cg(this.string,this.lineStart,this.tabSize):0)},match:function(a,b,c){if("string"!=typeof a){var f=this.string.slice(this.pos).match(a);return f&&f.index>0?null:(f&&b!==!1&&(this.pos+=f[0].length),f)}var d=function(a){return c?a.toLowerCase():a},e=this.string.substr(this.pos,a.length);return d(e)==d(a)?(b!==!1&&(this.pos+=a.length),!0):void 0},current:function(){return this.string.slice(this.start,this.pos)},hideFirstChars:function(a,b){this.lineStart+=a;try{return b()}finally{this.lineStart-=a}}};var Wd=0,Xd=x.TextMarker=function(a,b){this.lines=[],this.type=b,this.doc=a,this.id=++Wd};Xf(Xd),Xd.prototype.clear=function(){if(!this.explicitlyCleared){var a=this.doc.cm,b=a&&!a.curOp;if(b&&Yb(a),Wf(this,"clear")){var c=this.find();c&&Sf(this,"clear",c.from,c.to)}for(var d=null,e=null,f=0;f<this.lines.length;++f){var g=this.lines[f],h=de(g.markedSpans,this);a&&!this.collapsed?mc(a,nf(g),"text"):a&&(null!=h.to&&(e=nf(g)),null!=h.from&&(d=nf(g))),g.markedSpans=ee(g.markedSpans,h),null==h.from&&this.collapsed&&!ze(this.doc,g)&&a&&mf(g,Ub(a.display))}if(a&&this.collapsed&&!a.options.lineWrapping)for(var f=0;f<this.lines.length;++f){var i=ve(this.lines[f]),j=I(i);j>a.display.maxLineLength&&(a.display.maxLine=i,a.display.maxLineLength=j,a.display.maxLineChanged=!0)}null!=d&&a&&this.collapsed&&lc(a,d,e+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,a&&bb(a.doc)),a&&Sf(a,"markerCleared",a,this),b&&$b(a),this.parent&&this.parent.clear()}},Xd.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=de(f.markedSpans,this);if(null!=g.from&&(c=qa(b?f:nf(f),g.from),-1==a))return c;if(null!=g.to&&(d=qa(b?f:nf(f),g.to),1==a))return d}return c&&{from:c,to:d}},Xd.prototype.changed=function(){var a=this.find(-1,!0),b=this,c=this.doc.cm;a&&c&&fc(c,function(){var d=a.line,e=nf(a.line),f=zb(c,e);if(f&&(Gb(f),c.curOp.selectionChanged=c.curOp.forceUpdate=!0),c.curOp.updateMaxLine=!0,!ze(b.doc,d)&&null!=b.height){var g=b.height;b.height=null;var h=De(b)-g;h&&mf(d,d.height+h)}})},Xd.prototype.attachLine=function(a){if(!this.lines.length&&this.doc.cm){var b=this.doc.cm.curOp;b.maybeHiddenMarkers&&-1!=ig(b.maybeHiddenMarkers,this)||(b.maybeUnhiddenMarkers||(b.maybeUnhiddenMarkers=[])).push(this)}this.lines.push(a)},Xd.prototype.detachLine=function(a){if(this.lines.splice(ig(this.lines,a),1),!this.lines.length&&this.doc.cm){var b=this.doc.cm.curOp;(b.maybeHiddenMarkers||(b.maybeHiddenMarkers=[])).push(this)}};var Wd=0,Zd=x.SharedTextMarker=function(a,b){this.markers=a,this.primary=b;for(var c=0;c<a.length;++c)a[c].parent=this};Xf(Zd),Zd.prototype.clear=function(){if(!this.explicitlyCleared){this.explicitlyCleared=!0;for(var a=0;a<this.markers.length;++a)this.markers[a].clear();Sf(this,"clear")}},Zd.prototype.find=function(a,b){return this.primary.find(a,b)};var Be=x.LineWidget=function(a,b,c){if(c)for(var d in c)c.hasOwnProperty(d)&&(this[d]=c[d]);this.doc=a,this.node=b};Xf(Be),Be.prototype.clear=function(){var a=this.doc.cm,b=this.line.widgets,c=this.line,d=nf(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=De(this);mf(c,Math.max(0,c.height-f)),a&&fc(a,function(){Ce(a,c,-f),mc(a,d,"widget")})}},Be.prototype.changed=function(){var a=this.height,b=this.doc.cm,c=this.line;this.height=null;var d=De(this)-a;d&&(mf(c,c.height+d),b&&fc(b,function(){b.curOp.forceUpdate=!0,Ce(b,c,d)}))};var Fe=x.Line=function(a,b,c){this.text=a,ne(this,b),this.height=c?c(this):1};Xf(Fe),Fe.prototype.lineNo=function(){return nf(this)};var Qe={},Re={};af.prototype={chunkSize:function(){return this.lines.length},removeInner:function(a,b){for(var c=a,d=a+b;d>c;++c){var e=this.lines[c];this.height-=e.height,He(e),Sf(e,"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(var d=0;d<b.length;++d)b[d].parent=this},iterN:function(a,b,c){for(var d=a+b;d>a;++a)if(c(this.lines[a]))return!0}},bf.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(e>a){var f=Math.min(b,e-a),g=d.height;if(d.removeInner(a,f),this.height-=g-d.height,e==f&&(this.children.splice(c--,1),d.parent=null),0==(b-=f))break;a=0}else a-=e}if(this.size-b<25&&(this.children.length>1||!(this.children[0]instanceof af))){var h=[];this.collapse(h),this.children=[new af(h)],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],f=e.chunkSize();if(f>=a){if(e.insertInner(a,b,c),e.lines&&e.lines.length>50){for(;e.lines.length>50;){var g=e.lines.splice(e.lines.length-25,25),h=new af(g);e.height-=h.height,this.children.splice(d+1,0,h),h.parent=this}this.maybeSpill()}break}a-=f}},maybeSpill:function(){if(!(this.children.length<=10)){var a=this;do{var b=a.children.splice(a.children.length-5,5),c=new bf(b);if(a.parent){a.size-=c.size,a.height-=c.height;var e=ig(a.parent.children,a);a.parent.children.splice(e+1,0,c)}else{var d=new bf(a.children);d.parent=a,a.children=[d,c],a=d}c.parent=a.parent}while(a.children.length>10);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(f>a){var g=Math.min(b,f-a);if(e.iterN(a,g,c))return!0;if(0==(b-=g))break;a=0}else a-=f}}};var cf=0,df=x.Doc=function(a,b,c,d){if(!(this instanceof df))return new df(a,b,c,d);null==c&&(c=0),bf.call(this,[new af([new Fe("",null)])]),this.first=c,this.scrollTop=this.scrollLeft=0,this.cantEdit=!1,this.cleanGeneration=1,this.frontier=c;var e=qa(c,0);this.sel=Na(e),this.history=new rf(null),this.id=++cf,this.modeOption=b,this.lineSep=d,this.extend=!1,"string"==typeof a&&(a=this.splitLines(a)),_e(this,{from:e,to:e,text:a}),$a(this,Na(e),$f)};df.prototype=lg(bf.prototype,{constructor:df,iter:function(a,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=lf(this,this.first,this.first+this.size);return a===!1?b:b.join(a||this.lineSeparator())},setValue:ic(function(a){var b=qa(this.first,0),c=this.first+this.size-1;kd(this,{from:b,to:qa(c,jf(this,c).text.length),text:this.splitLines(a),origin:"setValue",full:!0},!0),$a(this,Na(b))}),replaceRange:function(a,b,c,d){b=Pa(this,b),c=c?Pa(this,c):b,qd(this,a,b,c,d)},getRange:function(a,b,c){var d=kf(this,Pa(this,a),Pa(this,b));return c===!1?d:d.join(c||this.lineSeparator())},getLine:function(a){var b=this.getLineHandle(a);return b&&b.text},getLineHandle:function(a){return Ra(this,a)?jf(this,a):void 0},getLineNumber:function(a){return nf(a)},getLineHandleVisualStart:function(a){return"number"==typeof a&&(a=jf(this,a)),ve(a)},lineCount:function(){return this.size},firstLine:function(){return this.first},lastLine:function(){return this.first+this.size-1},clipPos:function(a){return Pa(this,a)},getCursor:function(a){var c,b=this.sel.primary();return c=null==a||"head"==a?b.head:"anchor"==a?b.anchor:"end"==a||"to"==a||a===!1?b.to():b.from()},listSelections:function(){return this.sel.ranges},somethingSelected:function(){return this.sel.somethingSelected()},setCursor:ic(function(a,b,c){Xa(this,Pa(this,"number"==typeof a?qa(a,b||0):a),null,c)}),setSelection:ic(function(a,b,c){Xa(this,Pa(this,a),Pa(this,b||a),c)}),extendSelection:ic(function(a,b,c){Ua(this,Pa(this,a),b&&Pa(this,b),c)}),extendSelections:ic(function(a,b){Va(this,Sa(this,a),b)}),extendSelectionsBy:ic(function(a,b){var c=jg(this.sel.ranges,a);Va(this,Sa(this,c),b)}),setSelections:ic(function(a,b,c){if(a.length){for(var d=0,e=[];d<a.length;d++)e[d]=new La(Pa(this,a[d].anchor),Pa(this,a[d].head));null==b&&(b=Math.min(a.length-1,this.sel.primIndex)),$a(this,Ma(e,b),c)}}),addSelection:ic(function(a,b,c){var d=this.sel.ranges.slice(0);d.push(new La(Pa(this,a),Pa(this,b||a))),$a(this,Ma(d,d.length-1),c)}),getSelection:function(a){for(var c,b=this.sel.ranges,d=0;d<b.length;d++){var e=kf(this,b[d].from(),b[d].to());c=c?c.concat(e):e}return a===!1?c:c.join(a||this.lineSeparator())},getSelections:function(a){for(var b=[],c=this.sel.ranges,d=0;d<c.length;d++){var e=kf(this,c[d].from(),c[d].to());a!==!1&&(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]=a;this.replaceSelections(d,b,c||"+input")},replaceSelections:ic(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}}for(var h=b&&"end"!=b&&id(this,d,b),f=d.length-1;f>=0;f--)kd(this,d[f]);h?Za(this,h):this.cm&&wd(this.cm)}),undo:ic(function(){md(this,"undo")}),redo:ic(function(){md(this,"redo")}),undoSelection:ic(function(){md(this,"undo",!0)}),redoSelection:ic(function(){md(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(var d=0;d<a.undone.length;d++)a.undone[d].ranges||++c;return{undo:b,redo:c}},clearHistory:function(){this.history=new rf(this.history.maxGeneration)},markClean:function(){this.cleanGeneration=this.changeGeneration(!0)},changeGeneration:function(a){return a&&(this.history.lastOp=this.history.lastSelOp=this.history.lastOrigin=null),this.history.generation},isClean:function(a){return this.history.generation==(a||this.cleanGeneration)},getHistory:function(){return{done:Cf(this.history.done),undone:Cf(this.history.undone)}},setHistory:function(a){var b=this.history=new rf(this.history.maxGeneration);b.done=Cf(a.done.slice(0),null,!0),b.undone=Cf(a.undone.slice(0),null,!0)},addLineClass:ic(function(a,b,c){return zd(this,a,"gutter"==b?"gutter":"class",function(a){var d="text"==b?"textClass":"background"==b?"bgClass":"gutter"==b?"gutterClass":"wrapClass";if(a[d]){if(Ag(c).test(a[d]))return!1;a[d]+=" "+c}else a[d]=c;return!0})}),removeLineClass:ic(function(a,b,c){return zd(this,a,"gutter"==b?"gutter":"class",function(a){var d="text"==b?"textClass":"background"==b?"bgClass":"gutter"==b?"gutterClass":"wrapClass",e=a[d];if(!e)return!1;if(null==c)a[d]=null;else{var f=e.match(Ag(c));if(!f)return!1;var g=f.index+f[0].length;a[d]=e.slice(0,f.index)+(f.index&&g!=e.length?" ":"")+e.slice(g)||null}return!0})}),addLineWidget:ic(function(a,b,c){return Ee(this,a,b,c)}),removeLineWidget:function(a){a.clear()},markText:function(a,b,c){return Yd(this,Pa(this,a),Pa(this,b),c,c&&c.type||"range")},setBookmark:function(a,b){var c={replacedWith:b&&(null==b.nodeType?b.widget:b),insertLeft:b&&b.insertLeft,clearWhenEmpty:!1,shared:b&&b.shared,handleMouseEvents:b&&b.handleMouseEvents};return a=Pa(this,a),Yd(this,a,a,c,"bookmark")},findMarksAt:function(a){a=Pa(this,a);var b=[],c=jf(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=Pa(this,a),b=Pa(this,b);var d=[],e=a.line;return this.iter(a.line,b.line+1,function(f){var g=f.markedSpans;if(g)for(var h=0;h<g.length;h++){var i=g[h];e==a.line&&a.ch>i.to||null==i.from&&e!=a.line||e==b.line&&i.from>b.ch||c&&!c(i.marker)||d.push(i.marker.parent||i.marker)}++e}),d},getAllMarks:function(){var a=[];return this.iter(function(b){var c=b.markedSpans;if(c)for(var d=0;d<c.length;++d)null!=c[d].from&&a.push(c[d].marker)}),a},posFromIndex:function(a){var b,c=this.first;return this.iter(function(d){var e=d.text.length+1;return e>a?(b=a,!0):(a-=e,void++c)}),Pa(this,qa(c,b))},indexFromPos:function(a){a=Pa(this,a);var b=a.ch;return a.line<this.first||a.ch<0?0:(this.iter(this.first,a.line,function(a){b+=a.text.length+1}),b)},copy:function(a){var b=new df(lf(this,this.first,this.first+this.size),this.modeOption,this.first,this.lineSep);return b.scrollTop=this.scrollTop,b.scrollLeft=this.scrollLeft,b.sel=this.sel,b.extend=!1,a&&(b.history.undoDepth=this.history.undoDepth,b.setHistory(this.getHistory())),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);var d=new df(lf(this,b,c),a.mode||this.modeOption,b,this.lineSep);return a.sharedHist&&(d.history=this.history),(this.linked||(this.linked=[])).push({doc:d,sharedHist:a.sharedHist}),d.linked=[{doc:this,isParent:!0,sharedHist:a.sharedHist}],ae(d,_d(this)),d},unlinkDoc:function(a){if(a instanceof x&&(a=a.doc),this.linked)for(var b=0;b<this.linked.length;++b){var c=this.linked[b];if(c.doc==a){this.linked.splice(b,1),a.unlinkDoc(this),be(_d(this));break}}if(a.history==this.history){var d=[a.id];gf(a,function(a){d.push(a.id)},!0),a.history=new rf(null),a.history.done=Cf(this.history.done,d),a.history.undone=Cf(this.history.undone,d)}},iterLinkedDocs:function(a){gf(this,a)},getMode:function(){return this.mode},getEditor:function(){return this.cm},splitLines:function(a){return this.lineSep?a.split(this.lineSep):Ng(a)},lineSeparator:function(){return this.lineSep||"\n"}}),df.prototype.eachLine=df.prototype.iter;var ef="iter insert remove copy getEditor constructor".split(" ");for(var ff in df.prototype)df.prototype.hasOwnProperty(ff)&&ig(ef,ff)<0&&(x.prototype[ff]=function(a){return function(){return a.apply(this.doc,arguments)}}(df.prototype[ff]));Xf(df);var Gf=x.e_preventDefault=function(a){a.preventDefault?a.preventDefault():a.returnValue=!1},Hf=x.e_stopPropagation=function(a){a.stopPropagation?a.stopPropagation():a.cancelBubble=!0},Jf=x.e_stop=function(a){Gf(a),Hf(a)},Mf=x.on=function(a,b,c){if(a.addEventListener)a.addEventListener(b,c,!1);else if(a.attachEvent)a.attachEvent("on"+b,c);else{var d=a._handlers||(a._handlers={}),e=d[b]||(d[b]=[]);e.push(c)}},Nf=[],Pf=x.off=function(a,b,c){if(a.removeEventListener)a.removeEventListener(b,c,!1);else if(a.detachEvent)a.detachEvent("on"+b,c);else for(var d=Of(a,b,!1),e=0;e<d.length;++e)if(d[e]==c){d.splice(e,1);break}},Qf=x.signal=function(a,b){var c=Of(a,b,!0);if(c.length)for(var d=Array.prototype.slice.call(arguments,2),e=0;e<c.length;++e)c[e].apply(null,d)},Rf=null,Yf=30,Zf=x.Pass={toString:function(){return"CodeMirror.Pass"}},$f={scroll:!1},_f={origin:"*mouse"},ag={origin:"+move"};bg.prototype.set=function(a,b){clearTimeout(this.id),this.id=setTimeout(b,a)};var cg=x.countColumn=function(a,b,c,d,e){null==b&&(b=a.search(/[^\s\u00a0]/),-1==b&&(b=a.length));for(var f=d||0,g=e||0;;){var h=a.indexOf(" ",f);if(0>h||h>=b)return g+(b-f);g+=h-f,g+=c-g%c,f=h+1}},dg=x.findColumn=function(a,b,c){for(var d=0,e=0;;){var f=a.indexOf(" ",d);-1==f&&(f=a.length);var g=f-d;if(f==a.length||e+g>=b)return d+Math.min(g,b-e);if(e+=f-d,e+=c-e%c,d=f+1,e>=b)return d}},eg=[""],hg=function(a){a.select()};o?hg=function(a){a.selectionStart=0,a.selectionEnd=a.value.length}:f&&(hg=function(a){try{a.select()}catch(b){}});var vg,og=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/,pg=x.isWordChar=function(a){return/\w/.test(a)||a>"\x80"&&(a.toUpperCase()!=a.toLowerCase()||og.test(a))},sg=/[\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]/;vg=document.createRange?function(a,b,c,d){var e=document.createRange();return e.setEnd(d||a,c),e.setStart(a,b),e}:function(a,b,c){var d=document.body.createTextRange();try{d.moveToElementText(a.parentNode)}catch(e){return d}return d.collapse(!0),d.moveEnd("character",c),d.moveStart("character",b),d};var yg=x.contains=function(a,b){if(3==b.nodeType&&(b=b.parentNode),a.contains)return a.contains(b);do if(11==b.nodeType&&(b=b.host),b==a)return!0;while(b=b.parentNode)};f&&11>g&&(zg=function(){try{return document.activeElement}catch(a){return document.body}});var Jg,Lg,Bg=x.rmClass=function(a,b){var c=a.className,d=Ag(b).exec(c);if(d){var e=c.slice(d.index+d[0].length);a.className=c.slice(0,d.index)+(e?d[1]+e:"")}},Cg=x.addClass=function(a,b){var c=a.className;Ag(b).test(c)||(a.className+=(c?" ":"")+b)},Fg=!1,Ig=function(){if(f&&9>g)return!1;var a=ug("div");return"draggable"in a||"dragDrop"in a}(),Ng=x.splitLines=3!="\n\nb".split(/\n/).length?function(a){for(var b=0,c=[],d=a.length;d>=b;){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+1):(c.push(f),b=e+1)}return c}:function(a){return a.split(/\r\n?|\n/)},Og=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},Pg=function(){var a=ug("div");return"oncopy"in a?!0:(a.setAttribute("oncopy","return;"),"function"==typeof a.oncopy)}(),Qg=null,Sg=x.keyNames={3:"Enter",8:"Backspace",9:"Tab",13:"Enter",16:"Shift",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",63302:"Insert"};!function(){for(var a=0;10>a;a++)Sg[a+48]=Sg[a+96]=String(a);for(var a=65;90>=a;a++)Sg[a]=String.fromCharCode(a);for(var a=1;12>=a;a++)Sg[a+111]=Sg[a+63235]="F"+a}();var ah,fh=function(){function c(c){return 247>=c?a.charAt(c):c>=1424&&1524>=c?"R":c>=1536&&1773>=c?b.charAt(c-1536):c>=1774&&2220>=c?"r":c>=8192&&8203>=c?"w":8204==c?"b":"L"}function j(a,b,c){this.level=a,this.from=b,this.to=c}var a="bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN",b="rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmm",d=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,e=/[stwN]/,f=/[LRr]/,g=/[Lb1n]/,h=/[1n]/,i="L";return function(a){if(!d.test(a))return!1;for(var m,b=a.length,k=[],l=0;b>l;++l)k.push(m=c(a.charCodeAt(l)));for(var l=0,n=i;b>l;++l){var m=k[l];"m"==m?k[l]=n:n=m}for(var l=0,o=i;b>l;++l){var m=k[l];"1"==m&&"r"==o?k[l]="n":f.test(m)&&(o=m,"r"==m&&(k[l]="R"))}for(var l=1,n=k[0];b-1>l;++l){var m=k[l];"+"==m&&"1"==n&&"1"==k[l+1]?k[l]="1":","!=m||n!=k[l+1]||"1"!=n&&"n"!=n||(k[l]=n),n=m}for(var l=0;b>l;++l){var m=k[l];if(","==m)k[l]="N";else if("%"==m){for(var p=l+1;b>p&&"%"==k[p];++p);for(var q=l&&"!"==k[l-1]||b>p&&"1"==k[p]?"1":"N",r=l;p>r;++r)k[r]=q;l=p-1}}for(var l=0,o=i;b>l;++l){var m=k[l];"L"==o&&"1"==m?k[l]="L":f.test(m)&&(o=m)}for(var l=0;b>l;++l)if(e.test(k[l])){for(var p=l+1;b>p&&e.test(k[p]);++p);for(var s="L"==(l?k[l-1]:i),t="L"==(b>p?k[p]:i),q=s||t?"L":"R",r=l;p>r;++r)k[r]=q;l=p-1}for(var v,u=[],l=0;b>l;)if(g.test(k[l])){var w=l;for(++l;b>l&&g.test(k[l]);++l);u.push(new j(0,w,l))}else{var x=l,y=u.length;for(++l;b>l&&"L"!=k[l];++l);for(var r=x;l>r;)if(h.test(k[r])){r>x&&u.splice(y,0,new j(1,x,r));var z=r;for(++r;l>r&&h.test(k[r]);++r);u.splice(y,0,new j(2,z,r)),x=r}else++r;l>x&&u.splice(y,0,new j(1,x,l))}return 1==u[0].level&&(v=a.match(/^\s+/))&&(u[0].from=v[0].length,u.unshift(new j(0,0,v[0].length))),1==gg(u).level&&(v=a.match(/\s+$/))&&(gg(u).to-=v[0].length,u.push(new j(0,b-v[0].length,b))),2==u[0].level&&u.unshift(new j(1,u[0].to,u[0].to)),u[0].level!=gg(u).level&&u.push(new j(u[0].level,b,b)),u}}();return x.version="5.10.1",x}),function(a){"object"==typeof exports&&"object"==typeof module?a(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)}(function(a){"use strict";function b(a){for(var b={},c=0;c<a.length;++c)b[a[c]]=!0;return b}function x(a,b){for(var d,c=!1;null!=(d=a.next());){if(c&&"/"==d){b.tokenize=null;break}c="*"==d}return["comment","comment"]}a.defineMode("css",function(b,c){function u(a,b){return s=b,a}function v(a,b){var c=a.next();if(f[c]){var d=f[c](a,b);if(d!==!1)return d}return"@"==c?(a.eatWhile(/[\w\\\-]/),u("def",a.current())):"="==c||("~"==c||"|"==c)&&a.eat("=")?u(null,"compare"):'"'==c||"'"==c?(b.tokenize=w(c),b.tokenize(a,b)):"#"==c?(a.eatWhile(/[\w\\\-]/),u("atom","hash")):"!"==c?(a.match(/^\s*\w*/),u("keyword","important")):/\d/.test(c)||"."==c&&a.eat(/\d/)?(a.eatWhile(/[\w.%]/),u("number","unit")):"-"!==c?/[,+>*\/]/.test(c)?u(null,"select-op"):"."==c&&a.match(/^-?[_a-z][_a-z0-9-]*/i)?u("qualifier","qualifier"):/[:;{}\[\]\(\)]/.test(c)?u(null,c):"u"==c&&a.match(/rl(-prefix)?\(/)||"d"==c&&a.match("omain(")||"r"==c&&a.match("egexp(")?(a.backUp(1),b.tokenize=x,u("property","word")):/[\w\\\-]/.test(c)?(a.eatWhile(/[\w\\\-]/),u("property","word")):u(null,null):/[\d.]/.test(a.peek())?(a.eatWhile(/[\w.%]/),u("number","unit")):a.match(/^-[\w\\\-]+/)?(a.eatWhile(/[\w\\\-]/),a.match(/^\s*:/,!1)?u("variable-2","variable-definition"):u("variable-2","variable")):a.match(/^\w+-/)?u("meta","meta"):void 0}function w(a){return function(b,c){for(var e,d=!1;null!=(e=b.next());){if(e==a&&!d){")"==a&&b.backUp(1);break}d=!d&&"\\"==e}return(e==a||!d&&")"!=a)&&(c.tokenize=null),u("string","string")}}function x(a,b){return a.next(),a.match(/\s*[\"\')]/,!1)?b.tokenize=null:b.tokenize=w(")"),u(null,"(")}function y(a,b,c){this.type=a,this.indent=b,this.prev=c}function z(a,b,c,d){return a.context=new y(c,b.indentation()+(d===!1?0:e),a.context),c}function A(a){return a.context.prev&&(a.context=a.context.prev),a.context.type}function B(a,b,c){return E[c.context.type](a,b,c)}function C(a,b,c,d){for(var e=d||1;e>0;e--)c.context=c.context.prev;return B(a,b,c)}function D(a){var b=a.current().toLowerCase();t=p.hasOwnProperty(b)?"atom":o.hasOwnProperty(b)?"keyword":"variable"}var d=c.inline;c.propertyKeywords||(c=a.resolveMode("text/css"));var s,t,e=b.indentUnit,f=c.tokenHooks,g=c.documentTypes||{},h=c.mediaTypes||{},i=c.mediaFeatures||{},j=c.mediaValueKeywords||{},k=c.propertyKeywords||{},l=c.nonStandardPropertyKeywords||{},m=c.fontProperties||{},n=c.counterDescriptors||{},o=c.colorKeywords||{},p=c.valueKeywords||{},q=c.allowNested,r=c.supportsAtComponent===!0,E={};return E.top=function(a,b,c){if("{"==a)return z(c,b,"block");if("}"==a&&c.context.prev)return A(c);if(r&&/@component/.test(a))return z(c,b,"atComponentBlock");if(/^@(-moz-)?document$/.test(a))return z(c,b,"documentTypes");if(/^@(media|supports|(-moz-)?document|import)$/.test(a))return z(c,b,"atBlock");if(/^@(font-face|counter-style)/.test(a))return c.stateArg=a,"restricted_atBlock_before";if(/^@(-(moz|ms|o|webkit)-)?keyframes$/.test(a))return"keyframes";if(a&&"@"==a.charAt(0))return z(c,b,"at");if("hash"==a)t="builtin";else if("word"==a)t="tag";else{if("variable-definition"==a)return"maybeprop";if("interpolation"==a)return z(c,b,"interpolation");if(":"==a)return"pseudo";if(q&&"("==a)return z(c,b,"parens")}return c.context.type},E.block=function(a,b,c){if("word"==a){var d=b.current().toLowerCase();return k.hasOwnProperty(d)?(t="property","maybeprop"):l.hasOwnProperty(d)?(t="string-2","maybeprop"):q?(t=b.match(/^\s*:(?:\s|$)/,!1)?"property":"tag","block"):(t+=" error","maybeprop")}return"meta"==a?"block":q||"hash"!=a&&"qualifier"!=a?E.top(a,b,c):(t="error","block")},E.maybeprop=function(a,b,c){return":"==a?z(c,b,"prop"):B(a,b,c)},E.prop=function(a,b,c){if(";"==a)return A(c);if("{"==a&&q)return z(c,b,"propBlock");if("}"==a||"{"==a)return C(a,b,c);if("("==a)return z(c,b,"parens");if("hash"!=a||/^#([0-9a-fA-f]{3,4}|[0-9a-fA-f]{6}|[0-9a-fA-f]{8})$/.test(b.current())){if("word"==a)D(b);else if("interpolation"==a)return z(c,b,"interpolation")}else t+=" error";return"prop"},E.propBlock=function(a,b,c){return"}"==a?A(c):"word"==a?(t="property","maybeprop"):c.context.type},E.parens=function(a,b,c){return"{"==a||"}"==a?C(a,b,c):")"==a?A(c):"("==a?z(c,b,"parens"):"interpolation"==a?z(c,b,"interpolation"):("word"==a&&D(b),"parens")},E.pseudo=function(a,b,c){return"word"==a?(t="variable-3",c.context.type):B(a,b,c)},E.documentTypes=function(a,b,c){return"word"==a&&g.hasOwnProperty(b.current())?(t="tag",c.context.type):E.atBlock(a,b,c)},E.atBlock=function(a,b,c){if("("==a)return z(c,b,"atBlock_parens");if("}"==a||";"==a)return C(a,b,c);if("{"==a)return A(c)&&z(c,b,q?"block":"top");if("interpolation"==a)return z(c,b,"interpolation");if("word"==a){var d=b.current().toLowerCase();t="only"==d||"not"==d||"and"==d||"or"==d?"keyword":h.hasOwnProperty(d)?"attribute":i.hasOwnProperty(d)?"property":j.hasOwnProperty(d)?"keyword":k.hasOwnProperty(d)?"property":l.hasOwnProperty(d)?"string-2":p.hasOwnProperty(d)?"atom":o.hasOwnProperty(d)?"keyword":"error"}return c.context.type},E.atComponentBlock=function(a,b,c){return"}"==a?C(a,b,c):"{"==a?A(c)&&z(c,b,q?"block":"top",!1):("word"==a&&(t="error"),
20
- c.context.type)},E.atBlock_parens=function(a,b,c){return")"==a?A(c):"{"==a||"}"==a?C(a,b,c,2):E.atBlock(a,b,c)},E.restricted_atBlock_before=function(a,b,c){return"{"==a?z(c,b,"restricted_atBlock"):"word"==a&&"@counter-style"==c.stateArg?(t="variable","restricted_atBlock_before"):B(a,b,c)},E.restricted_atBlock=function(a,b,c){return"}"==a?(c.stateArg=null,A(c)):"word"==a?(t="@font-face"==c.stateArg&&!m.hasOwnProperty(b.current().toLowerCase())||"@counter-style"==c.stateArg&&!n.hasOwnProperty(b.current().toLowerCase())?"error":"property","maybeprop"):"restricted_atBlock"},E.keyframes=function(a,b,c){return"word"==a?(t="variable","keyframes"):"{"==a?z(c,b,"top"):B(a,b,c)},E.at=function(a,b,c){return";"==a?A(c):"{"==a||"}"==a?C(a,b,c):("word"==a?t="tag":"hash"==a&&(t="builtin"),"at")},E.interpolation=function(a,b,c){return"}"==a?A(c):"{"==a||";"==a?C(a,b,c):("word"==a?t="variable":"variable"!=a&&"("!=a&&")"!=a&&(t="error"),"interpolation")},{startState:function(a){return{tokenize:null,state:d?"block":"top",stateArg:null,context:new y(d?"block":"top",a||0,null)}},token:function(a,b){if(!b.tokenize&&a.eatSpace())return null;var c=(b.tokenize||v)(a,b);return c&&"object"==typeof c&&(s=c[1],c=c[0]),t=c,b.state=E[b.state](s,a,b),t},indent:function(a,b){var c=a.context,d=b&&b.charAt(0),f=c.indent;return"prop"!=c.type||"}"!=d&&")"!=d||(c=c.prev),c.prev&&("}"!=d||"block"!=c.type&&"top"!=c.type&&"interpolation"!=c.type&&"restricted_atBlock"!=c.type?(")"==d&&("parens"==c.type||"atBlock_parens"==c.type)||"{"==d&&("at"==c.type||"atBlock"==c.type))&&(f=Math.max(0,c.indent-e),c=c.prev):(c=c.prev,f=c.indent)),f},electricChars:"}",blockCommentStart:"/*",blockCommentEnd:"*/",fold:"brace"}});var c=["domain","regexp","url","url-prefix"],d=b(c),e=["all","aural","braille","handheld","print","projection","screen","tty","tv","embossed"],f=b(e),g=["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"],h=b(g),i=["landscape","portrait","none","coarse","fine","on-demand","hover","interlace","progressive"],j=b(i),k=["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","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-position","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-row","grid-row-end","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","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","marker-offset","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","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","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","volume","white-space","widows","width","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"],l=b(k),m=["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"],n=b(m),o=["font-family","src","unicode-range","font-variant","font-feature-settings","font-stretch","font-weight","font-style"],p=b(o),q=["additive-symbols","fallback","negative","pad","prefix","range","speak-as","suffix","symbols","system"],r=b(q),s=["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"],t=b(s),u=["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","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","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","darken","dashed","decimal","decimal-leading-zero","default","default-button","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","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-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","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","se-resize","searchfield","searchfield-cancel-button","searchfield-decoration","searchfield-results-button","searchfield-results-decoration","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","spell-out","square","square-button","start","static","status-bar","stretch","stroke","sub","subpixel-antialiased","super","sw-resize","symbolic","symbols","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","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","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"],v=b(u),w=c.concat(e).concat(g).concat(i).concat(k).concat(m).concat(s).concat(u);a.registerHelper("hintWords","css",w),a.defineMIME("text/css",{documentTypes:d,mediaTypes:f,mediaFeatures:h,mediaValueKeywords:j,propertyKeywords:l,nonStandardPropertyKeywords:n,fontProperties:p,counterDescriptors:r,colorKeywords:t,valueKeywords:v,tokenHooks:{"/":function(a,b){return a.eat("*")?(b.tokenize=x,x(a,b)):!1}},name:"css"}),a.defineMIME("text/x-scss",{mediaTypes:f,mediaFeatures:h,mediaValueKeywords:j,propertyKeywords:l,nonStandardPropertyKeywords:n,colorKeywords:t,valueKeywords:v,fontProperties:p,allowNested:!0,tokenHooks:{"/":function(a,b){return a.eat("/")?(a.skipToEnd(),["comment","comment"]):a.eat("*")?(b.tokenize=x,x(a,b)):["operator","operator"]},":":function(a){return a.match(/\s*\{/)?[null,"{"]:!1},$:function(a){return a.match(/^[\w-]+/),a.match(/^\s*:/,!1)?["variable-2","variable-definition"]:["variable-2","variable"]},"#":function(a){return a.eat("{")?[null,"interpolation"]:!1}},name:"css",helperType:"scss"}),a.defineMIME("text/x-less",{mediaTypes:f,mediaFeatures:h,mediaValueKeywords:j,propertyKeywords:l,nonStandardPropertyKeywords:n,colorKeywords:t,valueKeywords:v,fontProperties:p,allowNested:!0,tokenHooks:{"/":function(a,b){return a.eat("/")?(a.skipToEnd(),["comment","comment"]):a.eat("*")?(b.tokenize=x,x(a,b)):["operator","operator"]},"@":function(a){return a.eat("{")?[null,"interpolation"]:a.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\b/,!1)?!1:(a.eatWhile(/[\w\\\-]/),a.match(/^\s*:/,!1)?["variable-2","variable-definition"]:["variable-2","variable"])},"&":function(){return["atom","atom"]}},name:"css",helperType:"less"}),a.defineMIME("text/x-gss",{documentTypes:d,mediaTypes:f,mediaFeatures:h,propertyKeywords:l,nonStandardPropertyKeywords:n,fontProperties:p,counterDescriptors:r,colorKeywords:t,valueKeywords:v,supportsAtComponent:!0,tokenHooks:{"/":function(a,b){return a.eat("*")?(b.tokenize=x,x(a,b)):!1}},name:"css",helperType:"gss"})}),function(a){"object"==typeof exports&&"object"==typeof module?a(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"],a):a(CodeMirror)}(function(a){"use strict";function c(a,b,c){var d=a.current(),e=d.search(b);return e>-1?a.backUp(d.length-e):d.match(/<\/?$/)&&(a.backUp(d.length),a.match(b,!1)||a.match(d)),c}function e(a){var b=d[a];return b?b:d[a]=new RegExp("\\s+"+a+"\\s*=\\s*('|\")?([^'\"]+)('|\")?\\s*")}function f(a,b){for(var d,c=a.pos;c>=0&&"<"!==a.string.charAt(c);)c--;return 0>c?c:(d=a.string.slice(c,a.pos).match(e(b)))?d[2]:""}function g(a,b){return new RegExp((b?"^":"")+"</s*"+a+"s*>","i")}function h(a,b){for(var c in a)for(var d=b[c]||(b[c]=[]),e=a[c],f=e.length-1;f>=0;f--)d.unshift(e[f])}function i(a,b){for(var c=0;c<a.length;c++){var d=a[c];if(!d[0]||d[1].test(f(b,d[0])))return d[2]}}var b={script:[["lang",/(javascript|babel)/i,"javascript"],["type",/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^$/i,"javascript"],["type",/./,"text/plain"],[null,null,"javascript"]],style:[["lang",/^css$/i,"css"],["type",/^(text\/)?(x-)?(stylesheet|css)$/i,"css"],["type",/./,"text/plain"],[null,null,"css"]]},d={};a.defineMode("htmlmixed",function(d,e){function n(b,e){var m,h=e.htmlState.tagName&&e.htmlState.tagName.toLowerCase(),k=h&&j.hasOwnProperty(h)&&j[h],l=f.token(b,e.htmlState);if(k&&/\btag\b/.test(l)&&">"===b.current()&&(m=i(k,b))){var o=a.getMode(d,m),p=g(h,!0),q=g(h,!1);e.token=function(a,b){return a.match(p,!1)?(b.token=n,b.localState=b.localMode=null,null):c(a,q,b.localMode.token(a,b.localState))},e.localMode=o,e.localState=a.startState(o,f.indent(e.htmlState,""))}return l}var f=a.getMode(d,{name:"xml",htmlMode:!0,multilineTagIndentFactor:e.multilineTagIndentFactor,multilineTagIndentPastTag:e.multilineTagIndentPastTag}),j={},k=e&&e.tags,l=e&&e.scriptTypes;if(h(b,j),k&&h(k,j),l)for(var m=l.length-1;m>=0;m--)j.script.unshift(["type",l[m].matches,l[m].mode]);return{startState:function(){var a=f.startState();return{token:n,localMode:null,localState:null,htmlState:a}},copyState:function(b){var c;return b.localState&&(c=a.copyState(b.localMode,b.localState)),{token:b.token,localMode:b.localMode,localState:c,htmlState:a.copyState(f,b.htmlState)}},token:function(a,b){return b.token(a,b)},indent:function(b,c){return!b.localMode||/^\s*<\//.test(c)?f.indent(b.htmlState,c):b.localMode.indent?b.localMode.indent(b.localState,c):a.Pass},innerMode:function(a){return{state:a.localState||a.htmlState,mode:a.localMode||f}}}},"xml","javascript","css"),a.defineMIME("text/html","htmlmixed")}),function(a){"object"==typeof exports&&"object"==typeof module?a(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)}(function(a){"use strict";function b(a,b,c){return/^(?:operator|sof|keyword c|case|new|[\[{}\(,;:]|=>)$/.test(b.lastType)||"quasi"==b.lastType&&/\{\s*$/.test(a.string.slice(0,a.pos-(c||0)))}a.defineMode("javascript",function(c,d){function n(a){for(var c,b=!1,d=!1;null!=(c=a.next());){if(!b){if("/"==c&&!d)return;"["==c?d=!0:d&&"]"==c&&(d=!1)}b=!b&&"\\"==c}}function q(a,b,c){return o=a,p=c,b}function r(a,c){var d=a.next();if('"'==d||"'"==d)return c.tokenize=s(d),c.tokenize(a,c);if("."==d&&a.match(/^\d+(?:[eE][+\-]?\d+)?/))return q("number","number");if("."==d&&a.match(".."))return q("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(d))return q(d);if("="==d&&a.eat(">"))return q("=>","operator");if("0"==d&&a.eat(/x/i))return a.eatWhile(/[\da-f]/i),q("number","number");if("0"==d&&a.eat(/o/i))return a.eatWhile(/[0-7]/i),q("number","number");if("0"==d&&a.eat(/b/i))return a.eatWhile(/[01]/i),q("number","number");if(/\d/.test(d))return a.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/),q("number","number");if("/"==d)return a.eat("*")?(c.tokenize=t,t(a,c)):a.eat("/")?(a.skipToEnd(),q("comment","comment")):b(a,c,1)?(n(a),a.match(/^\b(([gimyu])(?![gimyu]*\2))+\b/),q("regexp","string-2")):(a.eatWhile(l),q("operator","operator",a.current()));if("`"==d)return c.tokenize=u,u(a,c);if("#"==d)return a.skipToEnd(),q("error","error");if(l.test(d))return a.eatWhile(l),q("operator","operator",a.current());if(j.test(d)){a.eatWhile(j);var e=a.current(),f=k.propertyIsEnumerable(e)&&k[e];return f&&"."!=c.lastType?q(f.type,f.style,e):q("variable","variable",e)}}function s(a){return function(b,c){var e,d=!1;if(g&&"@"==b.peek()&&b.match(m))return c.tokenize=r,q("jsonld-keyword","meta");for(;null!=(e=b.next())&&(e!=a||d);)d=!d&&"\\"==e;return d||(c.tokenize=r),q("string","string")}}function t(a,b){for(var d,c=!1;d=a.next();){if("/"==d&&c){b.tokenize=r;break}c="*"==d}return q("comment","comment")}function u(a,b){for(var d,c=!1;null!=(d=a.next());){if(!c&&("`"==d||"$"==d&&a.eat("{"))){b.tokenize=r;break}c=!c&&"\\"==d}return q("quasi","string-2",a.current())}function w(a,b){b.fatArrowAt&&(b.fatArrowAt=null);var c=a.string.indexOf("=>",a.start);if(!(0>c)){for(var d=0,e=!1,f=c-1;f>=0;--f){var g=a.string.charAt(f),h=v.indexOf(g);if(h>=0&&3>h){if(!d){++f;break}if(0==--d)break}else if(h>=3&&6>h)++d;else if(j.test(g))e=!0;else{if(/["'\/]/.test(g))return;if(e&&!d){++f;break}}}e&&!d&&(b.fatArrowAt=f)}}function y(a,b,c,d,e,f){this.indented=a,this.column=b,this.type=c,this.prev=e,this.info=f,null!=d&&(this.align=d)}function z(a,b){for(var c=a.localVars;c;c=c.next)if(c.name==b)return!0;for(var d=a.context;d;d=d.prev)for(var c=d.vars;c;c=c.next)if(c.name==b)return!0}function A(a,b,c,d,e){var f=a.cc;for(B.state=a,B.stream=e,B.marked=null,B.cc=f,B.style=b,a.lexical.hasOwnProperty("align")||(a.lexical.align=!0);;){var g=f.length?f.pop():h?M:L;if(g(c,d)){for(;f.length&&f[f.length-1].lex;)f.pop()();return B.marked?B.marked:"variable"==c&&z(a,d)?"variable-2":b}}}function C(){for(var a=arguments.length-1;a>=0;a--)B.cc.push(arguments[a])}function D(){return C.apply(null,arguments),!0}function E(a){function b(b){for(var c=b;c;c=c.next)if(c.name==a)return!0;return!1}var c=B.state;if(B.marked="def",c.context){if(b(c.localVars))return;c.localVars={name:a,next:c.localVars}}else{if(b(c.globalVars))return;d.globalVars&&(c.globalVars={name:a,next:c.globalVars})}}function G(){B.state.context={prev:B.state.context,vars:B.state.localVars},B.state.localVars=F}function H(){B.state.localVars=B.state.context.vars,B.state.context=B.state.context.prev}function I(a,b){var c=function(){var c=B.state,d=c.indented;if("stat"==c.lexical.type)d=c.lexical.indented;else for(var e=c.lexical;e&&")"==e.type&&e.align;e=e.prev)d=e.indented;c.lexical=new y(d,B.stream.column(),a,null,c.lexical,b)};return c.lex=!0,c}function J(){var a=B.state;a.lexical.prev&&(")"==a.lexical.type&&(a.indented=a.lexical.indented),a.lexical=a.lexical.prev)}function K(a){function b(c){return c==a?D():";"==a?C():D(b)}return b}function L(a,b){return"var"==a?D(I("vardef",b.length),ja,K(";"),J):"keyword a"==a?D(I("form"),M,L,J):"keyword b"==a?D(I("form"),L,J):"{"==a?D(I("}"),fa,J):";"==a?D():"if"==a?("else"==B.state.lexical.info&&B.state.cc[B.state.cc.length-1]==J&&B.state.cc.pop()(),D(I("form"),M,L,J,oa)):"function"==a?D(ua):"for"==a?D(I("form"),pa,L,J):"variable"==a?D(I("stat"),$):"switch"==a?D(I("form"),M,I("}","switch"),K("{"),fa,J,J):"case"==a?D(M,K(":")):"default"==a?D(K(":")):"catch"==a?D(I("form"),G,K("("),va,K(")"),L,J,H):"class"==a?D(I("form"),wa,J):"export"==a?D(I("stat"),Aa,J):"import"==a?D(I("stat"),Ba,J):"module"==a?D(I("form"),ka,I("}"),K("{"),fa,J,J):C(I("stat"),M,K(";"),J)}function M(a){return O(a,!1)}function N(a){return O(a,!0)}function O(a,b){if(B.state.fatArrowAt==B.stream.start){var c=b?W:V;if("("==a)return D(G,I(")"),da(ka,")"),J,K("=>"),c,H);if("variable"==a)return C(G,ka,K("=>"),c,H)}var d=b?S:R;return x.hasOwnProperty(a)?D(d):"function"==a?D(ua,d):"keyword c"==a?D(b?Q:P):"("==a?D(I(")"),P,Ha,K(")"),J,d):"operator"==a||"spread"==a?D(b?N:M):"["==a?D(I("]"),Fa,J,d):"{"==a?ea(aa,"}",null,d):"quasi"==a?C(T,d):"new"==a?D(X(b)):D()}function P(a){return a.match(/[;\}\)\],]/)?C():C(M)}function Q(a){return a.match(/[;\}\)\],]/)?C():C(N)}function R(a,b){return","==a?D(M):S(a,b,!1)}function S(a,b,c){var d=0==c?R:S,e=0==c?M:N;return"=>"==a?D(G,c?W:V,H):"operator"==a?/\+\+|--/.test(b)?D(d):"?"==b?D(M,K(":"),e):D(e):"quasi"==a?C(T,d):";"!=a?"("==a?ea(N,")","call",d):"."==a?D(_,d):"["==a?D(I("]"),P,K("]"),J,d):void 0:void 0}function T(a,b){return"quasi"!=a?C():"${"!=b.slice(b.length-2)?D(T):D(M,U)}function U(a){return"}"==a?(B.marked="string-2",B.state.tokenize=u,D(T)):void 0}function V(a){return w(B.stream,B.state),C("{"==a?L:M)}function W(a){return w(B.stream,B.state),C("{"==a?L:N)}function X(a){return function(b){return"."==b?D(a?Z:Y):C(a?N:M)}}function Y(a,b){return"target"==b?(B.marked="keyword",D(R)):void 0}function Z(a,b){return"target"==b?(B.marked="keyword",D(S)):void 0}function $(a){return":"==a?D(J,L):C(R,K(";"),J)}function _(a){return"variable"==a?(B.marked="property",D()):void 0}function aa(a,b){return"variable"==a||"keyword"==B.style?(B.marked="property",D("get"==b||"set"==b?ba:ca)):"number"==a||"string"==a?(B.marked=g?"property":B.style+" property",D(ca)):"jsonld-keyword"==a?D(ca):"modifier"==a?D(aa):"["==a?D(M,K("]"),ca):"spread"==a?D(M):void 0}function ba(a){return"variable"!=a?C(ca):(B.marked="property",D(ua))}function ca(a){return":"==a?D(N):"("==a?C(ua):void 0}function da(a,b){function c(d){if(","==d){var e=B.state.lexical;return"call"==e.info&&(e.pos=(e.pos||0)+1),D(a,c)}return d==b?D():D(K(b))}return function(d){return d==b?D():C(a,c)}}function ea(a,b,c){for(var d=3;d<arguments.length;d++)B.cc.push(arguments[d]);return D(I(b,c),da(a,b),J)}function fa(a){return"}"==a?D():C(L,fa)}function ga(a){return i&&":"==a?D(ia):void 0}function ha(a,b){return"="==b?D(N):void 0}function ia(a){return"variable"==a?(B.marked="variable-3",D()):void 0}function ja(){return C(ka,ga,ma,na)}function ka(a,b){return"modifier"==a?D(ka):"variable"==a?(E(b),D()):"spread"==a?D(ka):"["==a?ea(ka,"]"):"{"==a?ea(la,"}"):void 0}function la(a,b){return"variable"!=a||B.stream.match(/^\s*:/,!1)?("variable"==a&&(B.marked="property"),"spread"==a?D(ka):"}"==a?C():D(K(":"),ka,ma)):(E(b),D(ma))}function ma(a,b){return"="==b?D(N):void 0}function na(a){return","==a?D(ja):void 0}function oa(a,b){return"keyword b"==a&&"else"==b?D(I("form","else"),L,J):void 0}function pa(a){return"("==a?D(I(")"),qa,K(")"),J):void 0}function qa(a){return"var"==a?D(ja,K(";"),sa):";"==a?D(sa):"variable"==a?D(ra):C(M,K(";"),sa)}function ra(a,b){return"in"==b||"of"==b?(B.marked="keyword",D(M)):D(R,sa)}function sa(a,b){return";"==a?D(ta):"in"==b||"of"==b?(B.marked="keyword",D(M)):C(M,K(";"),ta)}function ta(a){")"!=a&&D(M)}function ua(a,b){return"*"==b?(B.marked="keyword",D(ua)):"variable"==a?(E(b),D(ua)):"("==a?D(G,I(")"),da(va,")"),J,L,H):void 0}function va(a){return"spread"==a?D(va):C(ka,ga,ha)}function wa(a,b){return"variable"==a?(E(b),D(xa)):void 0}function xa(a,b){return"extends"==b?D(M,xa):"{"==a?D(I("}"),ya,J):void 0}function ya(a,b){return"variable"==a||"keyword"==B.style?"static"==b?(B.marked="keyword",D(ya)):(B.marked="property","get"==b||"set"==b?D(za,ua,ya):D(ua,ya)):"*"==b?(B.marked="keyword",D(ya)):";"==a?D(ya):"}"==a?D():void 0}function za(a){return"variable"!=a?C():(B.marked="property",D())}function Aa(a,b){return"*"==b?(B.marked="keyword",D(Ea,K(";"))):"default"==b?(B.marked="keyword",D(M,K(";"))):C(L)}function Ba(a){return"string"==a?D():C(Ca,Ea)}function Ca(a,b){return"{"==a?ea(Ca,"}"):("variable"==a&&E(b),"*"==b&&(B.marked="keyword"),D(Da))}function Da(a,b){return"as"==b?(B.marked="keyword",D(Ca)):void 0}function Ea(a,b){return"from"==b?(B.marked="keyword",D(M)):void 0}function Fa(a){return"]"==a?D():C(N,Ga)}function Ga(a){return"for"==a?C(Ha,K("]")):","==a?D(da(Q,"]")):C(da(N,"]"))}function Ha(a){return"for"==a?D(pa,Ha):"if"==a?D(M,Ha):void 0}function Ia(a,b){return"operator"==a.lastType||","==a.lastType||l.test(b.charAt(0))||/[,.]/.test(b.charAt(0))}var o,p,e=c.indentUnit,f=d.statementIndent,g=d.jsonld,h=d.json||g,i=d.typescript,j=d.wordCharacters||/[\w$\xa1-\uffff]/,k=function(){function a(a){return{type:a,style:"keyword"}}var b=a("keyword a"),c=a("keyword b"),d=a("keyword c"),e=a("operator"),f={type:"atom",style:"atom"},g={"if":a("if"),"while":b,"with":b,"else":c,"do":c,"try":c,"finally":c,"return":d,"break":d,"continue":d,"new":a("new"),"delete":d,"throw":d,"debugger":d,"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":f,"false":f,"null":f,undefined:f,NaN:f,Infinity:f,"this":a("this"),"class":a("class"),"super":a("atom"),"yield":d,"export":a("export"),"import":a("import"),"extends":d};if(i){var h={type:"variable",style:"variable-3"},j={"interface":a("class"),"implements":d,
21
- namespace:d,module:a("module"),"enum":a("module"),"public":a("modifier"),"private":a("modifier"),"protected":a("modifier"),"abstract":a("modifier"),as:e,string:h,number:h,"boolean":h,any:h};for(var k in j)g[k]=j[k]}return g}(),l=/[+\-*&%=<>!?|~^]/,m=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/,v="([{}])",x={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,"this":!0,"jsonld-keyword":!0},B={state:null,column:null,marked:null,cc:null},F={name:"this",next:{name:"arguments"}};return J.lex=!0,{startState:function(a){var b={tokenize:r,lastType:"sof",cc:[],lexical:new y((a||0)-e,0,"block",!1),localVars:d.localVars,context:d.localVars&&{vars:d.localVars},indented:a||0};return d.globalVars&&"object"==typeof d.globalVars&&(b.globalVars=d.globalVars),b},token:function(a,b){if(a.sol()&&(b.lexical.hasOwnProperty("align")||(b.lexical.align=!1),b.indented=a.indentation(),w(a,b)),b.tokenize!=t&&a.eatSpace())return null;var c=b.tokenize(a,b);return"comment"==o?c:(b.lastType="operator"!=o||"++"!=p&&"--"!=p?o:"incdec",A(b,c,o,p,a))},indent:function(b,c){if(b.tokenize==t)return a.Pass;if(b.tokenize!=r)return 0;var g=c&&c.charAt(0),h=b.lexical;if(!/^\s*else\b/.test(c))for(var i=b.cc.length-1;i>=0;--i){var j=b.cc[i];if(j==J)h=h.prev;else if(j!=oa)break}"stat"==h.type&&"}"==g&&(h=h.prev),f&&")"==h.type&&"stat"==h.prev.type&&(h=h.prev);var k=h.type,l=g==k;return"vardef"==k?h.indented+("operator"==b.lastType||","==b.lastType?h.info+1:0):"form"==k&&"{"==g?h.indented:"form"==k?h.indented+e:"stat"==k?h.indented+(Ia(b,c)?f||e:0):"switch"!=h.info||l||0==d.doubleIndentSwitch?h.align?h.column+(l?0:1):h.indented+(l?0:e):h.indented+(/^(?:case|default)\b/.test(c)?e:2*e)},electricInput:/^\s*(?:case .*?:|default:|\{|\})$/,blockCommentStart:h?null:"/*",blockCommentEnd:h?null:"*/",lineComment:h?null:"//",fold:"brace",closeBrackets:"()[]{}''\"\"``",helperType:h?"json":"javascript",jsonldMode:g,jsonMode:h,expressionAllowed:b,skipExpression:function(a){var b=a.cc[a.cc.length-1];(b==M||b==N)&&a.cc.pop()}}}),a.registerHelper("wordChars","javascript",/[\w$]/),a.defineMIME("text/javascript","javascript"),a.defineMIME("text/ecmascript","javascript"),a.defineMIME("application/javascript","javascript"),a.defineMIME("application/x-javascript","javascript"),a.defineMIME("application/ecmascript","javascript"),a.defineMIME("application/json",{name:"javascript",json:!0}),a.defineMIME("application/x-json",{name:"javascript",json:!0}),a.defineMIME("application/ld+json",{name:"javascript",jsonld:!0}),a.defineMIME("text/typescript",{name:"javascript",typescript:!0}),a.defineMIME("application/typescript",{name:"javascript",typescript:!0})}),function(a){"object"==typeof exports&&"object"==typeof module?a(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)}(function(a){function e(a,b,e,g){var h=a.getLineHandle(b.line),i=b.ch-1,j=i>=0&&d[h.text.charAt(i)]||d[h.text.charAt(++i)];if(!j)return null;var k=">"==j.charAt(1)?1:-1;if(e&&k>0!=(i==b.ch))return null;var l=a.getTokenTypeAt(c(b.line,i+1)),m=f(a,c(b.line,i+(k>0?1:0)),k,l||null,g);return null==m?null:{from:c(b.line,i),to:m&&m.pos,match:m&&m.ch==j.charAt(0),forward:k>0}}function f(a,b,e,f,g){for(var h=g&&g.maxScanLineLength||1e4,i=g&&g.maxScanLines||1e3,j=[],k=g&&g.bracketRegex?g.bracketRegex:/[(){}[\]]/,l=e>0?Math.min(b.line+i,a.lastLine()+1):Math.max(a.firstLine()-1,b.line-i),m=b.line;m!=l;m+=e){var n=a.getLine(m);if(n){var o=e>0?0:n.length-1,p=e>0?n.length:-1;if(!(n.length>h))for(m==b.line&&(o=b.ch-(0>e?1:0));o!=p;o+=e){var q=n.charAt(o);if(k.test(q)&&(void 0===f||a.getTokenTypeAt(c(m,o+1))==f)){var r=d[q];if(">"==r.charAt(1)==e>0)j.push(q);else{if(!j.length)return{pos:c(m,o),ch:q};j.pop()}}}}}return m-e==(e>0?a.lastLine():a.firstLine())?!1:null}function g(a,d,f){for(var g=a.state.matchBrackets.maxHighlightLineLength||1e3,h=[],i=a.listSelections(),j=0;j<i.length;j++){var k=i[j].empty()&&e(a,i[j].head,!1,f);if(k&&a.getLine(k.from.line).length<=g){var l=k.match?"CodeMirror-matchingbracket":"CodeMirror-nonmatchingbracket";h.push(a.markText(k.from,c(k.from.line,k.from.ch+1),{className:l})),k.to&&a.getLine(k.to.line).length<=g&&h.push(a.markText(k.to,c(k.to.line,k.to.ch+1),{className:l}))}}if(h.length){b&&a.state.focused&&a.focus();var m=function(){a.operation(function(){for(var a=0;a<h.length;a++)h[a].clear()})};if(!d)return m;setTimeout(m,800)}}function i(a){a.operation(function(){h&&(h(),h=null),h=g(a,!1,a.state.matchBrackets)})}var b=/MSIE \d/.test(navigator.userAgent)&&(null==document.documentMode||document.documentMode<8),c=a.Pos,d={"(":")>",")":"(<","[":"]>","]":"[<","{":"}>","}":"{<"},h=null;a.defineOption("matchBrackets",!1,function(b,c,d){d&&d!=a.Init&&b.off("cursorActivity",i),c&&(b.state.matchBrackets="object"==typeof c?c:{},b.on("cursorActivity",i))}),a.defineExtension("matchBrackets",function(){g(this,!0)}),a.defineExtension("findMatchingBracket",function(a,b,c){return e(this,a,b,c)}),a.defineExtension("scanForBracket",function(a,b,c,d){return f(this,a,b,c,d)})});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/codemirror/mode/xml/xml.js DELETED
@@ -1,394 +0,0 @@
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
- var htmlConfig = {
15
- autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true,
16
- 'embed': true, 'frame': true, 'hr': true, 'img': true, 'input': true,
17
- 'keygen': true, 'link': true, 'meta': true, 'param': true, 'source': true,
18
- 'track': true, 'wbr': true, 'menuitem': true},
19
- implicitlyClosed: {'dd': true, 'li': true, 'optgroup': true, 'option': true, 'p': true,
20
- 'rp': true, 'rt': true, 'tbody': true, 'td': true, 'tfoot': true,
21
- 'th': true, 'tr': true},
22
- contextGrabbers: {
23
- 'dd': {'dd': true, 'dt': true},
24
- 'dt': {'dd': true, 'dt': true},
25
- 'li': {'li': true},
26
- 'option': {'option': true, 'optgroup': true},
27
- 'optgroup': {'optgroup': true},
28
- 'p': {'address': true, 'article': true, 'aside': true, 'blockquote': true, 'dir': true,
29
- 'div': true, 'dl': true, 'fieldset': true, 'footer': true, 'form': true,
30
- 'h1': true, 'h2': true, 'h3': true, 'h4': true, 'h5': true, 'h6': true,
31
- 'header': true, 'hgroup': true, 'hr': true, 'menu': true, 'nav': true, 'ol': true,
32
- 'p': true, 'pre': true, 'section': true, 'table': true, 'ul': true},
33
- 'rp': {'rp': true, 'rt': true},
34
- 'rt': {'rp': true, 'rt': true},
35
- 'tbody': {'tbody': true, 'tfoot': true},
36
- 'td': {'td': true, 'th': true},
37
- 'tfoot': {'tbody': true},
38
- 'th': {'td': true, 'th': true},
39
- 'thead': {'tbody': true, 'tfoot': true},
40
- 'tr': {'tr': true}
41
- },
42
- doNotIndent: {"pre": true},
43
- allowUnquoted: true,
44
- allowMissing: true,
45
- caseFold: true
46
- }
47
-
48
- var xmlConfig = {
49
- autoSelfClosers: {},
50
- implicitlyClosed: {},
51
- contextGrabbers: {},
52
- doNotIndent: {},
53
- allowUnquoted: false,
54
- allowMissing: false,
55
- caseFold: false
56
- }
57
-
58
- CodeMirror.defineMode("xml", function(editorConf, config_) {
59
- var indentUnit = editorConf.indentUnit
60
- var config = {}
61
- var defaults = config_.htmlMode ? htmlConfig : xmlConfig
62
- for (var prop in defaults) config[prop] = defaults[prop]
63
- for (var prop in config_) config[prop] = config_[prop]
64
-
65
- // Return variables for tokenizers
66
- var type, setStyle;
67
-
68
- function inText(stream, state) {
69
- function chain(parser) {
70
- state.tokenize = parser;
71
- return parser(stream, state);
72
- }
73
-
74
- var ch = stream.next();
75
- if (ch == "<") {
76
- if (stream.eat("!")) {
77
- if (stream.eat("[")) {
78
- if (stream.match("CDATA[")) return chain(inBlock("atom", "]]>"));
79
- else return null;
80
- } else if (stream.match("--")) {
81
- return chain(inBlock("comment", "-->"));
82
- } else if (stream.match("DOCTYPE", true, true)) {
83
- stream.eatWhile(/[\w\._\-]/);
84
- return chain(doctype(1));
85
- } else {
86
- return null;
87
- }
88
- } else if (stream.eat("?")) {
89
- stream.eatWhile(/[\w\._\-]/);
90
- state.tokenize = inBlock("meta", "?>");
91
- return "meta";
92
- } else {
93
- type = stream.eat("/") ? "closeTag" : "openTag";
94
- state.tokenize = inTag;
95
- return "tag bracket";
96
- }
97
- } else if (ch == "&") {
98
- var ok;
99
- if (stream.eat("#")) {
100
- if (stream.eat("x")) {
101
- ok = stream.eatWhile(/[a-fA-F\d]/) && stream.eat(";");
102
- } else {
103
- ok = stream.eatWhile(/[\d]/) && stream.eat(";");
104
- }
105
- } else {
106
- ok = stream.eatWhile(/[\w\.\-:]/) && stream.eat(";");
107
- }
108
- return ok ? "atom" : "error";
109
- } else {
110
- stream.eatWhile(/[^&<]/);
111
- return null;
112
- }
113
- }
114
- inText.isInText = true;
115
-
116
- function inTag(stream, state) {
117
- var ch = stream.next();
118
- if (ch == ">" || (ch == "/" && stream.eat(">"))) {
119
- state.tokenize = inText;
120
- type = ch == ">" ? "endTag" : "selfcloseTag";
121
- return "tag bracket";
122
- } else if (ch == "=") {
123
- type = "equals";
124
- return null;
125
- } else if (ch == "<") {
126
- state.tokenize = inText;
127
- state.state = baseState;
128
- state.tagName = state.tagStart = null;
129
- var next = state.tokenize(stream, state);
130
- return next ? next + " tag error" : "tag error";
131
- } else if (/[\'\"]/.test(ch)) {
132
- state.tokenize = inAttribute(ch);
133
- state.stringStartCol = stream.column();
134
- return state.tokenize(stream, state);
135
- } else {
136
- stream.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/);
137
- return "word";
138
- }
139
- }
140
-
141
- function inAttribute(quote) {
142
- var closure = function(stream, state) {
143
- while (!stream.eol()) {
144
- if (stream.next() == quote) {
145
- state.tokenize = inTag;
146
- break;
147
- }
148
- }
149
- return "string";
150
- };
151
- closure.isInAttribute = true;
152
- return closure;
153
- }
154
-
155
- function inBlock(style, terminator) {
156
- return function(stream, state) {
157
- while (!stream.eol()) {
158
- if (stream.match(terminator)) {
159
- state.tokenize = inText;
160
- break;
161
- }
162
- stream.next();
163
- }
164
- return style;
165
- };
166
- }
167
- function doctype(depth) {
168
- return function(stream, state) {
169
- var ch;
170
- while ((ch = stream.next()) != null) {
171
- if (ch == "<") {
172
- state.tokenize = doctype(depth + 1);
173
- return state.tokenize(stream, state);
174
- } else if (ch == ">") {
175
- if (depth == 1) {
176
- state.tokenize = inText;
177
- break;
178
- } else {
179
- state.tokenize = doctype(depth - 1);
180
- return state.tokenize(stream, state);
181
- }
182
- }
183
- }
184
- return "meta";
185
- };
186
- }
187
-
188
- function Context(state, tagName, startOfLine) {
189
- this.prev = state.context;
190
- this.tagName = tagName;
191
- this.indent = state.indented;
192
- this.startOfLine = startOfLine;
193
- if (config.doNotIndent.hasOwnProperty(tagName) || (state.context && state.context.noIndent))
194
- this.noIndent = true;
195
- }
196
- function popContext(state) {
197
- if (state.context) state.context = state.context.prev;
198
- }
199
- function maybePopContext(state, nextTagName) {
200
- var parentTagName;
201
- while (true) {
202
- if (!state.context) {
203
- return;
204
- }
205
- parentTagName = state.context.tagName;
206
- if (!config.contextGrabbers.hasOwnProperty(parentTagName) ||
207
- !config.contextGrabbers[parentTagName].hasOwnProperty(nextTagName)) {
208
- return;
209
- }
210
- popContext(state);
211
- }
212
- }
213
-
214
- function baseState(type, stream, state) {
215
- if (type == "openTag") {
216
- state.tagStart = stream.column();
217
- return tagNameState;
218
- } else if (type == "closeTag") {
219
- return closeTagNameState;
220
- } else {
221
- return baseState;
222
- }
223
- }
224
- function tagNameState(type, stream, state) {
225
- if (type == "word") {
226
- state.tagName = stream.current();
227
- setStyle = "tag";
228
- return attrState;
229
- } else {
230
- setStyle = "error";
231
- return tagNameState;
232
- }
233
- }
234
- function closeTagNameState(type, stream, state) {
235
- if (type == "word") {
236
- var tagName = stream.current();
237
- if (state.context && state.context.tagName != tagName &&
238
- config.implicitlyClosed.hasOwnProperty(state.context.tagName))
239
- popContext(state);
240
- if ((state.context && state.context.tagName == tagName) || config.matchClosing === false) {
241
- setStyle = "tag";
242
- return closeState;
243
- } else {
244
- setStyle = "tag error";
245
- return closeStateErr;
246
- }
247
- } else {
248
- setStyle = "error";
249
- return closeStateErr;
250
- }
251
- }
252
-
253
- function closeState(type, _stream, state) {
254
- if (type != "endTag") {
255
- setStyle = "error";
256
- return closeState;
257
- }
258
- popContext(state);
259
- return baseState;
260
- }
261
- function closeStateErr(type, stream, state) {
262
- setStyle = "error";
263
- return closeState(type, stream, state);
264
- }
265
-
266
- function attrState(type, _stream, state) {
267
- if (type == "word") {
268
- setStyle = "attribute";
269
- return attrEqState;
270
- } else if (type == "endTag" || type == "selfcloseTag") {
271
- var tagName = state.tagName, tagStart = state.tagStart;
272
- state.tagName = state.tagStart = null;
273
- if (type == "selfcloseTag" ||
274
- config.autoSelfClosers.hasOwnProperty(tagName)) {
275
- maybePopContext(state, tagName);
276
- } else {
277
- maybePopContext(state, tagName);
278
- state.context = new Context(state, tagName, tagStart == state.indented);
279
- }
280
- return baseState;
281
- }
282
- setStyle = "error";
283
- return attrState;
284
- }
285
- function attrEqState(type, stream, state) {
286
- if (type == "equals") return attrValueState;
287
- if (!config.allowMissing) setStyle = "error";
288
- return attrState(type, stream, state);
289
- }
290
- function attrValueState(type, stream, state) {
291
- if (type == "string") return attrContinuedState;
292
- if (type == "word" && config.allowUnquoted) {setStyle = "string"; return attrState;}
293
- setStyle = "error";
294
- return attrState(type, stream, state);
295
- }
296
- function attrContinuedState(type, stream, state) {
297
- if (type == "string") return attrContinuedState;
298
- return attrState(type, stream, state);
299
- }
300
-
301
- return {
302
- startState: function(baseIndent) {
303
- var state = {tokenize: inText,
304
- state: baseState,
305
- indented: baseIndent || 0,
306
- tagName: null, tagStart: null,
307
- context: null}
308
- if (baseIndent != null) state.baseIndent = baseIndent
309
- return state
310
- },
311
-
312
- token: function(stream, state) {
313
- if (!state.tagName && stream.sol())
314
- state.indented = stream.indentation();
315
-
316
- if (stream.eatSpace()) return null;
317
- type = null;
318
- var style = state.tokenize(stream, state);
319
- if ((style || type) && style != "comment") {
320
- setStyle = null;
321
- state.state = state.state(type || style, stream, state);
322
- if (setStyle)
323
- style = setStyle == "error" ? style + " error" : setStyle;
324
- }
325
- return style;
326
- },
327
-
328
- indent: function(state, textAfter, fullLine) {
329
- var context = state.context;
330
- // Indent multi-line strings (e.g. css).
331
- if (state.tokenize.isInAttribute) {
332
- if (state.tagStart == state.indented)
333
- return state.stringStartCol + 1;
334
- else
335
- return state.indented + indentUnit;
336
- }
337
- if (context && context.noIndent) return CodeMirror.Pass;
338
- if (state.tokenize != inTag && state.tokenize != inText)
339
- return fullLine ? fullLine.match(/^(\s*)/)[0].length : 0;
340
- // Indent the starts of attribute names.
341
- if (state.tagName) {
342
- if (config.multilineTagIndentPastTag !== false)
343
- return state.tagStart + state.tagName.length + 2;
344
- else
345
- return state.tagStart + indentUnit * (config.multilineTagIndentFactor || 1);
346
- }
347
- if (config.alignCDATA && /<!\[CDATA\[/.test(textAfter)) return 0;
348
- var tagAfter = textAfter && /^<(\/)?([\w_:\.-]*)/.exec(textAfter);
349
- if (tagAfter && tagAfter[1]) { // Closing tag spotted
350
- while (context) {
351
- if (context.tagName == tagAfter[2]) {
352
- context = context.prev;
353
- break;
354
- } else if (config.implicitlyClosed.hasOwnProperty(context.tagName)) {
355
- context = context.prev;
356
- } else {
357
- break;
358
- }
359
- }
360
- } else if (tagAfter) { // Opening tag spotted
361
- while (context) {
362
- var grabbers = config.contextGrabbers[context.tagName];
363
- if (grabbers && grabbers.hasOwnProperty(tagAfter[2]))
364
- context = context.prev;
365
- else
366
- break;
367
- }
368
- }
369
- while (context && context.prev && !context.startOfLine)
370
- context = context.prev;
371
- if (context) return context.indent + indentUnit;
372
- else return state.baseIndent || 0;
373
- },
374
-
375
- electricInput: /<\/[\s\w:]+>$/,
376
- blockCommentStart: "<!--",
377
- blockCommentEnd: "-->",
378
-
379
- configuration: config.htmlMode ? "html" : "xml",
380
- helperType: config.htmlMode ? "html" : "xml",
381
-
382
- skipAttribute: function(state) {
383
- if (state.state == attrValueState)
384
- state.state = attrState
385
- }
386
- };
387
- });
388
-
389
- CodeMirror.defineMIME("text/xml", "xml");
390
- CodeMirror.defineMIME("application/xml", "xml");
391
- if (!CodeMirror.mimeModes.hasOwnProperty("text/html"))
392
- CodeMirror.defineMIME("text/html", {name: "xml", htmlMode: true});
393
-
394
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/images/button-close-hover.png DELETED
Binary file
assets/images/button-close.png DELETED
Binary file
custom-css-js.php CHANGED
@@ -3,9 +3,9 @@
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: 2.10
7
  * Author: Diana Burduja
8
- * Author URI: https://www.silkypress.com/
9
  * License: GPL2
10
  *
11
  */
@@ -15,13 +15,13 @@ if ( ! defined( 'ABSPATH' ) ) {
15
  }
16
 
17
  if ( ! class_exists( 'CustomCSSandJS' ) ) :
18
- define( 'CCJ_VERSION', '2.10' );
19
  /**
20
  * Main CustomCSSandJS Class
21
  *
22
  * @class CustomCSSandJS
23
  */
24
  final class CustomCSSandJS {
 
25
  public $plugins_url = '';
26
  public $plugin_dir_path = '';
27
  public $plugin_file = __FILE__;
@@ -68,14 +68,10 @@ final class CustomCSSandJS {
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
- $wp_upload_dir = wp_upload_dir();
72
- $this->upload_dir = $wp_upload_dir['basedir'] . '/custom-css-js';
73
- $this->upload_url = $wp_upload_dir['baseurl'] . '/custom-css-js';
74
  if ( is_admin() ) {
75
  include_once( 'includes/admin-screens.php' );
76
- include_once( 'includes/admin-addons.php' );
77
- include_once( 'includes/admin-warnings.php' );
78
- include_once( 'includes/admin-notices.php' );
79
  }
80
 
81
  $this->search_tree = get_option( 'custom-css-js-tree' );
@@ -84,9 +80,8 @@ final class CustomCSSandJS {
84
  return false;
85
  }
86
 
87
- if ( is_null( self::$_instance ) ) {
88
- $this->print_code_actions();
89
- }
90
  }
91
 
92
  /**
@@ -94,15 +89,40 @@ final class CustomCSSandJS {
94
  */
95
  function print_code_actions() {
96
  foreach( $this->search_tree as $_key => $_value ) {
97
- $action = 'wp_';
98
- if ( strpos( $_key, 'admin' ) !== false ) {
99
- $action = 'admin_';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  }
101
- if ( strpos( $_key, 'header' ) !== false ) {
102
- $action .= 'head';
103
- } else {
104
- $action .= 'footer';
105
  }
 
106
  add_action( $action, array( $this, 'print_' . $_key ) );
107
  }
108
  }
@@ -112,7 +132,7 @@ final class CustomCSSandJS {
112
  */
113
  public function __call( $function, $args ) {
114
 
115
- if ( strpos( $function, 'print_' ) === false ) {
116
  return false;
117
  }
118
 
@@ -129,15 +149,15 @@ final class CustomCSSandJS {
129
  }
130
 
131
  // print the `internal` code
132
- if ( strpos( $function, 'internal' ) !== false ) {
133
 
134
  $before = '<!-- start Simple Custom CSS and JS -->' . PHP_EOL;
135
  $after = '<!-- end Simple Custom CSS and JS -->' . PHP_EOL;
136
- if ( strpos( $function, 'css' ) !== false ) {
137
  $before .= '<style type="text/css">' . PHP_EOL;
138
  $after = '</style>' . PHP_EOL . $after;
139
  }
140
- if ( strpos( $function, 'js' ) !== false ) {
141
  $before .= '<script type="text/javascript">' . PHP_EOL;
142
  $after = '</script>' . PHP_EOL . $after;
143
  }
@@ -154,35 +174,24 @@ final class CustomCSSandJS {
154
  }
155
 
156
  // link the `external` code
157
- if ( strpos( $function, 'external' ) !== false) {
158
  $in_footer = false;
159
- if ( strpos( $function, 'footer' ) !== false ) {
160
  $in_footer = true;
161
  }
162
 
163
- if ( strpos( $function, 'js' ) !== false ) {
164
  foreach( $args as $_filename ) {
165
  echo PHP_EOL . "<script type='text/javascript' src='".$this->upload_url . '/' . $_filename."'></script>" . PHP_EOL;
166
  }
167
  }
168
 
169
- if ( strpos( $function, 'css' ) !== false ) {
170
  foreach( $args as $_filename ) {
171
- $shortfilename = preg_replace( '@\.css\?v=.*$@', '', $_filename );
172
- echo PHP_EOL . "<link rel='stylesheet' id='".$shortfilename ."-css' href='".$this->upload_url . '/' . $_filename ."' type='text/css' media='all' />" . PHP_EOL;
173
  }
174
  }
175
  }
176
-
177
- // link the HTML code
178
- if ( strpos( $function, 'html' ) !== false ) {
179
- foreach( $args as $_post_id ) {
180
- $_post_id = str_replace('.html', '', $_post_id);
181
- $post = get_post( $_post_id );
182
- echo $post->post_content . PHP_EOL;
183
- }
184
-
185
- }
186
  }
187
 
188
  /**
@@ -246,6 +255,46 @@ function CustomCSSandJS() {
246
  CustomCSSandJS();
247
 
248
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  /**
250
  * Plugin action link to Settings page
251
  */
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.3
7
  * Author: Diana Burduja
8
+ * Author URI: http://www.silkypress.com/
9
  * License: GPL2
10
  *
11
  */
15
  }
16
 
17
  if ( ! class_exists( 'CustomCSSandJS' ) ) :
 
18
  /**
19
  * Main CustomCSSandJS Class
20
  *
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__;
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' );
80
  return false;
81
  }
82
 
83
+ $this->print_code_actions();
84
+
 
85
  }
86
 
87
  /**
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-header-internal' :
97
+ case 'admin-js-header-internal' :
98
+ $action = 'admin_head';
99
+ break;
100
+
101
+ case 'admin-css-footer-external' :
102
+ case 'admin-js-footer-external' :
103
+ case 'admin-css-footer-internal' :
104
+ case 'admin-js-footer-internal' :
105
+ $action = 'admin_footer';
106
+ break;
107
+
108
+ case 'frontend-css-header-external' :
109
+ case 'frontend-css-footer-external' :
110
+ case 'frontend-css-header-internal' :
111
+ case 'frontend-js-header-internal' :
112
+ case 'frontend-js-header-external' :
113
+ $action = 'wp_head';
114
+ break;
115
+ case 'frontend-css-footer-internal' :
116
+ case 'frontend-js-footer-internal' :
117
+ case 'frontend-js-footer-external' :
118
+ $action = 'wp_footer';
119
+ break;
120
  }
121
+
122
+ if ( $action == '' ) {
123
+ continue;
 
124
  }
125
+
126
  add_action( $action, array( $this, 'print_' . $_key ) );
127
  }
128
  }
132
  */
133
  public function __call( $function, $args ) {
134
 
135
+ if ( strstr( $function, 'print_' ) == false ) {
136
  return false;
137
  }
138
 
149
  }
150
 
151
  // print the `internal` code
152
+ if ( strstr( $function, 'internal' ) ) {
153
 
154
  $before = '<!-- start Simple Custom CSS and JS -->' . PHP_EOL;
155
  $after = '<!-- end Simple Custom CSS and JS -->' . PHP_EOL;
156
+ if ( strstr( $function, 'css' ) ) {
157
  $before .= '<style type="text/css">' . PHP_EOL;
158
  $after = '</style>' . PHP_EOL . $after;
159
  }
160
+ if ( strstr( $function, 'js' ) ) {
161
  $before .= '<script type="text/javascript">' . PHP_EOL;
162
  $after = '</script>' . PHP_EOL . $after;
163
  }
174
  }
175
 
176
  // link the `external` code
177
+ if ( strstr( $function, 'external' ) ) {
178
  $in_footer = false;
179
+ if ( strstr( $function, 'footer' ) ) {
180
  $in_footer = true;
181
  }
182
 
183
+ if ( strstr( $function, 'js' ) ) {
184
  foreach( $args as $_filename ) {
185
  echo PHP_EOL . "<script type='text/javascript' src='".$this->upload_url . '/' . $_filename."'></script>" . PHP_EOL;
186
  }
187
  }
188
 
189
+ if ( strstr( $function, 'css' ) ) {
190
  foreach( $args as $_filename ) {
191
+ echo PHP_EOL . "<link rel='stylesheet' id='".$_filename."-css' href='".$this->upload_url . '/' . $_filename ."' type='text/css' media='all' />" . PHP_EOL;
 
192
  }
193
  }
194
  }
 
 
 
 
 
 
 
 
 
 
195
  }
196
 
197
  /**
255
  CustomCSSandJS();
256
 
257
 
258
+ /**
259
+ * Delete options, posts and files on uninstall
260
+ */
261
+ function custom_css_js_uninstall() {
262
+
263
+ delete_option( 'custom-css-js-tree' );
264
+
265
+ $upload_dir = wp_upload_dir()['basedir'] . '/custom-css-js';
266
+ @array_map( 'unlink', $upload_dir . '/*' );
267
+ @unlink( $upload_dir );
268
+
269
+ $posts = query_posts( 'post_type=custom-css-js' );
270
+
271
+ if ( ! is_array( $posts ) || count( $posts ) == 0 ) {
272
+ return false;
273
+ }
274
+
275
+ foreach ( $posts as $_post ) {
276
+ wp_delete_post( $_post, true );
277
+ }
278
+
279
+ }
280
+ register_uninstall_hook( __FILE__, 'custom_css_js_uninstall' );
281
+
282
+
283
+ /**
284
+ * Create the upload directory on install
285
+ */
286
+ function custom_css_js_install() {
287
+ $upload_dir = wp_upload_dir()['basedir'] . '/custom-css-js';
288
+ wp_mkdir_p( $upload_dir );
289
+
290
+ // Top level blank index.php
291
+ if ( ! file_exists( $upload_path . '/index.php' ) && wp_is_writable( $upload_path ) ) {
292
+ $content = '<?php' . PHP_EOL . '// Silence is golden.';
293
+ @file_put_contents( $upload_path . '/index.php', $content );
294
+ }
295
+ }
296
+ register_activation_hook( __FILE__, 'custom_css_js_install' );
297
+
298
  /**
299
  * Plugin action link to Settings page
300
  */
includes/admin-addons.php DELETED
@@ -1,186 +0,0 @@
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">Available only in <br />Simple Custom CSS and JS Pro</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'), array( $this, 'previews_meta_box_callback' ), 'custom-css-js', 'normal' );
55
- add_meta_box( 'url-rules', __('Apply only on these URLs'), array( $this, 'url_rules_meta_box_callback' ), 'custom-css-js', 'normal' );
56
- add_meta_box( 'revisionsdiv', __('Code Revisions'), 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="Full URL on which to preview the changes ..." disabled="disabled" />
68
- <a class="preview button button-primary button-large" id="ccj-preview">Preview Changes</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'),
83
- 'first-page' => __('First page'),
84
- 'contains' => __('Contains'),
85
- 'not-contains' => __('Not contains'),
86
- 'equal-to' => __('Is equal to'),
87
- 'not-equal-to' => __('Not equal to'),
88
- 'begins-with' => __('Starts with'),
89
- 'ends-by' => __('Ends by'),
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'); ?>"></table>
101
- <?php _e('URL'); ?> <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'); ?>" />&nbsp;
103
- <input class="button button-primary" type="button" id="wplnst-af-new-add" value="<?php _e('Add'); ?>" /></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">Compare</th>
137
- <th>Revision</th>
138
- <th>Author</th>
139
- <th><input type="checkbox" name="delete[]" value="all" id="ccj-delete-checkbox" /> Delete</th>
140
- <th>Restore</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'); ?></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'); ?>" id="revisions-compare-button" />
170
- </td>
171
- <td colspan="2"> &nbsp;</td>
172
- <td>
173
- <input type="button" class="button-secondary" value="<?php esc_attr_e('Delete'); ?>" 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 DELETED
@@ -1,221 +0,0 @@
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 1 : return '1_day';
90
- case 2 : return '2_day';
91
- case 3 : break; //return '3_day';
92
- case 4 : break;
93
- case 5 : break;
94
- case 6 : break;
95
- case 7 : break; // return '7_day';
96
- case 8 : break;
97
- case 9 : break;
98
- case 10 : break;
99
- case 11 : break;
100
- case 12 : 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', 'Dismiss this notice' );
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
@@ -38,49 +38,21 @@ class CustomCSSandJS_Admin {
38
  * Constructor
39
  */
40
  public function __construct() {
41
-
42
- $this->add_functions();
 
 
 
 
 
 
 
 
 
43
 
44
  $this->main = CustomCSSandJS();
45
  }
46
 
47
- /**
48
- * Add actions and filters
49
- */
50
- function add_functions() {
51
-
52
- // Add filters
53
- $filters = array(
54
- 'manage_custom-css-js_posts_columns' => 'manage_custom_posts_columns',
55
- );
56
- foreach( $filters as $_key => $_value ) {
57
- add_filter( $_key, array( $this, $_value ) );
58
- }
59
-
60
- // Add actions
61
- $actions = array(
62
- 'admin_menu' => 'admin_menu',
63
- 'admin_enqueue_scripts' => 'admin_enqueue_scripts',
64
- 'current_screen' => 'current_screen',
65
- 'admin_notices' => 'create_uploads_directory',
66
- 'edit_form_after_title' => 'codemirror_editor',
67
- 'add_meta_boxes' => 'add_meta_boxes',
68
- 'save_post' => 'options_save_meta_box_data',
69
- 'trashed_post' => 'trash_post',
70
- 'untrashed_post' => 'trash_post',
71
- 'admin_post_ccj-autosave' => 'ajax_autosave',
72
- 'wp_loaded' => 'compatibility_shortcoder',
73
- 'wp_ajax_ccj_active_code' => 'wp_ajax_ccj_active_code',
74
- );
75
- foreach( $actions as $_key => $_value ) {
76
- add_action( $_key, array( $this, $_value ) );
77
- }
78
-
79
-
80
- // Add some custom actions
81
- add_action( 'manage_custom-css-js_posts_custom_column', array( $this, 'manage_posts_columns' ), 10, 2 );
82
- }
83
-
84
 
85
  /**
86
  * Add submenu pages
@@ -89,14 +61,9 @@ class CustomCSSandJS_Admin {
89
  $menu_slug = 'edit.php?post_type=custom-css-js';
90
  $submenu_slug = 'post-new.php?post_type=custom-css-js';
91
 
92
- $title = __('Add Custom CSS');
93
- add_submenu_page( $menu_slug, $title, $title, 'manage_options', $submenu_slug .'&language=css');
94
 
95
- $title = __('Add Custom JS');
96
- add_submenu_page( $menu_slug, $title, $title, 'manage_options', $submenu_slug . '&language=js');
97
-
98
- $title = __('Add Custom HTML');
99
- add_submenu_page( $menu_slug, $title, $title, 'manage_options', $submenu_slug . '&language=html');
100
 
101
  remove_submenu_page( $menu_slug, $submenu_slug);
102
  }
@@ -106,88 +73,37 @@ class CustomCSSandJS_Admin {
106
  * Enqueue the scripts and styles
107
  */
108
  public function admin_enqueue_scripts( $hook ) {
109
-
110
- $screen = get_current_screen();
111
-
112
- // Only for custom-css-js post type
113
- if ( $screen->post_type != 'custom-css-js' )
114
  return false;
115
 
116
- // Some handy variables
117
- $a = plugins_url( '/', $this->main->plugin_file ). 'assets';
118
- $cm = $a . '/codemirror';
119
- $v = CCJ_VERSION;
120
-
121
- wp_register_script( 'ccj_admin', $a . '/ccj_admin.js', array('jquery', 'jquery-ui-resizable'), $v, false );
122
- wp_localize_script( 'ccj_admin', 'CCJ', $this->cm_localize() );
123
- wp_enqueue_script( 'ccj_admin' );
124
- wp_enqueue_style( 'ccj_admin', $a . '/ccj_admin.css', array(), $v );
125
-
126
-
127
- // Only for the new/edit Code's page
128
- if ( $hook == 'post-new.php' || $hook == 'post.php' ) {
129
- wp_enqueue_style( 'jquery-ui', 'https://code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css', array(), $v );
130
- wp_enqueue_script( 'ccj_codemirror', $cm . '/codemirror-compressed.js', array( 'jquery' ), $v, false);
131
- wp_enqueue_style( 'ccj_codemirror', $cm . '/codemirror-compressed.css', array(), $v );
132
- wp_enqueue_script( 'ccj_admin_url_rules', $a . '/ccj_admin-url_rules.js', array('jquery'), $v, false );
133
- wp_enqueue_script( 'ccj_scrollbars', $cm . '/addon/scroll/simplescrollbars.js', array('ccj_codemirror'), $v, false );
134
- wp_enqueue_style( 'ccj_scrollbars', $cm . '/addon/scroll/simplescrollbars.css', array(), $v );
135
-
136
- // Add the language modes
137
- $cmm = $cm . '/mode/';
138
- wp_enqueue_script('cm-xml', $cmm . 'xml/xml.js', array('ccj_codemirror'), $v, false);
139
- wp_enqueue_script('cm-js', $cmm . 'javascript/javascript.js', array('ccj_codemirror'), $v, false);
140
- wp_enqueue_script('cm-css', $cmm . 'css/css.js', array('ccj_codemirror'), $v, false);
141
- wp_enqueue_script('cm-htmlmixed', $cmm . 'htmlmixed/htmlmixed.js', array('ccj_codemirror'), $v, false);
142
-
143
- $cma = $cm . '/addon/';
144
- wp_enqueue_script('cm-dialog', $cma . 'dialog.js', array('ccj_codemirror'), $v, false);
145
- wp_enqueue_script('cm-search', $cma . 'search.js', array('ccj_codemirror'), $v, false);
146
- wp_enqueue_script('cm-searchcursor', $cma . 'searchcursor.js',array('ccj_codemirror'), $v, false);
147
- wp_enqueue_script('cm-jump-to-line', $cma . 'jump-to-line.js', array('ccj_codemirror'), $v, false);
148
- wp_enqueue_style('cm-matchesonscrollbar', $cma . 'matchesonscrollbar.css', array(), $v );
149
- wp_enqueue_style('cm-dialog', $cma . 'dialog.css', array(), $v );
150
- wp_enqueue_style('cm-matchesonscrollbar', $cma . 'matchesonscrollbar.css', array(), $v );
151
-
152
-
153
- }
154
- }
155
 
 
 
 
 
 
156
 
157
- /**
158
- * Send variables to the ccj_admin.js script
159
- */
160
- public function cm_localize() {
 
161
 
162
- $vars = array(
163
- 'scroll' => '1'
164
- );
165
 
166
- if ( ! function_exists( 'is_plugin_active' ) ) {
167
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
168
- }
169
 
170
- // Plugins which conflict with the CodeMirror editor
171
- $conflicting_plugins = array(
172
- 'types/wpcf.php',
173
- 'advanced-ads-code-highlighter/advanced-ads-code-highlighter.php',
174
- 'wp-custom-backend-css/wp-custom-backend-css.php',
175
- 'custom-css-whole-site-and-per-post/h5ab-custom-styling.php',
176
- );
177
 
178
- foreach( $conflicting_plugins as $_plugin ) {
179
- if ( is_plugin_active( $_plugin ) ) {
180
- $vars['scroll'] = '0';
181
- }
182
- }
183
 
184
- return $vars;
 
185
  }
186
 
187
  public function add_meta_boxes() {
188
  add_meta_box('custom-code-options', __('Options'), array( $this, 'custom_code_options_meta_box_callback'), 'custom-css-js', 'side', 'low');
189
 
190
- remove_meta_box( 'slugdiv', 'custom-css-js', 'normal' );
191
  }
192
 
193
 
@@ -221,15 +137,14 @@ class CustomCSSandJS_Admin {
221
  return false;
222
  }
223
 
224
- if ( $current_screen->base == 'post' ) {
225
- add_action( 'admin_head', array( $this, 'current_screen_post' ) );
226
- }
227
-
228
- if ( $current_screen->base == 'edit' ) {
229
  add_action( 'admin_head', array( $this, 'current_screen_edit' ) );
230
  }
231
 
232
- wp_deregister_script( 'autosave' );
 
 
233
  }
234
 
235
 
@@ -240,20 +155,73 @@ class CustomCSSandJS_Admin {
240
  function add_new_buttons() {
241
  $current_screen = get_current_screen();
242
 
243
- if ( (isset($current_screen->action ) && $current_screen->action == 'add') || $current_screen->post_type != 'custom-css-js' ) {
244
  return false;
245
  }
246
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  <div class="updated buttons">
248
  <a href="post-new.php?post_type=custom-css-js&language=css" class="custom-btn custom-css-btn">Add CSS code</a>
249
  <a href="post-new.php?post_type=custom-css-js&language=js" class="custom-btn custom-js-btn">Add JS code</a>
250
- <a href="post-new.php?post_type=custom-css-js&language=html" class="custom-btn custom-js-btn">Add HTML code</a>
251
  <!-- a href="post-new.php?post_type=custom-css-js&language=php" class="custom-btn custom-php-btn">Add PHP code</a -->
252
  </div>
253
  <?php
254
  }
255
 
256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
 
258
  /**
259
  * Add new columns in the `edit` screen
@@ -261,7 +229,6 @@ class CustomCSSandJS_Admin {
261
  function manage_custom_posts_columns( $columns ) {
262
  return array(
263
  'cb' => '<input type="checkbox" />',
264
- 'active' => '<span class="ccj-dashicons dashicons dashicons-star-empty" title="Active"></span>',
265
  'type' => 'Type',
266
  'title' => 'Title',
267
  'author' => 'Author',
@@ -282,16 +249,7 @@ class CustomCSSandJS_Admin {
282
  }
283
 
284
  if ( $column == 'modified' ) {
285
- if ( ! isset( $wp_version ) ) {
286
- include( ABSPATH . WPINC . '/version.php' );
287
- }
288
-
289
- if ( version_compare( $wp_version, '4.6', '>=' ) ) {
290
- $m_time = get_the_modified_time( 'G', $post_id );
291
- } else {
292
- $m_time = get_the_modified_time( 'G', false, $post_id );
293
- }
294
-
295
  $time_diff = time() - $m_time;
296
 
297
  if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) {
@@ -302,72 +260,6 @@ class CustomCSSandJS_Admin {
302
 
303
  echo $h_time;
304
  }
305
-
306
- if ( $column == 'active' ) {
307
- $url = wp_nonce_url( admin_url( 'admin-ajax.php?action=ccj_active_code&code_id=' . $post_id ), 'ccj-active-code' );
308
- echo '<a href="' . esc_url( $url ) . '" title="'. __( 'Toggle active' ) . '">';
309
- if ( $this->is_active( $post_id ) ) {
310
- echo '<span class="dashicons dashicons-star-filled" title="The code is active. Click to inactivate it"></span>';
311
- } else {
312
- echo '<span class="dashicons dashicons-star-empty ccj_row" title="The code is inactive. Click to activate it"></span>';
313
- }
314
- echo '</a>';
315
-
316
- }
317
- }
318
-
319
- /**
320
- * Activate/deactivate a code
321
- *
322
- * @return void
323
- */
324
- function wp_ajax_ccj_active_code() {
325
- if ( ! isset( $_GET['code_id'] ) ) die();
326
-
327
- if ( check_admin_referer( 'ccj-active-code' ) ) {
328
- $code_id = absint( $_GET['code_id'] );
329
-
330
- if ( 'custom-css-js' === get_post_type( $code_id ) ) {
331
- $active = get_post_meta($code_id, '_active', true );
332
- if ( $active === false || $active === '' ) {
333
- $active = 'yes';
334
- }
335
- update_post_meta( $code_id, '_active', $active === 'yes' ? 'no' : 'yes' );
336
-
337
- $this->build_search_tree();
338
- }
339
- }
340
-
341
- wp_safe_redirect( wp_get_referer() ? remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'ids' ), wp_get_referer() ) : admin_url( 'edit.php?post_type=custom-css-js' ) );
342
- die();
343
- }
344
-
345
- /**
346
- * Check if a code is active
347
- *
348
- * @return bool
349
- */
350
- function is_active( $post_id ) {
351
- return get_post_meta( $post_id, '_active', true ) !== 'no';
352
- }
353
-
354
- /**
355
- * Reformat the `edit` screen
356
- */
357
- function current_screen_edit() {
358
- ?>
359
- <script type="text/javascript">
360
- /* <![CDATA[ */
361
- jQuery(window).ready(function($){
362
- var h1 = 'Custom Code ';
363
- h1 += '<a href="post-new.php?post_type=custom-css-js&language=css" class="page-title-action">Add CSS Code</a>';
364
- h1 += '<a href="post-new.php?post_type=custom-css-js&language=js" class="page-title-action">Add JS Code</a>';
365
- h1 += '<a href="post-new.php?post_type=custom-css-js&language=html" class="page-title-action">Add HTML Code</a>';
366
- $("#wpbody-content h1").html(h1);
367
- });
368
-
369
- </script>
370
- <?php
371
  }
372
 
373
 
@@ -376,13 +268,10 @@ class CustomCSSandJS_Admin {
376
  * Reformat the `post` screen
377
  */
378
  function current_screen_post() {
379
-
380
- $this->remove_unallowed_metaboxes();
381
 
382
  if ( isset( $_GET['post'] ) ) {
383
  $action = 'Edit';
384
- $language = $this->get_options( $_GET['post'] );
385
- $language = $language['language'];
386
  } else {
387
  $action = 'Add';
388
  $language = isset( $_GET['language'] ) ? $_GET['language'] : 'css';
@@ -390,62 +279,22 @@ class CustomCSSandJS_Admin {
390
 
391
  $title = $action . ' ' . strtoupper( $language ) . ' code';
392
 
393
- if ( $action == 'Edit' ) {
394
- $title .= ' <a href="post-new.php?post_type=custom-css-js&language=css" class="page-title-action">Add CSS Code</a> ';
395
- $title .= '<a href="post-new.php?post_type=custom-css-js&language=js" class="page-title-action">Add JS Code</a>';
396
- $title .= '<a href="post-new.php?post_type=custom-css-js&language=html" class="page-title-action">Add HTML Code</a>';
397
- }
398
-
399
  ?>
400
  <script type="text/javascript">
401
  /* <![CDATA[ */
402
  jQuery(window).ready(function($){
403
- $("#wpbody-content h1").html('<?php echo $title; ?>');
404
  $("#message.updated.notice").html('<p>Code updated</p>');
405
-
406
- var from_top = -$("#normal-sortables").height();
407
- if ( from_top != 0 ) {
408
- $(".ccj_only_premium-first").css('margin-top', from_top.toString() + 'px' );
409
- } else {
410
- $(".ccj_only_premium-first").hide();
411
- }
412
-
413
- /*
414
- $("#normal-sortables").mouseenter(function() {
415
- $(".ccj_only_premium-first div").css('display', 'block');
416
- }).mouseleave(function() {
417
- $(".ccj_only_premium-first div").css('display', 'none');
418
- });
419
- */
420
  });
421
  /* ]]> */
422
  </script>
 
 
 
423
  <?php
424
  }
425
 
426
 
427
- /**
428
- * Remove unallowed metaboxes from custom-css-js edit page
429
- *
430
- * Use the custom-css-js-meta-boxes filter to add/remove allowed metaboxdes on the page
431
- */
432
- function remove_unallowed_metaboxes() {
433
- global $wp_meta_boxes;
434
-
435
- $allowed = array( 'submitdiv', 'custom-code-options' );
436
-
437
- $allowed = apply_filters( 'custom-css-js-meta-boxes', $allowed );
438
-
439
- foreach( $wp_meta_boxes['custom-css-js']['side'] as $_priority => $_boxes ) {
440
- foreach( $_boxes as $_key => $_value ) {
441
- if ( ! in_array( $_key, $allowed ) ) {
442
- unset( $wp_meta_boxes['custom-css-js']['side'][$_priority][$_key] );
443
- }
444
- }
445
- }
446
- }
447
-
448
-
449
 
450
  /**
451
  * Add the codemirror editor in the `post` screen
@@ -463,44 +312,18 @@ class CustomCSSandJS_Admin {
463
  } else {
464
  $new_post = false;
465
  if ( ! isset( $_GET['post'] ) ) $_GET['post'] = $post->id;
466
- $language = $this->get_options( $_GET['post'] );
467
- $language = $language['language'];
468
  }
469
 
470
  switch ( $language ) {
471
  case 'js' :
472
  if ( $new_post ) {
473
- $post->post_content = '/* Add your JavaScript code here.
474
-
475
- If you are using the jQuery library, then don\'t forget to wrap your code inside jQuery.ready() as follows:
476
-
477
- jQuery(document).ready(function( $ ){
478
- // Your code in here
479
- });
480
-
481
- End of comment */ ' . PHP_EOL . PHP_EOL;
482
  }
483
- $code_mirror_mode = 'text/javascript';
484
  $code_mirror_before = '<script type="text/javascript">';
485
  $code_mirror_after = '</script>';
486
  break;
487
- case 'html' :
488
- if ( $new_post ) {
489
- $post->post_content = '<!-- Add HTML code to the header or the footer.
490
-
491
- For example, you can use the following code for loading the jQuery library from Google CDN:
492
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
493
-
494
- or the following one for loading the Bootstrap library from MaxCDN:
495
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
496
-
497
- -- End of the comment --> ' . PHP_EOL . PHP_EOL;
498
- }
499
- $code_mirror_mode = 'html';
500
- $code_mirror_before = '';
501
- $code_mirror_after = '';
502
- break;
503
-
504
  case 'php' :
505
  if ( $new_post ) {
506
  $post->post_content = '/* The following will be executed as if it were written in functions.php. */' . PHP_EOL . PHP_EOL;
@@ -512,34 +335,74 @@ or the following one for loading the Bootstrap library from MaxCDN:
512
  break;
513
  default :
514
  if ( $new_post ) {
515
- $post->post_content = '/* Add your CSS code here.
516
-
517
- For example:
518
- .example {
519
- color: red;
520
- }
521
-
522
- For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp
523
-
524
- End of comment */ ' . PHP_EOL . PHP_EOL;
525
-
526
  }
527
- $code_mirror_mode = 'text/css';
528
  $code_mirror_before = '<style type="text/css">';
529
  $code_mirror_after = '</style>';
530
 
531
  }
532
 
533
  ?>
534
- <form style="position: relative; margin-top: .5em;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
535
 
536
- <div class="code-mirror-before"><div><?php echo htmlentities( $code_mirror_before );?></div></div>
537
- <textarea class="wp-editor-area" id="content" mode="<?php echo htmlentities($code_mirror_mode); ?>" name="content"><?php echo htmlentities($post->post_content); ?></textarea>
538
- <div class="code-mirror-after"><div><?php echo htmlentities( $code_mirror_after );?></div></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
539
 
540
- <input type="hidden" id="update-post_<?php echo $post->ID ?>" value="<?php echo wp_create_nonce('update-post_'. $post->ID ); ?>" />
 
 
541
  </form>
542
- <?php
 
 
 
 
 
 
 
543
 
544
  }
545
 
@@ -551,253 +414,99 @@ End of comment */ ' . PHP_EOL . PHP_EOL;
551
  function custom_code_options_meta_box_callback( $post ) {
552
 
553
  $options = $this->get_options( $post->ID );
554
- if ( ! isset($options['preprocessor'] ) )
555
- $options['preprocessor'] = 'none';
556
-
557
 
558
  if ( isset( $_GET['language'] ) ) {
559
  $options['language'] = $_GET['language'];
560
  }
561
 
562
- $meta = $this->get_options_meta();
563
- if ( $options['language'] == 'html' ) {
564
- $meta = $this->get_options_meta_html();
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  }
566
 
 
 
 
567
 
568
- wp_nonce_field( 'options_save_meta_box_data', 'custom-css-js_meta_box_nonce' );
 
 
569
 
 
570
  ?>
 
 
 
 
 
 
 
 
 
 
571
  <div class="options_meta_box">
572
- <?php
 
 
 
 
573
 
574
- $output = '';
575
-
576
- foreach( $meta as $_key => $a ) {
577
- $close_div = false;
578
-
579
- if ( ($_key == 'preprocessor' && $options['language'] == 'css') ||
580
- ($_key == 'linking' && $options['language'] == 'html') ||
581
- $_key == 'priority' ||
582
- $_key == 'minify' ) {
583
- $close_div = true;
584
- $output .= '<div class="ccj_opaque">';
585
- }
586
 
587
- // Don't show Pre-processors for JavaScript Codes
588
- if ( $options['language'] == 'js' && $_key == 'preprocessor' ) {
589
- continue;
590
- }
 
591
 
592
- $output .= '<h3>' . $a['title'] . '</h3>' . PHP_EOL;
593
 
594
- $output .= $this->render_input( $_key, $a, $options );
 
 
 
 
 
595
 
596
- if ( $close_div ) {
597
- $output .= '</div>';
 
 
598
  }
599
 
 
600
  }
601
 
602
- echo $output;
603
-
604
  ?>
 
 
 
605
 
606
- <input type="hidden" name="custom_code_language" value="<?php echo $options['language']; ?>" />
607
-
608
- <div style="clear: both;"></div>
609
 
610
- </div>
611
 
612
- <div class="ccj_only_premium ccj_only_premium-right">
613
- <div>
614
- <a href="https://www.silkypress.com/simple-custom-css-js-pro/?utm_source=wordpress&utm_campaign=ccj_free&utm_medium=banner" target="_blank">Available only in <br />Simple Custom CSS and JS Pro</a>
615
- </div>
616
  </div>
617
 
 
618
 
619
- <?php
620
- }
621
-
622
-
623
- /**
624
- * Get an array with all the information for building the code's options
625
- */
626
- function get_options_meta() {
627
- $options = array(
628
- 'linking' => array(
629
- 'title' => 'Linking type',
630
- 'type' => 'radio',
631
- 'default' => 'internal',
632
- 'values' => array(
633
- 'external' => array(
634
- 'title' => 'External File',
635
- 'dashicon' => 'media-code',
636
- ),
637
- 'internal' => array(
638
- 'title' => 'Internal',
639
- 'dashicon' => 'editor-alignleft',
640
- ),
641
- ),
642
- ),
643
- 'type' => array(
644
- 'title' => 'Where on page',
645
- 'type' => 'radio',
646
- 'default' => 'header',
647
- 'values' => array(
648
- 'header' => array(
649
- 'title' => 'Header',
650
- 'dashicon' => 'arrow-up-alt2',
651
- ),
652
- 'footer' => array(
653
- 'title' => 'Footer',
654
- 'dashicon' => 'arrow-down-alt2',
655
- ),
656
- ),
657
- ),
658
- 'side' => array(
659
- 'title' => 'Where in site',
660
- 'type' => 'radio',
661
- 'default' => 'frontend',
662
- 'values' => array(
663
- 'frontend' => array(
664
- 'title' => 'In Frontend',
665
- 'dashicon' => 'tagcloud',
666
- ),
667
- 'admin' => array(
668
- 'title' => 'In Admin',
669
- 'dashicon' => 'id',
670
- ),
671
- ),
672
- ),
673
- 'preprocessor' => array(
674
- 'title' => 'CSS Preprocessor',
675
- 'type' => 'radio',
676
- 'default' => 'none',
677
- 'values' => array(
678
- 'none' => array(
679
- 'title' => 'None',
680
- ),
681
- 'less' => array(
682
- 'title' => 'Less',
683
- ),
684
- 'sass' => array(
685
- 'title' => 'SASS (only SCSS syntax)',
686
- ),
687
- ),
688
- 'disabled' => true,
689
- ),
690
- 'minify' => array(
691
- 'title' => 'Minify the code',
692
- 'type' => 'checkbox',
693
- 'default' => false,
694
- 'dashicon' => 'editor-contract',
695
- 'disabled' => true,
696
- ),
697
- 'priority' => array(
698
- 'title' => 'Priority',
699
- 'type' => 'select',
700
- 'default' => 5,
701
- 'dashicon' => 'sort',
702
- 'values' => array(
703
- 1 => '1 (highest)',
704
- 2 => '2',
705
- 3 => '3',
706
- 4 => '4',
707
- 5 => '5',
708
- 6 => '6',
709
- 7 => '7',
710
- 8 => '8',
711
- 9 => '9',
712
- 10 => '10 (lowest)',
713
- ),
714
- 'disabled' => true,
715
- ),
716
- );
717
-
718
- return $options;
719
- }
720
-
721
-
722
- /**
723
- * Get an array with all the information for building the code's options
724
- */
725
- function get_options_meta_html() {
726
- $options = array(
727
- 'type' => array(
728
- 'title' => 'Where on page',
729
- 'type' => 'radio',
730
- 'default' => 'header',
731
- 'values' => array(
732
- 'header' => array(
733
- 'title' => 'Header',
734
- 'dashicon' => 'arrow-up-alt2',
735
- ),
736
- 'footer' => array(
737
- 'title' => 'Footer',
738
- 'dashicon' => 'arrow-down-alt2',
739
- ),
740
- ),
741
- ),
742
- 'side' => array(
743
- 'title' => 'Where in site',
744
- 'type' => 'radio',
745
- 'default' => 'frontend',
746
- 'values' => array(
747
- 'frontend' => array(
748
- 'title' => 'In Frontend',
749
- 'dashicon' => 'tagcloud',
750
- ),
751
- 'admin' => array(
752
- 'title' => 'In Admin',
753
- 'dashicon' => 'id',
754
- ),
755
- ),
756
- ),
757
- 'linking' => array(
758
- 'title' => 'On which device',
759
- 'type' => 'radio',
760
- 'default' => 'both',
761
- 'dashicon' => '',
762
- 'values' => array(
763
- 'desktop' => array(
764
- 'title' => 'Desktop',
765
- 'dashicon' => 'desktop',
766
- ),
767
- 'mobile' => array(
768
- 'title' => 'Mobile',
769
- 'dashicon' => 'smartphone',
770
- ),
771
- 'both' => array(
772
- 'title' => 'Both',
773
- 'dashicon' => 'tablet',
774
- ),
775
- ),
776
- 'disabled' => true,
777
- ),
778
- 'priority' => array(
779
- 'title' => 'Priority',
780
- 'type' => 'select',
781
- 'default' => 5,
782
- 'dashicon' => 'sort',
783
- 'values' => array(
784
- 1 => '1 (highest)',
785
- 2 => '2',
786
- 3 => '3',
787
- 4 => '4',
788
- 5 => '5',
789
- 6 => '6',
790
- 7 => '7',
791
- 8 => '8',
792
- 9 => '9',
793
- 10 => '10 (lowest)',
794
- ),
795
- 'disabled' => true,
796
- ),
797
 
798
- );
799
 
800
- return $options;
801
  }
802
 
803
 
@@ -806,6 +515,7 @@ End of comment */ ' . PHP_EOL . PHP_EOL;
806
  */
807
  function options_save_meta_box_data( $post_id ) {
808
 
 
809
  // The usual checks
810
  if ( ! isset( $_POST['custom-css-js_meta_box_nonce'] ) ) {
811
  return;
@@ -832,27 +542,12 @@ End of comment */ ' . PHP_EOL . PHP_EOL;
832
  'language' => 'css',
833
  );
834
 
835
- if ( $_POST['custom_code_language'] == 'html' ) {
836
- $defaults = array(
837
- 'type' => 'header',
838
- 'linking' => 'both',
839
- 'side' => 'frontend',
840
- 'language' => 'html',
841
- 'priority' => 5,
842
- );
843
- }
844
-
845
  foreach( $defaults as $_field => $_default ) {
846
  $options[ $_field ] = isset( $_POST['custom_code_'.$_field] ) ? $_POST['custom_code_'.$_field] : $_default;
847
  }
848
 
849
  update_post_meta( $post_id, 'options', $options );
850
 
851
- if ( $options['language'] == 'html' ) {
852
- $this->build_search_tree();
853
- return;
854
- }
855
-
856
 
857
  // Save the Custom Code in a file in `wp-content/uploads/custom-css-js`
858
  if ( $options['linking'] == 'internal' ) {
@@ -864,10 +559,8 @@ End of comment */ ' . PHP_EOL . PHP_EOL;
864
  $after = '</style>' . PHP_EOL . $after;
865
  }
866
  if ( $options['language'] == 'js' ) {
867
- if ( ! preg_match( '/<script\b[^>]*>([\s\S]*?)<\/script>/im', $_POST['content'] ) ) {
868
  $before .= '<script type="text/javascript">' . PHP_EOL;
869
  $after = '</script>' . PHP_EOL . $after;
870
- }
871
  }
872
  }
873
 
@@ -881,93 +574,34 @@ End of comment */ ' . PHP_EOL . PHP_EOL;
881
  $file_name = $post_id . '.' . $options['language'];
882
  $file_content = $before . stripslashes($_POST['content']) . $after;
883
  @file_put_contents( $this->main->upload_dir . '/' . $file_name , $file_content );
884
- }
885
-
886
-
887
- $this->build_search_tree();
888
- }
889
-
890
- /**
891
- * Create the custom-css-js dir in uploads directory
892
- *
893
- * Show a message if the directory is not writable
894
- *
895
- * Create an empty index.php file inside
896
- */
897
- function create_uploads_directory() {
898
- $current_screen = get_current_screen();
899
-
900
- // Check if we are editing a custom-css-js post
901
- if ( $current_screen->base != 'post' || $current_screen->post_type != 'custom-css-js' ) {
902
- return false;
903
  }
904
 
905
- $dir = $this->main->upload_dir;
906
 
907
- // Create the dir if it doesn't exist
908
- if ( ! file_exists( $dir ) ) {
909
- wp_mkdir_p( $dir );
910
- }
911
-
912
- // Show a message if it couldn't create the dir
913
- if ( ! file_exists( $dir ) ) : ?>
914
- <div class="notice notice-error is-dismissible">
915
- <p>The <b>custom-css-js</b> directory could not be created</p>
916
- <p>Please run the following commands in order to make the directory: <br /><strong>mkdir <?php echo $dir; ?>; </strong><br /><strong>chmod 777 <?php echo $dir; ?>;</strong></p>
917
- </div>
918
- <?php return; endif;
919
-
920
-
921
- // Show a message if the dir is not writable
922
- if ( ! wp_is_writable( $dir ) ) : ?>
923
- <div class="notice notice-error is-dismissible">
924
- <p>The <b><?php echo $dir; ?></b> directory is not writable, therefore the CSS and JS files cannot be saved.</p>
925
- <p>Please run the following command to make the directory writable:<br /><strong>chmod 777 <?php echo $dir; ?> </strong></p>
926
- </div>
927
- <?php return; endif;
928
-
929
-
930
- // Write a blank index.php
931
- if ( ! file_exists( $dir. '/index.php' ) ) {
932
- $content = '<?php' . PHP_EOL . '// Silence is golden.';
933
- @file_put_contents( $dir. '/index.php', $content );
934
- }
935
  }
936
 
937
 
938
  /**
939
  * Build a tree where you can quickly find the needed custom-css-js posts
940
- *
941
- * @return void
942
  */
943
  private function build_search_tree() {
944
 
945
- // Retrieve all the custom-css-js codes
946
- $posts = query_posts( 'post_type=custom-css-js&post_status=publish&nopaging=true' );
 
 
 
947
 
948
  $tree = array();
949
  foreach ( $posts as $_post ) {
950
- if ( ! $this->is_active( $_post->ID ) ) {
951
- continue;
952
- }
953
-
954
  $options = $this->get_options( $_post->ID );
955
 
956
- // Get the branch name, example: frontend-css-header-external
957
  $tree_branch = $options['side'] . '-' .$options['language'] . '-' . $options['type'] . '-' . $options['linking'];
958
 
959
- $filename = $_post->ID . '.' . $options['language'];
960
-
961
- if ( $options['linking'] == 'external' ) {
962
- $filename .= '?v=' . rand(1, 10000);
963
- }
964
-
965
- // Add the code file to the tree branch
966
- $tree[ $tree_branch ][] = $filename;
967
 
968
  }
969
 
970
- // Save the tree in the database
971
  update_option( 'custom-css-js-tree', $tree );
972
  }
973
 
@@ -978,76 +612,6 @@ End of comment */ ' . PHP_EOL . PHP_EOL;
978
  $this->build_search_tree( );
979
  }
980
 
981
-
982
- /**
983
- * Compatibility with `shortcoder` plugin
984
- */
985
- function compatibility_shortcoder() {
986
- ob_start( array( $this, 'compatibility_shortcoder_html' ) );
987
- }
988
- function compatibility_shortcoder_html( $html ) {
989
- if ( strpos( $html, 'QTags.addButton' ) === false ) return $html;
990
- if ( strpos( $html, 'codemirror/codemirror-compressed.js' ) === false ) return $html;
991
-
992
- return str_replace( 'QTags.addButton', '// QTags.addButton', $html );
993
- }
994
-
995
- /**
996
- * Render the checkboxes, radios, selects and inputs
997
- */
998
- function render_input( $_key, $a, $options ) {
999
- $name = 'custom_code_' . $_key;
1000
- $output = '';
1001
-
1002
- // Show radio type options
1003
- if ( $a['type'] === 'radio' ) {
1004
- $output .= '<div class="radio-group">' . PHP_EOL;
1005
- foreach( $a['values'] as $__key => $__value ) {
1006
- $selected = '';
1007
- $id = $name . '-' . $__key;
1008
- $dashicons = isset($__value['dashicon'] ) ? 'dashicons-before dashicons-' . $__value['dashicon'] : '';
1009
- if ( isset( $a['disabled'] ) && $a['disabled'] ) {
1010
- $selected = ' disabled="disabled"';
1011
- }
1012
- $selected .= ( $__key == $options[$_key] ) ? ' checked="checked" ' : '';
1013
- $output .= '<input type="radio" '. $selected.'value="'.$__key.'" name="'.$name.'" id="'.$id.'">' . PHP_EOL;
1014
- $output .= '<label class="'.$dashicons.'" for="'.$id.'"> '.$__value['title'].'</label><br />' . PHP_EOL;
1015
- }
1016
- $output .= '</div>' . PHP_EOL;
1017
- }
1018
-
1019
- // Show checkbox type options
1020
- if ( $a['type'] == 'checkbox' ) {
1021
- $dashicons = isset($a['dashicon'] ) ? 'dashicons-before dashicons-' . $a['dashicon'] : '';
1022
- $selected = ( isset($options[$_key]) && $options[$_key] == '1') ? ' checked="checked" ' : '';
1023
- if ( isset( $a['disabled'] ) && $a['disabled'] ) {
1024
- $selected .= ' disabled="disabled"';
1025
- }
1026
- $output .= '<div class="radio-group">' . PHP_EOL;
1027
- $output .= '<input type="checkbox" '.$selected.' value="1" name="'.$name.'" id="'.$name.'">' . PHP_EOL;
1028
- $output .= '<label class="'.$dashicons.'" for="'.$name.'"> '.$a['title'].'</label>';
1029
- $output .= '</div>' . PHP_EOL;
1030
- }
1031
-
1032
-
1033
- // Show select type options
1034
- if ( $a['type'] == 'select' ) {
1035
- $output .= '<div class="radio-group">' . PHP_EOL;
1036
- $output .= '<select name="'.$name.'" id="'.$name.'">' . PHP_EOL;
1037
- foreach( $a['values'] as $__key => $__value ) {
1038
- $selected = ( isset($options[$_key]) && $options[$_key] == $__key) ? ' selected="selected"' : '';
1039
- $output .= '<option value="'.$__key.'"'.$selected.'>' . $__value . '</option>' . PHP_EOL;
1040
- }
1041
- $output .= '</select>' . PHP_EOL;
1042
- $output .= '</div>' . PHP_EOL;
1043
- }
1044
-
1045
-
1046
- return $output;
1047
-
1048
- }
1049
-
1050
-
1051
  }
1052
 
1053
  return new CustomCSSandJS_Admin();
38
  * Constructor
39
  */
40
  public function __construct() {
41
+ add_action( 'admin_menu', array( $this, 'admin_menu' ) );
42
+ add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
43
+ add_action( 'current_screen', array( $this, 'current_screen' ) );
44
+ add_action( 'admin_notices', array( $this, 'add_new_buttons' ) );
45
+ add_filter( 'manage_custom-css-js_posts_columns', array( $this, 'manage_custom_posts_columns' ) );
46
+ add_action( 'manage_custom-css-js_posts_custom_column', array( $this, 'manage_posts_columns' ), 10, 2 );
47
+ add_action( 'edit_form_after_title', array( $this, 'codemirror_editor' ) );
48
+ add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
49
+ add_action( 'save_post', array( $this, 'options_save_meta_box_data' ) );
50
+ add_action( 'trashed_post', array( $this, 'trash_post') );
51
+ add_action( 'untrashed_post', array( $this, 'trash_post') );
52
 
53
  $this->main = CustomCSSandJS();
54
  }
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
  /**
58
  * Add submenu pages
61
  $menu_slug = 'edit.php?post_type=custom-css-js';
62
  $submenu_slug = 'post-new.php?post_type=custom-css-js';
63
 
64
+ add_submenu_page( $menu_slug, __('Add Custom CSS'), __('Add Custom CSS'), 'manage_options', $submenu_slug .'&language=css');
 
65
 
66
+ add_submenu_page( $menu_slug, __('Add Custom JS'), __('Add Custom JS'), 'manage_options', $submenu_slug . '&language=js');
 
 
 
 
67
 
68
  remove_submenu_page( $menu_slug, $submenu_slug);
69
  }
73
  * Enqueue the scripts and styles
74
  */
75
  public function admin_enqueue_scripts( $hook ) {
76
+ if ( $hook != 'post-new.php' && $hook != 'post.php' )
 
 
 
 
77
  return false;
78
 
79
+ $cm = plugins_url( '/', $this->main->plugin_file ). 'assets/codemirror/';
80
+ $version = '1.0';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
+ wp_register_script( 'codemirror', $cm . 'lib/codemirror.js', array( 'jquery' ), $version, false);
83
+ wp_register_script( 'mode_js', $cm . 'mode/javascript/javascript.js', array( 'codemirror' ), $version, false);
84
+ wp_register_script( 'mode_css', $cm . 'mode/css/css.js', array( 'codemirror' ), $version, false);
85
+ wp_register_script( 'mode_html', $cm . 'mode/htmlmixed/htmlmixed.js', array( 'codemirror' ), $version, false);
86
+ wp_register_script( 'addon_matchbrackets', $cm . 'addon/edit/matchbrackets.js', array( 'codemirror' ), $version, false );
87
 
88
+ wp_enqueue_script( 'codemirror' );
89
+ wp_enqueue_script( 'mode_js' );
90
+ wp_enqueue_script( 'mode_css' );
91
+ wp_enqueue_script( 'mode_html' );
92
+ wp_enqueue_script( 'addon_matchbrackets' );
93
 
 
 
 
94
 
 
 
 
95
 
96
+ wp_register_style( 'codemirror', $cm . 'lib/codemirror.css' , array(), $version );
97
+ //wp_register_style( 'codemirror_theme', $cm . 'theme/3024-night.css' , array(), $version );
 
 
 
 
 
98
 
 
 
 
 
 
99
 
100
+ wp_enqueue_style( 'codemirror' );
101
+ wp_enqueue_style( 'codemirror_theme' );
102
  }
103
 
104
  public function add_meta_boxes() {
105
  add_meta_box('custom-code-options', __('Options'), array( $this, 'custom_code_options_meta_box_callback'), 'custom-css-js', 'side', 'low');
106
 
 
107
  }
108
 
109
 
137
  return false;
138
  }
139
 
140
+ if ( $current_screen->base == 'edit' ) {
141
+ wp_deregister_script( 'autosave' );
 
 
 
142
  add_action( 'admin_head', array( $this, 'current_screen_edit' ) );
143
  }
144
 
145
+ if ( $current_screen->base == 'post' ) {
146
+ add_action( 'admin_head', array( $this, 'current_screen_post' ) );
147
+ }
148
  }
149
 
150
 
155
  function add_new_buttons() {
156
  $current_screen = get_current_screen();
157
 
158
+ if ( $current_screen->base != 'edit' || $current_screen->post_type != 'custom-css-js' ) {
159
  return false;
160
  }
161
  ?>
162
+ <style type="text/css">
163
+ .updated.buttons {
164
+ border: none;
165
+ background-color: transparent;
166
+ box-shadow: none;
167
+ padding: 0;
168
+ margin: 15px 0 15px !important;
169
+ }
170
+ .custom-btn {
171
+ background: #0c73b8;
172
+ border-radius: 2px;
173
+ color: #ffffff;
174
+ font-size: 17px;
175
+ padding: 10px 20px 10px 20px !important;
176
+ text-decoration: none;
177
+ }
178
+ .custom-btn:hover {
179
+ color: #fff;
180
+ background: #2eaadd;
181
+ text-decoration: none;
182
+ }
183
+ .custom-js-btn { background: #e4a228; }
184
+ .custom-js-btn:hover { background: #eebf31; }
185
+ .custom-php-btn { background: #e45126; }
186
+ .custom-php-btn:hover { background: #f6652c; }
187
+ </style>
188
  <div class="updated buttons">
189
  <a href="post-new.php?post_type=custom-css-js&language=css" class="custom-btn custom-css-btn">Add CSS code</a>
190
  <a href="post-new.php?post_type=custom-css-js&language=js" class="custom-btn custom-js-btn">Add JS code</a>
 
191
  <!-- a href="post-new.php?post_type=custom-css-js&language=php" class="custom-btn custom-php-btn">Add PHP code</a -->
192
  </div>
193
  <?php
194
  }
195
 
196
 
197
+ /**
198
+ * Reformat the `edit` screen
199
+ */
200
+ function current_screen_edit() {
201
+ ?>
202
+ <style type="text/css">
203
+ h1 .page-title-action { display: none; }
204
+ .inline.hide-if-no-js{ display: none; }
205
+ .view-switch { display: none; }
206
+ #modified { width: 140px; }
207
+ #type.manage-column { width: 50px; }
208
+ .language {
209
+ background: #0c73b8;
210
+ border-radius: 2px;
211
+ color: #ffffff;
212
+ font-size: 12px;
213
+ padding: 5px 10px !important;
214
+ text-decoration: none;
215
+ }
216
+ .language-js { background: #e4a228; }
217
+ .language-php { background: #e45126; }
218
+ .type.column-type, .check-column { vertical-align: middle !important; }
219
+
220
+ </style>
221
+ <?php
222
+ }
223
+
224
+
225
 
226
  /**
227
  * Add new columns in the `edit` screen
229
  function manage_custom_posts_columns( $columns ) {
230
  return array(
231
  'cb' => '<input type="checkbox" />',
 
232
  'type' => 'Type',
233
  'title' => 'Title',
234
  'author' => 'Author',
249
  }
250
 
251
  if ( $column == 'modified' ) {
252
+ $m_time = get_the_modified_time( 'G', true, get_post( $post_id ) );
 
 
 
 
 
 
 
 
 
253
  $time_diff = time() - $m_time;
254
 
255
  if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) {
260
 
261
  echo $h_time;
262
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  }
264
 
265
 
268
  * Reformat the `post` screen
269
  */
270
  function current_screen_post() {
 
 
271
 
272
  if ( isset( $_GET['post'] ) ) {
273
  $action = 'Edit';
274
+ $language = $this->get_options( $_GET['post'] )['language'];
 
275
  } else {
276
  $action = 'Add';
277
  $language = isset( $_GET['language'] ) ? $_GET['language'] : 'css';
279
 
280
  $title = $action . ' ' . strtoupper( $language ) . ' code';
281
 
 
 
 
 
 
 
282
  ?>
283
  <script type="text/javascript">
284
  /* <![CDATA[ */
285
  jQuery(window).ready(function($){
286
+ $("#wpbody-content h1").text('<?php echo $title; ?>');
287
  $("#message.updated.notice").html('<p>Code updated</p>');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
288
  });
289
  /* ]]> */
290
  </script>
291
+ <style type="text/css">
292
+ .update.notice a { display: none; }
293
+ </style>
294
  <?php
295
  }
296
 
297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
 
299
  /**
300
  * Add the codemirror editor in the `post` screen
312
  } else {
313
  $new_post = false;
314
  if ( ! isset( $_GET['post'] ) ) $_GET['post'] = $post->id;
315
+ $language = $this->get_options( $_GET['post'] )['language'];
 
316
  }
317
 
318
  switch ( $language ) {
319
  case 'js' :
320
  if ( $new_post ) {
321
+ $post->post_content = '/* Your code goes here */ ' . PHP_EOL . PHP_EOL;
 
 
 
 
 
 
 
 
322
  }
323
+ $code_mirror_mode = 'javascript';
324
  $code_mirror_before = '<script type="text/javascript">';
325
  $code_mirror_after = '</script>';
326
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  case 'php' :
328
  if ( $new_post ) {
329
  $post->post_content = '/* The following will be executed as if it were written in functions.php. */' . PHP_EOL . PHP_EOL;
335
  break;
336
  default :
337
  if ( $new_post ) {
338
+ $post->post_content .= '.example {' . PHP_EOL;
339
+ $post->post_content .= "\t" . 'color: #eee;' . PHP_EOL;
340
+ $post->post_content .= '}' . PHP_EOL . PHP_EOL;
 
 
 
 
 
 
 
 
341
  }
342
+ $code_mirror_mode = 'css';
343
  $code_mirror_before = '<style type="text/css">';
344
  $code_mirror_after = '</style>';
345
 
346
  }
347
 
348
  ?>
349
+ <style type="text/css">
350
+ .page-title-action { display: none; }
351
+ #minor-publishing { display: none; }
352
+ #post-body #normal-sortables { min-height: 0px; }
353
+ .CodeMirror {
354
+ height: 384px;
355
+ margin-top: 0px;
356
+ border: 1px solid #ddd;
357
+ border-bottom: none;
358
+ border-top: none;
359
+ }
360
+ .CodeMirror pre { padding-left: 7px; line-height: 1.25; }
361
+
362
+ .CodeMirrorBefore {
363
+ margin-top: 15px;
364
+ border: 1px solid #ddd;
365
+ border-bottom: none;
366
+ background-color: #f7f7f7;
367
+ }
368
+ .CodeMirrorBefore div {
369
+ color: #8F8F8F;
370
+ margin-left: 29px;
371
+ border-left: 1px solid #ddd;
372
+ padding: 3px 8px;
373
+ background-color: #fff;
374
+ }
375
 
376
+ .CodeMirrorAfter {
377
+ border: 1px solid #ddd;
378
+ border-top: none;
379
+ background-color: #f7f7f7;
380
+ }
381
+ .CodeMirrorAfter div {
382
+ color: #8F8F8F;
383
+ margin-left: 29px;
384
+ border-left: 1px solid #ddd;
385
+ padding: 3px 8px;
386
+ background-color: #fff;
387
+ }
388
+ .cm-s-default .cm-atom { color: #549d18; }
389
+ .cm-s-default .cm-property { color: #b62625; }
390
+ .cm-s-default .cm-qualifier, .cm-s-default .cm-tag { color: #4731E4; }
391
+ </style>
392
+ <form style="position: relative; margin-top: .5em;">
393
 
394
+ <div class="CodeMirrorBefore"><div><?php echo htmlentities( $code_mirror_before );?></div></div>
395
+ <textarea id="custom-code" name="content"><?php echo $post->post_content; ?></textarea>
396
+ <div class="CodeMirrorAfter"><div><?php echo htmlentities( $code_mirror_after );?></div></div>
397
  </form>
398
+ <script>
399
+ var editor = CodeMirror.fromTextArea(document.getElementById("custom-code"), {
400
+ lineNumbers: true,
401
+ mode: "<?php echo $code_mirror_mode; ?>",
402
+ matchBrackets: true
403
+ });
404
+ </script>
405
+ <?php
406
 
407
  }
408
 
414
  function custom_code_options_meta_box_callback( $post ) {
415
 
416
  $options = $this->get_options( $post->ID );
 
 
 
417
 
418
  if ( isset( $_GET['language'] ) ) {
419
  $options['language'] = $_GET['language'];
420
  }
421
 
422
+ $selected = array(
423
+ 'header' => '',
424
+ 'footer' => '',
425
+ 'internal' => '',
426
+ 'external' => '',
427
+ 'priority' => 5,
428
+ 'frontend' => '',
429
+ 'admin' => '',
430
+ );
431
+
432
+ if ( isset( $options['priority'] ) ) {
433
+ $selected['priority'] = $options['priority'];
434
+ }
435
+
436
+ if ( isset( $options['type'] ) ) {
437
+ $selected[ $options['type'] ] = ' checked="checked"';
438
  }
439
 
440
+ if ( isset( $options['linking'] ) ) {
441
+ $selected[ $options['linking'] ] = ' checked="checked"';
442
+ }
443
 
444
+ if ( isset( $options['side'] ) ) {
445
+ $selected[ $options['side'] ] = ' checked="checked"';
446
+ }
447
 
448
+ wp_nonce_field( 'options_save_meta_box_data', 'custom-css-js_meta_box_nonce' );
449
  ?>
450
+ <style type="text/css">
451
+ .radio-group input { margin-top: 1px; }
452
+ .radio-group label { padding: 2px 0; }
453
+ .options_meta_box h3 { margin-top: 10px !important; }
454
+ .radio-group { line-height: 30px; padding-left: 10px; }
455
+ .radio-group .dashicons-before:before { margin: 7px 3px 0 3px; }
456
+ .options_meta_box select { margin-left: 10px; }
457
+ </style>
458
+
459
+
460
  <div class="options_meta_box">
461
+ <h3>Linking type</h3>
462
+ <div class="radio-group">
463
+ <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 />
464
+ <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 />
465
+ </div>
466
 
 
 
 
 
 
 
 
 
 
 
 
 
467
 
468
+ <h3>Where</h3>
469
+ <div class="radio-group">
470
+ <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 />
471
+ <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 />
472
+ </div>
473
 
 
474
 
475
+ <?php /*
476
+ <h3>Priority</h3>
477
+ <select name="custom_code_priority">
478
+ <?php
479
+
480
+ $priorities = array( 1 => '1 highest', '2', '3', '4', '5 default', '6', '7', '8', '9', '10 lowest');
481
 
482
+ foreach( $priorities as $_key => $_value ) {
483
+ $checked = '';
484
+ if ( $_key == $selected['priority'] ) {
485
+ $checked = 'selected="selected" ';
486
  }
487
 
488
+ echo "\t" . '<option value="'.$_key.'"'.$checked .'>'.$_value.'</option>' . PHP_EOL;
489
  }
490
 
 
 
491
  ?>
492
+ </select>
493
+ */ ?>
494
+ <input type="hidden" name="custom_code_priority" value="5" />
495
 
 
 
 
496
 
 
497
 
498
+ <h3>Where</h3>
499
+ <div class="radio-group">
500
+ <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 />
501
+ <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 />
502
  </div>
503
 
504
+ <input type="hidden" name="custom_code_language" value="<?php echo $options['language']; ?>" />
505
 
506
+ <div style="clear: both;"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507
 
 
508
 
509
+ <?php
510
  }
511
 
512
 
515
  */
516
  function options_save_meta_box_data( $post_id ) {
517
 
518
+
519
  // The usual checks
520
  if ( ! isset( $_POST['custom-css-js_meta_box_nonce'] ) ) {
521
  return;
542
  'language' => 'css',
543
  );
544
 
 
 
 
 
 
 
 
 
 
 
545
  foreach( $defaults as $_field => $_default ) {
546
  $options[ $_field ] = isset( $_POST['custom_code_'.$_field] ) ? $_POST['custom_code_'.$_field] : $_default;
547
  }
548
 
549
  update_post_meta( $post_id, 'options', $options );
550
 
 
 
 
 
 
551
 
552
  // Save the Custom Code in a file in `wp-content/uploads/custom-css-js`
553
  if ( $options['linking'] == 'internal' ) {
559
  $after = '</style>' . PHP_EOL . $after;
560
  }
561
  if ( $options['language'] == 'js' ) {
 
562
  $before .= '<script type="text/javascript">' . PHP_EOL;
563
  $after = '</script>' . PHP_EOL . $after;
 
564
  }
565
  }
566
 
574
  $file_name = $post_id . '.' . $options['language'];
575
  $file_content = $before . stripslashes($_POST['content']) . $after;
576
  @file_put_contents( $this->main->upload_dir . '/' . $file_name , $file_content );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
577
  }
578
 
 
579
 
580
+ $this->build_search_tree();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581
  }
582
 
583
 
584
  /**
585
  * Build a tree where you can quickly find the needed custom-css-js posts
 
 
586
  */
587
  private function build_search_tree() {
588
 
589
+ $posts = query_posts( 'post_type=custom-css-js&post_status=publish' );
590
+
591
+ if ( ! is_array( $posts ) || count( $posts ) == 0 ) {
592
+ return false;
593
+ }
594
 
595
  $tree = array();
596
  foreach ( $posts as $_post ) {
 
 
 
 
597
  $options = $this->get_options( $_post->ID );
598
 
 
599
  $tree_branch = $options['side'] . '-' .$options['language'] . '-' . $options['type'] . '-' . $options['linking'];
600
 
601
+ $tree[ $tree_branch ][] = $_post->ID . '.' . $options['language'] ;
 
 
 
 
 
 
 
602
 
603
  }
604
 
 
605
  update_option( 'custom-css-js-tree', $tree );
606
  }
607
 
612
  $this->build_search_tree( );
613
  }
614
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
615
  }
616
 
617
  return new CustomCSSandJS_Admin();
includes/admin-warnings.php DELETED
@@ -1,100 +0,0 @@
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 = __( '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="https://www.silkypress.com/wp-content/uploads/2016/08/ccj_qtranslate_compatibility.png" target="_blank">this screenshot</a> for more details on how to do that.' );
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();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -5,8 +5,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=diana
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.7
9
- Stable tag: 2.10
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
12
 
@@ -25,6 +25,8 @@ Customize your WordPress site's appearance by easily adding custom CSS and JS co
25
  * Keep your changes also when you change the theme
26
 
27
  = Frequently Asked Questions =
 
 
28
 
29
  * **What if I want to add multiple external CSS codes?**
30
  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
@@ -48,7 +50,7 @@ Yes.
48
  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.
49
 
50
  * **Can I use a CSS preprocesor like LESS or Sass?**
51
- 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.
52
 
53
  * **Can I upload images for use with my CSS?**
54
  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:
@@ -100,9 +102,6 @@ PHP >= 5.3
100
  * Internet Explorer - version 8 and up
101
  * Opera - version 9 and up
102
 
103
- = Small incompatibilities =
104
- * 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.
105
-
106
  == Screenshots ==
107
 
108
  1. Manage Custom Codes
@@ -111,85 +110,8 @@ PHP >= 5.3
111
 
112
  3. Add/Edit CSS
113
 
114
- $. Add/Edit HTML
115
-
116
  == Changelog ==
117
 
118
- = 2.10 =
119
- * 02/05/2016
120
- * Feature: circumvent external file caching by adding a GET parameter
121
- * Add special offer for Simple Custom CSS and JS pro
122
-
123
- = 2.9 =
124
- * 12/05/2016
125
- * Compatibility with WP4.7. The "custom HTML code" was not showing up anymore
126
-
127
- = 2.8 =
128
- * 10/09/2016
129
- * Feature: add search within the editor accessible with Ctrl+F
130
- * Feature: make the inactive rows opaque
131
-
132
- = 2.7 =
133
- * 09/04/2016
134
- * Fix: there was a space in the htmlmixed.%20js url
135
- * Feature: make the editor resizable
136
-
137
- = 2.6 =
138
- * 08/31/2016
139
- * Feature: add HTML code
140
- * Fix: add htmlentities when showing them in the editor
141
- * Feature: when adding a code, show more explanations as comments
142
-
143
- = 2.5 =
144
- * 08/25/2016
145
- * Fix: compatibility with other plugins that interfere with the CodeMirror editor
146
-
147
- = 2.4 =
148
- * 08/01/2016
149
- * Add the "Add CSS Code" and "Add JS Code" buttons next to the page title
150
- * Compatibility with WP 4.6: the "Modified" column in the Codes listing was empty
151
-
152
- = 2.3 =
153
- * 06/22/2016
154
- * Add the includes/admin-notices.php and includes/admin-addons.php
155
- * Feature: change the editor's scrollbar so it can be caught with the mouse
156
-
157
- = 2.2 =
158
- * 06/22/2016
159
- * Check compatibility WordPress 4.5.3
160
- * Add special offer for Simple Custom CSS and JS pro
161
-
162
- = 2.1 =
163
- * 04/24/2016
164
- * Fix: on multisite installs have to create the custom-css-js folder in the upload dir for each site
165
- * Fix: the `deactivate code` star wasn't working when first time clicked
166
- * Fix: In the add/edit Code page filter which meta boxes are allowed
167
- * Fix: If the custom-css-js folder is not created of is not writable, issue an admin notice.
168
-
169
- = 2.0 =
170
- * 04/11/2016
171
- * Feature: enable/disable codes
172
- * Feature: add a GET parameter at the end of external files in order to over circumvent caching
173
- * Fix: don't add the "<script>" tag from the code if already present.
174
-
175
- = 1.6 =
176
- * 03/26/2016
177
- * Fix: the number of codes were limited because query_posts is automatically inserting a limit
178
-
179
- = 1.5 =
180
- * 10/03/2016
181
- * Fix: solved a conflict with the `shortcoder` plugin.
182
-
183
- = 1.4 =
184
- * 04/01/2016
185
- * Tweak: Do not enqueue scripts unless we are editing the a custom-css-js type post.
186
- * Fix: The register_activation_hook was throwing a notice
187
- * Fix: add window.onload when initializing the CodeMirror editor
188
- * Tweak: Differentiated the option names for "Where on page" and "Where in site"
189
- * Fix: set the correct language modes to CodeMirror object
190
- * Tweak: remove the `slug` metabox
191
- * Tweak: use the compressed version of CodeMirror
192
-
193
  = 1.3 =
194
  * 27/12/2015
195
  * Tweak: changed the submenus to "Add Custom CSS" and "Add Custom JS" instead of "New Custom Code"
@@ -199,11 +121,11 @@ $. Add/Edit HTML
199
 
200
  = 1.2 =
201
  * 14/12/2015
202
- * Fix: when a code was sent into Trash it still wasn't shown on the website
203
 
204
  = 1.1 =
205
  * 10/12/2015
206
- * 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.
207
  * Tweak: Save all the codes in files in order to save on database queries
208
  * Tweak: Rewrite the readme.txt in the form of FAQ for better explanations
209
 
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.3
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
12
 
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
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:
102
  * Internet Explorer - version 8 and up
103
  * Opera - version 9 and up
104
 
 
 
 
105
  == Screenshots ==
106
 
107
  1. Manage Custom Codes
110
 
111
  3. Add/Edit CSS
112
 
 
 
113
  == Changelog ==
114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  = 1.3 =
116
  * 27/12/2015
117
  * Tweak: changed the submenus to "Add Custom CSS" and "Add Custom JS" instead of "New Custom Code"
121
 
122
  = 1.2 =
123
  * 14/12/2015
124
+ * Fix: when a code was sent into Trash it wasn still shown on the website
125
 
126
  = 1.1 =
127
  * 10/12/2015
128
+ * 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.
129
  * Tweak: Save all the codes in files in order to save on database queries
130
  * Tweak: Rewrite the readme.txt in the form of FAQ for better explanations
131
 
screenshot-1.jpg DELETED
Binary file
screenshot-2.jpg DELETED
Binary file
screenshot-3.jpg DELETED
Binary file
screenshot-4.jpg DELETED
Binary file