Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

fix: fix dead links to documentation of Samples #136

Merged
merged 1 commit into from
Mar 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions developer/handbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ collection of libraries and modules, that are published as Maven artifacts, and

Therefore, if you are a solution architect looking for a high-level description on how to integrate EDC, or a developer
wanting to contribute to the project itself, this guide is not for you. More suitable resources can be
found [here](../docs/documentation/)
and [here](../docs/documentation/CONTRIBUTING.md) respectively.
found [here](/documentation/)
and [here](/documentation/CONTRIBUTING.md) respectively.

However, if you are a developer who is familiar with Java (17+) and the Gradle build system in general, and concepts
like extensibility, dependency injection and modularity, then this guide is for you.
Expand Down Expand Up @@ -98,15 +98,15 @@ Typically, distributions consist of a [control plane](#the-control-plane) and on
more [data planes](#the-data-plane). The former takes care of data manipulation, contract negotiation and transfer
setup, and is geared toward reliability, whereas the job of the latter is to actually shovel bits from A to B.

The EDC project provides a comprehensive collection of [samples](../docs/samples/), including one
The EDC project provides a comprehensive collection of [samples](/samples/), including one
that demonstrates
the [assembly of a very simplistic distribution](../docs/samples/basic/basic-01-basic-connector/).
the [assembly of a very simplistic distribution](/samples/basic/basic-01-basic-connector/).

This simplest of distributions doesn't do much yet, it cannot even be configured properly, but it serves as starting
point for more complex distributions and launchers.

Subsequent chapters of this document will assume a full understanding of the concepts and terms presented in
the [basic samples](../docs/samples/basic/), so please make sure you go through them
the [basic samples](/samples/basic/), so please make sure you go through them
carefully.

### Perform a simple data transfer
Expand All @@ -129,7 +129,7 @@ could install the same Linux distro on multiple computers, for demonstration pur
distributions, but located in different directories and pre-loaded with different config values.

Please work through
the [complete sample](../docs/samples/transfer/transfer-01-file-transfer/), look
the [complete sample](/samples/transfer/), look
at the enclosed source code and try to modify some values and see how they affect the data transfer.

> Be advised that some of the concepts presented there are only suitable in a sample/demo environment and are not
Expand All @@ -148,7 +148,7 @@ to it through a proxy, and can obtain the data. We call this a "consumer-pull" t
Please be advised that the sample will use some concepts and terms we haven't discussed yet, such
as [policies](#policy-scopes-and-evaluation) and [data plane registration](#data-plane-selectors). Bear with us, we will
explain them later. For now, please just make sure you follow
the [http-pull sample guide](../docs/samples/transfer/transfer-06-consumer-pull-http/README.md).
the [http-pull sample guide](/samples/transfer/transfer-02-consumer-pull/).

We encourage you to play around with this sample a bit, try to add a new asset and see if you can work out what else you
need in order to be able to transfer it to the consumer.
Expand Down
Loading