Skip to content

Commit 0453641

Browse files
committed
Fixing more links
1 parent 28485c9 commit 0453641

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

get-started/in-a-nutshell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Note: When comparing the code from the repo in GitHub to the snippets given in t
4343

4444

4545

46-
After you completed the [*Initial Setup*](./), you jumpstart a project as follows:
46+
After you completed the [*Initial Setup*](index.md#setup), you jumpstart a project as follows:
4747

4848
- Create a new project using `cds init`
4949

@@ -68,7 +68,7 @@ After you completed the [*Initial Setup*](./), you jumpstart a project as follow
6868
```sh
6969
code bookshop
7070
```
71-
[Assumes you activated the `code` command on macOS as documented](/tools/cds-editors#vscode) {.learn-more}
71+
[Assumes you activated the `code` command on macOS as documented](../tools/cds-editors#vscode) {.learn-more}
7272

7373
For Java development in VS Code you need to [install extensions](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-pack). {.learn-more .java}
7474

@@ -781,7 +781,7 @@ Books book = persistenceService.run(byId).single(Books.class);
781781

782782
### Sample HTTP Requests
783783

784-
Test the implementation by submitting orders until you see the error messages. Create a file called _test.http_ and copy the request into it. Send requests from your IDE supporting `*.http` files with, for example, a [REST Client](/tools/cds-editors#add-useful-plugins).
784+
Test the implementation by submitting orders until you see the error messages. Create a file called _test.http_ and copy the request into it. Send requests from your IDE supporting `*.http` files with, for example, a [REST Client](../tools/cds-editors#add-useful-plugins).
785785

786786
<span class="impl node">
787787

get-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ After these getting started-level introductions, you would continuously revisit
170170
| 7 | [CDS](../cds/)<br/>[Java](../java/)<br/>[Node.js](../node.js/)<br/>[Tools](../tools/) | The reference docs for these respective areas. |
171171
| 8 | [Plugins](../plugins/) | Curated list of recommended Calesi plugins. |
172172
| 9 | [Releases](../releases/) | Your primary source to stay up to date. |
173-
| 10 | [Resources](../resources/) | About support channels, community, ... |
173+
| 10 | [Resources](/resources/) | About support channels, community, ... |
174174
175175
176176
This also reflects the overall structure of [this documentation](./learning-sources.md#this-documentation).

guides/services/providing-services.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ uacp: Used as link target from Help Portal at https://help.sap.com/products/BTP/
1515
[[toc]]
1616

1717

18-
## Intro: Core Concepts {#introduction}
18+
## Intro: Core Concepts
1919

2020
The following sections give a brief overview of CAP's core concepts.
2121

@@ -781,7 +781,7 @@ The remaining cases that need custom handlers, reduce to real custom logic, spec
781781

782782
- Domain-specific programmatic [Validations](#input-validation)
783783
- Augmenting result sets, for example to add computed fields for frontends
784-
- Programmatic [Authorization Enforcements](/guides/security/authorization#enforcement)
784+
- Programmatic [Authorization Enforcements](../../guides/security/authorization#enforcement)
785785
- Triggering follow-up actions, for example calling other services or emitting outbound events in response to inbound events
786786
- And more... In general, all the things not (yet) covered by generic handlers
787787

menu.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
## [Bookshop by capire](get-started/in-a-nutshell)
66
## [Best Practices](get-started/best-practices)
77
## [Anti Patterns](get-started/bad-practices)
8-
## [Next Steps](get-started/#next-steps)
8+
## [Next Steps](get-started/index#next-steps)
99
## [Learn More](get-started/learning-sources)
1010
## [Features Matrix](get-started/features)
1111
## [Troubleshooting](get-started/troubleshooting)
1212

13-
# [Develop](guides/index.md)
13+
# [Develop](guides/)
1414

1515
## [Domain Modeling](guides/domain/modeling)
1616

@@ -23,7 +23,7 @@
2323

2424
## [Providing Services](guides/services/providing-services)
2525

26-
### [Core Concepts](guides/services/providing-services#introduction)
26+
### [Core Concepts](guides/services/providing-services#intro-core-concepts)
2727
### [Service Definitions](guides/services/providing-services#service-definitions)
2828
### [Served Out-of-the-Box](guides/services/providing-services#generic-providers)
2929
### [Status Flows](guides/services/flows)
@@ -42,7 +42,7 @@
4242
### [Mashups](guides/services/using-services#integrate-and-extend)
4343
### [Deployment](guides/services/using-services#connect-and-deploy)
4444

45-
## [Events & Messaging](guides/events/index.md)
45+
## [Events & Messaging](guides/events/)
4646

4747
### [Core Eventing](guides/events/core-concepts)
4848
### [Event Queues](guides/events/event-queues)
@@ -53,12 +53,6 @@
5353
### [SAP Event Hub](guides/events/event-hub)
5454
### [Events from S/4](guides/events/s4)
5555

56-
## [Protocols/APIs](guides/advanced/publishing-apis/index.md)
57-
58-
### [OData APIs](advanced/odata)
59-
### [OpenAPI](advanced/publishing-apis/openapi)
60-
### [AsyncAPI](advanced/publishing-apis/asyncapi)
61-
6256
## [Serving UIs](guides/uis/fiori)
6357

6458
### [SAP Fiori UIs](guides/uis/fiori)
@@ -74,11 +68,17 @@
7468
### [Common](guides/databases/index.md)
7569
### [SQLite](guides/databases/sqlite)
7670
### [H2 (Java)](guides/databases/h2)
77-
### [PostgreSQL](guides/databases/postgres)
7871
### [SAP HANA Cloud](guides/databases/hana)
7972
### [SAP HANA Native](guides/databases/hana-native)
73+
### [PostgreSQL](guides/databases/postgres)
74+
75+
## [Protocols/APIs](guides/advanced/publishing-apis/)
76+
77+
### [OData APIs](guides/advanced/odata)
78+
### [OpenAPI](guides/advanced/publishing-apis/openapi)
79+
### [AsyncAPI](guides/advanced/publishing-apis/asyncapi)
8080

81-
## [Security & Data Privacy](guides/security/index.md)
81+
## [Security & Data Privacy](guides/security/)
8282

8383
### [Product Standards Coverage](../guides/security/product-standards)
8484
### [CDS-based Authorization](guides/security/authorization)
@@ -91,20 +91,20 @@
9191
<!-- ### [Data Retention Management](guides/security/dpp-drm) -->
9292

9393

94-
## [Extensibility](guides/extensibility/index.md)
94+
## [Intrinsic Extensibility](guides/extensibility)
9595

9696
### [Extending SaaS Apps](guides/extensibility/customization)
9797
### [Feature Toggles](guides/extensibility/feature-toggles)
9898

99-
## Advanced
99+
## [Advanced Topics](guides/advanced)
100100

101101
### [Hybrid Testing w/ cds bind](guides/advanced/hybrid-testing)
102102
### [Reuse & Compose](guides/extensibility/composition)
103103
### [Performance](guides/advanced/performance-modeling)
104104

105-
# [Deploy](guides/deploy/index.md)
105+
# [Deploy](guides/deploy/)
106106

107-
## [Multi-tenant SaaS Applications](guides/multitenancy/index.md)
107+
## [Multi-tenant SaaS Applications](guides/multitenancy/)
108108
## [Deploy to Cloud Foundry](guides/deploy/to-cf)
109109
## [Deploy to Kyma/K8s](guides/deploy/to-kyma)
110110
## [Deploy with CI/CD](guides/deploy/cicd)

0 commit comments

Comments
 (0)