Skip to content

Commit ec9d47c

Browse files
authored
Primary changes (#1)
* Primary changes * Some fixes
1 parent 6abae5f commit ec9d47c

417 files changed

Lines changed: 142 additions & 41253 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* text=auto
1+
* text=auto

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build & Deploy mdBook Site
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
# Allows you to run this workflow manually from the Actions tab
77
workflow_dispatch:
88

@@ -49,7 +49,7 @@ jobs:
4949
url: ${{ steps.deployment.outputs.page_url }}
5050
runs-on: ubuntu-latest
5151
needs: build
52-
if: github.ref == 'refs/heads/master'
52+
if: github.ref == 'refs/heads/main'
5353
steps:
5454
- name: Deploy to GitHub Pages
5555
id: deployment

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ book
1111
.vscode/
1212

1313
# Obsidian vault config folder
14-
.obsidian/
14+
.obsidian/

README.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Space Wizards Development Wiki
1+
# Carpmosia Development Wiki
22

3-
This is the `mdbook`-based developer documentation for all Space Wizards projects, including Robust Toolbox, Space Station 14, the SS14 launcher, etc. These docs cover many topics and can be potentially very useful for mappers, spriters, active contributors & prospective contributors, people who want to use our engine for their own projects, fork developers, and so on.
3+
This is the `mdbook`-based developer documentation for all Carpmosia projects. These docs cover many topics and can be potentially very useful for mappers, spriters, active contributors & prospective contributors, people who want to use our engine for their own projects, fork developers, and so on.
44

5-
The site is currently hosted at [https://docs.spacestation14.com](https://docs.spacestation14.com).
5+
The site is currently hosted at [https://docs.carp.gg](https://docs.carp.gg).
66

77
Benefits of the current docs site infrastructure include:
88
- First-class git support, open source and actually editable by everyone
@@ -13,7 +13,7 @@ Benefits of the current docs site infrastructure include:
1313
- Eventual localization support
1414

1515
The following `mdbook` features & plugins are available and in use:
16-
- `MathJax` support
16+
- `MathJax` support
1717
- Sidebar ToC (integrated directly into `index.hbs` etc)
1818
- `mdbook-mermaid`
1919
- `mdbook-linkcheck`
@@ -22,14 +22,8 @@ The following `mdbook` features & plugins are available and in use:
2222
- `mdbook-emojicodes`
2323
- `mdbook-embedify`
2424

25-
**For information such as how to edit, build & test these docs, see [Guide to Editing Docs](https://spacestation14.io/docs/en/meta/guide-to-editing-docs.html). on the site itself** (or [in this repo](./src/en/meta/guide-to-editing-docs.md))
26-
27-
## Screenshots
28-
29-
![](src/en/assets/images/readme-example-1.png)
30-
31-
![](src/en/assets/images/readme-example-2.png)
25+
**For information such as how to edit, build & test these docs, see [Guide to Editing Docs](https://docs.carp.gg/en/meta/guide-to-editing-docs.html). on the site itself**
3226

3327
## License
3428

35-
The Space Wizards Development Wiki is released under the Mozilla Public License v2.0.
29+
The Carpmosia Development Wiki is released under the Mozilla Public License v2.0.

book.toml

Lines changed: 6 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[book]
2-
authors = ["Space Wizards Contributors"]
2+
authors = ["Carpmosia Contributors"]
33
language = "en"
44
multilingual = false
55
src = "src"
6-
title = "Space Wizards Development Wiki"
7-
description = "Tutorial & reference for all Space Wizards Federation projects, including the Robust Toolbox engine and its flagship open source game, Space Station 14."
6+
title = "Carpmosia Development Wiki"
7+
description = "Tutorial & reference for all Carpmosia projects."
88

99
[preprocessor.mermaid]
1010

@@ -25,11 +25,11 @@ additional-css = ['theme/compiled/ss14.css']
2525
default-theme = "navy"
2626
preferred-dark-theme = "navy"
2727

28-
git-repository-url = "https://github.com/space-wizards/space-station-14"
29-
edit-url-template = "https://github.com/space-wizards/docs/blob/master/{path}"
28+
git-repository-url = "https://github.com/carpmosia/carpmosia"
29+
edit-url-template = "https://github.com/carpmosia/carpdocs/blob/main/{path}"
3030

3131
mathjax-support = true
32-
curly-quotes = true
32+
smart-punctuation = true
3333
no-section-label = true
3434

3535
[output.html.print]
@@ -45,82 +45,3 @@ runnable = false # sorry we arent rustpilled :(
4545
[output.linkcheck]
4646
traverse-parent-directories = false
4747
warning-policy = "ignore" # false-positives like hell with absolute links & latex, so.. cant do
48-
49-
# Redirects
50-
# These are used to map between old Wiki.js links and current docs site links,
51-
# so we can avoid the hell that was dead links with the old hackmd transfer.
52-
# Wiki.js doesn't have `.html` endings on files, so we hack it by putting /index.html
53-
# and just letting the browser look there, then get redirected
54-
[output.html.redirect]
55-
"/en/getting-started/how-do-i-code/index.html" = "/en/general-development/setup/howdoicode.html"
56-
"/en/getting-started/dev-setup/index.html" = "/en/general-development/setup/setting-up-a-development-environment.html"
57-
"/en/getting-started/git/index.html" = "/en/general-development/setup/git-for-the-ss14-developer.html"
58-
"/en/content/yaml/index.html" = "/en/general-development/tips/yaml-crash-course.html"
59-
"/en/getting-started/pr-guideline/index.html" = "/en/general-development/codebase-info/pull-request-guidelines.html"
60-
"/en/getting-started/conventions/index.html" = "/en/general-development/codebase-info/conventions.html"
61-
"/en/content/writing-guidebook-entries/index.html" = "/en/general-development/tips/writing-guidebook-entries.html"
62-
"/en/content/device-network/index.html" = "/en/space-station-14/core-tech/device-network.html"
63-
"/en/content/pow3r/index.html" = "/en/spcae-station-14/departments/engineering/pow3r.html"
64-
# yes this one is correct
65-
"/en/content/construction/index/index.html" = "/en/space-station-14/core-tech/construction.html"
66-
"/en/content/destructible/index.html" = "/en/space-station-14/core-tech/destructible.html"
67-
"/en/content/mapping/index.html" = "/en/space-station-14/mapping/guides/general-guide.html"
68-
"/en/content/mapping-sins/index.html" = "/en/space-station-14/mapping/guidelines.html"
69-
"/en/content/mapping-checklist/index.html" = "/en/space-station-14/mapping/guidelines.html"
70-
"/en/content/dungeons/index.html" = "/en/space-station-14/mapping/dungeons.html"
71-
"/en/content/node-networks/index.html" = "/en/space-station-14/core-tech/node-networks.html"
72-
"/en/content/NPCs/index.html" = "/en/space-station-14/core-tech/npcs.html"
73-
"/en/content/cartridge-loader/index.html" = "/en/space-station-14/player-interaction/cartridge-loaders.html"
74-
"/en/content/chemistry/index.html" = "/en/space-station-14/core-tech/chemistry.html"
75-
76-
"/en/administration/commands/index.html" = "/en/community/admin/admin-tooling/admin-command-cookbook.html"
77-
"/en/administration/tooling/index.html" = "/en/community/admin/admin-tooling.html"
78-
"/en/administration/policy/index.html" = "/en/community/admin/wizards-den-admin-policy.html"
79-
"/en/administration/banning-policy/index.html" = "/en/community/admin/wizards-den-banning-policy.html"
80-
"/en/getting-started/hosting/index.html" = "/en/general-development/setup/server-hosting-tutorial.html"
81-
"/en/hosting/replays/index.html" = "/en/server-hosting/server-replay-recording.html"
82-
"/en/hosting/changelogs/index.html" = "/en/server-hosting/setting-up-ss14-changelog.html"
83-
"/en/hosting/SS14-Admin/index.html" = "/en/server-hosting/setting-up-ss14-admin.html"
84-
"/en/hosting/robust-cdn/index.html" = "/en/server-hosting/setting-up-robust-cdn.html"
85-
"/en/hosting/oauth/index.html" = "/en/server-hosting/oauth.html"
86-
"/en/hosting/port-forwarding/index.html" = "/en/server-hosting/port-forwarding.html"
87-
"/en/technical-docs/acronyms-and-nomenclature/index.html" = "/en/general-development/codebase-info/acronyms-and-nomenclature.html"
88-
"/en/getting-started/engine-changes/index.html" = "/en/general-developmnet/codebase-info/prs-with-engine-changes.html"
89-
"/en/getting-started/debugging-tools/index.html" = "/en/general-development/tips/debugging-tools.html"
90-
"/en/getting-started/troubleshooting/index.html" = "/en/general-development/tips/troubleshooting-faq.html"
91-
"/en/config-reference/index.html" = "/en/general-development/tips/config-file-reference.html"
92-
"/en/technical-docs/codebase-organization/index.html" = "/en/general-development/codebase-info/codebase-organization.html"
93-
"/en/engine/ecs/index.html" = "/en/robust-toolbox/ecs.html"
94-
"/en/engine/coordinate-systems/index.html" = "/en/robust-toolbox/coordinate-systems.html"
95-
"/en/engine/net-entities/index.html" = "/en/robust-toolbox/netcode/net-entities.html"
96-
"/en/engine/entity-coordinates/index.html" = "/en/robust-toolbox/transform/entity-coordinates.html"
97-
"/en/meta/role-hierarchy/index.html" = "/en/community/space-wizards-role-hierarchy.html"
98-
"/en/super-simple-14/intro/index.html" = "/en/ss14-by-example/introduction-to-ss14-by-example.html"
99-
"/en/super-simple-14/bike-horn/index.html" = "/en/ss14-by-example/adding-a-simple-bikehorn.html"
100-
"/en/super-simple-14/bike-horn-visualizer/index.html" = "/en/ss14-by-example/making-a-sprite-dynamic.html"
101-
"/en/content/localization/index.html" = "/en/ss14-by-example/fluent-and-localization.html"
102-
"/en/super-simple-14/networking-and-you/index.html" = "/en/ss14-by-example/basic-networking-and-you.html"
103-
"/en/launcher/content-updates-deltas-manifests/index.html" = "/en/other-projects/launcher/delta-updates-and-manifests.html"
104-
"/en/engine/content-manifests/index.html" = "/en/robust-toolbox/content-manifests.html"
105-
"/en/fork-development/discord-rich-presence/index.html" = "/en/community/discord-rich-presence-repository.html"
106-
"/en/launcher/content-bundles/index.html" = "/en/other-projects/launcher/content-bundles.html"
107-
"/en/engine/user-interface/index.html" = "/en/robust-toolbox/user-interface.html"
108-
"/en/engine/midi/index.html" = "/en/robust-toolbox/midi.html"
109-
"/en/engine/sandboxing/index.html" = "/en/robust-toolbox/sandboxing.html"
110-
"/en/engine/serialization/index.html" = "/en/robust-toolbox/serialization.html"
111-
"/en/engine/shaders/index.html" = "/en/robust-toolbox/rendering/shaders.html"
112-
"/en/engine/ioc/index.html" = "/en/robust-toolbox/ioc.html"
113-
"/en/engine/Physics/index.html" = "/en/robust-toolbox/transform/physics.html"
114-
"/en/engine/grids/index.html" = "/en/robust-toolbox/transform/grids.html"
115-
"/en/technical-docs/preprocessor-defines/index.html" = "/en/robust-toolbox/preprocessor-defines.html"
116-
"/en/engine/build-configurations/index.html" = "/en/robust-toolbox/build-configurations.html"
117-
"/en/engine/http-api/index.html" = "/en/robust-toolbox/server-http-api.html"
118-
"/en/getting-started/server-hosting-rewrite-workspace/watchdog/index.html" = "/en/server-hosting/setting-up-ss14-watchdog.html"
119-
"/en/engine/robust-modules/index.html" = "/en/robust-toolbox/robust-modules.html"
120-
"/en/engine/user-data-dir/index.html" = "/en/robust-toolbox/user-data-directory.html"
121-
"/en/engine/porting-visualizers/index.html" = "/en/ss14-by-example/making-a-sprite-dynamic/porting-appearance-visualizers.html"
122-
"/en/engine/lighting-fov/index.html" = "/en/robust-toolbox/rendering/lighting-and-fov.html"
123-
"/en/engine/sprites-icons/index.html" = "/en/robust-toolbox/rendering/sprites-and-icons.html"
124-
"/hosting/hub-rules/index.html" = "/en/community/space-wizards-hub-rules.html"
125-
"/en/hosting/hub-rules/index.html" = "/en/community/space-wizards-hub-rules.html"
126-
"/en/server-hosting/setting-up-redbot.html" = "/en/server-hosting/setting-up-discord-integration.html"

scripts/mermaid.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/404.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
# 404ku
2-
3-
![](en/assets/images/miku.png)
4-
5-
she couldn't find the page you're looking for, sorry... (try the search above or file an issue!)
1+
# 404
2+
- todo: carp image with \*grrr*

0 commit comments

Comments
 (0)