-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
481 changed files
with
51,240 additions
and
46,384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,49 @@ | ||
{% assign services = site.services %} | ||
{% assign services = services | sort: 'name' %} | ||
{% assign toggle = 0 %} | ||
{% assign service_count = services | size %} | ||
{% assign service_count = 0 %} | ||
<h4 style="padding-left: 20px; padding-top: 10px; padding-bottom: 10px;">Services</h4> | ||
<ul style="padding-left: 30px;"> | ||
{% if service_count == 0 %} | ||
<li><strong>No Entries</strong></li> | ||
{% else %} | ||
{% for entry in services %} | ||
|
||
{% assign tag_match = 0 %} | ||
{% for tag in entry.tags %} | ||
{% if tag == show_tag %} | ||
{% assign tag_match = 1 %} | ||
{% for entry in services %} | ||
|
||
{% assign tag_match = 0 %} | ||
{% for tag in entry.tags %} | ||
{% if tag == show_tag %} | ||
{% assign tag_match = 1 %} | ||
{% endif %} | ||
{% endfor %} | ||
|
||
{% if tag_match == 1 %} | ||
|
||
{% assign website_url = '' %} | ||
{% assign twitter_url = '' %} | ||
{% assign github_url = '' %} | ||
{% for common in entry.x-common %} | ||
{% if common.type == 'x-website' %} | ||
{% assign website_url = common.url %} | ||
{% endif %} | ||
{% if common.type == 'x-twitter' %} | ||
{% assign twitter_url = common.url %} | ||
{% endif %} | ||
{% if common.type == 'x-github' %} | ||
{% assign github_url = common.url %} | ||
{% endif %} | ||
{% endfor %} | ||
|
||
{% if tag_match == 1 %} | ||
|
||
{% assign website_url = '' %} | ||
{% assign twitter_url = '' %} | ||
{% assign github_url = '' %} | ||
{% for common in entry.x-common %} | ||
{% if common.type == 'x-website' %} | ||
{% assign website_url = common.url %} | ||
{% endif %} | ||
{% if common.type == 'x-twitter' %} | ||
{% assign twitter_url = common.url %} | ||
{% endif %} | ||
{% if common.type == 'x-github' %} | ||
{% assign github_url = common.url %} | ||
{% endif %} | ||
{% endfor %} | ||
|
||
<li><strong>{{ entry.name }}</strong> (<a href="{{ website_url }}">Website</a>) {% if github_url != '' %}(<a href="{{ github_url }}">Github</a>){% endif %}</li> | ||
|
||
{% if toggle == 0 %} | ||
{% assign toggle = 1 %} | ||
{% else %} | ||
{% assign toggle = 0 %} | ||
{% endif %} | ||
<li><strong>→ {{ entry.name }}</strong> (<a href="{{ website_url }}">Website</a>) {% if github_url != '' %}(<a href="{{ github_url }}">Github</a>){% endif %}</li> | ||
|
||
{% if toggle == 0 %} | ||
{% assign toggle = 1 %} | ||
{% else %} | ||
{% assign toggle = 0 %} | ||
{% endif %} | ||
|
||
{% endfor %} | ||
{% assign service_count = service_count | plus: 1 %} | ||
|
||
{% endif %} | ||
|
||
{% endfor %} | ||
{% if service_count == 0 %} | ||
<li><strong>→ No Entries</strong></li> | ||
{% endif %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,48 @@ | ||
{% assign tools = site.tools %} | ||
{% assign tools = tools | sort: 'name' %} | ||
{% assign toggle = 0 %} | ||
{% assign tool_count = tools | size %} | ||
{% assign tool_count = 0 %} | ||
<h4 style="padding-left: 20px; padding-top: 10px; padding-bottom: 10px;">Tools</h4> | ||
<ul style="padding-left: 30px;"> | ||
{% if tool_count == 0 %} | ||
<li><strong>No Entries</strong></li> | ||
{% else %} | ||
{% for entry in tools %} | ||
{% assign tag_match = 0 %} | ||
{% for tag in entry.tags %} | ||
{% if tag == show_tag %} | ||
{% assign tag_match = 1 %} | ||
{% for entry in tools %} | ||
{% assign tag_match = 0 %} | ||
{% for tag in entry.tags %} | ||
{% if tag == show_tag %} | ||
{% assign tag_match = 1 %} | ||
{% endif %} | ||
{% endfor %} | ||
|
||
{% if tag_match == 1 %} | ||
|
||
{% assign website_url = '' %} | ||
{% assign twitter_url = '' %} | ||
{% assign github_url = '' %} | ||
{% for common in entry.x-common %} | ||
{% if common.type == 'x-website' %} | ||
{% assign website_url = common.url %} | ||
{% endif %} | ||
{% if common.type == 'x-twitter' %} | ||
{% assign twitter_url = common.url %} | ||
{% endif %} | ||
{% if common.type == 'x-github' %} | ||
{% assign github_url = common.url %} | ||
{% endif %} | ||
{% endfor %} | ||
|
||
{% if tag_match == 1 %} | ||
<li><strong>→ {{ entry.name }}</strong> (<a href="{{ website_url }}">Website</a>) {% if github_url != '' %}(<a href="{{ github_url }}">Github</a>){% endif %}</li> | ||
|
||
{% assign website_url = '' %} | ||
{% assign twitter_url = '' %} | ||
{% assign github_url = '' %} | ||
{% for common in entry.x-common %} | ||
{% if common.type == 'x-website' %} | ||
{% assign website_url = common.url %} | ||
{% endif %} | ||
{% if common.type == 'x-twitter' %} | ||
{% assign twitter_url = common.url %} | ||
{% endif %} | ||
{% if common.type == 'x-github' %} | ||
{% assign github_url = common.url %} | ||
{% endif %} | ||
{% endfor %} | ||
|
||
<li><strong>{{ entry.name }}</strong> (<a href="{{ website_url }}">Website</a>) {% if github_url != '' %}(<a href="{{ github_url }}">Github</a>){% endif %}</li> | ||
{% if toggle == 0 %} | ||
{% assign toggle = 1 %} | ||
{% else %} | ||
{% assign toggle = 0 %} | ||
{% endif %} | ||
|
||
{% if toggle == 0 %} | ||
{% assign toggle = 1 %} | ||
{% else %} | ||
{% assign toggle = 0 %} | ||
{% endif %} | ||
{% assign tool_count = tool_count | plus: 1 %} | ||
|
||
{% endif %} | ||
{% endif %} | ||
|
||
{% endfor %} | ||
{% endfor %} | ||
{% if tool_count == 0 %} | ||
<li><strong>→ No Entries</strong></li> | ||
{% endif %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: Cenit IO | ||
slug: cenit-io | ||
description: | ||
image: http://api.specificationtoolbox.com/images/service-providers/cenit-io.png | ||
tags: | ||
- Integrations | ||
- Orchestration | ||
- Automation | ||
created: "2021-01-24" | ||
modified: "2021-01-24" | ||
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_services/cenit-io.md | ||
specificationVersion: "0.14" | ||
apis: [] | ||
include: [] | ||
x-common: | ||
- type: x-website | ||
url: https://cenit.io/ | ||
- type: x-github | ||
url: https://github.com/cenit-io | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: JetBrains OpenAPI Editor | ||
slug: jetbrains-openapi-editor | ||
description: Easily edit OpenAPI and Swagger specification files! Based on the Swagger plugin, from the same author. The paid plugin provides the following benefits; Live templates, more completions, more references (including nested references), YAML anchors/aliases/merge keys support, Swagger UI and ReDoc support with real-time updates, Optimized for performance, Support via email Sebastian Monte, Possibility for extensions, contact for more information. | ||
image: http://api.specificationtoolbox.com/images/service-providers/slug.png | ||
tags: | ||
- Editors | ||
- OpenAPI | ||
- IDE | ||
created: "2021-01-24" | ||
modified: "2021-01-24" | ||
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_services/ | ||
specificationVersion: "0.14" | ||
apis: [] | ||
include: [] | ||
x-common: | ||
- type: x-website | ||
url: https://plugins.jetbrains.com/plugin/12887-openapi-editor | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,5 @@ apis: [] | |
include: [] | ||
x-common: | ||
- type: x-website | ||
url: | ||
url: https://loadninja.com/ | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: Redocly | ||
slug: redocly | ||
description: | ||
image: http://api.specificationtoolbox.com/images/service-providers/redocly.png | ||
tags: | ||
- Documentation | ||
- Portals | ||
- Workflows | ||
- Orchestration | ||
- CLI | ||
created: "2021-01-22" | ||
modified: "2021-01-22" | ||
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_services/redocly.md | ||
specificationVersion: "0.14" | ||
apis: [] | ||
include: [] | ||
x-common: | ||
- type: x-website | ||
url: | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: Senya | ||
slug: senya | ||
description: Effortlessly Design API Specifications in Your Favorite JetBrains IDE Senya Editor offers you the tools to design OpenAPI 3.0 and Swagger 2.0 specifications. | ||
image: http://api.specificationtoolbox.com/images/service-providers/senya.png | ||
tags: | ||
- Editors | ||
- OpenAPI | ||
- IDE | ||
created: "2021-01-24" | ||
modified: "2021-01-24" | ||
url: https://raw.githubusercontent.com/api-specification-toolbox/toolbox/main/_services/senya.md | ||
specificationVersion: "0.14" | ||
apis: [] | ||
include: [] | ||
x-common: | ||
- type: x-website | ||
url: https://senya.io/ | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ tags: | |
- Documentation | ||
- Design | ||
- Clients | ||
- Editors | ||
apis: [] | ||
x-common: | ||
- type: x-website | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.