FreeBSD/doc 9285d90 — documentation/content/en/books/developers-handbook/ipv6 _index.adoc, documentation/content/en/books/fdp-primer/asciidoctor-primer _index.adoc

Fix HTML validation errors - remove h7 tag, document the rule in FDP

""Listening Side"" and ""Initiating Side"" in the Developers Handbook
used level 5 headings, which render as <h7> in single-page HTML
output for books and fail W3C validation.

Replace them with a bold phrase, and add a WARNING to the
Asciidoctor chapter of the FDP Primer that level 5 headings are
unusable in books.

Reviewed by: carlavilla
Approved by: carlavilla
Differential Revision: https://reviews.freebsd.org/D60070
PR: 297509
DeltaFile
+10-0documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc
+4-4documentation/content/en/books/developers-handbook/ipv6/_index.adoc
+14-42 files

FreeBSD/doc 1ff2007 — documentation/themes/beastie/assets/styles global.scss, documentation/themes/beastie/layouts index.html

Fix HTML validation errors in docs - on main page

Card titles on the documentation homepage were rendered as <h5>
right after the <h2> from global-search.html, skipping two
heading levels. The page also had no <h1>.

Add a visually hidden <h1>{{ .Title }}</h1> before the search
partial, render card titles as <h3 class=""card-title"">, and
rename the .card a h5 selector to .card a .card-title with
padding-top and padding-bottom set, so the look stays
the same. Add a .visually-hidden helper to global.scss.

Differential Revision: https://reviews.freebsd.org/D60069
PR: 297509
DeltaFile
+10-9documentation/themes/beastie/layouts/index.html
+15-1documentation/themes/beastie/assets/styles/global.scss
+25-102 files

FreeBSD/doc 7d2b482 — documentation/themes/beastie/layouts/_partials trademarks.html site-header.html

Fix HTML validation errors in docs site header - menu ids

Same fix as 10633eb for the website header, applied to the
documentation header.

Ids like about, download, documentation and community in the
documentation top menu collide with the same ids inside documents,
breaking validation and <label for=...>. Prefix them with the
section name (e.g. header-community-title).

Differential Revision: https://reviews.freebsd.org/D60059
PR: 297509
DeltaFile
+8-8documentation/themes/beastie/layouts/_partials/site-header.html
+1-1documentation/themes/beastie/layouts/_partials/trademarks.html
+9-92 files

FreeBSD/doc 15e37ad — documentation/themes/beastie/assets/styles documentation.scss, documentation/themes/beastie/layouts/articles single.html list.html

Fix HTML validation errors in docs - articles title section

article: render subtitle as <p> instead of <h3>

The subtitle is part of the title block, not a section heading.
Rendering it as <h3> right after <h1> broke W3C validation and
caused screen readers to announce it as a level-3 heading.

Move the visual styling from the <h3> tag to a `.subtitle` class
in documentation.scss to keep the appearance unchanged.

Reviewed by: carlavilla
Approved by: carlavilla
Differential Revision: https://reviews.freebsd.org/D60058
PR: 297509
DeltaFile
+8-0documentation/themes/beastie/assets/styles/documentation.scss
+1-1documentation/themes/beastie/layouts/articles/single.html
+1-1documentation/themes/beastie/layouts/articles/list.html
+10-23 files

FreeBSD/doc baabd9c — documentation/themes/beastie/layouts/_partials global-search.html

doc: fix trivial bug - missed closing tag in html template

Approved by: doceng (implicit)
PR: 297509
DeltaFile
+2-1documentation/themes/beastie/layouts/_partials/global-search.html
+2-11 files

FreeBSD/doc c7e7931 — documentation/content/en/articles/committers-guide _index.adoc

doc: fix link

Approved by: doceng (implicit)
DeltaFile
+1-1documentation/content/en/articles/committers-guide/_index.adoc
+1-11 files

FreeBSD/doc e97e672 — documentation/content/en/articles/committers-guide _index.adoc, documentation/content/en/books/accessibility partii.adoc

doc: fix HTML validation errors in docs content

Fix AsciiDoc markup causing incorrect HTML output

Fix broken link and italic rendering caused by unescaped characters
in AsciiDoc sources.

Reviewed by: carlavilla
Approved by: carlavilla
Differential Revision: https://reviews.freebsd.org/D60042
PR: 297509
DeltaFile
+5-5documentation/content/en/books/handbook/bsdinstall/_index.adoc
+4-4documentation/content/en/books/handbook/basics/_index.adoc
+8-0documentation/content/en/books/accessibility/partii.adoc
+2-2shared/contrib-additional.adoc
+2-1documentation/content/en/books/handbook/containers/_index.adoc
+1-1documentation/content/en/articles/committers-guide/_index.adoc
+22-131 files not shown
+23-147 files

