Skip to content

Commit 296de58

Browse files
authored
Merge pull request #5427 from input-output-hk/mgalazyn/doc/fix-links
Fix broken links in docs
2 parents d7ec3b0 + 03a352e commit 296de58

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed
File renamed without changes.

.github/workflows/markdown-links-ci-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ jobs:
1212
- uses: gaurav-nelson/github-action-markdown-link-check@v1
1313
with:
1414
use-quiet-mode: yes
15+
config-file: '.github/mlc_config.json'

CODEOWNERS

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
# NB - The last matching pattern takes precedence
77

88
# Technical writers
9-
# /doc folder and README.* needs to be owned by @docs-access
10-
doc/ @input-output-hk/docs-access @input-output-hk/core-tech
9+
# README.* needs to be owned by @docs-access
1110
README.* @input-output-hk/docs-access @input-output-hk/core-tech
1211
CONTRIBUTING.rst @input-output-hk/docs-access @input-output-hk/core-tech
1312

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributing to the ``cardano-node`` project
44

55
The ``cardano-node`` development is primarily based on the Nix infrastructure (https://nixos.org/ ), which enables packaging, CI, development environments and deployments.
66

7-
On how to set up Nix for ``cardano-node`` development, please see `Building Cardano Node with nix <https://github.com/input-output-hk/cardano-node-wiki/blob/main/doc/getting-started/building-the-node-using-nix.md>`_.
7+
On how to set up Nix for ``cardano-node`` development, please see `Building Cardano Node with nix <https://github.com/input-output-hk/cardano-node-wiki/wiki/building-the-node-using-nix>`_.
88

99

1010
Roles and Responsibilities
@@ -30,7 +30,7 @@ Testing
3030

3131
``cardano-node`` is essentially a container which implements several components such networking, consensus, and storage. These components have individual test coverage. The node goes through integration and release testing by Devops/QA while automated CLI tests are ongoing alongside development.
3232

33-
Developers on ``cardano-node`` can `launch their own testnets <https://github.com/input-output-hk/cardano-node-wiki/blob/main/doc/getting-started/launching-a-testnet.md>`_ or `run the chairman tests <https://github.com/input-output-hk/cardano-node-wiki/blob/main/doc/getting-started/running-chairman-tests.md>`_ locally.
33+
Developers on ``cardano-node`` can `launch their own testnets <https://github.com/input-output-hk/cardano-node-wiki/wiki/launching-a-testnet>`_ or `run the chairman tests <https://github.com/input-output-hk/cardano-node-wiki/wiki/running-chairman-tests>`_ locally.
3434

3535
Debugging
3636
====

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Documentation for building the node can be found `here <https://docs.cardano.org
5353
Executables
5454
===========
5555

56-
You can download the hydra binaries of ``cardano-node`` and ``cardano-cli`` from the [release notes](https://github.com/input-output-hk/cardano-node/releases)
56+
You can download the hydra binaries of ``cardano-node`` and ``cardano-cli`` from the `release notes <https://github.com/input-output-hk/cardano-node/releases>`_
5757

5858

5959
Running the node on Windows
@@ -118,7 +118,7 @@ The general synopsis is as follows:
118118

119119
* ``--start-as-non-producing-node`` - Optional flag to disable block production on node
120120
start. If credentials flags are passed the node will start block producing, however with
121-
this flag the node will only start block producing on SIGHUP (see `here <https://github.com/input-output-hk/cardano-node-wiki/blob/main/doc/reference/dynamic-block-forging.md>` for more details)
121+
this flag the node will only start block producing on SIGHUP (see `here <https://github.com/input-output-hk/cardano-node-wiki/wiki/dynamic-block-forging>`_ for more details)
122122

123123
* ``--socket-path`` - Path to the socket file.
124124

@@ -213,7 +213,7 @@ The Byron genesis generation operations will create a directory that contains:
213213
* ``poor-keys.*.key``:
214214
Non-delegate private keys with genesis UTxO. Affected by: ``--n-poor-addresses``, ``--total-balance``.
215215

216-
More details on the Byron Genesis ``JSON`` file can be found in ``https://github.com/input-output-hk/cardano-node-wiki/blob/main/doc/reference/byron-genesis.md``
216+
More details on the Byron Genesis ``JSON`` file can be found in ``https://github.com/input-output-hk/cardano-node-wiki/wiki/byron-genesis``
217217

218218
Byron genesis delegation and related concepts are described in detail in:
219219

@@ -434,11 +434,11 @@ To help you get started, see:
434434

435435
- `Ledger explanations: native tokens <https://cardano-ledger.readthedocs.io/en/latest/>`_. Covers explainers about assets, tokens, token bundles, minting policies, comparison to ERC20, and minimum ada value requirements.
436436

437-
- `A tutorial on how to get started with native tokens <https://github.com/input-output-hk/cardano-node-wiki/blob/main/doc/reference/native-tokens/02-getting-started.md>`_. Explains how to create new currencies and assets, submit and send transactions containing multi-asset tokens, send and receive token bundles, manage your addresses and values.
437+
- `A tutorial on how to get started with native tokens <https://github.com/input-output-hk/cardano-node-wiki/wiki/02-getting-started>`_. Explains how to create new currencies and assets, submit and send transactions containing multi-asset tokens, send and receive token bundles, manage your addresses and values.
438438

439-
- `Native tokens exercises <https://github.com/input-output-hk/cardano-node-wiki/blob/main/doc/reference/native-tokens/03-exercises.md>`_
439+
- `Native tokens exercises <https://github.com/input-output-hk/cardano-node-wiki/wiki/03-exercises>`_
440440

441-
To start, please ensure that you are familiar with setting up and operating the `Cardano node <https://github.com/input-output-hk/cardano-node>`_. Alternatively, see instructions on how to `start your node <https://github.com/input-output-hk/cardano-node-wiki/blob/main/doc/stake-pool-operations/2_start_your_nodes.md>`_ to submit the commands. You will not need to set up and start a full block producing node ('stake pool'), just a much simpler relay node. This node will need to connect to a Cardano network that is capable of processing native tokens (e.g., the native token pre-production environment (PPE), or the Cardano mainnet).
441+
To start, please ensure that you are familiar with setting up and operating the `Cardano node <https://github.com/input-output-hk/cardano-node>`_. Alternatively, see instructions on how to `start your node <https://github.com/input-output-hk/cardano-node-wiki/wiki/2_start_your_nodes>`_ to submit the commands. You will not need to set up and start a full block producing node ('stake pool'), just a much simpler relay node. This node will need to connect to a Cardano network that is capable of processing native tokens (e.g., the native token pre-production environment (PPE), or the Cardano mainnet).
442442

443443
****
444444
API Documentation
@@ -461,8 +461,8 @@ Please note that you may need to use any ``source-repository-package`` stanzas d
461461
Style guide
462462
****
463463

464-
The `style guide <https://github.com/input-output-hk/cardano-node-wiki/wiki/Style-guide>` for can be found
465-
on the `cardano-node repository's wiki <https://github.com/input-output-hk/cardano-node-wiki/wiki>`.
464+
The `style guide <https://github.com/input-output-hk/cardano-node-wiki/wiki/Style-guide>`_ for can be found
465+
on the `cardano-node repository's wiki <https://github.com/input-output-hk/cardano-node-wiki/wiki>`_.
466466

467467
****
468468
Troubleshooting ``cardano-node`` issues

cardano-node/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ None
9696
(input-output-hk/ouroboros-network#4357).
9797

9898
[#4563]: https://github.com/input-output-hk/cardano-node/issues/4563
99-
[understanding-config-files]: https://github.com/input-output-hk/cardano-node/blob/master/doc/getting-started/understanding-config-files.md
99+
[understanding-config-files]: https://github.com/input-output-hk/cardano-node-wiki/wiki/understanding-config-files
100100

101101
## 1.35.5 -- November 2022
102102

cardano-testnet/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
For information on how to use this package, see [Launching a Testnet](../doc/getting-started/launching-a-testnet.md)
1+
For information on how to use this package, see [Launching a Testnet](https://github.com/input-output-hk/cardano-node-wiki/wiki/launching-a-testnet)

nix/docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
## Build Cardano Node + Image
33

4-
https://github.com/input-output-hk/cardano-node/blob/master/doc/getting-started/building-the-node-using-nix.md/
4+
https://github.com/input-output-hk/cardano-node-wiki/wiki/building-the-node-using-nix
55

66
```
77
# Build + Install the cardano node

trace-dispatcher/doc/trace-dispatcher.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
`trace-dispatcher` is an attempt to enable design and implementation of simple, efficient __tracing systems__, one that has a reduced footprint in the executed program, has a more pleasant API, and provides self-documenting features.
4545

4646
For a quick start into new tracing see the document
47-
[New Tracing Quickstart](https://github.com/input-output-hk/cardano-node/blob/master/doc/New%20Tracing%20Quickstart.md)
47+
[New Tracing Quickstart](https://github.com/input-output-hk/cardano-node-wiki/wiki/New-Tracing-Quickstart)
4848

4949

5050
## Design decisions
@@ -762,7 +762,7 @@ runTraceDocumentationCmd
762762
-> IO ()
763763
```
764764

765-
A periodically generated documentation of the tracers can be found in the cardano-node repository in the path `cardano-node/doc/new-tracing/tracers_doc_generated.md`
765+
A periodically generated documentation of the tracers can be found in the cardano-node-wiki repository in the path `https://github.com/input-output-hk/cardano-node-wiki/blob/main/docs/new-tracing/tracers_doc_generated.md`
766766

767767

768768
# Appendix
@@ -772,11 +772,11 @@ A periodically generated documentation of the tracers can be found in the cardan
772772
This is a document which is regenerated periodically and documents all trace-messages, metrics and data-points in cardano-node. It as well displays the handling of these
773773
messages with the current default configuration:
774774

775-
[Generated Cardano Trace Documentation](https://github.com/input-output-hk/cardano-node/blob/master/doc/new-tracing/tracers_doc_generated.md)
775+
[Generated Cardano Trace Documentation](https://github.com/input-output-hk/cardano-node-wiki/wiki/tracers_doc_generated)
776776

777777
For a quick start into new tracing see the document:
778778

779-
[New Tracing Quickstart](https://github.com/input-output-hk/cardano-node/blob/master/doc/New%20Tracing%20Quickstart.md)
779+
[New Tracing Quickstart](https://github.com/input-output-hk/cardano-node-wiki/wiki/New-Tracing-Quickstart)
780780

781781
This document describes a separate service for logging and monitoring Cardano nodes:
782782

0 commit comments

Comments
 (0)