Updated copyright on the code and the LICENSE.

pull/2/head
Michael MacFadden 5 years ago
parent db0ada10e3
commit 9f8db8c84b

@ -1,16 +1,21 @@
Permission is hereby granted, free of charge, to any person obtaining a copy of MIT License
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to Copyright (c) 2019 Convergence Labs, Inc.
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 Permission is hereby granted, free of charge, to any person obtaining a copy
so, subject to the following conditions: 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 The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software. copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

@ -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 <https://opensource.org/licenses/MIT>
*/
import * as monaco from "monaco-editor"; import * as monaco from "monaco-editor";
import {editor, IDisposable} from "monaco-editor"; import {editor, IDisposable} from "monaco-editor";
import {Validation} from "./Validation"; import {Validation} from "./Validation";

@ -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 <https://opensource.org/licenses/MIT>
*/
/** /**
* A simple callback type that signifies a resource has been disposed. * A simple callback type that signifies a resource has been disposed.
* *

@ -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 <https://opensource.org/licenses/MIT>
*/
import {IPosition} from "monaco-editor"; import {IPosition} from "monaco-editor";
import {RemoteCursorWidget} from "./RemoteCursorWidget"; import {RemoteCursorWidget} from "./RemoteCursorWidget";

@ -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 <https://opensource.org/licenses/MIT>
*/
import * as monaco from "monaco-editor"; import * as monaco from "monaco-editor";
import {IPosition} from "monaco-editor"; import {IPosition} from "monaco-editor";
import {RemoteCursor} from "./RemoteCursor"; import {RemoteCursor} from "./RemoteCursor";

@ -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 <https://opensource.org/licenses/MIT>
*/
import {editor, IDisposable, IPosition} from "monaco-editor"; import {editor, IDisposable, IPosition} from "monaco-editor";
import {EditorContentManager} from "./EditorContentManager"; import {EditorContentManager} from "./EditorContentManager";
import {OnDisposed} from "./OnDisposed"; import {OnDisposed} from "./OnDisposed";

@ -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 <https://opensource.org/licenses/MIT>
*/
import * as monaco from "monaco-editor"; import * as monaco from "monaco-editor";
import {editor, IPosition} from "monaco-editor"; import {editor, IPosition} from "monaco-editor";
import {OnDisposed} from "./OnDisposed"; import {OnDisposed} from "./OnDisposed";

@ -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 <https://opensource.org/licenses/MIT>
*/
import * as monaco from "monaco-editor"; import * as monaco from "monaco-editor";
import {IPosition} from "monaco-editor"; import {IPosition} from "monaco-editor";
import {RemoteSelection} from "./RemoteSelection"; import {RemoteSelection} from "./RemoteSelection";

@ -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 <https://opensource.org/licenses/MIT>
*/
/** /**
* A helper class to aid in input validation. * A helper class to aid in input validation.
* *

@ -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 <https://opensource.org/licenses/MIT>
*/
export * from "./RemoteCursorManager"; export * from "./RemoteCursorManager";
export * from "./RemoteSelectionManager"; export * from "./RemoteSelectionManager";
export * from "./EditorContentManager"; export * from "./EditorContentManager";

Loading…
Cancel
Save