Skip to content
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

Markup: PDF generation #600

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open

Markup: PDF generation #600

wants to merge 6 commits into from

Conversation

gesa
Copy link
Member

@gesa gesa commented Jun 13, 2024

Tried to keep the css together but it doesn't feel super logically grouped so I wound up rearranging everything. Sorry future git-blamer. Units of measurements are all over the place, here's what defines them:

  • mm for page-related units
  • pt for text-related units
  • em for horizontal units
  • ex for vertical units

Highly specific rules come from a loyalty to the Ecma specification template first, previous years' standards second.

There should be no changes that impact screen rendering. Any changes to the primary stylesheet come from inline styles that existed in both ECMA-262 and ECMA-402.

The cover SVGs aren't really used by ecmarkup directly, but are rather to be viewed as source files for the two specifications.

Comment on lines +285 to +379
emu-clause emu-clause emu-clause emu-clause emu-clause emu-clause h1, emu-annex emu-annex emu-annex emu-annex emu-annex emu-annex h1 {
-prince-bookmark-level: 6;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😭

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uwu what's this

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a whole lot of cascading

css/print.css Outdated Show resolved Hide resolved
css/print.css Outdated Show resolved Hide resolved
css/print.css Outdated Show resolved Hide resolved
src/Spec.ts Outdated Show resolved Hide resolved
@gesa
Copy link
Member Author

gesa commented Jul 2, 2024

See gesa@c6b6b9c#comments for the most important detail of this PR.

@gesa gesa marked this pull request as ready for review July 2, 2024 20:57
@michaelficarra
Copy link
Member

michaelficarra commented Jul 2, 2024

@gesa Have you tested both with and without --multipage?

@gesa
Copy link
Member Author

gesa commented Jul 3, 2024

@michaelficarra I have, I’ve generated web versions of ecma402, ecma262 (multipage), and temporal.

gesa added 2 commits July 3, 2024 10:50
Tried to keep the css together but it doesn't feel super logically grouped so I wound up rearranging everything. Sorry future git-blamer. Units of measurements are all over the place, here's what defines them:

- mm for page-related units
- pt for text-related units
- em for horizontal units
- ex for vertical units

Highly specific rules come from a loyalty to the Ecma specification template first, previous years' standards second. There should be no changes that impact screen rendering; changes to the primary stylesheet come from inline styles that existed in both ECMA-262 and ECMA-402.

- Remove print css from Spec file
- Remove styles from inline assets test
- Add publishing instructions
- Small tweaks to allow ecmarkup to generate print-friendly PDFs beyond just 262 & 402
- Use font-face to make sure all the characters are rendered as we wish, including 0 with slash, double-stroke F, and infinity
- Dynamically generate PDF covers based on frontmatter (TODO: Ecma-endorsed proposal cover?)
- Make sure year is being properly inserted into footers
css/elements.css Outdated Show resolved Hide resolved
@gesa
Copy link
Member Author

gesa commented Aug 15, 2024

@syg , @michaelficarra : following up to get this merged when y’all have a chance

css/elements.css Outdated
Comment on lines 1443 to 1466
#metadata-block {
margin: 4em 0;
padding: 10px;
border: 1px solid #ee8421;
}

#metadata-block h1 {
font-size: 1.5em;
margin-top: 0;
}
#metadata-block > ul {
list-style-type: none;
margin: 0; padding: 0;
}

#ecma-logo {
width: 500px;
}

.unicode-property-table {
table-layout: fixed;
width: 100%;
font-size: 80%;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought we were going to move this into ecma262

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wait why? That’s not specific to 262.

Copy link
Member

@michaelficarra michaelficarra Aug 30, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The unicode-property-table class only exists on a table in ecma262: https://github.com/tc39/ecma262/blob/815aa8a4d68ce24bec81ba6789c37d55bc87b54a/table-binary-unicode-properties.html#L3. And the metadata-block div is defined in spec.html.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

metadata-block does appear in 402. I thought unicode-property-table did too, but I was mistaken. I’ll make that edit.

return insideCover;
}

function generateEcmaCopyrightPage() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we generating another copyright page? Don't we already have one in the document?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The document has the original copyright but not the "alternative copyright”. Would extremely love to be proven wrong on this though, it’s quite possible I’m missing something with copyright minutae.

