Skip to content

Commit a1ba701

Browse files
authored
Adds "Index all" (#659)
* add convenience list * add to utils list. * centralize, rename page, redirect from xyzzy
1 parent 1fb3316 commit a1ba701

File tree

6 files changed

+48
-61
lines changed

6 files changed

+48
-61
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Destination list
3+
---
4+
5+
6+
The following destinations are available:
7+
8+
{% for destination in site.data.catalog.destinations.items %}
9+
- **[{{ destination.display_name }}](/docs/{{ destination.url }})**{% if destination.status == "PUBLIC_BETA" %} (beta) {% endif %}
10+
{% endfor %}

src/connections/destinations/catalog/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ layout: catalog
55
menu_icon: "read-more"
66
---
77

8+
> info "Want a simpler list?"
9+
> Check out the [list of _all_ destinations](index-all/).
10+
11+
<br>
812
<div class="destinations-catalog">
913
{% assign categories = site.data.catalog.destination_categories.items | sort:"display_name" %}
1014

src/connections/destinations/xyzzy.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/utils/destination-betas.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Destination Beta finder
3+
hidden: true
4+
---
5+
6+
<table>
7+
<tr>
8+
<th> Destinations in beta</th>
9+
</tr>
10+
11+
{% for destination in site.data.catalog.destinations.items %}
12+
{% if destination.status == "PUBLIC_BETA" %}
13+
<tr>
14+
<td>[{{ destination.display_name }}](/docs/{{ destination.url }})</td>
15+
</tr>
16+
{% endif %}
17+
{% endfor %}
18+
</table>

src/utils/find-betas.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/utils/index.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
11
---
22
title: Docs build utilities
33
hidden: true
4+
redirect_from: '/connections/destinations/xyzzy/'
45
---
56

6-
This page lists some useful other pages for answering docs-related questions. This page is hidden (not indexed or searchable) but not secret.
7+
This page lists some useful pages for answering docs-related questions. This page is hidden (not indexed or searchable) but is not secret.
78

8-
### How do use that cool format?!
9-
10-
View the [Formatting Guide](/docs/utils/formatguide/) to see some of the neat stuff we can do with the docs.
9+
## Info about Integrations
1110

11+
### Destinations
1212

13-
### Why doesn't this integration page have any programmatic content?
13+
- [Alphabetical raw list of destinations](/docs/connections/destinations/catalog/index-all/)
14+
- [Destinations Connection Modes comparison](/docs/connections/destinations/cmodes-compare/)
15+
- [Destinations Methods comparisons](/docs/connections/destinations/methods-compare/)
16+
- [Destinations by category comparisons](/docs/connections/destinations/category-compare/)
17+
- [Destinations in beta](/docs/utils/beta-destinations/)
1418

15-
The liquid scripts run based on finding a match between the page path and the key in the `_data/catalog` files. Due to renames, these can fall out of date. Check out the [Find Mismatches page](/docs/utils/find-mismatches/) for a list of possible "problem child" destinations.
19+
### Sources
20+
- [Sources by category comparison](/docs/connections/sources/sources-compare/)
1621

17-
### Which integrations are in beta?
1822

19-
We have a [list of destinations in beta here](/docs/utils/find-betas/).
23+
## Info about the docs builds
2024

25+
### How do I use that cool format?!
2126

22-
### What other cool stuff is out there?
27+
View the [Formatting Guide](/docs/utils/formatguide/) to see some of the neat stuff we can do with the docs.
2328

24-
From XYZZY, you can see a these other cool and useful pages:
2529

26-
- [Destinations Connection Modes comparison](/docs/connections/destinations/cmodes-compare/)
27-
- [Destinations Methods comparisons](/docs/connections/destinations/methods-compare/)
28-
- [Destinations by category comparisons](/docs/connections/destinations/category-compare/)
30+
### Why doesn't this integration page have any programmatic content?
2931

30-
- [Sources by category comparison](/docs/connections/sources/sources-compare/)
32+
The liquid scripts run based on finding a match between the page path and the key in the `_data/catalog` files. Due to renames, these can fall out of date. Check out the [Find Mismatches page](/docs/utils/find-mismatches/) for a list of possible "problem child" destinations.

0 commit comments

Comments
 (0)