Skip to content

Commit 73b54ec

Browse files
committed
Revise licensing to Asciidoctor Project and remove from each file
1 parent 0a631a3 commit 73b54ec

Some content is hidden

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

51 files changed

+51
-102
lines changed

LICENSE

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 - present, João Pinto
3+
Copyright (c) 2016 - present, João Pinto and the Asciidoctor Project
44

55
Based on the vscode-1.28.2/extensions/markdown* from Microsoft
66

77
Copyright (c) 2015 - present Microsoft Corporation
88

9-
109
Permission is hereby granted, free of charge, to any person obtaining a copy
1110
of this software and associated documentation files (the "Software"), to deal
1211
in the Software without restriction, including without limitation the rights

preview-src/activeLineMarker.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54
import { getElementsForSourceLine } from './scroll-sync';
65

preview-src/csp.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import { MessagePoster } from './messaging';

preview-src/events.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65

preview-src/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import { ActiveLineMarker } from './activeLineMarker';

preview-src/loading.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54
import { MessagePoster } from './messaging';
65

preview-src/messaging.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import { getSettings } from './settings';

preview-src/pre.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import { CspAlerter } from './csp';

preview-src/scroll-sync.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import { getSettings } from './settings';

preview-src/settings.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
export interface PreviewSettings {

preview-src/strings.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
export function getStrings(): { [key: string]: string } {

src/asciidocEngine.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/asciidocExtensions.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/commandManager.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/commands/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
export { OpenDocumentLinkCommand } from './openDocumentLink';

src/commands/moveCursorToPosition.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/commands/openDocumentLink.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/commands/refreshPreview.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import { Command } from '../commandManager';

src/commands/showPreview.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/commands/showPreviewSecuritySelector.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/commands/showSource.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/commands/toggleLock.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import { Command } from '../commandManager';

src/extension.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/features/documentLinkProvider.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as path from 'path';

src/features/documentSymbolProvider.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/features/foldingProvider.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/features/preview.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/features/previewConfig.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/features/previewContentProvider.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/features/previewManager.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/features/workspaceSymbolProvider.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/logger.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/security.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/slugify.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
export class Slug {

src/tableOfContentsProvider.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/test/documentLinkProvider.test.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as assert from 'assert';

src/test/documentSymbolProvider.test.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as assert from 'assert';

src/test/engine.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

src/test/foldingProvider.test.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as assert from 'assert';

src/test/inMemoryDocument.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*---------------------------------------------------------------------------------------------
2-
* Copyright (c) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
2+
* Licensed under the MIT License. See License.txt in the project root for license information.
43
*--------------------------------------------------------------------------------------------*/
54

65
import * as vscode from 'vscode';

0 commit comments

Comments
 (0)