From ff94e4441295a763c4ff80c9efb98415c6230ec8 Mon Sep 17 00:00:00 2001 From: hkimw <54717101+hkimw@users.noreply.github.com> Date: Wed, 27 May 2026 13:55:07 +0900 Subject: [PATCH 1/3] Cut cross-domain _redirects so docs.pccx.ai stays standalone MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit docs.pccx.ai is the v002 legacy site now and should serve its own Sphinx build instead of forwarding visitors to docs.altifigence.com. The _extra/_redirects file held nine 301 rules that rewrote every page — /, /*, /en/*, /ko/*, /docs/v002/*, /en/docs/v002/*, /ko/docs/v002/*, /robots.txt, /sitemap.xml — to corresponding paths under docs.altifigence.com. Drop the file entirely. The deploy.yml \"Create root redirect page\" step is gated on `if [ -f _extra/_redirects ]`, so it now no-ops, and the Sphinx build's own root index.html (with its same-domain meta refresh to /en/) keeps the site fully self-contained. Companion change: pccxai/pccx-vision-v001 was deleted on 2026-05-27 and v003 / vision-v001 / Lab were removed from this Sphinx tree in #107. docs.altifigence.com is now the canonical hub for everything beyond v002; docs.pccx.ai is a frozen v002 archive. --- _extra/_redirects | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 _extra/_redirects diff --git a/_extra/_redirects b/_extra/_redirects deleted file mode 100644 index cb4f22b0..00000000 --- a/_extra/_redirects +++ /dev/null @@ -1,9 +0,0 @@ -/en/docs/v002/* https://docs.altifigence.com/products/v002/:splat 301 -/ko/docs/v002/* https://docs.altifigence.com/kr-ko/products/v002/:splat 301 -/docs/v002/* https://docs.altifigence.com/products/v002/:splat 301 -/en/* https://docs.altifigence.com/v002/sphinx-mirror/:splat 301 -/ko/* https://docs.altifigence.com/v002/sphinx-mirror/ko/:splat 301 -/robots.txt https://docs.altifigence.com/robots.txt 301 -/sitemap.xml https://docs.altifigence.com/sitemap.xml 301 -/ https://docs.altifigence.com/v002/sphinx-mirror/ 301 -/* https://docs.altifigence.com/v002/sphinx-mirror/:splat 301 From 62ff25bc3576b65bd44a36d44b23ae1cc98d3877 Mon Sep 17 00:00:00 2001 From: hkimw <54717101+hkimw@users.noreply.github.com> Date: Sat, 30 May 2026 14:45:39 +0900 Subject: [PATCH 2/3] docs: retarget v003/tools sidebar + prune roadmap later-v003; en-ko sync MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - _static/pccx_versions.json: v003 entry now points to https://docs.altifigence.com/v003/ - index.rst, ko/index.rst: dropped Toolchain Demos toctree block; Tools now uses /lab/, /launcher/, /ide/ on altifigence (labels kept English for parity) - docs/roadmap.md + ko/docs/roadmap.md: removed "## Later — v003.x" section and updated family tree caption - docs/samples/index.md + ko/docs/samples/index.md: added :orphan: so removal does not break strict build - conf_common.py, _templates/sidebar/brand.html: updated footer icons - docs/index.rst, README.md, docs/v002/gemma3n-e4b-integration.rst: refreshed stale tool URLs for link health - all changes maintain EN/KO structural parity per repo rules --- README.md | 4 ++-- _static/pccx_versions.json | 6 +++--- _templates/sidebar/brand.html | 6 +++--- conf_common.py | 6 +++--- docs/index.rst | 4 ++-- docs/roadmap.md | 25 ++++--------------------- docs/samples/index.md | 3 +++ docs/v002/gemma3n-e4b-integration.rst | 6 +++--- index.rst | 18 ++++++------------ ko/docs/roadmap.md | 24 ++++-------------------- ko/docs/samples/index.md | 3 +++ ko/index.rst | 18 +++++++----------- 12 files changed, 43 insertions(+), 80 deletions(-) diff --git a/README.md b/README.md index e6e996cc..1f3a57fe 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ Sibling repositories: - **`pccx-v002`** — reusable v002 IP-core package. - **`pccx-v003`** — future reusable v003 IP-core package. - **[pccxai/pccx-FPGA-NPU-LLM-kv260](https://github.com/pccxai/pccx-FPGA-NPU-LLM-kv260)** — KV260 + LLM application integration that consumes `pccx-v002`. -- **[pccxai/pccx-lab](https://github.com/pccxai/pccx-lab)** — performance simulator, CLI-first verification lab, and trace profiler. The public Lab documentation lives on `https://labs.pccx.ai/`. +- **[pccxai/pccx-lab](https://github.com/pccxai/pccx-lab)** — performance simulator, CLI-first verification lab, and trace profiler. The public Lab documentation lives on `https://docs.altifigence.com/lab/`. --- @@ -202,7 +202,7 @@ the speculative-decoding stack is integrated. Performance simulator, CLI-first verification lab, and trace profiler for the pccx NPU. Pre-RTL bottleneck detection, UVM co-simulation, and testbench/trace workflow support share one workflow. - Repository: https://github.com/pccxai/pccx-lab -- Documentation: https://labs.pccx.ai/ +- Documentation: https://docs.altifigence.com/lab/ - Status: Work in Progress --- diff --git a/_static/pccx_versions.json b/_static/pccx_versions.json index b3339e0c..d0171392 100644 --- a/_static/pccx_versions.json +++ b/_static/pccx_versions.json @@ -12,10 +12,10 @@ { "label": "v003", "slug": "v003", - "url": "/en/docs/v003/", + "url": "https://docs.altifigence.com/v003/", "urls": { - "en": "/en/docs/v003/", - "ko": "/ko/docs/v003/" + "en": "https://docs.altifigence.com/v003/", + "ko": "https://docs.altifigence.com/v003/" }, "status": "available" }, diff --git a/_templates/sidebar/brand.html b/_templates/sidebar/brand.html index 77f3c3e5..4e59737f 100644 --- a/_templates/sidebar/brand.html +++ b/_templates/sidebar/brand.html @@ -56,7 +56,7 @@ RTL