This is an automated email from the ASF dual-hosted git repository.
imbajin pushed a change to branch feat/oink-core-platform
in repository https://gitbox.apache.org/repos/asf/hugegraph-doc.git
from 3adba9eeb fix(versioning): validate shared version options
add ed6ede76c fix(versioning): resolve renamed page equivalents
add 1d6cded16 fix(versioning): resolve equivalent routes
add 2e9472fed fix(versioning): validate alias targets
add 8307c70ed fix(versioning): validate LLMS sources
add dc51b02e7 fix(versioning): harden artifact metadata
add 127fbd733 fix(versioning): allow metadata-free redirects
add db56a79dd fix(seo): cover every version error page
add 8c789d968 fix(versioning): constrain artifact aliases
add 8c99d6dc8 fix(versioning): preserve archive home redirects
add 2b4e221a9 fix(versioning): reject authority-less aliases
add 600b8287f fix(security): reject ambiguous HTTP URLs
add 73f31a44d fix(security): validate every resource URL
add f4c26ae87 fix(security): reject active resource schemes
add e2665c4db fix(security): cover browser request attributes
add 5dd849a5b fix(security): close rendered URL request gaps
add 9feefa344 fix(security): preserve content request boundaries
add 25f3e8c3f fix(security): track content and media nesting
No new revisions were added by this update.
Summary of changes:
assets/scss/_variables_project.scss | 49 ++
data/version_routes.json | 12 +-
dist/validate-site-output.py | 692 +++++++++++++++++--
layouts/_partials/content/render.html | 5 +
layouts/_partials/print/page-content.html | 8 +
layouts/_partials/version-target.html | 21 +
layouts/landing.html | 6 +
layouts/landing.print.html | 6 +
scripts/test_validate_site_output.py | 635 +++++++++++++++++
scripts/test_versioning.py | 768 ++++++++++++++++++++-
scripts/versioning.py | 671 +++++++++++++++++-
.../bootstrap-controls/accordion-active-dark.svg | 3 +
static/img/bootstrap-controls/accordion-active.svg | 3 +
static/img/bootstrap-controls/accordion-dark.svg | 3 +
static/img/bootstrap-controls/accordion.svg | 3 +
static/img/bootstrap-controls/carousel-next.svg | 3 +
static/img/bootstrap-controls/carousel-prev.svg | 3 +
static/img/bootstrap-controls/check-checked.svg | 3 +
.../img/bootstrap-controls/check-indeterminate.svg | 3 +
static/img/bootstrap-controls/close.svg | 3 +
static/img/bootstrap-controls/navbar-dark.svg | 3 +
static/img/bootstrap-controls/navbar-light.svg | 3 +
static/img/bootstrap-controls/radio-checked.svg | 3 +
static/img/bootstrap-controls/select-dark.svg | 3 +
static/img/bootstrap-controls/select.svg | 3 +
static/img/bootstrap-controls/switch-checked.svg | 3 +
static/img/bootstrap-controls/switch-dark.svg | 3 +
static/img/bootstrap-controls/switch-focus.svg | 3 +
static/img/bootstrap-controls/switch.svg | 3 +
.../img/bootstrap-controls/validation-invalid.svg | 7 +
static/img/bootstrap-controls/validation-valid.svg | 3 +
tests/e2e/versioning.spec.js | 74 ++
tests/ui-ai/version-manifest.test.cjs | 170 +++--
33 files changed, 3055 insertions(+), 126 deletions(-)
create mode 100644 assets/scss/_variables_project.scss
create mode 100644 layouts/_partials/content/render.html
create mode 100644 layouts/_partials/print/page-content.html
create mode 100644 layouts/landing.html
create mode 100644 layouts/landing.print.html
create mode 100644 static/img/bootstrap-controls/accordion-active-dark.svg
create mode 100644 static/img/bootstrap-controls/accordion-active.svg
create mode 100644 static/img/bootstrap-controls/accordion-dark.svg
create mode 100644 static/img/bootstrap-controls/accordion.svg
create mode 100644 static/img/bootstrap-controls/carousel-next.svg
create mode 100644 static/img/bootstrap-controls/carousel-prev.svg
create mode 100644 static/img/bootstrap-controls/check-checked.svg
create mode 100644 static/img/bootstrap-controls/check-indeterminate.svg
create mode 100644 static/img/bootstrap-controls/close.svg
create mode 100644 static/img/bootstrap-controls/navbar-dark.svg
create mode 100644 static/img/bootstrap-controls/navbar-light.svg
create mode 100644 static/img/bootstrap-controls/radio-checked.svg
create mode 100644 static/img/bootstrap-controls/select-dark.svg
create mode 100644 static/img/bootstrap-controls/select.svg
create mode 100644 static/img/bootstrap-controls/switch-checked.svg
create mode 100644 static/img/bootstrap-controls/switch-dark.svg
create mode 100644 static/img/bootstrap-controls/switch-focus.svg
create mode 100644 static/img/bootstrap-controls/switch.svg
create mode 100644 static/img/bootstrap-controls/validation-invalid.svg
create mode 100644 static/img/bootstrap-controls/validation-valid.svg