diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-04-26 14:06:27 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-04-26 14:11:27 +0200 |
commit | 3765378f99d29a0481e0268a76edf283a6167a48 (patch) | |
tree | 4f46d8d5f7a6a228f5f1cf4d17110ff4e61ab1ac | |
parent | 44c38cb0f1a52787306ffca3ee4916f382bf7cc4 (diff) | |
download | server-3765378f99d29a0481e0268a76edf283a6167a48.tar.gz |
Use .md suffix in docs links so they work on github.
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | docs/index.md | 30 | ||||
-rw-r--r-- | docs/module/rules.md | 2 | ||||
-rw-r--r-- | docs/overview/architecture.md | 2 | ||||
-rw-r--r-- | docs/overview/module.md | 2 | ||||
-rw-r--r-- | server.js | 12 | ||||
-rw-r--r-- | views/about.pug | 6 | ||||
-rw-r--r-- | views/tm_list.pug | 2 | ||||
-rw-r--r-- | views/tm_seed.pug | 2 |
9 files changed, 34 insertions, 28 deletions
@@ -11,8 +11,8 @@ and/or publisher for any necessary permissions. ## Documentation -See public/docs/index.html +See [docs/index.md](docs/index.md) ## Installing and getting started -See public/docs/install.html +See [docs/server/install.md](docs/server/install.md) diff --git a/docs/index.md b/docs/index.md index 254cc74..b9ade23 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,32 +6,32 @@ server instance and how to create new modules. ## For players -* [Tips & Tricks](/docs/tips) -* [Tournaments](/docs/tournaments) +* [Tips & Tricks](tips.md) +* [Tournaments](tournaments.md) ## For developers -* [Installing the server](/docs/server/install) -* [Running a public server](/docs/server/production) -* [Toolbox](/docs/server/toolbox) +* [Installing the server](server/install.md) +* [Running a public server](server/production.md) +* [Toolbox](server/toolbox.md) ## System overview -* [Server architecture](/docs/overview/architecture) -* [Database schema](/docs/overview/database) -* [Module architecture](/docs/overview/module) +* [Server architecture](overview/architecture.md) +* [Database schema](overview/database.md) +* [Module architecture](overview/module.md) ## Module implementation -* [General tips and where to start](/docs/module/guide) -* [Rules framework](/docs/module/rules) - * [Script syntax](/docs/module/script) - * [Utility library](/docs/module/library) +* [General tips and where to start](module/guide.md) +* [Rules framework](module/rules.md) + * [Script syntax](module/script.md) + * [Utility library](module/library.md) * Create the user interface (todo) * Prepare the art assets (todo) -* [Test with the Fuzzer](/docs/module/fuzzer) +* [Test with the Fuzzer](module/fuzzer.md) <!-- -* [Preparing the art assets](/docs/module/assets) -* [How to write the client](/docs/module/play) +* [Preparing the art assets](/docs/module/assets.md) +* [How to write the client](/docs/module/play.md) --> diff --git a/docs/module/rules.md b/docs/module/rules.md index a2135f1..ed99188 100644 --- a/docs/module/rules.md +++ b/docs/module/rules.md @@ -7,7 +7,7 @@ This is exposed to the system via a handful of exported properties and functions All of the board state is represented as a plain JS object that is passed to and returned from these functions. -See the [module overview](/docs/overview/module) for the details. +See the [module overview](../overview/module.md) for the details. ## Copy & Paste diff --git a/docs/overview/architecture.md b/docs/overview/architecture.md index 6413386..5865de8 100644 --- a/docs/overview/architecture.md +++ b/docs/overview/architecture.md @@ -11,7 +11,7 @@ The "join" page is the most complicated, and also uses javascript and server sen ## Database -See the [database overview](/docs/overview/database) for a brief introduction to the tables involved. +See the [database overview](database.md) for a brief introduction to the tables involved. ## Client/Server diff --git a/docs/overview/module.md b/docs/overview/module.md index 2a12461..ca1bd63 100644 --- a/docs/overview/module.md +++ b/docs/overview/module.md @@ -233,7 +233,7 @@ See rommel-in-the-desert and wilderness-war for examples of using the query mech The rules.js script is loaded by the server. Certain properties and functions must be provided by the rules module. -> NOTE: See the [module rules](/docs/module/rules) documentation if you want to +> NOTE: See the [module rules](../module/rules.md) documentation if you want to > use the shared rules framework that provides a structured approach to > implementing game rules. @@ -4100,20 +4100,26 @@ function render_markdown(path) { } app.get("/docs", function (req, res) { - res.send(render_markdown("docs/index.md")) + res.redirect("/docs/index") }) app.get("/docs/:file", function (req, res) { + var file = req.params.file + if (!file.endsWith(".md")) + file += ".md" try { - res.send(render_markdown("docs/" + req.params.file + ".md")) + res.send(render_markdown("docs/" + file)) } catch (err) { res.status(404).send(err.message) } }) app.get("/docs/:dir/:file", function (req, res) { + var file = req.params.file + if (!file.endsWith(".md")) + file += ".md" try { - res.send(render_markdown("docs/" + req.params.dir + "/" + req.params.file + ".md")) + res.send(render_markdown("docs/" + req.params.dir + "/" + file)) } catch (err) { res.status(404).send(err.message) } diff --git a/views/about.pug b/views/about.pug index ee94352..6b423d9 100644 --- a/views/about.pug +++ b/views/about.pug @@ -22,9 +22,9 @@ html h2 About ul - li Read the <a href="/docs/tips">Tips & Tricks</a> before playing! - li Read the <a href="/docs/tournaments">tournament information</a> before joining a tournament. - li Study the <a href="/docs/">developer documentation</a> if you want to create modules. + li Read the <a href="/docs/tips.md">Tips & Tricks</a> before playing! + li Read the <a href="/docs/tournaments.md">tournament information</a> before joining a tournament. + li Study the <a href="/docs/index.md">developer documentation</a> if you want to create modules. p. The source code is available on #[a(href="https://git.rally-the-troops.com/") git.rally-the-troops.com]. diff --git a/views/tm_list.pug b/views/tm_list.pug index 7c25d69..88fe9cf 100644 --- a/views/tm_list.pug +++ b/views/tm_list.pug @@ -9,6 +9,6 @@ html article h1 Tournaments - p See <a href="/docs/tournaments">tournament information</a>. + p See <a href="/docs/tournaments.md">tournament information</a>. +seedlist(seeds, "Mini Cup") diff --git a/views/tm_seed.pug b/views/tm_seed.pug index 65c213d..45659c5 100644 --- a/views/tm_seed.pug +++ b/views/tm_seed.pug @@ -25,7 +25,7 @@ html tr td Format td - a(href="/docs/tournaments") Mini Cup + a(href="/docs/tournaments.md") Mini Cup if seed.scenario !== "Standard" tr td Scenario |