From 725eb2e57097f5ea5311d6b067ec4d535a292213 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Thu, 21 Mar 2019 12:41:54 -0500 Subject: [PATCH] URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * [ ] http://www.apache.org/licenses/ with 1 occurrences migrated to: https://www.apache.org/licenses/ ([https](https://www.apache.org/licenses/) result 200). * [ ] http://www.apache.org/licenses/LICENSE-2.0 with 12 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- LICENSE | 4 ++-- ui/src/app/shared/flo/support/utils.ts | 2 +- ui/src/app/shared/services/parser.ts | 2 +- ui/src/app/shared/services/tokenizer.ts | 2 +- ui/src/app/streams/components/flo/editor.service.ts | 2 +- ui/src/app/streams/components/flo/graph-to-text.ts | 2 +- ui/src/app/streams/components/flo/metamodel.service.ts | 2 +- ui/src/app/streams/components/flo/render.service.ts | 2 +- ui/src/app/streams/components/flo/support/node-helper.ts | 2 +- ui/src/app/streams/components/flo/support/utils.ts | 2 +- ui/src/app/streams/components/flo/support/view-helper.ts | 2 +- ui/src/app/streams/components/flo/text-to-graph.ts | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/LICENSE b/LICENSE index 8f71f43fe..d5dd862b1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -192,7 +192,7 @@ 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 + https://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, diff --git a/ui/src/app/shared/flo/support/utils.ts b/ui/src/app/shared/flo/support/utils.ts index f1246311c..b7d9bd14c 100644 --- a/ui/src/app/shared/flo/support/utils.ts +++ b/ui/src/app/shared/flo/support/utils.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/shared/services/parser.ts b/ui/src/app/shared/services/parser.ts index dd4b12956..71cd2e729 100644 --- a/ui/src/app/shared/services/parser.ts +++ b/ui/src/app/shared/services/parser.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/shared/services/tokenizer.ts b/ui/src/app/shared/services/tokenizer.ts index be2ef2a70..b7453752b 100644 --- a/ui/src/app/shared/services/tokenizer.ts +++ b/ui/src/app/shared/services/tokenizer.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/streams/components/flo/editor.service.ts b/ui/src/app/streams/components/flo/editor.service.ts index f447c896d..db9b81a04 100644 --- a/ui/src/app/streams/components/flo/editor.service.ts +++ b/ui/src/app/streams/components/flo/editor.service.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/streams/components/flo/graph-to-text.ts b/ui/src/app/streams/components/flo/graph-to-text.ts index 29401f99e..e595dc559 100644 --- a/ui/src/app/streams/components/flo/graph-to-text.ts +++ b/ui/src/app/streams/components/flo/graph-to-text.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/streams/components/flo/metamodel.service.ts b/ui/src/app/streams/components/flo/metamodel.service.ts index 4fd5c6da5..9e72d3861 100644 --- a/ui/src/app/streams/components/flo/metamodel.service.ts +++ b/ui/src/app/streams/components/flo/metamodel.service.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/streams/components/flo/render.service.ts b/ui/src/app/streams/components/flo/render.service.ts index 738f5ee6a..4c41ea29b 100644 --- a/ui/src/app/streams/components/flo/render.service.ts +++ b/ui/src/app/streams/components/flo/render.service.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/streams/components/flo/support/node-helper.ts b/ui/src/app/streams/components/flo/support/node-helper.ts index 249bded11..492e41b51 100644 --- a/ui/src/app/streams/components/flo/support/node-helper.ts +++ b/ui/src/app/streams/components/flo/support/node-helper.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/streams/components/flo/support/utils.ts b/ui/src/app/streams/components/flo/support/utils.ts index 3efbf9d1c..f1573de45 100644 --- a/ui/src/app/streams/components/flo/support/utils.ts +++ b/ui/src/app/streams/components/flo/support/utils.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/streams/components/flo/support/view-helper.ts b/ui/src/app/streams/components/flo/support/view-helper.ts index 1d969f11b..3645cb5c0 100644 --- a/ui/src/app/streams/components/flo/support/view-helper.ts +++ b/ui/src/app/streams/components/flo/support/view-helper.ts @@ -5,7 +5,7 @@ * 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 + * https://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, diff --git a/ui/src/app/streams/components/flo/text-to-graph.ts b/ui/src/app/streams/components/flo/text-to-graph.ts index 431da4c44..64c3f9709 100644 --- a/ui/src/app/streams/components/flo/text-to-graph.ts +++ b/ui/src/app/streams/components/flo/text-to-graph.ts @@ -5,7 +5,7 @@ * 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 + * https://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,