feat: redirect removed developer pages to their new homes#209
Merged
Conversation
The 7 developer instruction pages removed in #201 had been live for years, so their URLs are in search indexes and linked from old forum posts and project docs. Restore each URL as a redirect_to stub pointing at where the content lives now: - /python-developers/, /wiki/ -> QuantEcon.py rendered contributing guide - /wiki-py-conda-dev-env|docstrings|unit-testing/ -> matching section anchors on that guide - /julia-developers/ -> QuantEcon.jl rendered contributing guide - /developer-resources/ -> /code/ (the site's libraries hub) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
✅ Deploy Preview for grand-swan-ca5201 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
There was a problem hiding this comment.
Pull request overview
Restores a set of previously removed developer-instruction URLs by reintroducing them as minimal Jekyll redirect stubs, preventing long-lived links (search indexes, Discourse threads, docs) from returning 404s and pointing visitors to the new authoritative contributing documentation.
Changes:
- Re-adds redirect-only stubs for the removed Python developer wiki pages, pointing to the QuantEcon.py contributing guide (with section anchors where applicable).
- Re-adds a redirect-only stub for the Julia developer page, pointing to the QuantEcon.jl contributing guide.
- Re-adds a redirect-only stub for
/developer-resources/, pointing to the site’s code hub.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| pages/wiki.md | Redirect stub for legacy /wiki/ URL to QuantEcon.py contributing guide |
| pages/wiki-py-unit-testing.md | Redirect stub to contributing guide “write tests” section |
| pages/wiki-py-docstrings.md | Redirect stub to contributing guide documentation section |
| pages/wiki-py-conda-dev-env.md | Redirect stub to contributing guide conda dev env section |
| pages/python-developers.md | Redirect stub for legacy /python-developers/ URL |
| pages/julia-developers.md | Redirect stub for legacy /julia-developers/ URL |
| pages/developer-resources.md | Redirect stub for legacy /developer-resources/ URL to code hub |
jekyll-redirect-from absolutizes it via site.url at build time, so the emitted HTML is unchanged; the source now matches the PR description's redirect map. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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
Follow-up to #201, which deleted 7 developer instruction pages and left their URLs 404ing. Those URLs were live for years — they're in search indexes and linked from old Discourse threads and project docs — so this restores each one as a tiny
redirect_tostub (front matter only, same pattern aspages/python-lectures.md).Redirect map
/python-developers//wiki//wiki-py-conda-dev-env//contributing.html#set-up-a-conda-development-environment/wiki-py-docstrings//contributing.html#write-documentation/wiki-py-unit-testing//contributing.html#write-tests/julia-developers//developer-resources//code/(the site's own libraries hub)All targets verified returning 200. The section anchors are best-effort: if readthedocs restructures the page the fragment stops scrolling but the page still loads.
Verified
bundle exec jekyll buildpasses; all 7 stubs emit correcthttp-equiv="refresh"redirects in_site.🤖 Generated with Claude Code