diff --git a/LICENSE b/LICENSE index c935a50..d1d1014 100644 --- a/LICENSE +++ b/LICENSE @@ -1,16 +1,21 @@ -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: +MIT License + +Copyright (c) 2019 Convergence Labs, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH -THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/src/ts/EditorContentManager.ts b/src/ts/EditorContentManager.ts index 07b6a80..6bdf84f 100644 --- a/src/ts/EditorContentManager.ts +++ b/src/ts/EditorContentManager.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2019 Convergence Labs, Inc. + * + * This file is part of the CodeMirror Collaborative Extensions, which is + * released under the terms of the MIT license. A copy of the MIT license + * is usually provided as part of this source code package in the LICENCE + * file. If it was not, please see + */ + import * as monaco from "monaco-editor"; import {editor, IDisposable} from "monaco-editor"; import {Validation} from "./Validation"; diff --git a/src/ts/OnDisposed.ts b/src/ts/OnDisposed.ts index f053f1b..97d8936 100644 --- a/src/ts/OnDisposed.ts +++ b/src/ts/OnDisposed.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2019 Convergence Labs, Inc. + * + * This file is part of the CodeMirror Collaborative Extensions, which is + * released under the terms of the MIT license. A copy of the MIT license + * is usually provided as part of this source code package in the LICENCE + * file. If it was not, please see + */ + /** * A simple callback type that signifies a resource has been disposed. * diff --git a/src/ts/RemoteCursor.ts b/src/ts/RemoteCursor.ts index 4be2fe2..884db3b 100644 --- a/src/ts/RemoteCursor.ts +++ b/src/ts/RemoteCursor.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2019 Convergence Labs, Inc. + * + * This file is part of the CodeMirror Collaborative Extensions, which is + * released under the terms of the MIT license. A copy of the MIT license + * is usually provided as part of this source code package in the LICENCE + * file. If it was not, please see + */ + import {IPosition} from "monaco-editor"; import {RemoteCursorWidget} from "./RemoteCursorWidget"; diff --git a/src/ts/RemoteCursorManager.ts b/src/ts/RemoteCursorManager.ts index 663fc85..c80fddc 100644 --- a/src/ts/RemoteCursorManager.ts +++ b/src/ts/RemoteCursorManager.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2019 Convergence Labs, Inc. + * + * This file is part of the CodeMirror Collaborative Extensions, which is + * released under the terms of the MIT license. A copy of the MIT license + * is usually provided as part of this source code package in the LICENCE + * file. If it was not, please see + */ + import * as monaco from "monaco-editor"; import {IPosition} from "monaco-editor"; import {RemoteCursor} from "./RemoteCursor"; diff --git a/src/ts/RemoteCursorWidget.ts b/src/ts/RemoteCursorWidget.ts index e5a8472..a8e6de9 100644 --- a/src/ts/RemoteCursorWidget.ts +++ b/src/ts/RemoteCursorWidget.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2019 Convergence Labs, Inc. + * + * This file is part of the CodeMirror Collaborative Extensions, which is + * released under the terms of the MIT license. A copy of the MIT license + * is usually provided as part of this source code package in the LICENCE + * file. If it was not, please see + */ + import {editor, IDisposable, IPosition} from "monaco-editor"; import {EditorContentManager} from "./EditorContentManager"; import {OnDisposed} from "./OnDisposed"; diff --git a/src/ts/RemoteSelection.ts b/src/ts/RemoteSelection.ts index d30164b..d32610b 100644 --- a/src/ts/RemoteSelection.ts +++ b/src/ts/RemoteSelection.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2019 Convergence Labs, Inc. + * + * This file is part of the CodeMirror Collaborative Extensions, which is + * released under the terms of the MIT license. A copy of the MIT license + * is usually provided as part of this source code package in the LICENCE + * file. If it was not, please see + */ + import * as monaco from "monaco-editor"; import {editor, IPosition} from "monaco-editor"; import {OnDisposed} from "./OnDisposed"; diff --git a/src/ts/RemoteSelectionManager.ts b/src/ts/RemoteSelectionManager.ts index 9bef907..cf87971 100644 --- a/src/ts/RemoteSelectionManager.ts +++ b/src/ts/RemoteSelectionManager.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2019 Convergence Labs, Inc. + * + * This file is part of the CodeMirror Collaborative Extensions, which is + * released under the terms of the MIT license. A copy of the MIT license + * is usually provided as part of this source code package in the LICENCE + * file. If it was not, please see + */ + import * as monaco from "monaco-editor"; import {IPosition} from "monaco-editor"; import {RemoteSelection} from "./RemoteSelection"; diff --git a/src/ts/Validation.ts b/src/ts/Validation.ts index 9f7af8f..489e792 100644 --- a/src/ts/Validation.ts +++ b/src/ts/Validation.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2019 Convergence Labs, Inc. + * + * This file is part of the CodeMirror Collaborative Extensions, which is + * released under the terms of the MIT license. A copy of the MIT license + * is usually provided as part of this source code package in the LICENCE + * file. If it was not, please see + */ + /** * A helper class to aid in input validation. * diff --git a/src/ts/index.ts b/src/ts/index.ts index 0bb7b92..3867556 100644 --- a/src/ts/index.ts +++ b/src/ts/index.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) 2019 Convergence Labs, Inc. + * + * This file is part of the CodeMirror Collaborative Extensions, which is + * released under the terms of the MIT license. A copy of the MIT license + * is usually provided as part of this source code package in the LICENCE + * file. If it was not, please see + */ + export * from "./RemoteCursorManager"; export * from "./RemoteSelectionManager"; export * from "./EditorContentManager";