-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
executable file
·228 lines (210 loc) · 12.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
---
layout: default
title: API Specification Toolbox
---
<div class="sidebar-page-container" style="padding-top: 10px;">
<div class="auto-container" style="padding-top: 15px;">
<p>This is a toolbox of many specifications, services, tools, people, and other resources. There is a lot of information available here, and it is something that is always expanding. Feel free to sort through all of the information here, or you can just get started with three of the most important specifications to the world of APIs.</p>
<center>
<div style="width: 100%; padding: 5px; text-align:center; background-color:#7070FF; color:#FFF;">
<a href="/report/" style="color: #FFF;" target="_blank"><strong>Contribute to the API Specification Report</strong></a>
</div>
</center>
<table width="100%" align="center" border="1">
<tr><td colspan="3"><hr></td></tr>
{% assign specifications = site.specifications %}
{% for entry in specifications %}
{% if entry.name == 'OpenAPI' %}
<tr>
<td width="24%" align="center">
<a href="{{ entry.url }}"><img src="{{ entry.image }}" alt="" width="375"></a><br>
</td>
<td width="38%" align="center">
<table width="100%"
<tr>
<td width="40%" align="center">
<a href="{{ entry.url }}"><img src="/images/learn.png" alt="" width="90"></a><br>
<a href="{{ entry.url }}">Learn</a>
</td>
<td width="60%">
<ul>
{% for common in entry.x-common %}
{% assign tagged = 0 %}
{% for tag in common.x-tags %}
{% if tag == 'Learn' %}
{% assign tagged = 1 %}
{% endif %}
{% endfor %}
{% if tagged == 1 %}
<li>→ <a href="{{ common.url }}">{{ common.x-name }}</a></li>
{% endif %}
{% endfor %}
</ul>
</td>
</tr>
</table>
</td>
<td width="38%" align="center">
<table width="100%"
<tr>
<td width="40%" align="center">
<a href="{{ entry.url }}"><img src="/images/contribute.png" alt="" width="90"></a><br>
<a href="{{ entry.url }}">Contribute</a>
</td>
<td width="60%">
<ul>
{% for common in entry.x-common %}
{% assign tagged = 0 %}
{% for tag in common.x-tags %}
{% if tag == 'Contribute' %}
{% assign tagged = 1 %}
{% endif %}
{% endfor %}
{% if tagged == 1 %}
<li>→ <a href="{{ common.url }}">{{ common.x-name }}</a></li>
{% endif %}
{% endfor %}
</ul>
</td>
</tr>
</table>
</td>
</tr>
{% endif %}
{% endfor %}
<tr><td colspan="3"><hr></td></tr>
{% for entry in specifications %}
{% if entry.name == 'AsyncAPI' %}
<tr>
<td width="24%" align="center">
<a href="{{ entry.url }}"><img src="{{ entry.image }}" alt="" width="375"></a><br>
</td>
<td width="38%" align="center">
<table width="100%"
<tr>
<td width="40%" align="center">
<a href="{{ entry.url }}"><img src="/images/learn.png" alt="" width="90"></a><br>
<a href="{{ entry.url }}">Learn</a>
</td>
<td width="60%">
<ul>
{% for common in entry.x-common %}
{% assign tagged = 0 %}
{% for tag in common.x-tags %}
{% if tag == 'Learn' %}
{% assign tagged = 1 %}
{% endif %}
{% endfor %}
{% if tagged == 1 %}
<li>→ <a href="{{ common.url }}">{{ common.x-name }}</a></li>
{% endif %}
{% endfor %}
</ul>
</td>
</tr>
</table>
</td>
<td width="38%" align="center">
<table width="100%"
<tr>
<td width="40%" align="center">
<a href="{{ entry.url }}"><img src="/images/contribute.png" alt="" width="90"></a><br>
<a href="{{ entry.url }}">Contribute</a>
</td>
<td width="60%">
<ul>
{% for common in entry.x-common %}
{% assign tagged = 0 %}
{% for tag in common.x-tags %}
{% if tag == 'Contribute' %}
{% assign tagged = 1 %}
{% endif %}
{% endfor %}
{% if tagged == 1 %}
<li>→ <a href="{{ common.url }}">{{ common.x-name }}</a></li>
{% endif %}
{% endfor %}
</ul>
</td>
</tr>
</table>
</td>
</tr>
{% endif %}
{% endfor %}
<tr><td colspan="3"><hr></td></tr>
{% for entry in specifications %}
{% if entry.name == 'JSON Schema' %}
<tr>
<td width="24%" align="center">
<a href="{{ entry.url }}"><img src="{{ entry.image }}" alt="" width="375"></a><br>
</td>
<td width="38%" align="center">
<table width="100%"
<tr>
<td width="40%" align="center">
<a href="{{ entry.url }}"><img src="/images/learn.png" alt="" width="90"></a><br>
<a href="{{ entry.url }}">Learn</a>
</td>
<td width="60%">
<ul>
{% for common in entry.x-common %}
{% assign tagged = 0 %}
{% for tag in common.x-tags %}
{% if tag == 'Learn' %}
{% assign tagged = 1 %}
{% endif %}
{% endfor %}
{% if tagged == 1 %}
<li>→ <a href="{{ common.url }}">{{ common.x-name }}</a></li>
{% endif %}
{% endfor %}
</ul>
</td>
</tr>
</table>
</td>
<td width="38%" align="center">
<table width="100%"
<tr>
<td width="40%" align="center">
<a href="{{ entry.url }}"><img src="/images/contribute.png" alt="" width="90"></a><br>
<a href="{{ entry.url }}">Contribute</a>
</td>
<td width="60%">
<ul>
{% for common in entry.x-common %}
{% assign tagged = 0 %}
{% for tag in common.x-tags %}
{% if tag == 'Contribute' %}
{% assign tagged = 1 %}
{% endif %}
{% endfor %}
{% if tagged == 1 %}
<li>→ <a href="{{ common.url }}">{{ common.x-name }}</a></li>
{% endif %}
{% endfor %}
</ul>
</td>
</tr>
</table>
</td>
</tr>
{% endif %}
{% endfor %}
</table><br>
<!---
<center>
<div style="width: 100%; padding: 5px; text-align:center; background-color:#333333; color:#FFF;">
<p style="margin-bottom: 0 !important;"><strong>Below is a calendar of containing all regular meetings and offices hours across the specifications. Feel free to jump in!</strong></p>
</div>
</center>
<br />
<center>
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=Etc%2FGMT&src=YXBpc3BlY3Rvb2xib3hAZ21haWwuY29t&src=dGJyYmZxNGRlNWJjbmd0OG9rdmV2NGxzdGtAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%23039BE5&color=%23795548&showNav=1&showPrint=0&showTitle=0" style="border:solid 1px #777" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</center>
--->
<br />
<p>This project runs on Github allowing this entire directory to be run locally, forked to add information, and update the webite using pull request. We are happy to accept community submisions, and edit are always welcome! The goal of this site i to bring in as much information about the space as posible, then provide tools for filtering out the noise.</p>
</div>
</div>