From 1507413e680f0b6f86d81758f0d674cf61bfb6c4 Mon Sep 17 00:00:00 2001 From: Nic Crane Date: Wed, 18 Feb 2026 19:09:06 +0000 Subject: [PATCH 1/4] GH-39600: [R] Add trademark attribution to pkgdown site footer Generated-by: Claude --- r/_pkgdown.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/r/_pkgdown.yml b/r/_pkgdown.yml index 39700914db4b..f09faff40109 100644 --- a/r/_pkgdown.yml +++ b/r/_pkgdown.yml @@ -365,4 +365,6 @@ footer: left: older_versions right: built_with components: - older_versions: "[Older versions of these docs](https://arrow.apache.org/docs/r/versions.html)" + older_versions: | + [Older versions of these docs](https://arrow.apache.org/docs/r/versions.html) +
Apache Arrow, Arrow, Apache, the Apache logo, and the Apache Arrow project logo are either registered trademarks or trademarks of The Apache Software Foundation in the United States and other countries. From 8fa0c8160b7360dbcdd6cd79c78d2e3f88fa562d Mon Sep 17 00:00:00 2001 From: Nic Crane Date: Mon, 23 Feb 2026 13:55:40 +0000 Subject: [PATCH 2/4] Update r/_pkgdown.yml Co-authored-by: Jonathan Keane --- r/_pkgdown.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r/_pkgdown.yml b/r/_pkgdown.yml index f09faff40109..8a5ccf93ae52 100644 --- a/r/_pkgdown.yml +++ b/r/_pkgdown.yml @@ -363,7 +363,7 @@ repo: footer: structure: left: older_versions - right: built_with + right: [built_with, legal] components: older_versions: | [Older versions of these docs](https://arrow.apache.org/docs/r/versions.html) From e9b014cacf4f40b4506ec45747529ae4bbb713a3 Mon Sep 17 00:00:00 2001 From: Nic Crane Date: Mon, 23 Feb 2026 13:55:50 +0000 Subject: [PATCH 3/4] Update r/_pkgdown.yml Co-authored-by: Jonathan Keane --- r/_pkgdown.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/r/_pkgdown.yml b/r/_pkgdown.yml index 8a5ccf93ae52..57e99648ec55 100644 --- a/r/_pkgdown.yml +++ b/r/_pkgdown.yml @@ -365,6 +365,6 @@ footer: left: older_versions right: [built_with, legal] components: - older_versions: | - [Older versions of these docs](https://arrow.apache.org/docs/r/versions.html) -
Apache Arrow, Arrow, Apache, the Apache logo, and the Apache Arrow project logo are either registered trademarks or trademarks of The Apache Software Foundation in the United States and other countries. + older_versions: "[Older versions of these docs](https://arrow.apache.org/docs/r/versions.html)" + legal: | + Apache Arrow, Arrow, Apache, the Apache logo, and the Apache Arrow project logo are either registered trademarks or trademarks of The Apache Software Foundation in the United States and other countries. From 8e3239d959b0430e4e94b4636f25b86eb9572610 Mon Sep 17 00:00:00 2001 From: Nic Crane Date: Mon, 6 Apr 2026 17:35:54 +0100 Subject: [PATCH 4/4] GH-39600: [R] Add padding to footer for Kapa AI widget Add bottom padding to the footer so the trademark attribution text is not obscured by the floating Kapa AI widget button. Co-Authored-By: Claude Opus 4.5 --- r/pkgdown/extra.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/r/pkgdown/extra.css b/r/pkgdown/extra.css index b5aab24f0d88..1a9838b1ab6c 100644 --- a/r/pkgdown/extra.css +++ b/r/pkgdown/extra.css @@ -14,3 +14,8 @@ #search-input::placeholder { color: #d9d9d9; } + +/* Add bottom padding to footer to prevent Kapa AI widget from overlaying content */ +footer { + padding-bottom: 80px; +}