Site: add tool to mark versioned-docs as "do not index"#3485
Merged
snazy merged 1 commit intoapache:mainfrom Jan 23, 2026
Merged
Site: add tool to mark versioned-docs as "do not index"#3485snazy merged 1 commit intoapache:mainfrom
snazy merged 1 commit intoapache:mainfrom
Conversation
snazy
added a commit
to snazy/polaris
that referenced
this pull request
Jan 20, 2026
Adds the front-matter tags `robots: noindex` (HTML META tag) and `exclude_search: true` (local site search) for old released versions, aka all except 1.3.0. The change was created using the script from apache#3485.
snazy
added a commit
to snazy/polaris
that referenced
this pull request
Jan 20, 2026
Adds the front-matter tags `robots: noindex` (HTML META tag) and `exclude_search: true` (local site search) for old released versions, aka all except 1.3.0. The change was created using the script from apache#3485.
snazy
added a commit
to snazy/polaris
that referenced
this pull request
Jan 20, 2026
Adds the front-matter tags `robots: noindex` (HTML META tag) and `exclude_search: true` (local site search) for old released versions, aka all except 1.3.0. The change was created using the script from apache#3485.
Adds a shell script to add the front-matter tags `robots: noindex` (HTML META tag) and `exclude_search: true` (local site search) for versioned docs for a specific version. The rudimentary script handles only markdown files files, not asciidoc files, because there are currently only .md files in the versioned-docs.
93cc82a to
173ba1a
Compare
Member
Author
|
See also #3486 |
Member
Author
dimas-b
approved these changes
Jan 23, 2026
snazy
added a commit
that referenced
this pull request
Jan 23, 2026
Adds the front-matter tags `robots: noindex` (HTML META tag) and `exclude_search: true` (local site search) for old released versions, aka all except 1.3.0. The change was created using the script from #3485.
evindj
pushed a commit
to evindj/polaris
that referenced
this pull request
Jan 26, 2026
Adds a shell script to add the front-matter tags `robots: noindex` (HTML META tag) and `exclude_search: true` (local site search) for versioned docs for a specific version. The rudimentary script handles only markdown files, not asciidoc files, because there are currently only .md files in the versioned-docs.
snazy
added a commit
to snazy/polaris
that referenced
this pull request
Feb 11, 2026
* (doc) Outdated changelog (apache#3503) * deduplicate storage requests when loading views. (apache#3488) * dedup metadata fetch by reusing ops * Update Gradle to 9.3.0 (apache#3514) * Site: add tool to mark versioned-docs as "do not index" (apache#3485) Adds a shell script to add the front-matter tags `robots: noindex` (HTML META tag) and `exclude_search: true` (local site search) for versioned docs for a specific version. The rudimentary script handles only markdown files, not asciidoc files, because there are currently only .md files in the versioned-docs. * feat(metrics): Evolve PolarisMetricsReporter interface with timestamp parameter and comprehensive documentation (apache#3468) Enhance the `PolarisMetricsReporter` SPI interface by adding a timestamp parameter to the `reportMetric()` method, enabling accurate time-series metrics reporting to external systems. * Make python version configuration in Makefile (apache#3510) * Update max supported python version (apache#3509) * (doc) Add doc for couple new feature flags introduced recently (apache#3511) * Add doc for couple new feature flags * Add doc for couple new feature flags * (nit) Site: Fading anchor (apache#3522) * Fading anchor * Fading anchor * Update doc to use /Users/richardliu rather than quoted tilde (apache#3472) * Remove KMS policies when KMS is not configured and improved default KMS permission for RO/RW (apache#3493) * Update triggers in "Hugo Site" workflow (apache#3518) The `site.yml` workflow is currently triggered in the following scenarios: 1. A push to the `main` branch, using the state of the site and the workflow as on `main`. 2. A push to a `release/*`branch, using the state of the site and the workflow as on that release branch. Notice that workflows get the repo state (from the checkout actions) and the workflow state as its on that particular branch. Put in other words: if we'd have a change to some old `release/1.0.x` branch, the web site would be updated as it is defined on that `release/1.0.x` branch, which is wrong and not the intended behavior. This change updates the workflow triggers to only run for pushes to the `main` branch, plus PRs against the `main` branch and when called from another workflow. This is part of apache#3516 * Let `site/bin/checkout-releases.sh` pull the latest state (apache#3517) The script `site/bin/checkout-releases.sh` is a convenience to get the `versioned-docs` branch locally. It is missing a `git pull` to get the latest state of that branch though, which can be confusing. * Last merged commit 1bf72bc --------- Co-authored-by: Yong Zheng <yongzheng0809@gmail.com> Co-authored-by: Innocent Djiofack <djiofack007@gmail.com> Co-authored-by: Anand K Sankaran <lists@anands.net> Co-authored-by: Richard Liu <35082658+RichardLiu2001@users.noreply.github.com>
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.
Adds a shell script to add the front-matter tags
robots: noindex(HTML META tag) andexclude_search: true(local site search) for versioned docs for a specific version.The rudimentary script handles only markdown files files, not asciidoc files, because there are currently only .md files in the versioned-docs.