summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-20 15:14:33 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-20 15:14:33 +0200
commite6bb5aac880fa0e71c1d81d4860d456424f622bc (patch)
tree4d342ddbdc5ea26476140c5905e5d3c93018d987 /docs/src
parent8ca6d99ace6b8b9ec8b2a2feb6fb04a72f860a9a (diff)
Module: Move to eduvpn/eduvpn-common
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/about.md2
-rw-r--r--docs/src/api/go/README.md2
-rw-r--r--docs/src/api/go/example.md2
-rw-r--r--docs/src/api/python/example.md2
-rw-r--r--docs/src/gettingstarted/building/example.md2
5 files changed, 5 insertions, 5 deletions
diff --git a/docs/src/about.md b/docs/src/about.md
index 05e39ef..08d7f9c 100644
--- a/docs/src/about.md
+++ b/docs/src/about.md
@@ -18,7 +18,7 @@ The main goal is thus the following:
This library tries to remove non-platform specific common functionality. This way eduVPN clients have less duplicate code. The building blocks that are removed by the library is not just the four depicted in this figure. You can think of other building blocks, such as logging and local configuration file saving. As can be seen in the figure, no User Interface (UI) code will be implemented. This is left to the eduVPN clients, on top of platform-specific code.
## License
-[MIT](https://github.com/jwijenbergh/eduvpn-common/blob/main/LICENSE)
+[MIT](https://github.com/eduvpn/eduvpn-common/blob/main/LICENSE)
## Authors
This library is written by [Steven Wallis de Vries](https://github.com/stevenwdv) and [Jeroen Wijenbergh](https://github.com/jwijenbergh) at the [SURF](https://www.surf.nl/) and [GÉANT](https://geant.org/) organization.
diff --git a/docs/src/api/go/README.md b/docs/src/api/go/README.md
index 6106f1e..e27a247 100644
--- a/docs/src/api/go/README.md
+++ b/docs/src/api/go/README.md
@@ -2,7 +2,7 @@
The API that has no additional wrapper code is the Go API. To begin to use the Go library in a Go client you first need to import it:
```go
-import "github.com/jwijenbergh/eduvpn-common"
+import "github.com/eduvpn/eduvpn-common"
```
This brings the library into scope using the eduvpn-common prefix.
diff --git a/docs/src/api/go/example.md b/docs/src/api/go/example.md
index 0ed7d02..82baad8 100644
--- a/docs/src/api/go/example.md
+++ b/docs/src/api/go/example.md
@@ -1,5 +1,5 @@
# Example with comments
-The following is an example [in the repository](https://github.com/jwijenbergh/eduvpn-common/blob/main/cmd/cli/main.go). It is a command line client with the following flags
+The following is an example [in the repository](https://github.com/eduvpn/eduvpn-common/blob/main/cmd/cli/main.go). It is a command line client with the following flags
```
-get-institute string
The url of an institute to connect to
diff --git a/docs/src/api/python/example.md b/docs/src/api/python/example.md
index f371b68..906a3ca 100644
--- a/docs/src/api/python/example.md
+++ b/docs/src/api/python/example.md
@@ -1,6 +1,6 @@
# Example with comments
-This is an example that can also be found [in the repository](https://github.com/jwijenbergh/eduvpn-common/blob/main/wrappers/python/main.py). It gets a config from an Institute Access server with support for multiple profiles.
+This is an example that can also be found [in the repository](https://github.com/eduvpn/eduvpn-common/blob/main/wrappers/python/main.py). It gets a config from an Institute Access server with support for multiple profiles.
```python
{{#include ../../../../wrappers/python/main.py}}
diff --git a/docs/src/gettingstarted/building/example.md b/docs/src/gettingstarted/building/example.md
index 668d77a..bdf027e 100644
--- a/docs/src/gettingstarted/building/example.md
+++ b/docs/src/gettingstarted/building/example.md
@@ -3,7 +3,7 @@ This section gives an example on how to build and install the library from scrat
1. Clone the library
```bash
-git clone https://github.com/jwijenbergh/eduvpn-common
+git clone https://github.com/eduvpn/eduvpn-common
```
2. Go to the library directory