This is an automated email from the ASF dual-hosted git repository.
leonardcs pushed a commit to branch 731-configure-maven-rat
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
The following commit(s) were added to refs/heads/731-configure-maven-rat by
this push:
new 18abfb2a Fix basemap theme headers
18abfb2a is described below
commit 18abfb2afb957e5c4cfb264033a4326599cd4b33
Author: Leonard <[email protected]>
AuthorDate: Thu Jul 20 15:32:02 2023 +0200
Fix basemap theme headers
---
basemap/theme.js | 11 +++++++++++
basemap/themes/achromatomaly.js | 11 +++++++++++
basemap/themes/achromatopsia.js | 11 +++++++++++
basemap/themes/contrast.js | 11 +++++++++++
basemap/themes/dark.js | 11 +++++++++++
basemap/themes/default.js | 11 +++++++++++
basemap/themes/deuteranomaly.js | 11 +++++++++++
basemap/themes/deuteranopia.js | 11 +++++++++++
basemap/themes/grayscale.js | 11 +++++++++++
basemap/themes/light.js | 11 +++++++++++
basemap/themes/protanomaly.js | 11 +++++++++++
basemap/themes/protanopia.js | 11 +++++++++++
basemap/themes/transportation.js | 11 +++++++++++
basemap/themes/tritanomaly.js | 11 +++++++++++
basemap/themes/tritanopia.js | 11 +++++++++++
15 files changed, 165 insertions(+)
diff --git a/basemap/theme.js b/basemap/theme.js
index 00a70be1..1869a595 100644
--- a/basemap/theme.js
+++ b/basemap/theme.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import theme from "./themes/default.js";
export default theme;
\ No newline at end of file
diff --git a/basemap/themes/achromatomaly.js b/basemap/themes/achromatomaly.js
index 11430509..a6910356 100644
--- a/basemap/themes/achromatomaly.js
+++ b/basemap/themes/achromatomaly.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color, ColorBlind} from "../utils/color.js";
diff --git a/basemap/themes/achromatopsia.js b/basemap/themes/achromatopsia.js
index e593b603..e32de566 100644
--- a/basemap/themes/achromatopsia.js
+++ b/basemap/themes/achromatopsia.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color, ColorBlind} from "../utils/color.js";
diff --git a/basemap/themes/contrast.js b/basemap/themes/contrast.js
index f6cbee6a..0aa42722 100644
--- a/basemap/themes/contrast.js
+++ b/basemap/themes/contrast.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color} from "../utils/color.js";
diff --git a/basemap/themes/dark.js b/basemap/themes/dark.js
index e4c173ef..4656e9b2 100644
--- a/basemap/themes/dark.js
+++ b/basemap/themes/dark.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './light.js';
import {Color} from "../utils/color.js";
diff --git a/basemap/themes/default.js b/basemap/themes/default.js
index 87ef3b61..d85ae888 100644
--- a/basemap/themes/default.js
+++ b/basemap/themes/default.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
export default {
aerialwayStyleLinePaintLineColor: 'rgb(177, 177, 175)',
aerowayLineRunwayLineColor: 'rgba(187, 187, 204, 1.0)',
diff --git a/basemap/themes/deuteranomaly.js b/basemap/themes/deuteranomaly.js
index d82134d9..decaeee7 100644
--- a/basemap/themes/deuteranomaly.js
+++ b/basemap/themes/deuteranomaly.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color, ColorBlind} from "../utils/color.js";
diff --git a/basemap/themes/deuteranopia.js b/basemap/themes/deuteranopia.js
index 414e201a..7bb531af 100644
--- a/basemap/themes/deuteranopia.js
+++ b/basemap/themes/deuteranopia.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color, ColorBlind} from "../utils/color.js";
diff --git a/basemap/themes/grayscale.js b/basemap/themes/grayscale.js
index 53e42682..eb57b4c6 100644
--- a/basemap/themes/grayscale.js
+++ b/basemap/themes/grayscale.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color} from "../utils/color.js";
diff --git a/basemap/themes/light.js b/basemap/themes/light.js
index 547014ed..08b7afdf 100644
--- a/basemap/themes/light.js
+++ b/basemap/themes/light.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './grayscale.js';
import {Color} from "../utils/color.js";
diff --git a/basemap/themes/protanomaly.js b/basemap/themes/protanomaly.js
index 1dd25142..ca84f25e 100644
--- a/basemap/themes/protanomaly.js
+++ b/basemap/themes/protanomaly.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color, ColorBlind} from "../utils/color.js";
diff --git a/basemap/themes/protanopia.js b/basemap/themes/protanopia.js
index bc79a85e..f4509131 100644
--- a/basemap/themes/protanopia.js
+++ b/basemap/themes/protanopia.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color, ColorBlind} from "../utils/color.js";
diff --git a/basemap/themes/transportation.js b/basemap/themes/transportation.js
index 87f8cce2..1cf74998 100644
--- a/basemap/themes/transportation.js
+++ b/basemap/themes/transportation.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color} from "../utils/color.js";
diff --git a/basemap/themes/tritanomaly.js b/basemap/themes/tritanomaly.js
index ecbb8769..05ca14ea 100644
--- a/basemap/themes/tritanomaly.js
+++ b/basemap/themes/tritanomaly.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color, ColorBlind} from "../utils/color.js";
diff --git a/basemap/themes/tritanopia.js b/basemap/themes/tritanopia.js
index b1429910..4cbd96d6 100644
--- a/basemap/themes/tritanopia.js
+++ b/basemap/themes/tritanopia.js
@@ -1,3 +1,14 @@
+/**
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except
+ in compliance with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
distributed under the License
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express
+ or implied. See the License for the specific language governing permissions
and limitations under
+ the License.
+ **/
import style from './default.js';
import {Color, ColorBlind} from "../utils/color.js";