Comment on lines +58 to +141
function improveToc() {
const tocContainer = document.getElementById('toc');
const toc = tocContainer.querySelector('.toc');

tocContainer.firstChild.textContent = 'Contents';
rebuildOl(toc);
}

/**
* Loops through Table of Contents list items and produces markup optimized for
* a PDF ToC
* */
function rebuildOl(ol) {
Array.from(ol.querySelectorAll(':scope li')).forEach(li => {
rebuildLi(li);
});
}

/**
* Gathers information about a given toc item
* */
function rebuildLi(li) {
const sublevel = li.querySelector('ol');

if (sublevel) {
rebuildOl(sublevel);
}

const anchor = li.firstChild;
const clauseID = anchor.getAttribute('href').slice(1);

if (li.querySelector('.secnum') === null) {
return;
}

const clauseNumber = anchor.firstChild.innerHTML;
const clauseTitle = anchor.getAttribute('title');

li.insertBefore(renderTocLink(clauseID, clauseNumber, clauseTitle), anchor);
li.removeChild(anchor);
}

/**
* Generates link elements for table of contents items
* */
function renderTocLink(clauseID, clauseNumber, clauseTitle) {
const nonAnnexSections = [
'sec-copyright-and-software-license',
'sec-colophon',
'sec-bibliography',
];
const link = document.createElement('a');
link.setAttribute('href', '#' + clauseID);
link.setAttribute('title', clauseTitle);

if (nonAnnexSections.includes(clauseID)) {
link.innerHTML = '<span class="secnum">' + clauseTitle + '</span>';

return link;
}

if (/^[A-Z]$/.test(clauseNumber)) {
const annexType = document.getElementById(clauseID).hasAttribute('normative')
? 'normative'
: 'informative';
link.innerHTML =
'<span class="secnum">Annex ' +
clauseNumber +
' <span class="unbold">(' +
annexType +
')</span></span> ' +
clauseTitle;

return link;
}

if (/^[A-Z]\./.test(clauseNumber)) {
link.innerHTML = '<span class="secnum">Annex ' + clauseNumber + '</span> ' + clauseTitle;
return link;
}

link.innerHTML = '<span class="secnum">' + clauseNumber + '</span> ' + clauseTitle;
return link;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm pretty sure we could've done all of this with print styles and an :after selector.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Which part? This function exists to gather information on sections that the links themselves don’t have (and CSS wouldn’t have access to, I don’t think?)

Comment on lines +184 to +197
/**
* The emu-imports element interferes with a ton of css specificity so we just
* take everything out and plop it directly into the DOM
* */
function removeEmuImports() {
const emuImports = Array.from(specContainer.getElementsByTagName('emu-import'));

emuImports.forEach(importedMarkup => {
while (importedMarkup.hasChildNodes()) {
importedMarkup.parentNode.insertBefore(importedMarkup.childNodes[0], importedMarkup);
}
importedMarkup.parentNode.removeChild(importedMarkup);
});
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it'd be fine to just not emit these in the first place.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’d prefer to either leave that in your capable hands, or tackle this myself in a separate PR. Most importantly, after all the time, effort, and ecma money I dumped into producing a quality document, I want to merge what worked.

Comment on lines +219 to +228
/**
* Gets rid of elements we don't need in the print version
* */
function removeUnusedSections() {
const ecmaLogo = document.getElementById('ecma-logo');

if (ecmaLogo) specContainer.removeChild(ecmaLogo.parentNode);

document.getElementsByTagName('body')[0].removeChild(document.getElementById('shortcuts-help'));
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Surely this can be done with print CSS.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

of course it can. getting the scripts to output what i need is a finicky thing though and I try to feed it the simplest, cleanest markup i can.

Comment on lines +272 to +285
/**
* A little content rearranging specifically relevant to 262
* */
function ecma262fixes() {
const toc = document.getElementById('toc');

// eslint-disable-next-line prettier/prettier
specContainer.insertBefore(document.getElementById('sec-bibliography'), document.getElementById('sec-colophon'));
Array.from(toc.getElementsByTagName('a')).forEach(anchor => {
if (anchor.getAttribute('href') === '#sec-colophon') {
toc.getElementsByTagName('ol')[0].appendChild(anchor.parentNode);
}
});
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it'd be fine to just rearrange these in the 262 spec document directly.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’d like very much to address that in a separate PR as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants