Skip to content

Commit d5f5998

Browse files
authored
chore: request #45622 Move docs.tuleap.org to docs.tuleap.com (#1747)
1 parent 2939283 commit d5f5998

Some content is hidden

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

56 files changed

+23
-23
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"features": {
55
"ghcr.io/devcontainers/features/nix:1": {}
66
},
7-
"postCreateCommand": "nix-shell --command 'npm ci && npm run build && make SPHINXOPTS=\"-D html_theme=tuleap_org\" watch-html'",
7+
"postCreateCommand": "nix-shell --command 'npm ci && npm run build && make SPHINXOPTS=\"-D html_theme=tuleap_online_doc\" watch-html'",
88
"forwardPorts": [5000],
99
"portsAttributes": {
1010
"5000": {

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ jobs:
3232
- uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31.8.4
3333
- name: Build
3434
run: nix-shell --pure --run 'make SPHINXOPTS='-W' html'
35-
build_docker_image_theme_tuleap_org:
36-
name: Check build of the Docker image with the tuleap.org theme (docs.tuleap.org)
35+
build_docker_image_theme_online_docs:
36+
name: Check build of the Docker image with the Tuleap online docs theme (docs.tuleap.com)
3737
runs-on: ubuntu-24.04
3838
steps:
3939
- name: Checkout
4040
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4141
with:
4242
persist-credentials: false
4343
- name: Build image
44-
run: docker build -f docs.tuleap.org/Dockerfile -t test-build .
44+
run: docker build -f online-docs/Dockerfile -t test-build .
4545
build_docker_image_linkcheck:
4646
name: Check build of the Docker image used to run linkcheck
4747
runs-on: ubuntu-24.04

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ nbproject
33
.idea/
44
venv/
55
node_modules/
6-
languages/en/_themes/tuleap_org/static/assets/
7-
__pycache__
6+
languages/en/_themes/tuleap_online_doc/static/assets/
7+
__pycache__

Jenkinsfile-build-docs.tuleap.org renamed to Jenkinsfile-build-online-docs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ pipeline {
1616
def lib_signing = new org.tuleap.Signing();
1717
lib_signing.authenticateOnTailscale();
1818
lib_signing.prefetchToolsToSignDockerImages('ci-write');
19-
def image_name = 'tuleap-documentation.docs.tuleap.org';
19+
def image_name = 'tuleap-documentation.online-docs';
2020
def image = docker.build(
2121
image_name,
22-
'-f docs.tuleap.org/Dockerfile .'
22+
'-f online-docs/Dockerfile .'
2323
)
2424
def registry_name = "nexus.enalean.com:20000";
2525
docker.withRegistry("https://${registry_name}", 'ci-write') {

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ linkcheck: pre-build ## Check all external links for integrity
6262
watch-html: pre-build ## Watch the files and rebuild
6363
$(SPHINX_AUTOBUILD) -b html $(WATCHOPTS) $(BUILDDIR)/html --port 5000 --open-browser
6464

65-
watch-html-tuleap-org: pre-build ## Watch the files for the tuleap.org Theme
66-
@$(MAKE) watch-html SPHINXOPTS="-D html_theme=tuleap_org"
65+
watch-html-online-docs: pre-build ## Watch the files for the Tuleap online docs theme
66+
@$(MAKE) watch-html SPHINXOPTS="-D html_theme=tuleap_online_doc"
6767

6868
docker-html:
6969
docker run --rm -ti -u `id -u`:`id -g` -v $(CURDIR):/sources enalean/build-documentation make html

README.md

Lines changed: 4 additions & 4 deletions

0 commit comments

Comments
 (0)