Skip to content

Adds "Index all" #659

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Feb 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/connections/destinations/catalog/index-all.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Destination list
---


The following destinations are available:

{% for destination in site.data.catalog.destinations.items %}
- **[{{ destination.display_name }}](/docs/{{ destination.url }})**{% if destination.status == "PUBLIC_BETA" %} (beta) {% endif %}
{% endfor %}
4 changes: 4 additions & 0 deletions src/connections/destinations/catalog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ layout: catalog
menu_icon: "read-more"
---

> info "Want a simpler list?"
> Check out the [list of _all_ destinations](index-all/).

<br>
<div class="destinations-catalog">
{% assign categories = site.data.catalog.destination_categories.items | sort:"display_name" %}

Expand Down
10 changes: 0 additions & 10 deletions src/connections/destinations/xyzzy.md

This file was deleted.

18 changes: 18 additions & 0 deletions src/utils/destination-betas.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: Destination Beta finder
hidden: true
---

<table>
<tr>
<th> Destinations in beta</th>
</tr>

{% for destination in site.data.catalog.destinations.items %}
{% if destination.status == "PUBLIC_BETA" %}
<tr>
<td>[{{ destination.display_name }}](/docs/{{ destination.url }})</td>
</tr>
{% endif %}
{% endfor %}
</table>
37 changes: 0 additions & 37 deletions src/utils/find-betas.md

This file was deleted.

30 changes: 16 additions & 14 deletions src/utils/index.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
---
title: Docs build utilities
hidden: true
redirect_from: '/connections/destinations/xyzzy/'
---

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

### How do use that cool format?!

View the [Formatting Guide](/docs/utils/formatguide/) to see some of the neat stuff we can do with the docs.
## Info about Integrations

### Destinations

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

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.
### Sources
- [Sources by category comparison](/docs/connections/sources/sources-compare/)

### Which integrations are in beta?

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

### How do I use that cool format?!

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

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

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

- [Sources by category comparison](/docs/connections/sources/sources-compare/)
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.