Update URL links.

This commit is contained in:
Stephen Chung
2021-01-07 17:30:06 +08:00
parent 67a85a19ae
commit 96b1e7777b
14 changed files with 54 additions and 54 deletions

View File

@@ -1,7 +1,7 @@
The Rhai Book
=============
[_The Rhai Book_](https://schungx.github.io/rhai) serves as Rhai's primary
[_The Rhai Book_](https://rhaiscript.github.io/book) serves as Rhai's primary
documentation and tutorial resource.
@@ -33,9 +33,9 @@ Configuration Settings
Settings stored in `context.json`:
| Setting | Description |
| ---------- | ------------------------------------------------------------------------------------------------- |
| `version` | version of Rhai |
| `repoHome` | points to the [root of the GitHub repo](https://github.com/jonathandturner/rhai/blob/master) |
| `repoTree` | points to the [root of the GitHub repo tree](https://github.com/jonathandturner/rhai/tree/master) |
| `rootUrl` | sub-directory for the root domain, e.g. `/rhai` |
| Setting | Description |
| ---------- | -------------------------------------------------------------------------------------------- |
| `version` | version of Rhai |
| `repoHome` | points to the [root of the GitHub repo](https://github.com/rhaiscript/rhai/blob/master) |
| `repoTree` | points to the [root of the GitHub repo tree](https://github.com/rhaiscript/rhai/tree/master) |
| `rootUrl` | sub-directory for the root domain, e.g. `/rhai` |

View File

@@ -6,7 +6,7 @@ language = "en"
[output.html]
no-section-label = true
git-repository-url = "https://github.com/jonathandturner/rhai"
git-repository-url = "https://github.com/rhaiscript/rhai"
curly-quotes = true
[output.html.fold]

View File

@@ -7,7 +7,7 @@ Related Resources
Online Resources for Rhai
-------------------------
* [GitHub](https://github.com/jonathandturner/rhai) – Home repository
* [GitHub](https://github.com/rhaiscript/rhai) – Home repository
* [`crates.io`](https://crates.io/crates/rhai) – Rhai crate

View File

@@ -1,7 +1,7 @@
{
"version": "0.19.10",
"repoHome": "https://github.com/jonathandturner/rhai/blob/master",
"repoTree": "https://github.com/jonathandturner/rhai/tree/master",
"repoHome": "https://github.com/rhaiscript/rhai/blob/master",
"repoTree": "https://github.com/rhaiscript/rhai/tree/master",
"rootUrl": "",
"rootUrlX": "/rhai",
"rootUrlXX": "/rhai/vnext"

View File

@@ -47,18 +47,18 @@ a different [features] set, by their _sources_:
* Different versions from [`crates.io`](https://crates.io/crates/rhai/) – The official crate.
* Different releases from [`GitHub`](https://github.com/jonathandturner/rhai) – Crate source on GitHub.
* Different releases from [`GitHub`](https://github.com/rhaiscript/rhai) – Crate source on GitHub.
* Forked copy of [https://github.com/jonathandturner/rhai](https://github.com/jonathandturner/rhai) on GitHub.
* Forked copy of [https://github.com/rhaiscript/rhai](https://github.com/rhaiscript/rhai) on GitHub.
* Local copy of [https://github.com/jonathandturner/rhai](https://github.com/jonathandturner/rhai) downloaded form GitHub.
* Local copy of [https://github.com/rhaiscript/rhai](https://github.com/rhaiscript/rhai) downloaded form GitHub.
Use the following configuration in `Cargo.toml` to pull in multiple copies of Rhai within the same project:
```toml
[dependencies]
rhai = { version = "{{version}}", features = [ "no_float" ] }
rhai_github = { git = "https://github.com/jonathandturner/rhai", features = [ "unchecked" ] }
rhai_github = { git = "https://github.com/rhaiscript/rhai", features = [ "unchecked" ] }
rhai_my_github = { git = "https://github.com/my_github/rhai", branch = "variation1", features = [ "serde", "no_closure" ] }
rhai_local = { path = "../rhai_copy" }
```

View File

@@ -22,9 +22,9 @@ rhai = "*"
Crate versions are released on [`crates.io`](https:/crates.io/crates/rhai/) infrequently,
so to track the latest features, enhancements and bug fixes, pull directly from
[GitHub](https://github.com/jonathandturner/rhai):
[GitHub](https://github.com/rhaiscript/rhai):
```toml
[dependencies]
rhai = { git = "https://github.com/jonathandturner/rhai" }
rhai = { git = "https://github.com/rhaiscript/rhai" }
```