From 9e3bee6da14c8fb97c61fd8171be79da7975ea2c Mon Sep 17 00:00:00 2001 From: Sergio Eduardo Castro Ceballos <72516762+SergioCasCeb@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:41:00 +0200 Subject: [PATCH] added license headers --- .vscode/templates/scss.lict | 12 +++++++++++ .../external-scripts/generate-paths.js | 15 ++++++++++++++ packages/web-new/server/server.js | 15 ++++++++++++++ packages/web-new/src/scripts/async-api.js | 15 ++++++++++++++ packages/web-new/src/scripts/console.js | 15 ++++++++++++++ packages/web-new/src/scripts/defaults.js | 15 ++++++++++++++ packages/web-new/src/scripts/editor.js | 15 ++++++++++++++ packages/web-new/src/scripts/examples-menu.js | 15 ++++++++++++++ packages/web-new/src/scripts/json-yaml.js | 15 ++++++++++++++ packages/web-new/src/scripts/jsonld-vis.js | 15 ++++++++++++++ packages/web-new/src/scripts/main.js | 15 ++++++++++++++ .../web-new/src/scripts/monochrome-theme.js | 20 +++++++++++++++---- packages/web-new/src/scripts/open-api.js | 15 ++++++++++++++ packages/web-new/src/scripts/save-menu.js | 15 ++++++++++++++ packages/web-new/src/scripts/settings-menu.js | 15 ++++++++++++++ packages/web-new/src/scripts/validation.js | 15 ++++++++++++++ packages/web-new/src/scripts/vega-vis.js | 15 ++++++++++++++ packages/web-new/src/scripts/visualize.js | 15 ++++++++++++++ packages/web-new/src/styles/_console.scss | 15 ++++++++++++++ .../web-new/src/styles/_control-panel.scss | 15 ++++++++++++++ packages/web-new/src/styles/_editor.scss | 15 ++++++++++++++ .../web-new/src/styles/_examples-menu.scss | 15 ++++++++++++++ .../src/styles/_json-yaml-warning.scss | 15 ++++++++++++++ packages/web-new/src/styles/_jsonld-vis.scss | 15 ++++++++++++++ packages/web-new/src/styles/_save-menu.scss | 15 ++++++++++++++ .../web-new/src/styles/_settings-menu.scss | 15 ++++++++++++++ packages/web-new/src/styles/styles.css | 15 ++++++++++++++ packages/web-new/src/styles/styles.scss | 15 ++++++++++++++ packages/web-new/src/template.html | 15 ++++++++++++++ packages/web-new/webpack.config.js | 15 ++++++++++++++ 30 files changed, 448 insertions(+), 4 deletions(-) create mode 100644 .vscode/templates/scss.lict diff --git a/.vscode/templates/scss.lict b/.vscode/templates/scss.lict new file mode 100644 index 000000000..a71fb750d --- /dev/null +++ b/.vscode/templates/scss.lict @@ -0,0 +1,12 @@ +Copyright (c) %(CreationYear) Contributors to the Eclipse Foundation + +See the NOTICE file(s) distributed with this work for additional +information regarding copyright ownership. + +This program and the accompanying materials are made available under the +terms of the Eclipse Public License v. 2.0 which is available at +http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and +Document License (2015-05-13) which is available at +https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + +SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 \ No newline at end of file diff --git a/packages/web-new/external-scripts/generate-paths.js b/packages/web-new/external-scripts/generate-paths.js index e4641ccee..c04d96117 100644 --- a/packages/web-new/external-scripts/generate-paths.js +++ b/packages/web-new/external-scripts/generate-paths.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `examples.js` generates a json file * with all the links, title and descriptions of the TD and TM examples in the diff --git a/packages/web-new/server/server.js b/packages/web-new/server/server.js index 8ddad0cd0..43b066e46 100644 --- a/packages/web-new/server/server.js +++ b/packages/web-new/server/server.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + const express = require('express') const port = 5000 diff --git a/packages/web-new/src/scripts/async-api.js b/packages/web-new/src/scripts/async-api.js index a327511cc..9a1c00fb8 100644 --- a/packages/web-new/src/scripts/async-api.js +++ b/packages/web-new/src/scripts/async-api.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `async-api.js` takes care of the main functionality for the * AsyncAPI feature within the console. This include initializing the editor, diff --git a/packages/web-new/src/scripts/console.js b/packages/web-new/src/scripts/console.js index 0aebc774a..7e1b6ec9e 100644 --- a/packages/web-new/src/scripts/console.js +++ b/packages/web-new/src/scripts/console.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `console.js` takes care of setting the main eventHandlers * for opening and closing the corresponding visualizations as well as diff --git a/packages/web-new/src/scripts/defaults.js b/packages/web-new/src/scripts/defaults.js index 02fcb59af..183dd7d79 100644 --- a/packages/web-new/src/scripts/defaults.js +++ b/packages/web-new/src/scripts/defaults.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `defaults.js` takes care of the main functionality for the * Defaults feature within the console. This include initializing the editor, diff --git a/packages/web-new/src/scripts/editor.js b/packages/web-new/src/scripts/editor.js index 87efd7556..799a73952 100644 --- a/packages/web-new/src/scripts/editor.js +++ b/packages/web-new/src/scripts/editor.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `editor.js` contains the main functionality * for the generated monaco editors and the surrounding elements diff --git a/packages/web-new/src/scripts/examples-menu.js b/packages/web-new/src/scripts/examples-menu.js index 77219119c..48db62f84 100644 --- a/packages/web-new/src/scripts/examples-menu.js +++ b/packages/web-new/src/scripts/examples-menu.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `examples-menu.js` contains the main functionality * for the examples menu, such as displaying all the TD and TM examples, diff --git a/packages/web-new/src/scripts/json-yaml.js b/packages/web-new/src/scripts/json-yaml.js index 38eaba7b4..b0e9f199d 100644 --- a/packages/web-new/src/scripts/json-yaml.js +++ b/packages/web-new/src/scripts/json-yaml.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `json-yaml.js` contains the main functionality * for converting json to yaml and vice versa, utilizing the util's diff --git a/packages/web-new/src/scripts/jsonld-vis.js b/packages/web-new/src/scripts/jsonld-vis.js index 304462110..dffe043c1 100644 --- a/packages/web-new/src/scripts/jsonld-vis.js +++ b/packages/web-new/src/scripts/jsonld-vis.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `jsonld-vis.js` handles the d3 visualization for the * graph option, by utilizin the d3 and d3-tip dependencies diff --git a/packages/web-new/src/scripts/main.js b/packages/web-new/src/scripts/main.js index ad11ebd99..abeb2d0a5 100644 --- a/packages/web-new/src/scripts/main.js +++ b/packages/web-new/src/scripts/main.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `main.js` takes care of setting eventHandlers * and connecting the functionality of `util.js` with diff --git a/packages/web-new/src/scripts/monochrome-theme.js b/packages/web-new/src/scripts/monochrome-theme.js index 6d92a66b1..0aa4078b7 100644 --- a/packages/web-new/src/scripts/monochrome-theme.js +++ b/packages/web-new/src/scripts/monochrome-theme.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + const themeData = { "base": "vs-dark", "inherit": true, @@ -65,7 +80,4 @@ const themeData = { } } -export default themeData -// export function themeData() { -// return somerandom = 24 -// } \ No newline at end of file +export default themeData \ No newline at end of file diff --git a/packages/web-new/src/scripts/open-api.js b/packages/web-new/src/scripts/open-api.js index 1f8d10fcf..dde078683 100644 --- a/packages/web-new/src/scripts/open-api.js +++ b/packages/web-new/src/scripts/open-api.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `open-api.js` takes care of the main functionality for the * OpenAPI feature within the console. This include initializing the editor, diff --git a/packages/web-new/src/scripts/save-menu.js b/packages/web-new/src/scripts/save-menu.js index ce4295f60..a7b2fa5de 100644 --- a/packages/web-new/src/scripts/save-menu.js +++ b/packages/web-new/src/scripts/save-menu.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `save-menu.js` handle the main functionality for the save menu * such as generating a sharable link, allowing to open such link in a new playground diff --git a/packages/web-new/src/scripts/settings-menu.js b/packages/web-new/src/scripts/settings-menu.js index 0ae4c71d2..ab17889cf 100644 --- a/packages/web-new/src/scripts/settings-menu.js +++ b/packages/web-new/src/scripts/settings-menu.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `settings.js` contains the main functionality * for the settings menu, such as event handlers, toggle buttons, diff --git a/packages/web-new/src/scripts/validation.js b/packages/web-new/src/scripts/validation.js index 779837b78..2e20f5adb 100644 --- a/packages/web-new/src/scripts/validation.js +++ b/packages/web-new/src/scripts/validation.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `validation.js` contains the related html elements for the validation view, as * well as the behaviour for the validation button on the main navigation menu diff --git a/packages/web-new/src/scripts/vega-vis.js b/packages/web-new/src/scripts/vega-vis.js index 532e5cd4d..9cbc28a4b 100644 --- a/packages/web-new/src/scripts/vega-vis.js +++ b/packages/web-new/src/scripts/vega-vis.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `vega-vis.js` handles the vega visualization for the * tree option, by utilizin the vega and vega-embed dependencies diff --git a/packages/web-new/src/scripts/visualize.js b/packages/web-new/src/scripts/visualize.js index 078a9d1c4..f34246f92 100644 --- a/packages/web-new/src/scripts/visualize.js +++ b/packages/web-new/src/scripts/visualize.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `visualize.js` takes care of setting eventHandlers * and and the the main functions to initialize both the d3 and the vega diff --git a/packages/web-new/src/styles/_console.scss b/packages/web-new/src/styles/_console.scss index 94798e2d3..b67ad99ac 100644 --- a/packages/web-new/src/styles/_console.scss +++ b/packages/web-new/src/styles/_console.scss @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /*** Console ***/ .console { overflow: hidden; diff --git a/packages/web-new/src/styles/_control-panel.scss b/packages/web-new/src/styles/_control-panel.scss index 67f2aa093..fa5ddc328 100644 --- a/packages/web-new/src/styles/_control-panel.scss +++ b/packages/web-new/src/styles/_control-panel.scss @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** Control panel **/ .control-panel { display: flex; diff --git a/packages/web-new/src/styles/_editor.scss b/packages/web-new/src/styles/_editor.scss index c194a9eac..81ea23cb1 100644 --- a/packages/web-new/src/styles/_editor.scss +++ b/packages/web-new/src/styles/_editor.scss @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /*** Editor ***/ .ide { &__tabs { diff --git a/packages/web-new/src/styles/_examples-menu.scss b/packages/web-new/src/styles/_examples-menu.scss index a09bfe977..07a25be5d 100644 --- a/packages/web-new/src/styles/_examples-menu.scss +++ b/packages/web-new/src/styles/_examples-menu.scss @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /**** Examples Menu ****/ .examples-menu { position: absolute; diff --git a/packages/web-new/src/styles/_json-yaml-warning.scss b/packages/web-new/src/styles/_json-yaml-warning.scss index 699428ba0..a51e850c8 100644 --- a/packages/web-new/src/styles/_json-yaml-warning.scss +++ b/packages/web-new/src/styles/_json-yaml-warning.scss @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + .json-yaml-warning{ position: absolute; top: 0; diff --git a/packages/web-new/src/styles/_jsonld-vis.scss b/packages/web-new/src/styles/_jsonld-vis.scss index 72a0e870d..35186d70e 100644 --- a/packages/web-new/src/styles/_jsonld-vis.scss +++ b/packages/web-new/src/styles/_jsonld-vis.scss @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + svg { border: none; diff --git a/packages/web-new/src/styles/_save-menu.scss b/packages/web-new/src/styles/_save-menu.scss index 43faa5cfd..be1b3ad9e 100644 --- a/packages/web-new/src/styles/_save-menu.scss +++ b/packages/web-new/src/styles/_save-menu.scss @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + .save-menu{ position: absolute; top: 0; diff --git a/packages/web-new/src/styles/_settings-menu.scss b/packages/web-new/src/styles/_settings-menu.scss index 751b3bf9e..07b329979 100644 --- a/packages/web-new/src/styles/_settings-menu.scss +++ b/packages/web-new/src/styles/_settings-menu.scss @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /***** settings menu *****/ .settings-menu { diff --git a/packages/web-new/src/styles/styles.css b/packages/web-new/src/styles/styles.css index f15a0de73..190351a50 100644 --- a/packages/web-new/src/styles/styles.css +++ b/packages/web-new/src/styles/styles.css @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /*** Globals **/ *, *::before, diff --git a/packages/web-new/src/styles/styles.scss b/packages/web-new/src/styles/styles.scss index 4fa45b6ac..fd6c61c54 100644 --- a/packages/web-new/src/styles/styles.scss +++ b/packages/web-new/src/styles/styles.scss @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /*** Globals **/ *, *::before, diff --git a/packages/web-new/src/template.html b/packages/web-new/src/template.html index 4ccf65912..d94ceedab 100644 --- a/packages/web-new/src/template.html +++ b/packages/web-new/src/template.html @@ -1,3 +1,18 @@ + + diff --git a/packages/web-new/webpack.config.js b/packages/web-new/webpack.config.js index cd0c5606d..1114a469d 100644 --- a/packages/web-new/webpack.config.js +++ b/packages/web-new/webpack.config.js @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v. 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and + * Document License (2015-05-13) which is available at + * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document. + * + * SPDX-License-Identifier: EPL-2.0 OR W3C-20150513 + */ + /** * @file The `webpack.config.js` takes care of all the configuration values for webpack * to bundle and compile all the necessary modules. This includes bundling all the multiple