summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2024-01-09 09:23:35 +0000
committerMichael Meeks <michael.meeks@collabora.com>2024-01-09 11:49:11 +0000
commitea6551ff2bfc4626166b96eade918f7422bc6d8c (patch)
treee74c414f7344af8f8e0af13ffc9d4423afbae144
parentTake the socket messge change back when in readonly mode. (diff)
downloadonline-ea6551ff2bfc4626166b96eade918f7422bc6d8c.tar.gz
online-ea6551ff2bfc4626166b96eade918f7422bc6d8c.zip
spdx: improve machine and human readability of headers.
Signed-off-by: Michael Meeks <michael.meeks@collabora.com> Change-Id: I2432e3c437f3a68c361da55d3aaf7a53c3f37838
-rw-r--r--browser/src/control/ColorPicker.js9
-rw-r--r--browser/src/control/Control.GroupBase.ts11
-rw-r--r--browser/src/control/Control.IdleHandler.ts13
-rw-r--r--browser/src/control/Control.Mention.js13
-rw-r--r--browser/src/control/Control.Menubar.js13
-rw-r--r--browser/src/control/Control.MobileBottomBar.js9
-rw-r--r--browser/src/control/Control.MobileSlide.js9
-rw-r--r--browser/src/control/Control.MobileTopBar.js9
-rw-r--r--browser/src/control/Control.PartsPreview.js9
-rw-r--r--browser/src/control/Control.Permission.js9
-rw-r--r--browser/src/control/Control.PresentationBar.js9
-rw-r--r--browser/src/control/Control.RowGroup.ts11
-rw-r--r--browser/src/control/Control.Scroll.Annotation.js9
-rw-r--r--browser/src/control/Control.SearchBar.js9
-rw-r--r--browser/src/control/Control.Selection.js9
-rw-r--r--browser/src/control/Control.SheetsBar.js9
-rw-r--r--browser/src/control/Control.Sidebar.js11
-rw-r--r--browser/src/control/Control.StatusBar.js9
-rw-r--r--browser/src/control/Control.Tabs.js9
-rw-r--r--browser/src/control/Control.Toolbar.js9
-rw-r--r--browser/src/control/Control.TopToolbar.js9
-rw-r--r--browser/src/control/Control.UserList.js9
-rw-r--r--browser/src/control/Parts.js9
-rw-r--r--browser/src/control/Permission.js9
-rw-r--r--browser/src/control/Ruler.js9
-rw-r--r--browser/src/control/Scroll.js9
-rw-r--r--browser/src/control/Search.js9
-rw-r--r--browser/src/control/Signing.js9
-rw-r--r--browser/src/control/Styles.js9
-rw-r--r--browser/src/control/Toolbar.js9
30 files changed, 279 insertions, 9 deletions
diff --git a/browser/src/control/ColorPicker.js b/browser/src/control/ColorPicker.js
index 5f79e0865e..cfc18faa60 100644
--- a/browser/src/control/ColorPicker.js
+++ b/browser/src/control/ColorPicker.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.ColorPicker is used for building a native HTML color picker
* panel to be used by the properties mobile wizard.
*/
diff --git a/browser/src/control/Control.GroupBase.ts b/browser/src/control/Control.GroupBase.ts
index 285e22b3e9..6772ff95cb 100644
--- a/browser/src/control/Control.GroupBase.ts
+++ b/browser/src/control/Control.GroupBase.ts
@@ -1,7 +1,16 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.GroupBase
-*/
+ */
namespace cool {
diff --git a/browser/src/control/Control.IdleHandler.ts b/browser/src/control/Control.IdleHandler.ts
index 21c4927b48..1360c66b1c 100644
--- a/browser/src/control/Control.IdleHandler.ts
+++ b/browser/src/control/Control.IdleHandler.ts
@@ -1,6 +1,15 @@
/*
- * Class for idle handling of the view.
-*/
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
+ * Class for idle handling of the view.
+ */
/* global app L */
diff --git a/browser/src/control/Control.Mention.js b/browser/src/control/Control.Mention.js
index 1f7d47c20f..b773b8d16f 100644
--- a/browser/src/control/Control.Mention.js
+++ b/browser/src/control/Control.Mention.js
@@ -1,7 +1,16 @@
/* -*- js-indent-level: 8 -*- */
/*
-* Control.Mention
-*/
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
+ * Control.Mention
+ */
L.Control.Mention = L.Control.extend({
onAdd: function(map) {
this.map = map;
diff --git a/browser/src/control/Control.Menubar.js b/browser/src/control/Control.Menubar.js
index e9d412cb10..ac13a2de30 100644
--- a/browser/src/control/Control.Menubar.js
+++ b/browser/src/control/Control.Menubar.js
@@ -1,7 +1,16 @@
/* -*- js-indent-level: 8 -*- */
/*
-* Control.Menubar
-*/
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
+ * Control.Menubar
+ */
/* global app $ _ _UNO L */
L.Control.MenubarShortcuts = {
diff --git a/browser/src/control/Control.MobileBottomBar.js b/browser/src/control/Control.MobileBottomBar.js
index 0d85f844be..ea3daf8bee 100644
--- a/browser/src/control/Control.MobileBottomBar.js
+++ b/browser/src/control/Control.MobileBottomBar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.MobileBottomBar
*/
diff --git a/browser/src/control/Control.MobileSlide.js b/browser/src/control/Control.MobileSlide.js
index db7fb2e5f0..b6ce92cd85 100644
--- a/browser/src/control/Control.MobileSlide.js
+++ b/browser/src/control/Control.MobileSlide.js
@@ -1,4 +1,13 @@
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.MobileSlide is used to add new slide button on the Impress document.
*/
diff --git a/browser/src/control/Control.MobileTopBar.js b/browser/src/control/Control.MobileTopBar.js
index de0429bcca..bbfd0982e4 100644
--- a/browser/src/control/Control.MobileTopBar.js
+++ b/browser/src/control/Control.MobileTopBar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.SearchBar
*/
diff --git a/browser/src/control/Control.PartsPreview.js b/browser/src/control/Control.PartsPreview.js
index 1f3c6eb4f7..22110a9621 100644
--- a/browser/src/control/Control.PartsPreview.js
+++ b/browser/src/control/Control.PartsPreview.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.PartsPreview
*/
diff --git a/browser/src/control/Control.Permission.js b/browser/src/control/Control.Permission.js
index 3900c5b438..21b505e1e5 100644
--- a/browser/src/control/Control.Permission.js
+++ b/browser/src/control/Control.Permission.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.EditView is used for switching between viewing and editing mode
*/
diff --git a/browser/src/control/Control.PresentationBar.js b/browser/src/control/Control.PresentationBar.js
index 97840756dd..962db87f3a 100644
--- a/browser/src/control/Control.PresentationBar.js
+++ b/browser/src/control/Control.PresentationBar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.PresentationBar
*/
diff --git a/browser/src/control/Control.RowGroup.ts b/browser/src/control/Control.RowGroup.ts
index 56060ca48b..c1b6df0f27 100644
--- a/browser/src/control/Control.RowGroup.ts
+++ b/browser/src/control/Control.RowGroup.ts
@@ -1,7 +1,16 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.RowGroup
-*/
+ */
/* global app */
diff --git a/browser/src/control/Control.Scroll.Annotation.js b/browser/src/control/Control.Scroll.Annotation.js
index 57b7fff51a..b90a975893 100644
--- a/browser/src/control/Control.Scroll.Annotation.js
+++ b/browser/src/control/Control.Scroll.Annotation.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.ScrollAnnotation
*/
/* global _ */
diff --git a/browser/src/control/Control.SearchBar.js b/browser/src/control/Control.SearchBar.js
index d013b19b9e..86fdc21236 100644
--- a/browser/src/control/Control.SearchBar.js
+++ b/browser/src/control/Control.SearchBar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.SearchBar
*/
diff --git a/browser/src/control/Control.Selection.js b/browser/src/control/Control.Selection.js
index fccd83f43e..5a72f7f653 100644
--- a/browser/src/control/Control.Selection.js
+++ b/browser/src/control/Control.Selection.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.Selection enables by mouse drag selection in viewing mode
*/
diff --git a/browser/src/control/Control.SheetsBar.js b/browser/src/control/Control.SheetsBar.js
index ab1b6c4e86..9b6bfa84ea 100644
--- a/browser/src/control/Control.SheetsBar.js
+++ b/browser/src/control/Control.SheetsBar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.SheetsBar
*/
diff --git a/browser/src/control/Control.Sidebar.js b/browser/src/control/Control.Sidebar.js
index da7b6e63c3..b6f584eac6 100644
--- a/browser/src/control/Control.Sidebar.js
+++ b/browser/src/control/Control.Sidebar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.Sidebar
*/
@@ -198,4 +207,4 @@ L.Control.Sidebar = L.Control.extend({
L.control.sidebar = function (options) {
return new L.Control.Sidebar(options);
-}; \ No newline at end of file
+};
diff --git a/browser/src/control/Control.StatusBar.js b/browser/src/control/Control.StatusBar.js
index c4a9833c34..db1bc0baed 100644
--- a/browser/src/control/Control.StatusBar.js
+++ b/browser/src/control/Control.StatusBar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.StatusBar
*/
diff --git a/browser/src/control/Control.Tabs.js b/browser/src/control/Control.Tabs.js
index 61dfed5975..bdd3c29627 100644
--- a/browser/src/control/Control.Tabs.js
+++ b/browser/src/control/Control.Tabs.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.Tabs is used to switch sheets in Calc
*/
diff --git a/browser/src/control/Control.Toolbar.js b/browser/src/control/Control.Toolbar.js
index f5fd94d194..197a0d1d0d 100644
--- a/browser/src/control/Control.Toolbar.js
+++ b/browser/src/control/Control.Toolbar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8; fill-column: 100 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* Collabora Online toolbar
*/
diff --git a/browser/src/control/Control.TopToolbar.js b/browser/src/control/Control.TopToolbar.js
index 3ec2455524..e3ca8fe06c 100644
--- a/browser/src/control/Control.TopToolbar.js
+++ b/browser/src/control/Control.TopToolbar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.TopToolbar
*/
diff --git a/browser/src/control/Control.UserList.js b/browser/src/control/Control.UserList.js
index 67558bc001..2ca905aa41 100644
--- a/browser/src/control/Control.UserList.js
+++ b/browser/src/control/Control.UserList.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* L.Control.UserList
*/
diff --git a/browser/src/control/Parts.js b/browser/src/control/Parts.js
index 306fb9b5ca..f270c78ee2 100644
--- a/browser/src/control/Parts.js
+++ b/browser/src/control/Parts.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* Document parts switching and selecting handler
*/
diff --git a/browser/src/control/Permission.js b/browser/src/control/Permission.js
index 4ba1462a0a..265bdbc827 100644
--- a/browser/src/control/Permission.js
+++ b/browser/src/control/Permission.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* Document permission handler
*/
/* global app $ _ */
diff --git a/browser/src/control/Ruler.js b/browser/src/control/Ruler.js
index 5e660df95f..e412c1c0f2 100644
--- a/browser/src/control/Ruler.js
+++ b/browser/src/control/Ruler.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8; fill-column: 100 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* Ruler Handler
*/
diff --git a/browser/src/control/Scroll.js b/browser/src/control/Scroll.js
index 668f63305f..c69f4a9193 100644
--- a/browser/src/control/Scroll.js
+++ b/browser/src/control/Scroll.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* Scroll methods
*/
L.Map.include({
diff --git a/browser/src/control/Search.js b/browser/src/control/Search.js
index b10571d693..9ad549a583 100644
--- a/browser/src/control/Search.js
+++ b/browser/src/control/Search.js
@@ -1,4 +1,13 @@
/* -*- js-indent-level: 8 -*- */
+/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
/* global app */
L.Map.include({
diff --git a/browser/src/control/Signing.js b/browser/src/control/Signing.js
index 0250453555..7c41388f6f 100644
--- a/browser/src/control/Signing.js
+++ b/browser/src/control/Signing.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* Document Signing
*/
diff --git a/browser/src/control/Styles.js b/browser/src/control/Styles.js
index 97474636ea..78f171c54b 100644
--- a/browser/src/control/Styles.js
+++ b/browser/src/control/Styles.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* Objects containing LO style mappings
*/
diff --git a/browser/src/control/Toolbar.js b/browser/src/control/Toolbar.js
index f380fdff0f..f49c36c390 100644
--- a/browser/src/control/Toolbar.js
+++ b/browser/src/control/Toolbar.js
@@ -1,5 +1,14 @@
/* -*- js-indent-level: 8; fill-column: 100 -*- */
/*
+ * Copyright the Collabora Online contributors.
+ *
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+/*
* Toolbar handler
*/