|
10 | 10 | children: {
|
11 | 11 | "Home" => '/',
|
12 | 12 | "About" => '/about',
|
| 13 | + "Features" => '/features', |
13 | 14 | "Downloads" => '/downloads',
|
14 | 15 | "Getting Help" => '/getting-help',
|
15 |
| - "Release Notes" => '/release-notes' |
| 16 | + # "Release Notes" => '/release-notes' # April 2024: wildly out of date. hiding until we can fix that. |
16 | 17 | },
|
17 | 18 | current_path: resource.relative_url
|
18 | 19 | )) %>
|
19 | 20 |
|
20 | 21 | <%= render(NavigationSection.new(
|
21 | 22 | "Guides",
|
22 | 23 | children: {
|
23 |
| - "Ported Wiki Guides" => '/guides/ported-wiki-guides', |
24 |
| - "Quickstart" => '/guides/quickstart-guide', |
25 |
| - "Installation" => '/guides/installation-guide', |
26 |
| - "Transit Data Bundle" => '/guides/transit-data-bundle-guide', |
27 |
| - "Realtime Config" => '/guides/realtime-configuration-guide', |
28 |
| - "API Config" => '/guides/api-webapp-configuration-guide', |
29 |
| - "Phone (IVR) Config" => '/guides/phone-webapp-configuration-guide', |
30 |
| - "Web Config" => '/guides/webapp-configuration-guide', |
31 |
| - "Database Config" => '/guides/database-configuration-guide', |
32 |
| - "Troubleshooting" => '/guides/troubleshooting-guide' |
| 24 | + "Deployment" => '/guides/deployment', |
| 25 | + "Outdated Guides" => '/guides/outdated' |
33 | 26 | },
|
34 | 27 | current_path: resource.relative_url
|
35 | 28 | )) %>
|
36 | 29 |
|
37 | 30 | <%= render(NavigationSection.new(
|
38 |
| - "Features", |
| 31 | + "Javadocs", |
39 | 32 | children: {
|
40 |
| - "Web" => '/features/web', |
41 |
| - "Phone and SMS" => '/features/phone-and-sms', |
42 |
| - "Sign Mode" => '/features/sign-mode', |
43 |
| - "GTFS Realtime" => '/features/gtfs-realtime', |
44 |
| - "REST API" => '/api/where', |
45 |
| - "Search API" => '/api/where/search', |
| 33 | + "onebusaway-gtfs-modules" => '/modules/onebusaway-gtfs-modules/current/' |
46 | 34 | },
|
47 | 35 | current_path: resource.relative_url
|
48 | 36 | )) %>
|
49 | 37 |
|
50 |
| - <%= render (NavigationSection.new( |
51 |
| - "REST API Methods", |
52 |
| - children: site.data.rest_api['methods'].reduce({}) {|acc, kv| k = kv.first; acc[k] = "/api/where/methods/#{k}"; acc }, |
53 |
| - current_path: resource.relative_url |
54 |
| - )) %> |
55 |
| - |
56 |
| - <%= render (NavigationSection.new( |
57 |
| - "REST API Elements", |
58 |
| - children: site.data.rest_api['elements'].reduce({}) {|acc, kv| k = kv.first; v = kv.last; acc[(v['name'] || k)] = "/api/where/elements/#{k}"; acc }, |
| 38 | + <%= render(NavigationSection.new( |
| 39 | + "REST API", |
| 40 | + children: { |
| 41 | + "About the REST API" => '/api/where', |
| 42 | + "API Methods" => '/api/where/methods', |
| 43 | + "API Elements" => '/api/where/elements', |
| 44 | + "Search" => '/api/where/search', |
| 45 | + }, |
59 | 46 | current_path: resource.relative_url
|
60 | 47 | )) %>
|
61 | 48 | </ul>
|
|
0 commit comments