docs: audit-driven URL fixes across docs, READMEs, and docstrings#1265
Merged
Conversation
…in/, etc.) Apply scripted URL rewrites surfaced by the new admin_jammy/software/url_check/ audit tool. All changes are doc-only (README, *.md, *.rst, plus docstring URLs in source files). No behaviour changes. Line endings preserved. Patterns applied: - hhttps:// → https:// (user-reported typo in overview_2_new_user_guide.md) - Jammy2211/<workspace> → PyAutoLabs/<workspace> (workspaces migrated orgs) - Jammy2211|rhayes777/<library> → PyAutoLabs/<library> - /blob/release/ and /tree/release/ → /main/ (release branch removed) - joshspeagle/nautilus → johannesulf/nautilus (sampler moved orgs) - rhayes777/PyAutoBuild → PyAutoLabs/PyAutoBuild - bokeh CoC moved to /docs/CODE_OF_CONDUCT.md - numfocus CoC moved to numfocus.org/code-of-conduct - www.sphinx-doc.org /en/main → /en/master - pyautofit.readthedocs.io renames (cookbook_1_basics → cookbooks/model, overview/model_fit → overview/the_basics, etc.) - autofit_workspace overview/{simple,complex}/{fit,result}.ipynb → new flat structure - workspaces modeling/imaging/features/<x>.ipynb → imaging/features/<x>/modeling.ipynb - workspaces multi/modeling/features/<x>.ipynb → multi/features/<x>/modeling.ipynb - workspaces multi/modeling/start_here.ipynb → multi/start_here.ipynb - workspaces tree/main/notebooks/plot → notebooks/guides/plot - Colab badge URL: workspace-root start_here.ipynb → notebooks/<type>/start_here.ipynb Tool + report: PyAutoLabs/admin_jammy#21 Issue: PyAutoLabs/PyAutoLens#508 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced May 15, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Doc-only URL cleanup driven by the new
admin_jammy/software/url_check/audit tool (Jammy2211/admin_jammy#21). Fixes the user-reportedhhttps://typo inoverview_2_new_user_guide.mdplus ~20 mechanical URL rewrites covering:Jammy2211/<workspace>→PyAutoLabs/<workspace>;Jammy2211|rhayes777/<library>→PyAutoLabs/<library>releasebranch on workspaces:/blob/release/→/blob/main/,/tree/release/→/tree/main/joshspeagle/nautilus→johannesulf/nautilusrhayes777/PyAutoBuild→PyAutoLabs/PyAutoBuild/docs/CODE_OF_CONDUCT.md; numfocus →numfocus.org/code-of-conduct/en/main→/en/mastercookbook_1_basics→cookbooks/model,overview/model_fit→overview/the_basics,overview/result→cookbooks/result, etc.overview/simple/fit.ipynb→overview/overview_1_the_basics.ipynb,modeling/imaging/features/<x>.ipynb→imaging/features/<x>/modeling.ipynb, etc.start_here.ipynb→notebooks/<type>/start_here.ipynb(the bare-root file never existed)No source-code behaviour changes — only docstring and
.md / .rst / Python-commenttext. CRLF line endings preserved (no whitespace churn).Test plan
python -m pytest test_<library>passespython -c "import <library>"succeeds (verifies docstring edits don't break parsing)Related