-
Notifications
You must be signed in to change notification settings - Fork 90
Migrate "reference" documents to HTML5 #3259
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
Conversation
...platform.common/bundles/org.eclipse.platform.doc.isv/reference/misc/multi_user_installs.html
Show resolved
Hide resolved
...orm.common/bundles/org.eclipse.platform.doc.isv/reference/misc/project_description_file.html
Show resolved
Hide resolved
...orm.common/bundles/org.eclipse.platform.doc.isv/reference/misc/project_description_file.html
Show resolved
Hide resolved
|
I've checked the documents using the Nu HTML checker, which is the same validator used by e.g. #3238. I've fixed all errors and warnings, outside of the deprecated <tt> element, because that would overshadow all other changes. |
|
Thanks @ptziegler ! Much appreciated! Let's merge once 4.38 stream opens. |
527b09b to
55051cd
Compare
55051cd to
fd79841
Compare
|
This pull request changes some projects for the first time in this development cycle. An additional commit containing all the necessary changes was pushed to the top of this PR's branch. To obtain these changes (for example if you want to push more changes) either fetch from your fork or apply the git patch. Git patchFurther information are available in Common Build Issues - Missing version increments. |
This change includes: - Changing the doctype to "html". - Simplifying the "Content-Type" meta element to only retain the encoding. The remaining attributes match the default settings and can be omitted. - Removing the obsolete "charset" attribute of the "link" element. The encoding is specified via the "Content-Type" header of the linked document. - Removing the redundant "type" attribute for the "style" element. CSS is the default type and can therefore be omitted. - Removing the obsolete "Content-Style-Type" meta element. Styles use CSS by default, so there is no need to set it globally for the document. - Removing the obsolete "Content-Language" meta element. The document language is specified at the root element. - Converting the obsolete "name" attribute of anchor points to "id" attributes of their nearest container and removing the "a" element all-together. - Translating the styling of HTML elements to CSS. - Cleaning up of broken HTML and/or references.
7faaa3a to
46a64d5
Compare
|
Sorry for the noise! I misclicked and created a merge request and had to remove it after that. |
This change includes:
Changing the doctype to "html".
Simplifying the "Content-Type" meta element to only retain the encoding. The remaining attributes match the default settings and can be omitted.
Removing the obsolete "charset attribute of the "link" element. The encoding is specified via the "Content-Type" header of the linked document.
Removing the redundant "type" attribute for the "style" element. CSS is the default type and can therefore be omitted.
Removing the obsolete "Content-Style-Type" meta element. Styles use CSS by default, so there is no need to set it globally for the document.
Removing the obsolete "Content-Language" meta element. The document language is specified at the root element.
Converting the obsolete "name" attribute of anchor points to "id" attributes of their nearest container and removing the "a" element all-together.
Translating the styling of HTML elements to CSS.
Cleanup of broken HTML or broken references.