Skip to content

Commit 75b91c6

Browse files
committed
Update license text
1 parent ea8dbbd commit 75b91c6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+146
-29
lines changed

src/Buffer.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/Buffer.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/BufferSet.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/BufferSet.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/Charsets.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/CompositionHelper.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/CompositionHelper.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/EscapeSequences.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/EventEmitter.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/EventEmitter.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/InputHandler.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/InputHandler.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/**
2+
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
3+
* Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
24
* @license MIT
35
*/
46

src/Interfaces.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/Linkifier.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/Linkifier.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/Parser.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/**
2+
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
3+
* Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
24
* @license MIT
35
*/
46

src/SelectionManager.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/SelectionManager.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/SelectionModel.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/SelectionModel.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/Terminal.integration.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*
45
* This file contains integration tests for xterm.js.

src/Terminal.test.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
import { assert, expect } from 'chai';
1+
/**
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
6+
import { assert, expect } from 'chai';
27
import { Terminal } from './Terminal';
38
import { MockViewport, MockCompositionHelper, MockRenderer } from './utils/TestUtils.test';
49
import { CHAR_DATA_CHAR_INDEX, CHAR_DATA_WIDTH_INDEX } from './Buffer';

src/Terminal.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
/**
2-
* xterm.js: xterm, in the browser
2+
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
3+
* Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
4+
* @license MIT
5+
*
36
* Originally forked from (with the author's permission):
47
* Fabrice Bellard's javascript vt100 for jslinux:
58
* http://bellard.org/jslinux/
69
* Copyright (c) 2011 Fabrice Bellard
710
* The original design remains. The terminal itself
811
* has been extended to include xterm CSI codes, among
912
* other features.
10-
* @license MIT
1113
*
1214
* Terminal Emulation References:
1315
* http://vt100.net/

src/Types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/Viewport.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/Viewport.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/addons/attach/attach.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/**
2-
* Implements the attach method, that attaches the terminal to a WebSocket stream.
3-
* @module xterm/addons/attach/attach
2+
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
43
* @license MIT
4+
*
5+
* Implements the attach method, that attaches the terminal to a WebSocket stream.
56
*/
67

78
(function (attach) {

src/addons/fit/fit.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
/**
2+
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*
25
* Fit terminal columns and rows to the dimensions of its DOM element.
36
*
47
* ## Approach
5-
* - Rows: Truncate the division of the terminal parent element height by the terminal row height.
68
*
7-
* - Columns: Truncate the division of the terminal parent element width by the terminal character
8-
* width (apply display: inline at the terminal row and truncate its width with the current
9-
* number of columns).
10-
* @module xterm/addons/fit/fit
11-
* @license MIT
9+
* Rows: Truncate the division of the terminal parent element height by the
10+
* terminal row height.
11+
* Columns: Truncate the division of the terminal parent element width by the
12+
* terminal character width (apply display: inline at the terminal
13+
* row and truncate its width with the current number of columns).
1214
*/
1315

1416
(function (fit) {

src/addons/fullscreen/fullscreen.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Fullscreen addon for xterm.js
3-
* @module xterm/addons/fullscreen/fullscreen
2+
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
43
* @license MIT
54
*/
5+
66
(function (fullscreen) {
77
if (typeof exports === 'object' && typeof module === 'object') {
88
/*

src/addons/search/SearchHelper.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/addons/search/search.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/addons/terminado/terminado.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
/**
2-
* This module provides methods for attaching a terminal to a terminado WebSocket stream.
3-
*
4-
* @module xterm/addons/terminado/terminado
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
53
* @license MIT
4+
*
5+
* This module provides methods for attaching a terminal to a terminado
6+
* WebSocket stream.
67
*/
78

89
(function (attach) {

src/handlers/Clipboard.test.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { assert } from 'chai';
27
import * as Terminal from '../Terminal';
38
import * as Clipboard from './Clipboard';

src/handlers/Clipboard.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/**
2-
* Clipboard handler module: exports methods for handling all clipboard-related events in the
3-
* terminal.
4-
* @module xterm/handlers/Clipboard
2+
* Copyright (c) 2016 The xterm.js authors. All rights reserved.
53
* @license MIT
64
*/
75

src/input/Interfaces.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
export interface IMouseZoneManager {
27
add(zone: IMouseZone): void;
38
clearAll(): void;

src/input/MouseZoneManager.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { IMouseZoneManager, IMouseZone } from './Interfaces';
27
import { ITerminal } from '../Interfaces';
38
import { getCoords } from '../utils/Mouse';

src/renderer/BackgroundRenderLayer.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { IColorSet } from './Interfaces';
27
import { IBuffer, ICharMeasure, ITerminal } from '../Interfaces';
38
import { CHAR_DATA_ATTR_INDEX } from '../Buffer';

src/renderer/BaseRenderLayer.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { IRenderLayer, IColorSet } from './Interfaces';
27
import { ITerminal, ITerminalOptions } from '../Interfaces';
38
import { acquireCharAtlas, CHAR_ATLAS_CELL_SPACING } from './CharAtlas';

src/renderer/CharAtlas.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { ITerminal, ITheme } from '../Interfaces';
27
import { IColorSet } from '../renderer/Interfaces';
38
import { isFirefox } from '../utils/Browser';

src/renderer/ColorManager.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/renderer/ColorManager.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { IColorSet } from './Interfaces';
27
import { ITheme } from '../Interfaces';
38

src/renderer/CursorRenderLayer.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { IColorSet } from './Interfaces';
27
import { IBuffer, ICharMeasure, ITerminal, ITerminalOptions } from '../Interfaces';
38
import { CHAR_DATA_WIDTH_INDEX, CHAR_DATA_CODE_INDEX, CHAR_DATA_CHAR_INDEX } from '../Buffer';

src/renderer/ForegroundRenderLayer.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { IColorSet } from './Interfaces';
27
import { IBuffer, ICharMeasure, ITerminal } from '../Interfaces';
38
import { CHAR_DATA_ATTR_INDEX, CHAR_DATA_CODE_INDEX, CHAR_DATA_CHAR_INDEX, CHAR_DATA_WIDTH_INDEX } from '../Buffer';

src/renderer/GridCache.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/renderer/GridCache.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
export class GridCache<T> {
27
public cache: T[][];
38

src/renderer/Interfaces.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { ITerminal, ITerminalOptions, ITheme } from '../Interfaces';
27

38
export interface IRenderer {

src/renderer/LinkRenderLayer.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { IColorSet } from './Interfaces';
27
import { IBuffer, ICharMeasure, ITerminal, ILinkifierAccessor } from '../Interfaces';
38
import { CHAR_DATA_ATTR_INDEX } from '../Buffer';

src/renderer/Renderer.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
23
* @license MIT
34
*/
45

src/renderer/SelectionRenderLayer.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
16
import { IColorSet } from './Interfaces';
27
import { IBuffer, ICharMeasure, ITerminal } from '../Interfaces';
38
import { CHAR_DATA_ATTR_INDEX } from '../Buffer';

src/renderer/Types.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
/**
2+
* Copyright (c) 2017 The xterm.js authors. All rights reserved.
3+
* @license MIT
4+
*/
5+
6+
/**
27
* Flags used to render terminal text properly.
38
*/
49
export enum FLAGS {

0 commit comments

Comments
 (0)