Skip to content

Commit 6d86df2

Browse files
author
Jordi Noguera
authored
Fix deprecated landscape URLs (#26251)
* Fix deprecated landscape URLs * Revert changes to language files
1 parent 4f742db commit 6d86df2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/en/blog/_posts/2020-12-02-dockershim-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ will have strictly better performance and less overhead. However, we encourage y
114114
to explore all the options from the [CNCF landscape] in case another would be an
115115
even better fit for your environment.
116116

117-
[CNCF landscape]: https://landscape.cncf.io/category=container-runtime&format=card-mode&grouping=category
117+
[CNCF landscape]: https://landscape.cncf.io/card-mode?category=container-runtime&grouping=category
118118

119119

120120
### What should I look out for when changing CRI implementations?

layouts/shortcodes/cncf-landscape.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
} else {
1616
var landscapeElements = document.querySelectorAll("#landscape");
1717
let categories=button.dataset.landscapeTypes;
18-
let link = "https://landscape.cncf.io/category="+encodeURIComponent(categories)+"&format=card-mode&grouping=category&embed=yes";
18+
let link = "https://landscape.cncf.io/card-mode?category="+encodeURIComponent(categories)+"&grouping=category&embed=yes";
1919
landscapeElements[0].src = link;
2020
}
2121
}
@@ -58,9 +58,9 @@
5858
{{- end -}}
5959
<div id="frameHolder">
6060
{{ if ( .Get "category" ) }}
61-
<iframe frameborder="0" id="landscape" scrolling="no" src="https://landscape.cncf.io/category={{ .Get "category" }}&format=card-mode&grouping=category&embed=yes" style="width: 1px; min-width: 100%"></iframe>
61+
<iframe frameborder="0" id="landscape" scrolling="no" src="https://landscape.cncf.io/card-mode?category={{ .Get "category" }}&grouping=category&embed=yes" style="width: 1px; min-width: 100%"></iframe>
6262
{{ else }}
63-
<iframe frameborder="0" id="landscape" scrolling="no" src="https://landscape.cncf.io/format=card-mode;embed=yes" style="width: 1px; min-width: 100%" title="CNCF Landscape"></iframe>
63+
<iframe frameborder="0" id="landscape" scrolling="no" src="https://landscape.cncf.io/card-mode?embed=yes" style="width: 1px; min-width: 100%" title="CNCF Landscape"></iframe>
6464
{{ end }}
6565
<script src="https://landscape.cncf.io/iframeResizer.js"></script>
6666
</div>

0 commit comments

Comments
 (0)