-
Notifications
You must be signed in to change notification settings - Fork 70
Port RAPIDS docs from Jekyll to NVIDIA Sphinx theme #807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
bdice
wants to merge
40
commits into
rapidsai:main
Choose a base branch
from
bdice:sphinx-port
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 29 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
0b56d47
Port RAPIDS docs from Jekyll to Sphinx
bdice 6853185
Use configured AWS credentials for docs assembly
bdice 75ced39
Configure Netlify Sphinx previews
bdice b9828ac
Restore development setup and minimize migration diff
bdice 833aeaf
Use Python 3.14 for docs builds
bdice 0df55ef
Use Python 3.14 for development
bdice dc33cc3
Merge pull request #1 from bdice/fix/sphinx-devcontainer-cleanup
bdice 0531a34
Build complete site in pull request CI
bdice b4bde80
Keep portal content at repository root
bdice ad33396
Use standard Jinja template syntax
bdice 61cb205
Skip portal API page during docs customization
bdice 4d49de0
Remove Jekyll parity fixture
bdice 32fa1c9
Keep pull request builds deployment-free
bdice 3ffde60
Merge sphinx-port into root-source layout
bdice 22cd055
Merge pull request #2 from bdice/refactor/root-sphinx-source
bdice 6166ae2
Improve API documentation layout
bdice c1e649e
Use full-width API documentation cards
bdice 2c791cc
Refine install selector spacing
bdice 9f1e7f6
Split RAPIDS docs extension into modules
bdice 50032db
Restore notice status labels
bdice 3166ccf
Merge pull request #3 from bdice/fix/install-selector-spacing
bdice 03687d0
Merge pull request #4 from bdice/refactor/split-rapids-docs-extension
bdice 76ee9c9
Merge pull request #5 from bdice/fix/notice-status-labels
bdice 41887bb
Cleanup
bdice e6ee6ef
RSN 60: mark complete (#808)
jameslamb 26b7bb9
move cuxfilter to 'inactive' projects, remove references (#809)
jameslamb 42f070e
Remove TensorFlow and enable PyTorch with CUDA 13 (#811)
bdice fa046a1
Merge pull request #6 from bdice/sync/jekyll-upstream
bdice 6d8ffae
Merge upstream/main into sphinx-port
bdice c03a97a
Use concise site navigation titles
mmccarty 79049ea
Fix platform support release anchors
bdice 34eb8ad
Fix resource cross-links
bdice 0967fc8
Target Python 3.14
bdice bf1e3b7
Simplify README language
bdice afcc787
Update pull request checkout action
bdice 866388c
Explain API index customization exclusion
bdice cd3fc90
Remove obsolete customization requirements
bdice 216e8e7
Remove one-time migration script
bdice 3c4d537
Correct site copyright range
bdice ccb5a03
Restore local development ignores
bdice File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,13 @@ | ||
| // For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
| // README at: https://github.com/devcontainers/templates/tree/main/src/jekyll | ||
| // For format details, see https://aka.ms/devcontainer.json. | ||
| { | ||
| "name": "Jekyll", | ||
| // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
| "image": "mcr.microsoft.com/devcontainers/jekyll:2-bullseye", | ||
| "features": { | ||
| } | ||
|
|
||
| // Features to add to the dev container. More info: https://containers.dev/features. | ||
| // "features": {}, | ||
|
|
||
| // Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
| // "forwardPorts": [], | ||
|
|
||
| // Uncomment the next line to run commands after the container is created. | ||
| // "postCreateCommand": "jekyll --version" | ||
|
|
||
| // Configure tool-specific properties. | ||
| // "customizations": {}, | ||
|
|
||
| // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
| // "remoteUser": "root" | ||
| "name": "RAPIDS Docs", | ||
| "image": "mcr.microsoft.com/devcontainers/python:3.14-bookworm", | ||
| "forwardPorts": [8000], | ||
| "portsAttributes": { | ||
| "8000": { | ||
| "label": "RAPIDS Docs", | ||
| "onAutoForward": "openPreview" | ||
| } | ||
| }, | ||
| "postCreateCommand": "pipx install uv && uv sync --locked" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,7 @@ | ||
| _site/ | ||
| _sass/ | ||
| .sass-cache/ | ||
| -P/ | ||
| .vscode | ||
| lib_map.json | ||
| .DS_Store | ||
| files-to-customize.txt | ||
| .jekyll-cache | ||
| .jekyll-metadata | ||
| .netlify | ||
|
bdice marked this conversation as resolved.
|
||
| /.ruff_cache/ | ||
| /.venv/ | ||
| /_site/ | ||
| /files-to-customize.txt | ||
| /ci/customization/lib_map.json | ||
| __pycache__/ | ||
| node_modules | ||
| rapids-docs-env/ | ||
| *.pyc | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 3.14 |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.