FreeBSD/doc ad516c1 — documentation/themes/beastie/assets/styles footer.scss, documentation/themes/beastie/layouts/_partials site-footer.html

Fix HTML validation errors in doc site footer

Replace the <h3> column titles with <p class=""column-title""> to stop
validation errors about skipped heading levels on every page, and add
aria-labelledby on each section so the titles are still exposed as
accessible names.

Restore the styling h3 previously received from the browser
(font-weight, line-height, padding) on .column-title so the footer
looks unchanged.

Mirrors the website fix in c33d966fc2.

Reviewed by: carlavilla
Approved by: carlavilla
Differential Revision: https://reviews.freebsd.org/D60040
PR: 297509
DeltaFile
+9-9documentation/themes/beastie/layouts/_partials/site-footer.html
+5-0documentation/themes/beastie/assets/styles/footer.scss
+14-92 files

FreeBSD/doc bda5cd5 — documentation/themes/beastie/assets/styles header.scss, documentation/themes/beastie/layouts/_partials site-header.html

Website: Fix HTML validation errors

Remove the <a> wrapper around each <label> in the top-level menu,
which triggered HTML validation error on every documentation page.

Extend the .menu-item a rules to .menu-item-description so the label
keeps the same appearance and the sub-menu hover trigger still works.

Mirrors the website fix in a8654f311.

Reviewed by: carlavilla
Approved by: carlavilla
Differential Revision: https://reviews.freebsd.org/D60039
PR: 297509
DeltaFile
+16-24documentation/themes/beastie/layouts/_partials/site-header.html
+5-0documentation/themes/beastie/assets/styles/header.scss
+21-242 files

FreeBSD/doc f1bddf0 — documentation/themes/beastie/assets/styles documentation.scss, documentation/themes/beastie/layouts/articles single.html list.html

doc: fix HTML validation errors

Fix duplicate id and invalid heading levels in TOC

Replace h3 with p.toc-title to fix heading-level validation errors,
rename mobile TOC id to TableOfContentsMobile to avoid duplicate ids,
and restore original h3 sizing via --size-550.

Reviewed by: carlavilla
Approved by: carlavilla
Differential Revision: https://reviews.freebsd.org/D60037
PR: 297509
DeltaFile
+19-4documentation/themes/beastie/assets/styles/documentation.scss
+4-4documentation/themes/beastie/layouts/books/single.html
+4-4documentation/themes/beastie/layouts/books/list.html
+4-4documentation/themes/beastie/layouts/articles/single.html
+4-4documentation/themes/beastie/layouts/articles/list.html
+35-205 files

FreeBSD/doc e0c2e9e — shared contrib-additional.adoc

Add new contributor Daniel Morante for the port security/rauthy

PR:             295889
DeltaFile
+1-0shared/contrib-additional.adoc
+1-01 files

FreeBSD/doc b3b2d9b — website/themes/beastie/layouts/_partials site-footer.html

website: fix site themes switch

Reviewed by: carlavilla
Approved by: carlavilla
Differential Revision: https://reviews.freebsd.org/D59980
DeltaFile
+1-1website/themes/beastie/layouts/_partials/site-footer.html
+1-11 files

FreeBSD/doc f55737d — website/content/en administration.adoc

administration: Add delphij to Git Administrators

No objection from:      core, clusteradm
DeltaFile
+3-1website/content/en/administration.adoc
+3-11 files

FreeBSD/doc 7f0ac2c — website/content/en/cgi man.cgi

add NetBSD 10.2 manual pages
DeltaFile
+2-0website/content/en/cgi/man.cgi
+2-01 files

FreeBSD/doc 0061255 — documentation/content/en/books/porters-handbook/makefiles _index.adoc, documentation/content/en/books/porters-handbook/order _index.adoc

phb: add the BUILD_RUN_DEPENDS variable
DeltaFile
+22-26documentation/content/en/books/porters-handbook/makefiles/_index.adoc
+1-0documentation/content/en/books/porters-handbook/order/_index.adoc
+23-262 files

FreeBSD/doc f25cc54 — documentation/content/en/books/handbook/x11 _index.adoc

handbook/x11: Add nvidia-driver-580

Reported by:    jbo
DeltaFile
+5-0documentation/content/en/books/handbook/x11/_index.adoc
+5-01 files

FreeBSD/doc fb1d960 — website/content/en/cgi cgi-style-responsive.pl

cgi: html fixes in libs

remove stray end tag div
DeltaFile
+0-1website/content/en/cgi/cgi-style-responsive.pl
+0-11 files

