Skip to content

Commit

Permalink
Revert "chore: update all http to https to resolve WS1262 security vu…
Browse files Browse the repository at this point in the history
…lnerability (#3658)"

This reverts commit de5398f.
  • Loading branch information
awentzel authored Aug 12, 2020
1 parent 271f7f7 commit e9c07a4
Show file tree
Hide file tree
Showing 112 changed files with 180 additions and 180 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion examples/site-rebrand-tutorial/FastPage/img/left-arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const template = html`
width="9"
height="9"
viewBox="0 0 9 9"
xmlns="https://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
>
<path
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function refresh(className: string): JSX.Element {
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="https://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
Expand All @@ -25,7 +25,7 @@ export function revertChanges(className: string): JSX.Element {
height="16"
viewBox="0 0 15 16"
fill="none"
xmlns="https://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
Expand All @@ -43,7 +43,7 @@ export function detach(className: string): JSX.Element {
height="15"
viewBox="0 0 14 15"
fill="none"
xmlns="https://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
Expand Down
12 changes: 6 additions & 6 deletions packages/tooling/fast-tooling-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ Example:

```json
{
"$schema": "https://json-schema.org/schema#",
"$schema": "http://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand Down Expand Up @@ -353,7 +353,7 @@ Example:

```json
{
"$schema": "https://json-schema.org/schema#",
"$schema": "http://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand Down Expand Up @@ -387,7 +387,7 @@ Example:

```json
{
"$schema": "https://json-schema.org/schema#",
"$schema": "http://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand All @@ -413,7 +413,7 @@ Example:

```json
{
"$schema": "https://json-schema.org/schema#",
"$schema": "http://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand Down Expand Up @@ -493,7 +493,7 @@ Example:

```json
{
"$schema": "https://json-schema.org/schema#",
"$schema": "http://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"oneOf": [
Expand Down Expand Up @@ -529,7 +529,7 @@ Any enums will be converted to a select dropdown.

```json
{
"$schema": "https://json-schema.org/schema#",
"$schema": "http://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with children",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component without children",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema, ReservedElementMappingKeyword } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Fancy button",
[ReservedElementMappingKeyword.mapsToTagName]: "fancy-button",
description: "A test component's schema definition.",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Text",
description: "A test component's schema definition.",
type: "string",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with horizontal alignment",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with all control types",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with anyOf",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with array",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Badge",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with checkbox",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with custom properties ",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with children",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component interpreted by a plugin",
description: "A test component's schema definition.",
type: "string",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with const",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with custom controls",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with defaults",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with additional properties",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with all disabled types",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "General example",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "General example",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with invalid data",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
type: "object",
id: "mergedOneOf",
title: "Merged oneOf",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with a nested oneOf",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with null",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with number-field",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with objects",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Complex nesting arrays with oneOf",
type: "object",
id: "oneOfArrays",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with oneOf",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with text-field",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
description: "A test component's schema definition.",
id: "text",
title: "Text",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with text-field",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "https://json-schema.org/schema#",
$schema: "http://json-schema.org/schema#",
title: "Component with tooltips",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/schema#",
"$schema": "http://json-schema.org/schema#",
"title": "CSS Background",
"description": "A CSS background component's schema definition.",
"id": "@microsoft/fast-tooling-react/css-background",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/schema#",
"$schema": "http://json-schema.org/schema#",
"title": "CSS border radius",
"description": "A CSS border radius component's schema definition.",
"id": "@microsoft/fast-tooling-react/css-border-radius",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default class CSSBorderRadius extends Foundation<
width="14"
height="14"
viewBox="0 0 14 14"
xmlns="https://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
>
<path
className={this.generatePathClassNames(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/schema#",
"$schema": "http://json-schema.org/schema#",
"title": "CSS Border",
"description": "A CSS border component's schema definition.",
"id": "@microsoft/fast-tooling-react/css-border",
Expand Down
Loading

0 comments on commit e9c07a4

Please sign in to comment.