Skip to content

Commit 71f7300

Browse files
committed
switch links
1 parent f9c9b69 commit 71f7300

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

guides/deployment/to-cf.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ cd bookshop
4242

4343
::: details Alternatively, download or clone the sample repository
4444

45-
Exercise the following steps in the `bookshop` subfolder of the [`cloud-cap-samples`](https://github.com/sap-samples/cloud-cap-samples) repo:
45+
Exercise the following steps in the `bookshop` sample of the [`capire`](https://github.com/sap-samples/cloud-cap-samples) org:
4646

4747
```sh
48-
git clone https://github.com/sap-samples/cloud-cap-samples samples
49-
cd samples/bookshop
48+
git clone https://github.com/capire/bookshop
49+
cd bookshop
5050
```
5151

5252
:::

guides/extensibility/customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ Before we start, you'll need a **CAP-based [multitenant SaaS application](../mul
3838
You can download the ready-to-use [Orders Management application](https://github.com/capire/orders):
3939

4040
```sh
41-
git clone https://github.com/SAP-samples/cloud-cap-samples
42-
cd cloud-cap-samples/orders
41+
git clone https://github.com/capire/orders
42+
cd orders
4343
cds add multitenancy
4444
```
4545

node.js/cds-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ npm add -D @cap-js/cds-test
2121
```
2222

2323
::: tip Examples
24-
Find examples in [*cap/samples*](https://github.com/sap-samples/cloud-cap-samples/tree/main/test) and in the [*SFlight sample*](https://github.com/SAP-samples/cap-sflight/tree/main/test).
24+
Find examples in [*capire/samples*](https://github.com/capire/samples/tree/main/tests) and in the [*SFlight sample*](https://github.com/capire/xtravels/tree/main/test).
2525
:::
2626

2727

node.js/core-services.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A CAP application mainly consists of the services it provides to clients. Such *
1717

1818
#### CDS-Modeling *Provided* Services
1919

20-
For example, a simplified all-in-one variant of [*cap/samples/bookshop/srv/cat-service.cds*](https://github.com/SAP-samples/cloud-cap-samples/blob/main/bookshop/srv/cat-service.cds):
20+
For example, a simplified all-in-one variant of [*capire/bookshop/srv/cat-service.cds*](https://github.com/capire/bookshop/blob/main/srv/cat-service.cds):
2121

2222
```cds
2323
using { User, sap.capire.bookshop as my } from '../db/schema';
@@ -107,7 +107,7 @@ By default `cds.serve` creates an instance of `cds.ApplicationService` for each
107107

108108
#### In sibling `.js` files, next to `.cds` sources
109109

110-
The easiest way to add custom service implementations is to simply place a `.js` file with the same name next to the `.cds` file containing the respective service definition. For example, as in [*cap/samples/bookshop*](https://github.com/SAP-samples/cloud-cap-samples/blob/main/bookshop/):
110+
The easiest way to add custom service implementations is to simply place a `.js` file with the same name next to the `.cds` file containing the respective service definition. For example, as in [*cap/samples/bookshop*](https://github.com/capire/bookshop):
111111

112112
```zsh
113113
bookshop/

node.js/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ For example:
292292
Captures the full canonicalized path information of incoming requests with navigation.
293293
For requests without navigation, `req.path` is identical to [`req.target.name`](#target) (or [`req.entity`](#entity), which is a shortcut for that).
294294

295-
Examples based on [cap/samples/bookshop AdminService](https://github.com/sap-samples/cloud-cap-samples/tree/master/bookshop/srv/admin-service.cds):
295+
Examples based on [cap/samples/bookshop AdminService](https://github.com/capire/bookshop/blob/main/srv/admin-service.cds):
296296

297297
| OData Request | `req.path` | `req.target.name` |
298298
|-------------------|---------------------------|----------------------|

0 commit comments

Comments
 (0)