Skip to content

Commit

Permalink
Reroute to Blazium Github
Browse files Browse the repository at this point in the history
There's a handful more places to reroute to godot discussion pages that we'll need to recreate or something. I'm not sure that editing the breadcrumbs or layout actually did anything.

This includes a first pass over the config file which should mostly correctly fix github url generation and some Titles.
  • Loading branch information
Starkium committed Oct 15, 2024
1 parent bb49270 commit e9d4cf3
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion _templates/breadcrumbs.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}
}
</style>
<a class="godot-edit-guidelines" href="https://docs.godotengine.org/en/latest/contributing/documentation/index.html#writing-documentation">
<a class="godot-edit-guidelines" href="https://docs.blazium.app/contributing/documentation/index.html#writing-documentation">
Learn how to contribute!
</a>
</li>
Expand Down
4 changes: 2 additions & 2 deletions _templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@
The content of this page was not yet updated for Godot
<code class="docutils literal notranslate">{{ godot_version }}</code>
and may be <strong>outdated</strong>. If you know how to improve this page or you can confirm
that it's up to date, feel free to <a href="https://github.com/godotengine/godot-docs">open a pull request</a>.
that it's up to date, feel free to <a href="https://github.com/blazium-engine/blazium-docs">open a pull request</a>.
</p>
{% else %}
<p class="first admonition-title">Up to date</p>
<p>
This page is <strong>up to date</strong> for Godot <code class="docutils literal notranslate">{{ godot_version }}</code>.
If you still find outdated information, please <a href="https://github.com/godotengine/godot-docs">open an issue</a>.
If you still find outdated information, please <a href="https://github.com/blazium-engine/blazium-docs">open an issue</a>.
</p>
{% endif %}
</div>
Expand Down
52 changes: 26 additions & 26 deletions conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Godot Engine documentation build configuration file
# Blazium Engine documentation build configuration file

import sphinx
import sphinx_rtd_theme
Expand Down Expand Up @@ -62,7 +62,7 @@
notfound_urls_prefix = ''

# Specify the site name for the Open Graph extension.
ogp_site_name = "Godot Engine documentation"
ogp_site_name = "Blazium Engine documentation"

if not os.getenv("SPHINX_NO_GDSCRIPT"):
extensions.append("gdscript")
Expand All @@ -80,11 +80,11 @@
master_doc = "index"

# General information about the project
project = "Godot Engine"
project = "Blazium Engine"
copyright = (
"2014-present Juan Linietsky, Ariel Manzur and the Godot community (CC BY 3.0)"
"2024-present Blazium community, 2014-present Juan Linietsky, Ariel Manzur and the Godot community (CC BY 3.0)"
)
author = "Juan Linietsky, Ariel Manzur and the Godot community"
author = "2024-present Blazium community, Juan Linietsky, Ariel Manzur and the Godot community"

# Version info for the project, acts as replacement for |version| and |release|
# The short X.Y version
Expand All @@ -102,20 +102,20 @@
# Language / i18n

supported_languages = {
"en": "Godot Engine %s documentation in English",
"de": "Godot Engine %s Dokumentation auf Deutsch",
"es": "Documentación de Godot Engine %s en español",
"fr": "Documentation de Godot Engine %s en français",
"fi": "Godot Engine %s dokumentaatio suomeksi",
"it": "Godot Engine %s documentazione in italiano",
"ja": "Godot Engine %sの日本語のドキュメント",
"ko": "Godot Engine %s 문서 (한국어)",
"pl": "Dokumentacja Godot Engine %s w języku polskim",
"pt_BR": "Documentação da Godot Engine %s em Português Brasileiro",
"ru": "Документация Godot Engine %s на русском языке",
"uk": "Документація до Godot Engine %s українською мовою",
"zh_CN": "Godot Engine %s 简体中文文档",
"zh_TW": "Godot Engine %s 正體中文 (台灣) 文件",
"en": "Blazium Engine %s documentation in English",
"de": "Blazium Engine %s Dokumentation auf Deutsch",
"es": "Documentación de Blazium Engine %s en español",
"fr": "Documentation de Blazium Engine %s en français",
"fi": "Blazium Engine %s dokumentaatio suomeksi",
"it": "Blazium Engine %s documentazione in italiano",
"ja": "Blazium Engine %sの日本語のドキュメント",
"ko": "Blazium Engine %s 문서 (한국어)",
"pl": "Dokumentacja Blazium Engine %s w języku polskim",
"pt_BR": "Documentação da Blazium Engine %s em Português Brasileiro",
"ru": "Документация Blazium Engine %s на русском языке",
"uk": "Документація до Blazium Engine %s українською мовою",
"zh_CN": "Blazium Engine %s 简体中文文档",
"zh_TW": "Blazium Engine %s 正體中文 (台灣) 文件",
}

# RTD normalized their language codes to ll-cc (e.g. zh-cn),
Expand Down Expand Up @@ -177,14 +177,14 @@
# VCS options: https://docs.readthedocs.io/en/latest/vcs.html#github
html_context = {
"display_github": not is_i18n, # Integrate GitHub
"github_user": "godotengine", # Username
"github_repo": "godot-docs", # Repo name
"github_user": "blazium-engine", # Username
"github_repo": "blazium-docs", # Repo name
"github_version": "4.3", # Version
"conf_py_path": "/", # Path in the checkout to the docs root
"godot_inject_language_links": True,
"godot_docs_supported_languages": list(supported_languages.keys()),
"godot_docs_title": supported_languages[language],
"godot_docs_basepath": "https://docs.godotengine.org/",
"godot_docs_basepath": "https://docs.blazium.app/",
"godot_docs_suffix": ".html",
"godot_default_lang": "en",
"godot_canonical_version": "stable",
Expand Down Expand Up @@ -224,7 +224,7 @@
]

# Output file base name for HTML help builder
htmlhelp_basename = "GodotEnginedoc"
htmlhelp_basename = "BlaziumEnginedoc"

# -- Options for reStructuredText parser ----------------------------------

Expand All @@ -239,9 +239,9 @@
latex_documents = [
(
master_doc,
"GodotEngine.tex",
"Godot Engine Documentation",
"Juan Linietsky, Ariel Manzur and the Godot community",
"BlaziumEngine.tex",
"Blazium Engine Documentation",
"Blazium community, Juan Linietsky, Ariel Manzur and the Godot community",
"manual",
),
]
Expand Down

0 comments on commit e9d4cf3

Please sign in to comment.