-
-
Notifications
You must be signed in to change notification settings - Fork 575
/
Copy pathunix_formatting.js
1432 lines (1397 loc) · 54.7 KB
/
unix_formatting.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**@license
* __ _____ ________ __
* / // _ /__ __ _____ ___ __ _/__ ___/__ ___ ______ __ __ __ ___ / /
* __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ /
* / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__
* \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/
* \/ /____/
* http://terminal.jcubic.pl
*
* This is example of how to create custom formatter for jQuery Terminal
*
* Copyright (c) 2014-2025 Jakub Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*
* Includes: node-ansiparser, MIT license, Copyright (c) 2014 Joerg Breitbart
*
* Last Update in jQuery Terminal 2.23.0
*
*/
/* global define */
(function(factory) {
var root;
if (typeof window !== 'undefined') {
root = window;
} else if (typeof self !== 'undefined') {
root = self;
} else if (typeof global !== 'undefined') {
root = global;
} else {
throw new Error('Unknow context');
}
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
// istanbul ignore next
define(['jquery', 'jquery.terminal'], factory);
} else if (typeof module === 'object' && module.exports) {
// Node/CommonJS
module.exports = function(root, jQuery) {
if (jQuery === undefined) {
// require('jQuery') returns a factory that requires window to
// build a jQuery instance, we normalize how we use modules
// that require this pattern but the window provided is a noop
// if it's defined (how jquery works)
if (typeof window !== 'undefined') {
jQuery = require('jquery');
} else {
jQuery = require('jquery')(root);
}
}
if (!jQuery.fn.terminal) {
if (typeof window !== 'undefined') {
require('jquery.terminal');
} else {
require('jquery.terminal')(jQuery);
}
}
factory(jQuery);
return jQuery;
};
} else {
// Browser
// istanbul ignore next
factory(root.jQuery);
}
})(function($) {
var DEBUG = true;
/* eslint-disable */
/* istanbul ignore next */
function warn(str) {
if ('warn' in console) {
console.warn(str);
}
}
// node-ansiparser
// The MIT License (MIT)
// Copyright (c) 2014 Joerg Breitbart
/* istanbul ignore next */
var AnsiParser = (function () {
'use strict';
/**
* range function for numbers [a, .., b-1]
*
* @param {number} a
* @param {number} b
* @return {Array}
*/
function r(a, b) {
var c = b - a;
var arr = new Array(c);
while (c--)
arr[c] = --b;
return arr;
}
/**
* Add a transition to the transition table.
*
* @param table - table to add transition
* @param {number} inp - input character code
* @param {number} state - current state
* @param {number=} action - action to be taken
* @param {number=} next - next state
*/
function add(table, inp, state, action, next) {
table[state<<8|inp] = ((action | 0) << 4) | ((next === undefined) ? state : next);
}
/**
* Add multiple transitions to the transition table.
*
* @param table - table to add transition
* @param {Array} inps - array of input character codes
* @param {number} state - current state
* @param {number=} action - action to be taken
* @param {number=} next - next state
*/
function add_list(table, inps, state, action, next) {
for (var i=0; i<inps.length; i++)
add(table, inps[i], state, action, next);
}
/** global definition of printables and executables */
var PRINTABLES = r(0x20, 0x7f);
var EXECUTABLES = r(0x00, 0x18);
EXECUTABLES.push(0x19);
EXECUTABLES.push(0x1E);
EXECUTABLES.concat(r(0x1c, 0x20));
/* meaning of state and action indices
var STATES = [
'GROUND',
'ESCAPE',
'ESCAPE_INTERMEDIATE',
'CSI_ENTRY',
'CSI_PARAM',
'CSI_INTERMEDIATE',
'CSI_IGNORE',
'SOS_PM_APC_STRING',
'OSC_STRING',
'DCS_ENTRY',
'DCS_PARAM',
'DCS_IGNORE',
'DCS_INTERMEDIATE',
'DCS_PASSTHROUGH'
];
var ACTIONS = [
'ignore',
'error',
'print',
'execute',
'osc_start',
'osc_put',
'osc_end',
'csi_dispatch',
'param',
'collect',
'esc_dispatch',
'clear',
'dcs_hook',
'dcs_put',
'dcs_unhook'
];
*/
/**
* create the standard transition table - used by all parser instances
*
* table[state << 8 | character code] = action << 4 | next state
*
* - states are indices of STATES (0 to 13)
* - control character codes defined from 0 to 159 (C0 and C1)
* - actions are indices of ACTIONS (0 to 14)
* - any higher character than 159 is handled by the 'error' action
*/
var TRANSITION_TABLE = (function() {
var t = new Uint8Array(4095);
// table with default transition [any] --> [error, GROUND]
for (var state=0; state<14; ++state) {
for (var code=0; code<160; ++code) {
t[state<<8|code] = 16;
}
}
// apply transitions
// printables
add_list(t, PRINTABLES, 0, 2);
// global anywhere rules
for (state=0; state<14; ++state) {
add_list(t, [0x18, 0x1a, 0x99, 0x9a], state, 3, 0);
add_list(t, r(0x80, 0x90), state, 3, 0);
add_list(t, r(0x90, 0x98), state, 3, 0);
add(t, 0x9c, state, 0, 0); // ST as terminator
add(t, 0x1b, state, 11, 1); // ESC
add(t, 0x9d, state, 4, 8); // OSC
add_list(t, [0x98, 0x9e, 0x9f], state, 0, 7);
add(t, 0x9b, state, 11, 3); // CSI
add(t, 0x90, state, 11, 9); // DCS
}
// rules for executables and 7f
add_list(t, EXECUTABLES, 0, 3);
add_list(t, EXECUTABLES, 1, 3);
add(t, 0x7f, 1);
add_list(t, EXECUTABLES, 8);
add_list(t, EXECUTABLES, 3, 3);
add(t, 0x7f, 3);
add_list(t, EXECUTABLES, 4, 3);
add(t, 0x7f, 4);
add_list(t, EXECUTABLES, 6, 3);
add_list(t, EXECUTABLES, 5, 3);
add(t, 0x7f, 5);
add_list(t, EXECUTABLES, 2, 3);
add(t, 0x7f, 2);
// osc
add(t, 0x5d, 1, 4, 8);
add_list(t, PRINTABLES, 8, 5);
add(t, 0x7f, 8, 5);
add_list(t, [0x9c, 0x1b, 0x18, 0x1a, 0x07], 8, 6, 0);
add_list(t, r(0x1c, 0x20), 8, 0);
// sos/pm/apc does nothing
add_list(t, [0x58, 0x5e, 0x5f], 1, 0, 7);
add_list(t, PRINTABLES, 7);
add_list(t, EXECUTABLES, 7);
add(t, 0x9c, 7, 0, 0);
// csi entries
add(t, 0x5b, 1, 11, 3);
add_list(t, r(0x40, 0x7f), 3, 7, 0);
add_list(t, r(0x30, 0x3a), 3, 8, 4);
add(t, 0x3b, 3, 8, 4);
add_list(t, [0x3c, 0x3d, 0x3e, 0x3f], 3, 9, 4);
add_list(t, r(0x30, 0x3a), 4, 8);
add(t, 0x3b, 4, 8);
add_list(t, r(0x40, 0x7f), 4, 7, 0);
add_list(t, [0x3a, 0x3c, 0x3d, 0x3e, 0x3f], 4, 0, 6);
add_list(t, r(0x20, 0x40), 6);
add(t, 0x7f, 6);
add_list(t, r(0x40, 0x7f), 6, 0, 0);
add(t, 0x3a, 3, 0, 6);
add_list(t, r(0x20, 0x30), 3, 9, 5);
add_list(t, r(0x20, 0x30), 5, 9);
add_list(t, r(0x30, 0x40), 5, 0, 6);
add_list(t, r(0x40, 0x7f), 5, 7, 0);
add_list(t, r(0x20, 0x30), 4, 9, 5);
// esc_intermediate
add_list(t, r(0x20, 0x30), 1, 9, 2);
add_list(t, r(0x20, 0x30), 2, 9);
add_list(t, r(0x30, 0x7f), 2, 10, 0);
add_list(t, r(0x30, 0x50), 1, 10, 0);
add_list(t, [0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x59, 0x5a, 0x5c], 1, 10, 0);
add_list(t, r(0x60, 0x7f), 1, 10, 0);
// dcs entry
add(t, 0x50, 1, 11, 9);
add_list(t, EXECUTABLES, 9);
add(t, 0x7f, 9);
add_list(t, r(0x1c, 0x20), 9);
add_list(t, r(0x20, 0x30), 9, 9, 12);
add(t, 0x3a, 9, 0, 11);
add_list(t, r(0x30, 0x3a), 9, 8, 10);
add(t, 0x3b, 9, 8, 10);
add_list(t, [0x3c, 0x3d, 0x3e, 0x3f], 9, 9, 10);
add_list(t, EXECUTABLES, 11);
add_list(t, r(0x20, 0x80), 11);
add_list(t, r(0x1c, 0x20), 11);
add_list(t, EXECUTABLES, 10);
add(t, 0x7f, 10);
add_list(t, r(0x1c, 0x20), 10);
add_list(t, r(0x30, 0x3a), 10, 8);
add(t, 0x3b, 10, 8);
add_list(t, [0x3a, 0x3c, 0x3d, 0x3e, 0x3f], 10, 0, 11);
add_list(t, r(0x20, 0x30), 10, 9, 12);
add_list(t, EXECUTABLES, 12);
add(t, 0x7f, 12);
add_list(t, r(0x1c, 0x20), 12);
add_list(t, r(0x20, 0x30), 12, 9);
add_list(t, r(0x30, 0x40), 12, 0, 11);
add_list(t, r(0x40, 0x7f), 12, 12, 13);
add_list(t, r(0x40, 0x7f), 10, 12, 13);
add_list(t, r(0x40, 0x7f), 9, 12, 13);
add_list(t, EXECUTABLES, 13, 13);
add_list(t, PRINTABLES, 13, 13);
add(t, 0x7f, 13);
add_list(t, [0x1b, 0x9c], 13, 14, 0);
return t;
})();
/**
* AnsiParser - Parser for ANSI terminal escape sequences.
*
* @param {Object=} terminal emulation object
* @constructor
*/
function AnsiParser(terminal) {
this.initial_state = 0; // 'GROUND' is default
this.current_state = this.initial_state|0;
// clone global transition table
this.transitions = new Uint8Array(4095);
this.transitions.set(TRANSITION_TABLE);
// global non pushable buffers for multiple parse invocations
this.osc = '';
this.params = [0];
this.collected = '';
// back reference to terminal
this.term = terminal || {};
var instructions = ['inst_p', 'inst_o', 'inst_x', 'inst_c',
'inst_e', 'inst_H', 'inst_P', 'inst_U', 'inst_E'];
for (var i=0; i<instructions.length; ++i)
if (!(instructions[i] in this.term))
this.term[instructions[i]] = function() {};
}
/**
* Reset the parser.
*/
AnsiParser.prototype.reset = function() {
this.current_state = this.initial_state|0;
this.osc = '';
this.params = [0];
this.collected = '';
};
/**
* Parse string s.
* @param {string} s
*/
AnsiParser.prototype.parse = function(s) {
var code = 0,
transition = 0,
error = false,
current_state = this.current_state|0;
// local buffers
var printed = -1;
var dcs = -1;
var osc = this.osc;
var collected = this.collected;
var params = this.params;
// process input string
for (var i=0, l=s.length|0; i<l; ++i) {
code = s.charCodeAt(i)|0;
// shortcut for most chars (print action)
if (current_state===0 && code>0x1f && code<0x80) {
printed = (printed + 1) ? printed|0: i|0;
continue;
}
transition = ((code < 0xa0) ? (this.transitions[(current_state<<8|code)|0])|0 : 16)|0;
switch ((transition >> 4)|0) {
case 2: // print
printed = (printed + 1) ? printed|0: i|0;
break;
case 3: // execute
if (printed + 1) {
this.term.inst_p(s.substring(printed, i));
printed = -1;
}
this.term.inst_x(String.fromCharCode(code));
break;
case 0: // ignore
// handle leftover print and dcs chars
if (printed + 1) {
this.term.inst_p(s.substring(printed, i));
printed = -1;
} else if (dcs + 1) {
this.term.inst_P(s.substring(dcs, i));
dcs = -1;
}
break;
case 1: // error
// handle unicode chars in write buffers w'o state change
if (code > 0x9f) {
switch (current_state) {
case 0: // GROUND -> add char to print string
printed = (!(printed+1)) ? i|0 : printed|0;
break;
case 8: // OSC_STRING -> add char to osc string
osc += String.fromCharCode(code);
transition = (transition | 8)|0;
break;
case 6: // CSI_IGNORE -> ignore char
transition = (transition | 6)|0;
break;
case 11: // DCS_IGNORE -> ignore char
transition = (transition | 11)|0;
break;
case 13: // DCS_PASSTHROUGH -> add char to dcs
if (!(dcs + 1))
dcs = i|0;
transition = (transition | 13)|0;
break;
default: // real error
error = true;
}
} else { // real error
error = true;
}
if (error) {
if (this.term.inst_E(
{
pos: i, // position in parse string
character: String.fromCharCode(code), // wrong character
state: current_state, // in state
print: printed, // print buffer
dcs: dcs, // dcs buffer
osc: osc, // osc buffer
collect: collected, // collect buffer
params: params // params buffer
})) {
return;
}
error = false;
}
break;
case 7: // csi_dispatch
this.term.inst_c(collected, params, String.fromCharCode(code));
break;
case 8: // param
if (code === 0x3b)
params.push(0);
else
params[params.length-1] = (params[params.length-1] * 10 + code - 48)|0;
break;
case 9: // collect
collected += String.fromCharCode(code);
break;
case 10: // esc_dispatch
this.term.inst_e(collected, String.fromCharCode(code));
break;
case 11: // clear
if (printed + 1) {
this.term.inst_p(s.substring(printed, i));
printed = -1;
}
osc = '';
params = [0];
collected = '';
dcs = -1;
break;
case 12: // dcs_hook
this.term.inst_H(collected, params, String.fromCharCode(code));
break;
case 13: // dcs_put
if (!(dcs + 1))
dcs = i|0;
break;
case 14: // dcs_unhook
if (dcs + 1) {
this.term.inst_P(s.substring(dcs, i));
}
this.term.inst_U();
if (code === 0x1b)
transition = (transition | 1)|0;
osc = '';
params = [0];
collected = '';
dcs = -1;
break;
case 4: // osc_start
if (~printed) {
this.term.inst_p(s.substring(printed, i));
printed = -1;
}
osc = '';
break;
case 5: // osc_put
osc += s.charAt(i);
break;
case 6: // osc_end
if (osc && code !== 0x18 && code !== 0x1a)
this.term.inst_o(osc);
if (code === 0x1b)
transition = (transition | 1)|0;
osc = '';
params = [0];
collected = '';
dcs = -1;
break;
}
current_state = (transition & 15)|0;
}
// push leftover pushable buffers to terminal
if (!current_state && (printed + 1)) {
this.term.inst_p(s.substring(printed));
} else if (current_state===13 && (dcs + 1)) {
this.term.inst_P(s.substring(dcs));
}
// save non pushable buffers
this.osc = osc;
this.collected = collected;
this.params = params;
// save state
this.current_state = current_state|0;
};
return AnsiParser;
})();
/* eslint-enable */
// ---------------------------------------------------------------------
$.terminal.AnsiParser = AnsiParser;
// ---------------------------------------------------------------------
// we match characters and html entities because command line escape brackets
// echo don't, when writing formatter always process html entitites so it work
// for cmd plugin as well for echo
var chr = '[^\\x08]|[\\r\\n]{2}|&[^;]+;';
var backspace_re = new RegExp('^(' + chr + ')?\\x08');
var overtyping_re = new RegExp('^(?:(' + chr + ')?\\x08(_|\\1)|' +
'(_)\\x08(' + chr + '))');
var new_line_re = /^(\r\n|\n\r|\r|\n)/;
var clear_line_re = /[^\r\n]+\r\x1B\[K/g;
// ---------------------------------------------------------------------
function length(string) {
return $.terminal.length(string);
}
// ---------------------------------------------------------------------
function get_settings(options) {
var unixFormatting = {
escapeBrackets: false,
ansiParser: {},
position: 0,
ansiArt: false
};
if (options) {
if (options.unixFormatting) {
$.extend(unixFormatting, options.unixFormatting);
}
if ('position' in options) {
unixFormatting.position = options.position;
}
if ('unixFormattingEscapeBrackets' in options) {
unixFormatting.escapeBrackets = options.unixFormattingEscapeBrackets;
}
if ('ansiParser' in options) {
unixFormatting.ansiParser = options.ansiParser;
}
}
return unixFormatting;
}
// ---------------------------------------------------------------------
// :: Replace overtyping (from man) formatting with terminal formatting
// ---------------------------------------------------------------------
$.terminal.overtyping = function overtyping(string, options) {
string = $.terminal.unescape_brackets(string);
var settings = get_settings(options);
var removed_chars = [];
var new_position;
var char_count = 0;
var backspaces = [];
function replace(string, position) {
var result = '';
var push = 0;
var start;
char_count = 0;
function correct_position(start, match, rep_string) {
// logic taken from $.terminal.tracking_replace
if (start < position) {
var last_index = start + length(match);
if (last_index < position) {
// It's after the replacement, move it
new_position = Math.max(
0,
new_position +
length(rep_string) -
length(match)
);
} else {
// It's *in* the replacement, put it just after
new_position += length(rep_string) - (position - start);
}
}
}
for (var i = 0; i < string.length; ++i) {
var partial = string.substring(i);
var match = partial.match(backspace_re);
var removed_char = removed_chars[0];
if (match) {
// we remove backspace and character or html entity before it
// but we keep it in removed array so we can put it back
// when we have caritage return or line feed
if (match[1]) {
start = i - match[1].length + push;
removed_chars.push({
index: start,
string: match[1],
overtyping: partial.match(overtyping_re)
});
correct_position(start, match[0], '', 1);
}
if (char_count < 0) {
char_count = 0;
}
backspaces = backspaces.map(function(b) {
return b - 1;
});
backspaces.push(start);
return result + partial.replace(backspace_re, '');
} else if (partial.match(new_line_re)) {
// if newline we need to add at the end all characters
// removed by backspace but only if there are no more
// other characters than backspaces added between
// backspaces and newline
if (removed_chars.length) {
var chars = removed_chars;
removed_chars = [];
chars.reverse().forEach(function(char) {
if (i > char.index) {
if (--char_count <= 0) {
correct_position(char.index, '', char.string, 2);
result += char.string;
}
} else {
removed_chars.unshift(char);
}
});
}
var m = partial.match(new_line_re);
result += m[1];
i += m[1].length - 1;
} else {
if (backspaces.length) {
var backspace = backspaces[0];
if (i === backspace) {
backspaces.shift();
}
if (i >= backspace) {
char_count++;
}
}
if (removed_chars.length) {
// if we are in index of removed character we check if the
// character is the same it will be bold or if removed char
// or char at index is underscore then it will
// be terminal formatting with underscore
if (i > removed_char.index && removed_char.overtyping) {
removed_chars.shift();
correct_position(removed_char.index, '', removed_char.string);
// if we add special character we need to correct
// next push to removed_char array
push++;
// we use special characters instead of terminal
// formatting so it's easier to proccess when removing
// backspaces
if (removed_char.string === string[i]) {
result += string[i] + '\uFFF1';
continue;
} else if (removed_char.string === '_' ||
string[i] === '_') {
var chr;
if (removed_char.string === '_') {
chr = string[i];
} else {
chr = removed_char.string;
}
result += chr + '\uFFF2';
continue;
}
}
}
result += string[i];
}
}
return result;
}
var break_next = false;
// loop until not more backspaces
new_position = settings.position;
// we need to clear line \x1b[K in overtyping because it need to be before
// overtyping and from_ansi need to be called after so it escape stuff
// between Escape Code and cmd will have escaped formatting typed by user
var rep = $.terminal.tracking_replace(string, clear_line_re, '', new_position);
string = rep[0];
new_position = rep[1];
while (string.match(/\x08/) || removed_chars.length) {
string = replace(string, new_position);
if (break_next) {
break;
}
if (!string.match(/\x08/)) {
// we break the loop so if removed_chars still chave items
// we don't have infite loop
break_next = true;
}
}
function format(string, chr, style) {
var re = new RegExp('((:?.' + chr + ')+)', 'g');
return string.replace(re, function(_, string) {
var re = new RegExp(chr, 'g');
return '[[' + style + ']' + string.replace(re, '') + ']';
});
}
// replace special characters with terminal formatting
string = format(string, '\uFFF1', 'b;#fff;');
string = format(string, '\uFFF2', 'u;;');
if (settings.escapeBrackets) {
string = $.terminal.escape_brackets(string);
}
if (options && typeof options.position === 'number') {
return [string, new_position];
}
return string;
};
var CHARSETS = {};
// taken from xterm.js MIT License
// see https://github.com/xtermjs/xterm.js for more details
CHARSETS['0'] = {
'`': '\u25c6', // '◆'
'a': '\u2592', // '▒'
'b': '\u2409', // (HT)
'c': '\u240c', // (FF)
'd': '\u240d', // (CR)
'e': '\u240a', // (LF)
'f': '\u00b0', // '°'
'g': '\u00b1', // '±'
'h': '\u2424', // (NL)
'i': '\u240b', // (VT)
'j': '\u2518', // '┘'
'k': '\u2510', // '┐'
'l': '\u250c', // '┌'
'm': '\u2514', // '└'
'n': '\u253c', // '┼'
'o': '\u23ba', // '⎺'
'p': '\u23bb', // '⎻'
'q': '\u2500', // '─'
'r': '\u23bc', // '⎼'
's': '\u23bd', // '⎽'
't': '\u251c', // '├'
'u': '\u2524', // '┤'
'v': '\u2534', // '┴'
'w': '\u252c', // '┬'
'x': '\u2502', // '│'
'y': '\u2264', // '≤'
'z': '\u2265', // '≥'
'{': '\u03c0', // 'π'
'|': '\u2260', // '≠'
'}': '\u00a3', // '£'
'~': '\u00b7' // '·'
};
/**
* British character set
* ESC (A
* Reference: http://vt100.net/docs/vt220-rm/table2-5.html
*/
CHARSETS['A'] = {
'#': '£'
};
/**
* United States character set
* ESC (B
*/
CHARSETS['B'] = null;
/**
* Dutch character set
* ESC (4
* Reference: http://vt100.net/docs/vt220-rm/table2-6.html
*/
CHARSETS['4'] = {
'#': '£',
'@': '¾',
'[': 'ij',
'\\': '½',
']': '|',
'{': '¨',
'|': 'f',
'}': '¼',
'~': '´'
};
/**
* Finnish character set
* ESC (C or ESC (5
* Reference: http://vt100.net/docs/vt220-rm/table2-7.html
*/
CHARSETS['C'] = CHARSETS['5'] = {
'[': 'Ä',
'\\': 'Ö',
']': 'Å',
'^': 'Ü',
'`': 'é',
'{': 'ä',
'|': 'ö',
'}': 'å',
'~': 'ü'
};
/**
* French character set
* ESC (R
* Reference: http://vt100.net/docs/vt220-rm/table2-8.html
*/
CHARSETS['R'] = {
'#': '£',
'@': 'à',
'[': '°',
'\\': 'ç',
']': '§',
'{': 'é',
'|': 'ù',
'}': 'è',
'~': '¨'
};
/**
* French Canadian character set
* ESC (Q
* Reference: http://vt100.net/docs/vt220-rm/table2-9.html
*/
CHARSETS['Q'] = {
'@': 'à',
'[': 'â',
'\\': 'ç',
']': 'ê',
'^': 'î',
'`': 'ô',
'{': 'é',
'|': 'ù',
'}': 'è',
'~': 'û'
};
/**
* German character set
* ESC (K
* Reference: http://vt100.net/docs/vt220-rm/table2-10.html
*/
CHARSETS['K'] = {
'@': '§',
'[': 'Ä',
'\\': 'Ö',
']': 'Ü',
'{': 'ä',
'|': 'ö',
'}': 'ü',
'~': 'ß'
};
/**
* Italian character set
* ESC (Y
* Reference: http://vt100.net/docs/vt220-rm/table2-11.html
*/
CHARSETS['Y'] = {
'#': '£',
'@': '§',
'[': '°',
'\\': 'ç',
']': 'é',
'`': 'ù',
'{': 'à',
'|': 'ò',
'}': 'è',
'~': 'ì'
};
/**
* Norwegian/Danish character set
* ESC (E or ESC (6
* Reference: http://vt100.net/docs/vt220-rm/table2-12.html
*/
CHARSETS['E'] =
CHARSETS['6'] = {
'@': 'Ä',
'[': 'Æ',
'\\': 'Ø',
']': 'Å',
'^': 'Ü',
'`': 'ä',
'{': 'æ',
'|': 'ø',
'}': 'å',
'~': 'ü'
};
/**
* Spanish character set
* ESC (Z
* Reference: http://vt100.net/docs/vt220-rm/table2-13.html
*/
CHARSETS['Z'] = {
'#': '£',
'@': '§',
'[': '¡',
'\\': 'Ñ',
']': '¿',
'{': '°',
'|': 'ñ',
'}': 'ç'
};
/**
* Swedish character set
* ESC (H or ESC (7
* Reference: http://vt100.net/docs/vt220-rm/table2-14.html
*/
CHARSETS['H'] =
CHARSETS['7'] = {
'@': 'É',
'[': 'Ä',
'\\': 'Ö',
']': 'Å',
'^': 'Ü',
'`': 'é',
'{': 'ä',
'|': 'ö',
'}': 'å',
'~': 'ü'
};
/**
* Swiss character set
* ESC (=
* Reference: http://vt100.net/docs/vt220-rm/table2-15.html
*/
CHARSETS['='] = {
'#': 'ù',
'@': 'à',
'[': 'é',
'\\': 'ç',
']': 'ê',
'^': 'î',
'_': 'è',
'`': 'ô',
'{': 'ä',
'|': 'ö',
'}': 'ü',
'~': 'û'
};
// ---------------------------------------------------------------------
// :: Html colors taken from ANSI formatting in Linux Terminal
// ---------------------------------------------------------------------
$.terminal.ansi_colors = {
normal: {
black: '#000',
red: '#A00',
green: '#008400',
yellow: '#A50',
blue: '#00A',
magenta: '#A0A',
cyan: '#0AA',
white: '#AAA'
},
faited: {
black: '#000',
red: '#640000',
green: '#006100',
yellow: '#737300',
blue: '#000087',
magenta: '#650065',
cyan: '#008787',
white: '#818181'
},
bold: {
black: '#555',
red: '#F55',
green: '#44D544',
yellow: '#FF5',
blue: '#55F',
magenta: '#F5F',
cyan: '#5FF',
white: '#FFF'
},
// XTerm 8-bit pallete
palette: [
'#000000', '#AA0000', '#00AA00', '#AA5500', '#0000AA', '#AA00AA',
'#00AAAA', '#AAAAAA', '#555555', '#FF5555', '#55FF55', '#FFFF55',
'#5555FF', '#FF55FF', '#55FFFF', '#FFFFFF', '#000000', '#00005F',
'#000087', '#0000AF', '#0000D7', '#0000FF', '#005F00', '#005F5F',
'#005F87', '#005FAF', '#005FD7', '#005FFF', '#008700', '#00875F',
'#008787', '#0087AF', '#0087D7', '#0087FF', '#00AF00', '#00AF5F',
'#00AF87', '#00AFAF', '#00AFD7', '#00AFFF', '#00D700', '#00D75F',
'#00D787', '#00D7AF', '#00D7D7', '#00D7FF', '#00FF00', '#00FF5F',
'#00FF87', '#00FFAF', '#00FFD7', '#00FFFF', '#5F0000', '#5F005F',
'#5F0087', '#5F00AF', '#5F00D7', '#5F00FF', '#5F5F00', '#5F5F5F',
'#5F5F87', '#5F5FAF', '#5F5FD7', '#5F5FFF', '#5F8700', '#5F875F',
'#5F8787', '#5F87AF', '#5F87D7', '#5F87FF', '#5FAF00', '#5FAF5F',
'#5FAF87', '#5FAFAF', '#5FAFD7', '#5FAFFF', '#5FD700', '#5FD75F',
'#5FD787', '#5FD7AF', '#5FD7D7', '#5FD7FF', '#5FFF00', '#5FFF5F',
'#5FFF87', '#5FFFAF', '#5FFFD7', '#5FFFFF', '#870000', '#87005F',
'#870087', '#8700AF', '#8700D7', '#8700FF', '#875F00', '#875F5F',
'#875F87', '#875FAF', '#875FD7', '#875FFF', '#878700', '#87875F',
'#878787', '#8787AF', '#8787D7', '#8787FF', '#87AF00', '#87AF5F',
'#87AF87', '#87AFAF', '#87AFD7', '#87AFFF', '#87D700', '#87D75F',
'#87D787', '#87D7AF', '#87D7D7', '#87D7FF', '#87FF00', '#87FF5F',
'#87FF87', '#87FFAF', '#87FFD7', '#87FFFF', '#AF0000', '#AF005F',
'#AF0087', '#AF00AF', '#AF00D7', '#AF00FF', '#AF5F00', '#AF5F5F',
'#AF5F87', '#AF5FAF', '#AF5FD7', '#AF5FFF', '#AF8700', '#AF875F',
'#AF8787', '#AF87AF', '#AF87D7', '#AF87FF', '#AFAF00', '#AFAF5F',
'#AFAF87', '#AFAFAF', '#AFAFD7', '#AFAFFF', '#AFD700', '#AFD75F',
'#AFD787', '#AFD7AF', '#AFD7D7', '#AFD7FF', '#AFFF00', '#AFFF5F',
'#AFFF87', '#AFFFAF', '#AFFFD7', '#AFFFFF', '#D70000', '#D7005F',
'#D70087', '#D700AF', '#D700D7', '#D700FF', '#D75F00', '#D75F5F',
'#D75F87', '#D75FAF', '#D75FD7', '#D75FFF', '#D78700', '#D7875F',