From a2372ac56de06f7df1beb7b006881e1815b3bebf Mon Sep 17 00:00:00 2001 From: Shamiul Mowla Date: Wed, 17 Jan 2024 15:29:09 -0500 Subject: [PATCH] Add copyright notice to files. --- sandbox/src/App.js | 12 ++++++++++++ sandbox/src/DataInsertionAPI.js | 12 ++++++++++++ sandbox/src/DualTag.js | 12 ++++++++++++ sandbox/src/EventMerge.js | 12 ++++++++++++ sandbox/src/Home.js | 12 ++++++++++++ sandbox/src/Identity.js | 18 +++++++++--------- sandbox/src/LargePayload.js | 12 ++++++++++++ sandbox/src/Links.js | 12 ++++++++++++ sandbox/src/OrgTwo.js | 12 ++++++++++++ sandbox/src/Personalization.js | 12 ++++++++++++ sandbox/src/PersonalizationAjo.js | 12 ++++++++++++ .../src/PersonalizationAnalyticsClientSide.js | 12 ++++++++++++ sandbox/src/RedirectOffers.js | 12 ++++++++++++ sandbox/src/RedirectedNewPage.js | 12 ++++++++++++ .../InAppMessagesDemo/InAppMessages.js | 12 ++++++++++++ sandbox/src/index.js | 3 ++- 16 files changed, 179 insertions(+), 10 deletions(-) diff --git a/sandbox/src/App.js b/sandbox/src/App.js index e6e398deb..9904d568d 100755 --- a/sandbox/src/App.js +++ b/sandbox/src/App.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + import React from "react"; import { BrowserRouter as Router, Route, Link } from "react-router-dom"; diff --git a/sandbox/src/DataInsertionAPI.js b/sandbox/src/DataInsertionAPI.js index 63ec6cb74..370fb7869 100644 --- a/sandbox/src/DataInsertionAPI.js +++ b/sandbox/src/DataInsertionAPI.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + const trackingServer = "ujsl.sc.omtrdc.net"; const reportSuite = "ujslecommerce"; diff --git a/sandbox/src/DualTag.js b/sandbox/src/DualTag.js index ccf31451e..79b77f284 100644 --- a/sandbox/src/DualTag.js +++ b/sandbox/src/DualTag.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + import React from "react"; import { Heading } from "@adobe/react-spectrum"; import UnsafeContentSecurityPolicy from "./components/UnsafeContentSecurityPolicy"; diff --git a/sandbox/src/EventMerge.js b/sandbox/src/EventMerge.js index 6ad3b123f..cb141bfac 100644 --- a/sandbox/src/EventMerge.js +++ b/sandbox/src/EventMerge.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + /* eslint-disable no-console */ import React, { useRef, useEffect } from "react"; diff --git a/sandbox/src/Home.js b/sandbox/src/Home.js index af254b848..6e74e8dab 100644 --- a/sandbox/src/Home.js +++ b/sandbox/src/Home.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + /* eslint-disable no-console, func-names */ import React from "react"; diff --git a/sandbox/src/Identity.js b/sandbox/src/Identity.js index 2ffaba17d..a96417dca 100644 --- a/sandbox/src/Identity.js +++ b/sandbox/src/Identity.js @@ -1,14 +1,14 @@ /* - Copyright 2022 Adobe. All rights reserved. - This file is licensed to you 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 +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS - OF ANY KIND, either express or implied. See the License for the specific language - governing permissions and limitations under the License. - */ +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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ /* eslint-disable no-console, func-names */ diff --git a/sandbox/src/LargePayload.js b/sandbox/src/LargePayload.js index 5de77e038..93e7cce6e 100644 --- a/sandbox/src/LargePayload.js +++ b/sandbox/src/LargePayload.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + import React from "react"; import { Heading } from "@adobe/react-spectrum"; import ContentSecurityPolicy from "./components/ContentSecurityPolicy"; diff --git a/sandbox/src/Links.js b/sandbox/src/Links.js index a89de44bb..81063d47d 100644 --- a/sandbox/src/Links.js +++ b/sandbox/src/Links.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + import React from "react"; import { Heading } from "@adobe/react-spectrum"; import ContentSecurityPolicy from "./components/ContentSecurityPolicy"; diff --git a/sandbox/src/OrgTwo.js b/sandbox/src/OrgTwo.js index 37abc12d4..cc43a8676 100644 --- a/sandbox/src/OrgTwo.js +++ b/sandbox/src/OrgTwo.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + import React from "react"; import { Heading } from "@adobe/react-spectrum"; import useSendPageViewEvent from "./useSendPageViewEvent"; diff --git a/sandbox/src/Personalization.js b/sandbox/src/Personalization.js index f6fa75ad0..ce298a728 100644 --- a/sandbox/src/Personalization.js +++ b/sandbox/src/Personalization.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + import React from "react"; import { Heading } from "@adobe/react-spectrum"; import ContentSecurityPolicy from "./components/ContentSecurityPolicy"; diff --git a/sandbox/src/PersonalizationAjo.js b/sandbox/src/PersonalizationAjo.js index 6cd8f2dc4..2d9fbd2e9 100644 --- a/sandbox/src/PersonalizationAjo.js +++ b/sandbox/src/PersonalizationAjo.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + import React from "react"; import { Heading } from "@adobe/react-spectrum"; import ContentSecurityPolicy from "./components/ContentSecurityPolicy"; diff --git a/sandbox/src/PersonalizationAnalyticsClientSide.js b/sandbox/src/PersonalizationAnalyticsClientSide.js index 30a9756a3..a10777b04 100644 --- a/sandbox/src/PersonalizationAnalyticsClientSide.js +++ b/sandbox/src/PersonalizationAnalyticsClientSide.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + import React, { useEffect } from "react"; import { Heading } from "@adobe/react-spectrum"; import { Link, Route, Switch, useRouteMatch } from "react-router-dom"; diff --git a/sandbox/src/RedirectOffers.js b/sandbox/src/RedirectOffers.js index 7cd9e4115..e3ab4d64f 100644 --- a/sandbox/src/RedirectOffers.js +++ b/sandbox/src/RedirectOffers.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + /* eslint-disable no-console */ import React, { useEffect } from "react"; diff --git a/sandbox/src/RedirectedNewPage.js b/sandbox/src/RedirectedNewPage.js index 34edf53c2..50cd134c1 100644 --- a/sandbox/src/RedirectedNewPage.js +++ b/sandbox/src/RedirectedNewPage.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + /* eslint-disable no-console */ import React, { useEffect } from "react"; diff --git a/sandbox/src/components/InAppMessagesDemo/InAppMessages.js b/sandbox/src/components/InAppMessagesDemo/InAppMessages.js index 277389558..fe07769b4 100644 --- a/sandbox/src/components/InAppMessagesDemo/InAppMessages.js +++ b/sandbox/src/components/InAppMessagesDemo/InAppMessages.js @@ -1,3 +1,15 @@ +/* +Copyright 2023 Adobe. All rights reserved. +This file is licensed to you 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 REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + /* eslint-disable no-bitwise, no-console */ import React, { useEffect, useState } from "react"; import ContentSecurityPolicy from "../ContentSecurityPolicy"; diff --git a/sandbox/src/index.js b/sandbox/src/index.js index a2f69009a..f882ca502 100755 --- a/sandbox/src/index.js +++ b/sandbox/src/index.js @@ -1,5 +1,5 @@ /* -Copyright 2019 Adobe. All rights reserved. +Copyright 2023 Adobe. All rights reserved. This file is licensed to you 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 @@ -27,3 +27,4 @@ ReactDOM.render( ); serviceWorker.unregister(); +a;