From 06aa5f5bc71c2b34809aee028c286a3c66c68f9d Mon Sep 17 00:00:00 2001 From: Phillip Hoff Date: Wed, 25 Jan 2023 12:44:37 -0800 Subject: [PATCH 01/10] Sketch inclusion of Pluggable Components docs. Signed-off-by: Phillip Hoff --- .gitmodules | 3 +++ daprdocs/config.toml | 4 ++++ .../pluggable-components-sdks/_index.md | 19 +++++++++++++++++++ sdkdocs/pluggable-components/dotnet | 1 + 4 files changed, 27 insertions(+) create mode 100644 daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md create mode 160000 sdkdocs/pluggable-components/dotnet diff --git a/.gitmodules b/.gitmodules index 6f4e986fb..3024748a2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -23,3 +23,6 @@ [submodule "sdkdocs/js"] path = sdkdocs/js url = https://github.com/dapr/js-sdk.git +[submodule "sdkdocs/pluggable-components/dotnet"] + path = sdkdocs/pluggable-components/dotnet + url = https://github.com/dapr-sandbox/components-dotnet-sdk diff --git a/daprdocs/config.toml b/daprdocs/config.toml index 9e2523a6f..992c7962b 100644 --- a/daprdocs/config.toml +++ b/daprdocs/config.toml @@ -67,6 +67,10 @@ id = "G-60C6Q1ETC1" source = "../sdkdocs/dotnet/daprdocs/content/en/dotnet-sdk-docs" target = "content/developing-applications/sdks/dotnet" lang = "en" + [[module.mounts]] + source = "../sdkdocs/pluggable-components/dotnet/daprdocs/content/en/dotnet-sdk-docs" + target = "content/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/pluggable-components-dotnet" + lang = "en" [[module.mounts]] source = "../sdkdocs/dotnet/daprdocs/content/en/dotnet-sdk-contributing" target = "content/contributing/sdk-contrib/" diff --git a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md new file mode 100644 index 000000000..c0ca51289 --- /dev/null +++ b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md @@ -0,0 +1,19 @@ +--- +type: docs +title: "Pluggable components SDKs" +linkTitle: "SDKs" +weight: 2000 +description: "Develop pluggable components in your favorite language" +no_list: true +--- + +The Dapr SDKs are the easiest way for you to create Dapr Pluggable Components. Choose your favorite language and get up and running with Dapr in minutes. + + +## Pluggable Components SDKs + +| Language | Status | +|----------|:------:| +| [.NET]({{< ref pluggable-components-dotnet >}}) | In development | +| [Java]({{< ref java >}}) | In development | +| [Go]({{< ref go >}}) | In development | diff --git a/sdkdocs/pluggable-components/dotnet b/sdkdocs/pluggable-components/dotnet new file mode 160000 index 000000000..6c1a835ed --- /dev/null +++ b/sdkdocs/pluggable-components/dotnet @@ -0,0 +1 @@ +Subproject commit 6c1a835edaf4820d30fdfcfd37c92cd50a47bd1d From e23e6e20ba5c3caf55e6022aa116f1f19ca48f9f Mon Sep 17 00:00:00 2001 From: Phillip Hoff Date: Thu, 26 Jan 2023 14:12:30 -0800 Subject: [PATCH 02/10] Add "preview" banner. Signed-off-by: Phillip Hoff --- .../pluggable-components-sdks/_index.md | 2 +- daprdocs/layouts/partials/version-banner.html | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md index c0ca51289..bd04b78f2 100644 --- a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md +++ b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md @@ -5,11 +5,11 @@ linkTitle: "SDKs" weight: 2000 description: "Develop pluggable components in your favorite language" no_list: true +is_preview: true --- The Dapr SDKs are the easiest way for you to create Dapr Pluggable Components. Choose your favorite language and get up and running with Dapr in minutes. - ## Pluggable Components SDKs | Language | Status | diff --git a/daprdocs/layouts/partials/version-banner.html b/daprdocs/layouts/partials/version-banner.html index 09b705b07..cda48b47c 100644 --- a/daprdocs/layouts/partials/version-banner.html +++ b/daprdocs/layouts/partials/version-banner.html @@ -13,3 +13,12 @@ {{ end }} {{ end }} + + + {{ if .Params.is_preview }} + {{ $color := "primary" }} +
+

This is documentation about a preview version of Dapr features.

+
+{{ end }} From b3f6c7c63676d71519e7a82628d4ec12a762fc6d Mon Sep 17 00:00:00 2001 From: Phillip Hoff Date: Wed, 8 Feb 2023 12:21:58 -0800 Subject: [PATCH 03/10] Updates per PR feedback. Signed-off-by: Phillip Hoff --- .../pluggable-components/pluggable-components-sdks/_index.md | 4 ++-- daprdocs/layouts/partials/version-banner.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md index bd04b78f2..4c7ef9ad6 100644 --- a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md +++ b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md @@ -8,9 +8,9 @@ no_list: true is_preview: true --- -The Dapr SDKs are the easiest way for you to create Dapr Pluggable Components. Choose your favorite language and get up and running with Dapr in minutes. +The Dapr SDKs are the easiest way for you to create pluggable components. Choose your favorite language and start creating components in minutes. -## Pluggable Components SDKs +## Pluggable components SDKs | Language | Status | |----------|:------:| diff --git a/daprdocs/layouts/partials/version-banner.html b/daprdocs/layouts/partials/version-banner.html index cda48b47c..a43934e33 100644 --- a/daprdocs/layouts/partials/version-banner.html +++ b/daprdocs/layouts/partials/version-banner.html @@ -19,6 +19,6 @@ {{ if .Params.is_preview }} {{ $color := "primary" }}
-