FreeBSD/doc 0ef2d9b — website/content/en/cgi ports.cgi

ports.cgi: hide FreeBSD header on mobiles in landscape mode

otherwise the input field may be not visible on some devices
DeltaFile
+10-3website/content/en/cgi/ports.cgi
+10-31 files

FreeBSD/doc 3333373 — website/archetypes/release hardware.adoc

hardware: Add some 3G cellular drivers...
DeltaFile
+4-0website/archetypes/release/hardware.adoc
+4-01 files

FreeBSD/doc 5a72c2e — website/content/en/cgi ports.cgi

ports.cgi: wrap long lines inside pkg-descr <pre> block for small devices
DeltaFile
+2-0website/content/en/cgi/ports.cgi
+2-01 files

FreeBSD/doc 29da3cd — website/content/en/cgi ports.cgi

ports.cgi: enable new responsive design

Implement and enable new design for ports.cgi, based on c9c518d9db

Also, move the submit button next to the input field and the select boxes
a row below. Looks better for some mobile devices (e.g. Android) which
cannot detect a submit by the enter key.

Reviewed by:            ziaee
DeltaFile
+30-19website/content/en/cgi/ports.cgi
+30-191 files

FreeBSD/doc b82a2e6 — website/content/en/cgi cgi-style-responsive.pl

cgi: New design for the FreeBSD website

Implement new design for the cgi scripts, based on c9c518d9db
DeltaFile
+509-0website/content/en/cgi/cgi-style-responsive.pl
+509-01 files

FreeBSD/doc 67fa1c9 — website/content/en/cgi ports.cgi

ports.cgi: don't auto-open keyboard on Android
DeltaFile
+17-13website/content/en/cgi/ports.cgi
+17-131 files

FreeBSD/doc a98f17c — documentation/content/ru/books/handbook/containers _index.adoc

ru/books/handbook add containers chapter
DeltaFile
+1,052-0documentation/content/ru/books/handbook/containers/_index.adoc
+1,052-01 files

FreeBSD/doc 63a0995 — website/content/en/cgi ports.cgi

ports.cgi: copyright section as normal text

Wrapping the copyright inside a <pre> block may not look
good on small devices.
DeltaFile
+2-3website/content/en/cgi/ports.cgi
+2-31 files

FreeBSD/doc a45d08f — website/content/en/cgi man.cgi

man.cgi: copyright section as normal text

Wrapping the copyright inside a <pre> block may not look
good on small devices.
DeltaFile
+9-7website/content/en/cgi/man.cgi
+9-71 files

FreeBSD/doc 442d22e — website/content/ru/releases/5.3R relnotes-alpha.html relnotes-ia64.html

website: ru/releases fix previous releases docs
DeltaFile
+1,213-1,229website/content/ru/releases/5.3R/relnotes-i386.html
+1,138-1,154website/content/ru/releases/5.3R/relnotes-pc98.html
+1,117-1,133website/content/ru/releases/5.3R/relnotes-amd64.html
+1,109-1,124website/content/ru/releases/5.3R/relnotes-sparc64.html
+1,101-1,117website/content/ru/releases/5.3R/relnotes-ia64.html
+1,100-1,116website/content/ru/releases/5.3R/relnotes-alpha.html
+6,778-6,87347 files not shown
+20,998-23,31353 files

FreeBSD/doc 9a1ba06 — website/content/ru/releases/14.5R _index.adoc

website: fix typo in ru/releases/14.5R/_index.adoc
DeltaFile
+1-1website/content/ru/releases/14.5R/_index.adoc
+1-11 files

FreeBSD/doc 10633eb — website/themes/beastie/layouts/_partials site-header.html

Website: Fix HTML validation errors

Ids like documentation, download, support, about, community in the
top menu collide with the same ids inside documents, breaking
validation and <label for=...>. Match footer.html and prefix them
with the section name (e.g. header-community-title).

Note: id=""name"" is left as is, so [[name]] anchors are implicitly
unavailable on the site.

Reviewed by: carlavilla
Approved by: carlavilla
Differential Revision: https://reviews.freebsd.org/D59857
PR: 297509
DeltaFile
+12-12website/themes/beastie/layouts/_partials/site-header.html
+12-121 files

FreeBSD/doc c3d1d4e — website/content/zh-tw art.adoc, website/data/zh-tw/news news.toml

Website: Fix HTML validation errors

link with tilde symbol and wrong <p> tags fixed

PR: 297509
DeltaFile
+194-194website/data/zh-tw/news/news.toml
+3-1website/content/zh-tw/art.adoc
+197-1952 files