Add v50 & v51 route inventory documentation (CSV, HTML, Markdown) - #110
Merged
Conversation
Copilot created this pull request from a session on behalf of
SamWooldridgeKainos
July 27, 2026 15:29
View session
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.
Documents every page route in the v50 and v51 prototypes (300 routes; v50: 143, v51: 157) in three consumable formats under a new
docs/folder.Routes are extracted from templates in
app/views/{v50,v51}that extendlayouts/main.html, then cross-referenced with therouter.get/posthandlers inapp/routes/v50.jsandapp/routes/v51.js. Each route records URL, page title, template, inbound/outbound links, session variables, validation, and conditional logic.Files added
docs/v50-v51-routes.md— Markdown tables grouped by version/section; renders natively on GitHub.docs/v50-v51-routes.csv— 9-column, 301-row (incl. header) export for spreadsheets.docs/v50-v51-routes.html— standalone, dependency-free page with a filter box, v50/v51 toggles, and click-to-sort columns.Extraction notes
data['…']/{% if %}usage with the values read and branching performed by the POST-answerhandler it submits to — inbound links are the reverse map of outboundhref/actiontargets.requiredfield, or a JS submit guard; as a Prototype Kit app, the remaining POST handlers onlyredirect.Documentation only — no application code is modified.