From 4643b179e6e08384a4f38649c510f287dd09016f Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 14:49:07 -0700
Subject: [PATCH 01/37] Update single.html with categories
---
layouts/_default/single.html | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 22d35e8f08..40ab8324f4 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -4,8 +4,18 @@
{{ .Title }}
{{ with .Params.description }}{{ . | markdownify }}
{{ end }}
+ {{ if .Params.categories }}
+
+
Categories:
+
+ {{ range .Params.categories }}
+ - {{ . }}
+ {{ end }}
+
+
+ {{ end }}
{{ .Content }}
-{{ end }}
\ No newline at end of file
+{{ end }}
From 60bf2d25103050fc2670ce66fcfb7dadad0526df Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 15:03:21 -0700
Subject: [PATCH 02/37] Update single.html
---
layouts/_default/single.html | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 40ab8324f4..00d44a5b05 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -4,16 +4,6 @@
{{ .Title }}
{{ with .Params.description }}{{ . | markdownify }}
{{ end }}
- {{ if .Params.categories }}
-
-
Categories:
-
- {{ range .Params.categories }}
- - {{ . }}
- {{ end }}
-
-
- {{ end }}
{{ .Content }}
From ba92406ad3448505add7972a4921e4aa337a948c Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 15:04:09 -0700
Subject: [PATCH 03/37] Update single.html
---
layouts/operate/single.html | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 36b11cc3b9..54097eb092 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -14,7 +14,17 @@
{{ end }}
{{ .Title }}
{{ with .Params.description }}{{ . | markdownify }}
{{ end }}
-
+ {{ if .Params.categories }}
+
+
Categories:
+
+ {{ range .Params.categories }}
+ - {{ . }}
+ {{ end }}
+
+
+{{ end }}
+
{{ if .Params.bannerText }}
From 7a6492bb6ac035b6ab33fc1777eadd6dbda0ab1d Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 15:32:57 -0700
Subject: [PATCH 04/37] Update single.html
---
layouts/operate/single.html | 36 ++++++++++++++++++++++++++++++++----
1 file changed, 32 insertions(+), 4 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 54097eb092..55e002de10 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -16,15 +16,43 @@
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
{{ if .Params.categories }}
-
Categories:
-
+ This content is applicable to the following:
+
{{ range .Params.categories }}
- - {{ . }}
+
+ {{ $displayName := . }}
+ {{ if eq . "rs" }}
+ {{ $displayName = "Redis Enterprise Software" }}
+ {{ end }}
+ | {{ $displayName }} |
+
+
+ {{ $displayName := . }}
+ {{ if eq . "rc" }}
+ {{ $displayName = "Redis Cloud" }}
+ {{ end }}
+ | {{ $displayName }} |
+
+
+ {{ $displayName := . }}
+ {{ if eq . "kubernetes" }}
+ {{ $displayName = "Redis Enterprise for Kubernetes" }}
+ {{ end }}
+ | {{ $displayName }} |
+
+
+ {{ $displayName := . }}
+ {{ if eq . "oss" }}
+ {{ $displayName = "Redis Source Available" }}
+ {{ end }}
+ | {{ $displayName }} |
+
{{ end }}
-
+
{{ end }}
+
{{ if .Params.bannerText }}
From a222f57d26e6b13b37bed8dcb28992c556c3572e Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 15:46:04 -0700
Subject: [PATCH 05/37] Update single.html
---
layouts/operate/single.html | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 55e002de10..ec356b6184 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -19,33 +19,34 @@
This content is applicable to the following:
{{ range .Params.categories }}
+ {{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
{{ $displayName := . }}
{{ if eq . "rs" }}
{{ $displayName = "Redis Enterprise Software" }}
{{ end }}
- | {{ $displayName }} |
+ {{ $displayName }} |
{{ $displayName := . }}
{{ if eq . "rc" }}
{{ $displayName = "Redis Cloud" }}
{{ end }}
- | {{ $displayName }} |
+ {{ $displayName }} |
{{ $displayName := . }}
{{ if eq . "kubernetes" }}
{{ $displayName = "Redis Enterprise for Kubernetes" }}
{{ end }}
- | {{ $displayName }} |
+ {{ $displayName }} |
{{ $displayName := . }}
{{ if eq . "oss" }}
{{ $displayName = "Redis Source Available" }}
{{ end }}
- | {{ $displayName }} |
+ {{ $displayName }} |
{{ end }}
From 5fdb8f5521d4021a6095e197f56e86dfb38afefa Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 15:50:52 -0700
Subject: [PATCH 06/37] Update single.html
---
layouts/operate/single.html | 1 +
1 file changed, 1 insertion(+)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index ec356b6184..c04e114a3c 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -49,6 +49,7 @@ This content is applicable to the following:
{{ $displayName }} |
{{ end }}
+ {{ end }}
{{ end }}
From e49ab47387fc67e0b500e9b8c7bd08d4ed31b45e Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 16:03:32 -0700
Subject: [PATCH 07/37] Update single.html
---
layouts/operate/single.html | 33 +++++++++------------------------
1 file changed, 9 insertions(+), 24 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index c04e114a3c..045cb1150b 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -14,7 +14,7 @@
{{ end }}
{{ .Title }}
{{ with .Params.description }}{{ . | markdownify }}
{{ end }}
- {{ if .Params.categories }}
+ {{ if .Params.categories }}
This content is applicable to the following:
@@ -22,29 +22,14 @@ This content is applicable to the following:
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
{{ $displayName := . }}
- {{ if eq . "rs" }}
- {{ $displayName = "Redis Enterprise Software" }}
- {{ end }}
- | {{ $displayName }} |
-
-
- {{ $displayName := . }}
- {{ if eq . "rc" }}
- {{ $displayName = "Redis Cloud" }}
- {{ end }}
- | {{ $displayName }} |
-
-
- {{ $displayName := . }}
- {{ if eq . "kubernetes" }}
- {{ $displayName = "Redis Enterprise for Kubernetes" }}
- {{ end }}
- | {{ $displayName }} |
-
-
- {{ $displayName := . }}
- {{ if eq . "oss" }}
- {{ $displayName = "Redis Source Available" }}
+ {{ if eq . "rs" }}
+ {{ $displayName = "Redis Enterprise Software" }}
+ {{ else if eq . "rc" }}
+ {{ $displayName = "Redis Cloud" }}
+ {{ else if eq . "kubernetes" }}
+ {{ $displayName = "Redis Enterprise for Kubernetes" }}
+ {{ else if eq . "oss" }}
+ {{ $displayName = "Redis Source Available" }}
{{ end }}
| {{ $displayName }} |
From ed3a2bd7585ef3e8464298674613d8443a60f5b6 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 16:09:14 -0700
Subject: [PATCH 08/37] Update single.html
---
layouts/operate/single.html | 43 +++++++++++++++++++++----------------
1 file changed, 25 insertions(+), 18 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 045cb1150b..4273eb5777 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -16,30 +16,37 @@
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
{{ if .Params.categories }}
-
This content is applicable to the following:
-
- {{ range .Params.categories }}
- {{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
-
- {{ $displayName := . }}
- {{ if eq . "rs" }}
- {{ $displayName = "Redis Enterprise Software" }}
- {{ else if eq . "rc" }}
- {{ $displayName = "Redis Cloud" }}
- {{ else if eq . "kubernetes" }}
- {{ $displayName = "Redis Enterprise for Kubernetes" }}
- {{ else if eq . "oss" }}
- {{ $displayName = "Redis Source Available" }}
+
+
+
+ | This content is applicable to the following: |
+
+
+
+ {{ range .Params.categories }}
+ {{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
+
+ {{ $displayName := . }}
+ {{ if eq . "rs" }}
+ {{ $displayName = "Redis Enterprise Software" }}
+ {{ else if eq . "rc" }}
+ {{ $displayName = "Redis Cloud" }}
+ {{ else if eq . "kubernetes" }}
+ {{ $displayName = "Redis Enterprise for Kubernetes" }}
+ {{ else if eq . "oss" }}
+ {{ $displayName = "Redis Source Available" }}
+ {{ end }}
+ | {{ $displayName }} |
+
+ {{ end }}
{{ end }}
- {{ $displayName }} |
-
- {{ end }}
- {{ end }}
+
{{ end }}
+
{{ if .Params.bannerText }}
From 4e51c17fa53325cbc4604096458298b066ec3da3 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 16:21:16 -0700
Subject: [PATCH 09/37] Update single.html
---
layouts/operate/single.html | 42 ++++++++++++++++++++-----------------
1 file changed, 23 insertions(+), 19 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 4273eb5777..e21930cfea 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -14,32 +14,35 @@
{{ end }}
{{ .Title }}
{{ with .Params.description }}{{ . | markdownify }}
{{ end }}
- {{ if .Params.categories }}
+ {{ if .Params.categories }}
- | This content is applicable to the following: |
+ This content is applicable to the following: |
+ {{ range .Params.categories }}
+ {{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
+ {{ $displayName := . }}
+ {{ if eq . "rs" }}
+ {{ $displayName = "Redis Enterprise Software" }}
+ {{ else if eq . "rc" }}
+ {{ $displayName = "Redis Cloud" }}
+ {{ else if eq . "kubernetes" }}
+ {{ $displayName = "Redis Enterprise for Kubernetes" }}
+ {{ else if eq . "oss" }}
+ {{ $displayName = "Redis Source Available" }}
+ {{ else if eq . "stack" }}
+ {{ $displayName = "Redis Stack" }}
+ {{ else if eq . "redisinsight" }}
+ {{ $displayName = "Redis Insight" }}
+ {{ end }}
+ {{ $displayName }} |
+ {{ end }}
+ {{ end }}
- {{ range .Params.categories }}
- {{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
-
- {{ $displayName := . }}
- {{ if eq . "rs" }}
- {{ $displayName = "Redis Enterprise Software" }}
- {{ else if eq . "rc" }}
- {{ $displayName = "Redis Cloud" }}
- {{ else if eq . "kubernetes" }}
- {{ $displayName = "Redis Enterprise for Kubernetes" }}
- {{ else if eq . "oss" }}
- {{ $displayName = "Redis Source Available" }}
- {{ end }}
- | {{ $displayName }} |
-
- {{ end }}
- {{ end }}
+
@@ -47,6 +50,7 @@
+
{{ if .Params.bannerText }}
From 49a7e69187b044161bcb69044518652c8df2ec4e Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 29 May 2024 16:26:56 -0700
Subject: [PATCH 10/37] Update single.html
---
layouts/operate/single.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index e21930cfea..8c9b2068ec 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -16,10 +16,10 @@
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
{{ if .Params.categories }}
-
+
- | This content is applicable to the following: |
+ This content is applicable to the following product(s): |
{{ range .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
{{ $displayName := . }}
From 714b3d5e4333c01c050cfea548802058babbe02f Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 30 May 2024 11:08:11 -0700
Subject: [PATCH 11/37] Update single.html
---
layouts/operate/single.html | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 8c9b2068ec..9780140aa1 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -25,16 +25,22 @@
{{ $displayName := . }}
{{ if eq . "rs" }}
{{ $displayName = "Redis Enterprise Software" }}
+ {{ $color = "#ffcccc" }}
{{ else if eq . "rc" }}
{{ $displayName = "Redis Cloud" }}
+ {{ $color = "#ccffcc" }}
{{ else if eq . "kubernetes" }}
{{ $displayName = "Redis Enterprise for Kubernetes" }}
+ {{ $color = "#ccccff" }}
{{ else if eq . "oss" }}
{{ $displayName = "Redis Source Available" }}
+ {{ $color = "#ffffcc" }}
{{ else if eq . "stack" }}
- {{ $displayName = "Redis Stack" }}
+ {{ $displayName = "Redis Stack" }}
+ {{ $color = "#e6ccff" }}
{{ else if eq . "redisinsight" }}
- {{ $displayName = "Redis Insight" }}
+ {{ $displayName = "Redis Insight" }}
+ {{ $color = "#ffebcc" }}
{{ end }}
| {{ $displayName }} |
{{ end }}
From c08a111eae4f83645b6690bde2ecd5752a458be5 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 30 May 2024 11:12:40 -0700
Subject: [PATCH 12/37] Update single.html
---
layouts/operate/single.html | 1 +
1 file changed, 1 insertion(+)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 9780140aa1..5800ecb6d3 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -23,6 +23,7 @@
{{ range .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
{{ $displayName := . }}
+ {{ $color := "#ffffff" }}
{{ if eq . "rs" }}
{{ $displayName = "Redis Enterprise Software" }}
{{ $color = "#ffcccc" }}
From aeaf18c7ba0ecdffe1b0ac077f4f1ebc93511f87 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 30 May 2024 11:20:03 -0700
Subject: [PATCH 13/37] Update single.html
---
layouts/operate/single.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 5800ecb6d3..fe96128db6 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -14,7 +14,7 @@
{{ end }}
{{ .Title }}
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
- {{ if .Params.categories }}
+ {{ if .Params.categories }}
@@ -41,9 +41,9 @@
{{ $color = "#e6ccff" }}
{{ else if eq . "redisinsight" }}
{{ $displayName = "Redis Insight" }}
- {{ $color = "#ffebcc" }}
+ {{ $color = "#ffebcc" }}
{{ end }}
- | {{ $displayName }} |
+ {{ $displayName }} |
{{ end }}
{{ end }}
From d51140bb877f37a3ce6970cfdf247d083c36fd4f Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 30 May 2024 12:10:22 -0700
Subject: [PATCH 14/37] Update single.html
---
layouts/operate/single.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index fe96128db6..02e7b7d4fa 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -26,22 +26,22 @@
{{ $color := "#ffffff" }}
{{ if eq . "rs" }}
{{ $displayName = "Redis Enterprise Software" }}
- {{ $color = "#ffcccc" }}
+ {{ $color = "#DCFF1E" }}
{{ else if eq . "rc" }}
{{ $displayName = "Redis Cloud" }}
- {{ $color = "#ccffcc" }}
+ {{ $color = "#80DBFF" }}
{{ else if eq . "kubernetes" }}
{{ $displayName = "Redis Enterprise for Kubernetes" }}
- {{ $color = "#ccccff" }}
+ {{ $color = "#8A99A0" }}
{{ else if eq . "oss" }}
{{ $displayName = "Redis Source Available" }}
- {{ $color = "#ffffcc" }}
+ {{ $color = "#C795E3" }}
{{ else if eq . "stack" }}
{{ $displayName = "Redis Stack" }}
- {{ $color = "#e6ccff" }}
+ {{ $color = "#2D4754" }}
{{ else if eq . "redisinsight" }}
{{ $displayName = "Redis Insight" }}
- {{ $color = "#ffebcc" }}
+ {{ $color = "#FD4439" }}
{{ end }}
| {{ $displayName }} |
{{ end }}
From 7f03c9cedfee1d789ada5340183717073fdfc4c8 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 30 May 2024 12:27:27 -0700
Subject: [PATCH 15/37] Update single.html
---
layouts/operate/single.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 02e7b7d4fa..1167ff4380 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -38,7 +38,7 @@
{{ $color = "#C795E3" }}
{{ else if eq . "stack" }}
{{ $displayName = "Redis Stack" }}
- {{ $color = "#2D4754" }}
+ {{ $color = "#49859C" }}
{{ else if eq . "redisinsight" }}
{{ $displayName = "Redis Insight" }}
{{ $color = "#FD4439" }}
From 3bc259156953a7c7cf8c159f4706cd5cc5146027 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 10:16:22 -0700
Subject: [PATCH 16/37] Update single.html
---
layouts/operate/single.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 1167ff4380..1f8a313415 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -16,10 +16,10 @@
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
{{ if .Params.categories }}
-
+
- | This content is applicable to the following product(s): |
+ This page applies to: |
{{ range .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
{{ $displayName := . }}
From 78400b5d13164ddaa785226c034216eb56ffb337 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 10:22:52 -0700
Subject: [PATCH 17/37] Update single.html
---
layouts/operate/single.html | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 1f8a313415..e6caf8240c 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -16,10 +16,10 @@
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
{{ if .Params.categories }}
-
+
- | This page applies to: |
+ This content is applicable to the following product(s): |
{{ range .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
{{ $displayName := . }}
@@ -35,15 +35,15 @@
{{ $color = "#8A99A0" }}
{{ else if eq . "oss" }}
{{ $displayName = "Redis Source Available" }}
- {{ $color = "#C795E3" }}
+ {{ $color = "#C795E3" }}
{{ else if eq . "stack" }}
{{ $displayName = "Redis Stack" }}
- {{ $color = "#49859C" }}
+ {{ $color = "#49859C" }}
{{ else if eq . "redisinsight" }}
{{ $displayName = "Redis Insight" }}
{{ $color = "#FD4439" }}
{{ end }}
- | {{ $displayName }} |
+ {{ $displayName }} |
{{ end }}
{{ end }}
From db512cb903cb4403dbfcd212fc7e8d1a8139532b Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 10:29:43 -0700
Subject: [PATCH 18/37] Update single.html
---
layouts/operate/single.html | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index e6caf8240c..0db4b918f5 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -15,11 +15,11 @@
{{ .Title }}
{{ with .Params.description }}{{ . | markdownify }}
{{ end }}
{{ if .Params.categories }}
-
-
+
+
- | This content is applicable to the following product(s): |
+ Applies to: |
{{ range .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
{{ $displayName := . }}
@@ -36,10 +36,10 @@
{{ else if eq . "oss" }}
{{ $displayName = "Redis Source Available" }}
{{ $color = "#C795E3" }}
- {{ else if eq . "stack" }}
+ {{ else if eq . "stack" }}
{{ $displayName = "Redis Stack" }}
{{ $color = "#49859C" }}
- {{ else if eq . "redisinsight" }}
+ {{ else if eq . "redisinsight" }}
{{ $displayName = "Redis Insight" }}
{{ $color = "#FD4439" }}
{{ end }}
@@ -58,6 +58,7 @@
+
{{ if .Params.bannerText }}
From ad626195ad46f41ad950a537d37c3e9f83c3814e Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 10:46:42 -0700
Subject: [PATCH 19/37] Update single.html
---
layouts/operate/single.html | 34 +++++++++++++++++++---------------
1 file changed, 19 insertions(+), 15 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 0db4b918f5..b576811685 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -19,31 +19,34 @@
- | Applies to: |
+ Applies to |
{{ range .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
{{ $displayName := . }}
- {{ $color := "#ffffff" }}
+ {{ $color := "#000000" }}
{{ if eq . "rs" }}
- {{ $displayName = "Redis Enterprise Software" }}
- {{ $color = "#DCFF1E" }}
+ {{ $displayName = "Redis Enterprise Software" }}
+ {{ $color = "#DCFF1E" }}
{{ else if eq . "rc" }}
- {{ $displayName = "Redis Cloud" }}
- {{ $color = "#80DBFF" }}
+ {{ $displayName = "Redis Cloud" }}
+ {{ $color = "#80DBFF" }}
{{ else if eq . "kubernetes" }}
- {{ $displayName = "Redis Enterprise for Kubernetes" }}
- {{ $color = "#8A99A0" }}
+ {{ $displayName = "Redis Enterprise for Kubernetes" }}
+ {{ $color = "#8A99A0" }}
{{ else if eq . "oss" }}
- {{ $displayName = "Redis Source Available" }}
- {{ $color = "#C795E3" }}
+ {{ $displayName = "Redis Source Available" }}
+ {{ $color = "#C795E3" }}
{{ else if eq . "stack" }}
- {{ $displayName = "Redis Stack" }}
- {{ $color = "#49859C" }}
+ {{ $displayName = "Redis Stack" }}
+ {{ $color = "#49859C" }}
{{ else if eq . "redisinsight" }}
- {{ $displayName = "Redis Insight" }}
- {{ $color = "#FD4439" }}
+ {{ $displayName = "Redis Insight" }}
+ {{ $color = "#FD4439" }}
{{ end }}
- {{ $displayName }} |
+
+ •
+ {{ $displayName }}
+ |
{{ end }}
{{ end }}
@@ -59,6 +62,7 @@
+
{{ if .Params.bannerText }}
From f062b90e51c707f01bd8d36b947f08273b139df2 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 10:52:56 -0700
Subject: [PATCH 20/37] Update single.html
---
layouts/operate/single.html | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index b576811685..04a1887c3d 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -14,12 +14,12 @@
{{ end }}
{{ .Title }}
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
- {{ if .Params.categories }}
+ {{ if .Params.categories }}
-
+
- | Applies to |
+ Applies to: |
{{ range .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
{{ $displayName := . }}
@@ -43,8 +43,9 @@
{{ $displayName = "Redis Insight" }}
{{ $color = "#FD4439" }}
{{ end }}
- |
- •
+ {{ $last := eq (add 1 (index $.Params.categories)) (len $.Params.categories) }}
+ |
+ •
{{ $displayName }}
|
{{ end }}
From 1507a3451d4ecd6881866e32916d4a4a0053f3f0 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 11:00:06 -0700
Subject: [PATCH 21/37] Update single.html
---
layouts/operate/single.html | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 04a1887c3d..4e5220001d 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -14,37 +14,37 @@
{{ end }}
{{ .Title }}
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
- {{ if .Params.categories }}
+ {{ if .Params.categories }}
- | Applies to: |
- {{ range .Params.categories }}
+ Applies to: |
+ {{ $total := len .Params.categories }}
+ {{ range $index, $element := .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
- {{ $displayName := . }}
+ {{ $displayName := $element }}
{{ $color := "#000000" }}
- {{ if eq . "rs" }}
+ {{ if eq $element "rs" }}
{{ $displayName = "Redis Enterprise Software" }}
{{ $color = "#DCFF1E" }}
- {{ else if eq . "rc" }}
+ {{ else if eq $element "rc" }}
{{ $displayName = "Redis Cloud" }}
{{ $color = "#80DBFF" }}
- {{ else if eq . "kubernetes" }}
+ {{ else if eq $element "kubernetes" }}
{{ $displayName = "Redis Enterprise for Kubernetes" }}
{{ $color = "#8A99A0" }}
- {{ else if eq . "oss" }}
+ {{ else if eq $element "oss" }}
{{ $displayName = "Redis Source Available" }}
{{ $color = "#C795E3" }}
- {{ else if eq . "stack" }}
+ {{ else if eq $element "stack" }}
{{ $displayName = "Redis Stack" }}
{{ $color = "#49859C" }}
- {{ else if eq . "redisinsight" }}
+ {{ else if eq $element "redisinsight" }}
{{ $displayName = "Redis Insight" }}
{{ $color = "#FD4439" }}
{{ end }}
- {{ $last := eq (add 1 (index $.Params.categories)) (len $.Params.categories) }}
-
+ |
•
{{ $displayName }}
|
@@ -64,6 +64,7 @@
+
{{ if .Params.bannerText }}
From 90173af3aafa66ac86701066c422a227b8161099 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 11:06:02 -0700
Subject: [PATCH 22/37] Update single.html
---
layouts/operate/single.html | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index 4e5220001d..b08ffccf8e 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -14,12 +14,11 @@
{{ end }}
{{ .Title }}
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
- {{ if .Params.categories }}
+ {{ if .Params.categories }}
- | Applies to: |
{{ $total := len .Params.categories }}
{{ range $index, $element := .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
@@ -44,8 +43,8 @@
{{ $displayName = "Redis Insight" }}
{{ $color = "#FD4439" }}
{{ end }}
- |
- •
+ |
+ •
{{ $displayName }}
|
{{ end }}
@@ -62,9 +61,6 @@
-
-
-
{{ if .Params.bannerText }}
From eb9c70703f96ec5843062425b979ba80728d57df Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 11:13:24 -0700
Subject: [PATCH 23/37] Update single.html
---
layouts/operate/single.html | 33 ++++++++++++++++++---------------
1 file changed, 18 insertions(+), 15 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index b08ffccf8e..ba93e19c32 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -14,41 +14,43 @@
{{ end }}
{{ .Title }}
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
- {{ if .Params.categories }}
+ {{ if .Params.categories }}
- {{ $total := len .Params.categories }}
- {{ range $index, $element := .Params.categories }}
- {{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
- {{ $displayName := $element }}
- {{ $color := "#000000" }}
+ {{ $visibleCategories := slice }}
+ {{ range .Params.categories }}
+ {{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
+ {{ $visibleCategories = append $visibleCategories . }}
+ {{ end }}
+ {{ end }}
+ {{ range $index, $element := $visibleCategories }}
+ {{ $displayName := $element }}
+ {{ $color := "#ffffff" }}
{{ if eq $element "rs" }}
{{ $displayName = "Redis Enterprise Software" }}
- {{ $color = "#DCFF1E" }}
+ {{ $color = "#DCFF1E" }}
{{ else if eq $element "rc" }}
{{ $displayName = "Redis Cloud" }}
- {{ $color = "#80DBFF" }}
+ {{ $color = "#80DBFF" }}
{{ else if eq $element "kubernetes" }}
{{ $displayName = "Redis Enterprise for Kubernetes" }}
- {{ $color = "#8A99A0" }}
+ {{ $color = "#8A99A0" }}
{{ else if eq $element "oss" }}
{{ $displayName = "Redis Source Available" }}
- {{ $color = "#C795E3" }}
+ {{ $color = "#C795E3" }}
{{ else if eq $element "stack" }}
{{ $displayName = "Redis Stack" }}
- {{ $color = "#49859C" }}
+ {{ $color = "#49859C" }}
{{ else if eq $element "redisinsight" }}
{{ $displayName = "Redis Insight" }}
- {{ $color = "#FD4439" }}
+ {{ $color = "#FD4439" }}
{{ end }}
- |
- •
+ |
{{ $displayName }}
|
{{ end }}
- {{ end }}
@@ -61,6 +63,7 @@
+
{{ if .Params.bannerText }}
From 05c652180d215d0e360e4d743f201496dfad64ad Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 11:16:42 -0700
Subject: [PATCH 24/37] Update single.html
---
layouts/operate/single.html | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index ba93e19c32..f965122d57 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -14,7 +14,7 @@
{{ end }}
{{ .Title }}
{{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
- {{ if .Params.categories }}
+ {{ if .Params.categories }}
@@ -22,7 +22,7 @@
{{ $visibleCategories := slice }}
{{ range .Params.categories }}
{{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
- {{ $visibleCategories = append $visibleCategories . }}
+ {{ $visibleCategories = $visibleCategories | append (slice .) }}
{{ end }}
{{ end }}
{{ range $index, $element := $visibleCategories }}
@@ -30,22 +30,22 @@
{{ $color := "#ffffff" }}
{{ if eq $element "rs" }}
{{ $displayName = "Redis Enterprise Software" }}
- {{ $color = "#DCFF1E" }}
+ {{ $color = "#DCFF1E" }}
{{ else if eq $element "rc" }}
{{ $displayName = "Redis Cloud" }}
- {{ $color = "#80DBFF" }}
+ {{ $color = "#80DBFF" }}
{{ else if eq $element "kubernetes" }}
{{ $displayName = "Redis Enterprise for Kubernetes" }}
- {{ $color = "#8A99A0" }}
+ {{ $color = "#8A99A0" }}
{{ else if eq $element "oss" }}
{{ $displayName = "Redis Source Available" }}
- {{ $color = "#C795E3" }}
+ {{ $color = "#C795E3" }}
{{ else if eq $element "stack" }}
{{ $displayName = "Redis Stack" }}
- {{ $color = "#49859C" }}
+ {{ $color = "#49859C" }}
{{ else if eq $element "redisinsight" }}
{{ $displayName = "Redis Insight" }}
- {{ $color = "#FD4439" }}
+ {{ $color = "#FD4439" }}
{{ end }}
{{ $displayName }}
@@ -64,6 +64,7 @@
+
{{ if .Params.bannerText }}
From bf7ba61ffa185c0ff5d077ea5d4d7bd1f30d3d58 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 6 Jun 2024 11:18:02 -0700
Subject: [PATCH 25/37] Update list.html
---
layouts/operate/list.html | 47 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 46 insertions(+), 1 deletion(-)
diff --git a/layouts/operate/list.html b/layouts/operate/list.html
index 674d0c8d99..66c27051ff 100644
--- a/layouts/operate/list.html
+++ b/layouts/operate/list.html
@@ -16,7 +16,52 @@
{{ with .Params.description }}{{ . | markdownify }} {{ end }}
-
+ {{ if .Params.categories }}
+
+
+
+
+ {{ $visibleCategories := slice }}
+ {{ range .Params.categories }}
+ {{ if not (in (slice "docs" "operate" "integrate" "develop") .) }}
+ {{ $visibleCategories = $visibleCategories | append (slice .) }}
+ {{ end }}
+ {{ end }}
+ {{ range $index, $element := $visibleCategories }}
+ {{ $displayName := $element }}
+ {{ $color := "#ffffff" }}
+ {{ if eq $element "rs" }}
+ {{ $displayName = "Redis Enterprise Software" }}
+ {{ $color = "#DCFF1E" }}
+ {{ else if eq $element "rc" }}
+ {{ $displayName = "Redis Cloud" }}
+ {{ $color = "#80DBFF" }}
+ {{ else if eq $element "kubernetes" }}
+ {{ $displayName = "Redis Enterprise for Kubernetes" }}
+ {{ $color = "#8A99A0" }}
+ {{ else if eq $element "oss" }}
+ {{ $displayName = "Redis Source Available" }}
+ {{ $color = "#C795E3" }}
+ {{ else if eq $element "stack" }}
+ {{ $displayName = "Redis Stack" }}
+ {{ $color = "#49859C" }}
+ {{ else if eq $element "redisinsight" }}
+ {{ $displayName = "Redis Insight" }}
+ {{ $color = "#FD4439" }}
+ {{ end }}
+ |
+ {{ $displayName }}
+ |
+ {{ end }}
+
+
+
+
+
+
+
+{{ end }}
+
{{ if .Params.bannerText }}
From b6a262a7b59963ce2f32e967d709c27532cc7e5c Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 20 Jun 2024 13:05:29 -0700
Subject: [PATCH 26/37] Update list.html
---
layouts/operate/list.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/operate/list.html b/layouts/operate/list.html
index 66c27051ff..4b224ba5f5 100644
--- a/layouts/operate/list.html
+++ b/layouts/operate/list.html
@@ -15,7 +15,7 @@
{{ .Title }}
- {{ with .Params.description }}{{ . | markdownify }} {{ end }}
+ {{ with .Params.description }}{{ . | markdownify }} {{ end }}
{{ if .Params.categories }}
@@ -40,7 +40,7 @@
{{ $displayName = "Redis Enterprise for Kubernetes" }}
{{ $color = "#8A99A0" }}
{{ else if eq $element "oss" }}
- {{ $displayName = "Redis Source Available" }}
+ {{ $displayName = "Redis Community Edition" }}
{{ $color = "#C795E3" }}
{{ else if eq $element "stack" }}
{{ $displayName = "Redis Stack" }}
From 41830cf70f145cda5a9cd263980cfc721c6841cb Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 20 Jun 2024 13:10:22 -0700
Subject: [PATCH 27/37] Update single.html
---
layouts/operate/single.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index f965122d57..f6898ea749 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -13,7 +13,7 @@
{{ partial "icons/logo-stack.html" (dict "context" . "class" "stack-logo-inline") }}
{{ end }}
{{ .Title }}
- {{ with .Params.description }}{{ . | markdownify }} {{ end }}
+ {{ with .Params.description }}{{ . | markdownify }} {{ end }}
{{ if .Params.categories }}
@@ -38,7 +38,7 @@
{{ $displayName = "Redis Enterprise for Kubernetes" }}
{{ $color = "#8A99A0" }}
{{ else if eq $element "oss" }}
- {{ $displayName = "Redis Source Available" }}
+ {{ $displayName = "Redis Community Edition" }}
{{ $color = "#C795E3" }}
{{ else if eq $element "stack" }}
{{ $displayName = "Redis Stack" }}
From 8f580a088d5fb465edc99cbacdfea752f078f782 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 20 Jun 2024 15:14:19 -0700
Subject: [PATCH 28/37] Update _index.md
---
content/operate/oss_and_stack/_index.md | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/content/operate/oss_and_stack/_index.md b/content/operate/oss_and_stack/_index.md
index 0c32cef1fd..8c0ee3e216 100644
--- a/content/operate/oss_and_stack/_index.md
+++ b/content/operate/oss_and_stack/_index.md
@@ -2,4 +2,9 @@
title: Redis OSS and Stack
description: Operate Redis OSS and Redis Stack
linkTitle: Redis OSS and Stack
----
\ No newline at end of file
+categories:
+- docs
+- operate
+- oss
+- stack
+---
From 49033e4dfa432bc1702a1de4f3c1ad4fb99e86a8 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 20 Jun 2024 15:15:54 -0700
Subject: [PATCH 29/37] Update _index.md
---
content/operate/redisinsight/_index.md | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/content/operate/redisinsight/_index.md b/content/operate/redisinsight/_index.md
index dc2f95d0a2..d481e7eb25 100644
--- a/content/operate/redisinsight/_index.md
+++ b/content/operate/redisinsight/_index.md
@@ -2,6 +2,10 @@
title: Redis Insight
description: Install and manage Redis Insight
linkTitle: Redis Insight
+categories:
+- docs
+- operate
+- redisinsight
---
-For information on using Redis Insight, see [these pages]({{< relref "/develop/connect/insight" >}}).
\ No newline at end of file
+For information on using Redis Insight, see [these pages]({{< relref "/develop/connect/insight" >}}).
From 83e15be9759d3e89a65f8216c785aa77822a0b10 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 20 Jun 2024 15:40:50 -0700
Subject: [PATCH 30/37] Update single.html
---
layouts/operate/single.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index f6898ea749..cabbf02c39 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -29,7 +29,7 @@
{{ $displayName := $element }}
{{ $color := "#ffffff" }}
{{ if eq $element "rs" }}
- {{ $displayName = "Redis Enterprise Software" }}
+ {{ $displayName = "Redis Enterprise Software" }}
{{ $color = "#DCFF1E" }}
{{ else if eq $element "rc" }}
{{ $displayName = "Redis Cloud" }}
From 532d9ffebebf6f703ab04b09e638a53fd974bcf9 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 20 Jun 2024 15:48:28 -0700
Subject: [PATCH 31/37] Create _index.md
---
content/categories/rs/_index.md | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 content/categories/rs/_index.md
diff --git a/content/categories/rs/_index.md b/content/categories/rs/_index.md
new file mode 100644
index 0000000000..f25fc284ed
--- /dev/null
+++ b/content/categories/rs/_index.md
@@ -0,0 +1,4 @@
+---
+title: "Redis Enterprise Software"
+description: " A list of all Redis Enterprise Software documents."
+---
From d8dd1b807c15510b6db84bea49651c83aec39548 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 20 Jun 2024 15:57:20 -0700
Subject: [PATCH 32/37] Update single.html
---
layouts/operate/single.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/layouts/operate/single.html b/layouts/operate/single.html
index cabbf02c39..f6898ea749 100644
--- a/layouts/operate/single.html
+++ b/layouts/operate/single.html
@@ -29,7 +29,7 @@
{{ $displayName := $element }}
{{ $color := "#ffffff" }}
{{ if eq $element "rs" }}
- {{ $displayName = "Redis Enterprise Software" }}
+ {{ $displayName = "Redis Enterprise Software" }}
{{ $color = "#DCFF1E" }}
{{ else if eq $element "rc" }}
{{ $displayName = "Redis Cloud" }}
From 88a24c1cc572963dfbc14aad387445005a158bae Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Thu, 20 Jun 2024 15:58:58 -0700
Subject: [PATCH 33/37] Delete content/categories/rs directory
---
content/categories/rs/_index.md | 4 ----
1 file changed, 4 deletions(-)
delete mode 100644 content/categories/rs/_index.md
diff --git a/content/categories/rs/_index.md b/content/categories/rs/_index.md
deleted file mode 100644
index f25fc284ed..0000000000
--- a/content/categories/rs/_index.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-title: "Redis Enterprise Software"
-description: " A list of all Redis Enterprise Software documents."
----
From 6372a06defd3e76fcb6c5732297755195d340dbd Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 22 Jan 2025 11:19:21 -0800
Subject: [PATCH 34/37] Update _index.md
---
content/operate/oss_and_stack/_index.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/content/operate/oss_and_stack/_index.md b/content/operate/oss_and_stack/_index.md
index 8c0ee3e216..8998f79478 100644
--- a/content/operate/oss_and_stack/_index.md
+++ b/content/operate/oss_and_stack/_index.md
@@ -1,7 +1,7 @@
---
-title: Redis OSS and Stack
-description: Operate Redis OSS and Redis Stack
-linkTitle: Redis OSS and Stack
+title: Redis Community Edition and Stack
+description: Operate Redis Community Edition and Redis Stack. Redis OSS was renamed Redis Community Edition (CE) with the v7.4 release.
+linkTitle: Redis Community Edition and Stack
categories:
- docs
- operate
From dce320c8aa3310329aa822832a62faf8003fbe63 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 22 Jan 2025 11:21:35 -0800
Subject: [PATCH 35/37] Update _index.md
---
content/operate/redisinsight/_index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/operate/redisinsight/_index.md b/content/operate/redisinsight/_index.md
index d481e7eb25..4d68d032fb 100644
--- a/content/operate/redisinsight/_index.md
+++ b/content/operate/redisinsight/_index.md
@@ -8,4 +8,4 @@ categories:
- redisinsight
---
-For information on using Redis Insight, see [these pages]({{< relref "/develop/connect/insight" >}}).
+For information on using Redis Insight, see [these pages]({{< relref "/develop/tools/insight" >}}).
From f5fd71b549ddb21e6ac6ccff2c6bbe615e85c30a Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 22 Jan 2025 11:42:56 -0800
Subject: [PATCH 36/37] Update _index.md
---
content/operate/oss_and_stack/_index.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/content/operate/oss_and_stack/_index.md b/content/operate/oss_and_stack/_index.md
index ee6a796f59..46ec8b5002 100644
--- a/content/operate/oss_and_stack/_index.md
+++ b/content/operate/oss_and_stack/_index.md
@@ -9,6 +9,5 @@ categories:
- oss
- stack
---
-=======
----
+
From 11395cb14741ab77d9ab76fc64037a6766d6c8d4 Mon Sep 17 00:00:00 2001
From: mich-elle-luna <153109578+mich-elle-luna@users.noreply.github.com>
Date: Wed, 22 Jan 2025 11:43:57 -0800
Subject: [PATCH 37/37] Update _index.md
---
content/operate/redisinsight/_index.md | 3 ---
1 file changed, 3 deletions(-)
diff --git a/content/operate/redisinsight/_index.md b/content/operate/redisinsight/_index.md
index 8354452d45..34ea2d7905 100644
--- a/content/operate/redisinsight/_index.md
+++ b/content/operate/redisinsight/_index.md
@@ -8,8 +8,5 @@ categories:
- redisinsight
---
-
-For information on using Redis Insight, see [these pages]({{< relref "/develop/tools/insight" >}}).
-=======
For information on using Redis Insight, see [these pages]({{< relref "/develop/tools/insight" >}}).
|