Skip to content

Commit c37960c

Browse files
committed
Fix links
1 parent 5d5170f commit c37960c

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/content/docs/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Making a code contribution might seem intimidating, but it's not too difficult:
88
1. Make a fork of the [WebODM repository](https://github.com/WebODM/WebODM/)
99
2. Clone your repository in a directory
1010
3. Create a new branch: `git checkout -b branchname`.
11-
4. [Setup a development environment](#setup-a-development-environment) with [docker](#docker-setup).
11+
4. [Setup a development environment](#setup-a-development-environment) with docker.
1212
5. Commit the changes: `git commit -a -m "describe your changes"`
1313
6. Push the changes to your repository: `git push origin branchname`
1414
7. Create a [pull request](https://github.com/WebODM/WebODM/compare)
@@ -45,7 +45,7 @@ You can also modify the `docker-compose.yml` file to point to a different image.
4545

4646
The backend is based mainly on [Django](https://www.djangoproject.com/) and [Django REST Framework](http://www.django-rest-framework.org/).
4747

48-
We don't use much of Django's templating system, except for the `Administration` and `Processing Nodes` sections. Instead we use Django to expose an [API](#reference), which we then tie to a [React.js](https://facebook.github.io/react/) app.
48+
We don't use much of Django's templating system, except for the `Administration` and `Processing Nodes` sections. Instead we use Django to expose an [API](/reference/task/), which we then tie to a [React.js](https://facebook.github.io/react/) app.
4949

5050
Directories of interest are listed as follow:
5151

src/content/docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ When using Docker, all processing results are stored in a docker volume and are
1313
1. Media (called webodm_appmedia): This is where all files related to a project and task are stored.
1414
2. Postgres DB (called webodm_dbdata): This is what Postgres database uses to store its data.
1515

16-
For more information on how these two volumes are used and in which containers, please refer to the [docker-compose.yml](docker-compose.yml) file.
16+
For more information on how these two volumes are used and in which containers, please refer to the [docker-compose.yml](https://github.com/WebODM/WebODM/blob/master/docker-compose.yml) file.
1717

1818
For various reasons such as ease of backup/restore, if you want to store your files on the host filesystem instead of a docker volume, you need to pass a path via the `--media-dir` and/or the `--db-dir` options:
1919

src/content/docs/flying-tips.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ The guidelines are intended for drone mapping projects on islands, but have gene
3434

3535
See also WebODM Lightning's guide on [Making Successful Maps](https://docs.webodm.net/references/create-successful-maps).
3636

37-
Finally, lens distortion is a challenge in projects requiring accurate 3D data. See our section on [Calibrating the Camera](/tutorials/#calibrating-the-camera).
37+
Finally, lens distortion is a challenge in projects requiring accurate 3D data. See our section on [Calibrating the Camera](/tutorials/calibrating-the-camera/).

src/content/docs/reference/handlingerrors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Handling Errors
33
template: doc
44
---
55

6-
All API calls use the status codes as described in the [Django REST Framework's Status Code Guide](http://www.django-rest-framework.org/api-guide/status-codes/), but generally you only need to check for success status codes (`200` or `204`), handle the special case of [Token Expiration](#token-expiration) (`403`) and report an error otherwise.
6+
All API calls use the status codes as described in the [Django REST Framework's Status Code Guide](http://www.django-rest-framework.org/api-guide/status-codes/), but generally you only need to check for success status codes (`200` or `204`), handle the special case of [Token Expiration](/reference/authentication/#token-expiration) (`403`) and report an error otherwise.
77

88
### Error Status Codes
99

src/content/docs/reference/project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ tasks | int[] | List of task IDs associated with this project
3434
created_at | string | Creation date and time
3535
name | string | Name of the project
3636
description | string | A more in-depth description
37-
permissions | string[] | List of actions that the current user is allowed to perform. See [Permissions Values](#permission-values)
37+
permissions | string[] | List of actions that the current user is allowed to perform. See [Permissions Values](/reference/permissions/#permission-values)
3838

3939

4040
### Create a project

0 commit comments

Comments
 (0)