fix(overview): restore truncated tails on pages 01-12#585
Merged
Conversation
Pages 01 through 12 were silently truncated (and pages 04 and 12 also contained null bytes) at some point between commits cc52761 and f1a29c1. The truncation was committed and shipped to the live Pages microsite. Visible symptom: page 5's 'Left to the model' column ended with a half-written bullet 'Exit inter' instead of 'Exit interception - supervisor re-steer up to 2x', and several other pages were missing their footer principle / pull-quote / closing band content. Browsers were lenient enough to render the remainder, so the damage went unnoticed on the first pass. Pages 13-17 and index.html were authored after the corruption window and were unaffected. Recovery strategy: 1. Source each file from cc52761, which is the last commit before the corruption window and confirmed intact. 2. Re-apply the two deliberate edits that landed in the rename PR: a. <link href="_shared.css"> -> <link href="shared.css"> b. add <img class="eyebrow-logo" ...> after the title <span> in the eyebrow header. 3. Write the result back into docs/taskplane-overview/. No other changes were made to pages 01-12 between cc52761 and HEAD, so this restore is non-destructive: every intentional edit since the extended PR (subtitle width default, page-12 next-arrow link, etc.) either lived in shared.css (untouched) or was already in cc52761. Verified: - All 12 files now end with </html> and contain no null bytes. - Each carries exactly one .eyebrow-logo reference. - None still reference _shared.css. - Page 5 'Exit interception' bullet is whole.
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.
What the user saw
Page 5 'Left to the model' column ended with a half-written bullet
Exit interinstead of the fullExit interception · supervisor re-steer up to 2×. Several other pages were quietly missing their closing principle/pull-quote/footer-band content.Root cause
Pages 01-12 were silently truncated (pages 04 and 12 also contained null bytes) at some point between commits
cc527612(PR #582 merge) andf1a29c1a(PR #583 rename merge). Browsers were lenient enough to render the remainder, so the corruption went unnoticed until a user spotted the half-written bullet on the live microsite.Pages 13-17 and
index.htmlwere authored after the corruption window and are unaffected.shared.cssis also untouched.Recovery
For each of pages 01-12:
cc527612(last confirmed-intact commit).<link href="_shared.css">→<link href="shared.css"><img class="eyebrow-logo" src="taskplane-word-white.svg" alt="Taskplane">after the title<span>in the eyebrow header.docs/taskplane-overview/.No other intentional edit landed for these 12 files between
cc527612and HEAD, so the restore is non-destructive.Verified
</html>and contain no null bytes (fileshows them as 'HTML document, UTF-8 text')..eyebrow-logoreference (no duplicates)._shared.csspath.