This is documentation about a preview version of Dapr features.

+

This is documentation on a preview feature.

{{ end }} From 1e3cb247dee0147a117e50ab4fd3f26e13d317ed Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Wed, 8 Feb 2023 15:26:09 -0800 Subject: [PATCH 04/10] Update daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md Signed-off-by: Mark Fussell --- .../pluggable-components/pluggable-components-sdks/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md index bd04b78f2..a0aca6815 100644 --- a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md +++ b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md @@ -8,7 +8,7 @@ no_list: true is_preview: true --- -The Dapr SDKs are the easiest way for you to create Dapr Pluggable Components. Choose your favorite language and get up and running with Dapr in minutes. +The Dapr SDKs are the easiest way for you to create pluggable components. Choose your favorite language and start creating components in minutes. ## Pluggable Components SDKs From 35847f0c69559c7332067d548958d1a92dfe9bdb Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Wed, 8 Feb 2023 15:26:20 -0800 Subject: [PATCH 05/10] Update daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md Signed-off-by: Mark Fussell --- .../pluggable-components/pluggable-components-sdks/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md index a0aca6815..4c7ef9ad6 100644 --- a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md +++ b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md @@ -10,7 +10,7 @@ is_preview: true The Dapr SDKs are the easiest way for you to create pluggable components. Choose your favorite language and start creating components in minutes. -## Pluggable Components SDKs +## Pluggable components SDKs | Language | Status | |----------|:------:| From dacf460aea7776f3dd620e4ba33d149fa1d2d5e0 Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Wed, 8 Feb 2023 15:26:36 -0800 Subject: [PATCH 06/10] Update daprdocs/layouts/partials/version-banner.html Signed-off-by: Mark Fussell --- daprdocs/layouts/partials/version-banner.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/layouts/partials/version-banner.html b/daprdocs/layouts/partials/version-banner.html index cda48b47c..a43934e33 100644 --- a/daprdocs/layouts/partials/version-banner.html +++ b/daprdocs/layouts/partials/version-banner.html @@ -19,6 +19,6 @@ {{ if .Params.is_preview }} {{ $color := "primary" }}
-

This is documentation about a preview version of Dapr features.

+

This is documentation on a preview feature.

{{ end }} From e92aec93dc470768786996a407009b0cb255d1e9 Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Mon, 13 Feb 2023 11:33:26 -0600 Subject: [PATCH 07/10] Update daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- .../pluggable-components/pluggable-components-sdks/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md index 4c7ef9ad6..4c5908182 100644 --- a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md +++ b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md @@ -14,6 +14,6 @@ The Dapr SDKs are the easiest way for you to create pluggable components. Choose | Language | Status | |----------|:------:| -| [.NET]({{< ref pluggable-components-dotnet >}}) | In development | +| [.NET]({{< ref dotnet-sdk-docs >}}) | In development | | [Java]({{< ref java >}}) | In development | | [Go]({{< ref go >}}) | In development | From 6f5052d0c3ac0e33dc12756f08c56718c4bd4bb8 Mon Sep 17 00:00:00 2001 From: Phillip Hoff Date: Mon, 13 Feb 2023 10:46:21 -0800 Subject: [PATCH 08/10] Update submodule commit to latest in main. Signed-off-by: Phillip Hoff --- sdkdocs/pluggable-components/dotnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdkdocs/pluggable-components/dotnet b/sdkdocs/pluggable-components/dotnet index 6c1a835ed..c753c3a6a 160000 --- a/sdkdocs/pluggable-components/dotnet +++ b/sdkdocs/pluggable-components/dotnet @@ -1 +1 @@ -Subproject commit 6c1a835edaf4820d30fdfcfd37c92cd50a47bd1d +Subproject commit c753c3a6ac4222cc6a30147c533c71051aef87ea From c1bbf905d9ef3b96eefb6ecceb77dc2379439af1 Mon Sep 17 00:00:00 2001 From: Phillip Hoff Date: Mon, 13 Feb 2023 11:03:53 -0800 Subject: [PATCH 09/10] Fixup doc ref. Signed-off-by: Phillip Hoff --- .../pluggable-components/pluggable-components-sdks/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md index 4c5908182..4c7ef9ad6 100644 --- a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md +++ b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md @@ -14,6 +14,6 @@ The Dapr SDKs are the easiest way for you to create pluggable components. Choose | Language | Status | |----------|:------:| -| [.NET]({{< ref dotnet-sdk-docs >}}) | In development | +| [.NET]({{< ref pluggable-components-dotnet >}}) | In development | | [Java]({{< ref java >}}) | In development | | [Go]({{< ref go >}}) | In development | From 5d6098bbfff255983fd7ebb1ff5c329891ee0795 Mon Sep 17 00:00:00 2001 From: Phillip Hoff Date: Mon, 13 Feb 2023 13:52:28 -0800 Subject: [PATCH 10/10] Remove references to Java and Go SDK docs. Signed-off-by: Phillip Hoff --- .../pluggable-components/pluggable-components-sdks/_index.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md index 4c7ef9ad6..d205ca3c8 100644 --- a/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md +++ b/daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/_index.md @@ -15,5 +15,3 @@ The Dapr SDKs are the easiest way for you to create pluggable components. Choose | Language | Status | |----------|:------:| | [.NET]({{< ref pluggable-components-dotnet >}}) | In development | -| [Java]({{< ref java >}}) | In development | -| [Go]({{< ref go >}}) | In development |