This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new 041f71d290 [GH-1496] Fix website favicon checker issues (#2771)
041f71d290 is described below
commit 041f71d290e1298c3bd4a4ad637a67730f2a8ad1
Author: piyushka-ally <[email protected]>
AuthorDate: Mon Mar 30 21:44:07 2026 +0530
[GH-1496] Fix website favicon checker issues (#2771)
Co-authored-by: Piyush Kanti Chanda <[email protected]>
Co-authored-by: John Bampton <[email protected]>
---
docs-overrides/main.html | 7 +++++++
docs/favicon.ico | Bin 0 -> 6956 bytes
docs/favicons/android-chrome-192x192.png | Bin 0 -> 12147 bytes
docs/favicons/android-chrome-512x512.png | Bin 0 -> 39000 bytes
docs/favicons/apple-touch-icon.png | Bin 0 -> 11297 bytes
docs/favicons/browserconfig.xml | 27 +++++++++++++++++++++++++++
docs/favicons/favicon-16x16.png | Bin 0 -> 772 bytes
docs/favicons/favicon-32x32.png | Bin 0 -> 1724 bytes
docs/favicons/mstile-150x150.png | Bin 0 -> 9405 bytes
docs/favicons/site.webmanifest | 12 ++++++++++++
mkdocs.yml | 2 +-
11 files changed, 47 insertions(+), 1 deletion(-)
diff --git a/docs-overrides/main.html b/docs-overrides/main.html
index af4143d6b5..b387ff486c 100644
--- a/docs-overrides/main.html
+++ b/docs-overrides/main.html
@@ -10,6 +10,13 @@ You're not viewing the latest stable version.
{% block extrahead %}
{{ super() }}
<meta name="google-site-verification"
content="o2riomKLozYKc2IQivWGsrI2unuyQs7hXiAD4kGMCTQ" />
+<link rel="apple-touch-icon" sizes="180x180" href="{{
'favicons/apple-touch-icon.png' | url }}">
+<link rel="icon" type="image/png" sizes="32x32" href="{{
'favicons/favicon-32x32.png' | url }}">
+<link rel="icon" type="image/png" sizes="16x16" href="{{
'favicons/favicon-16x16.png' | url }}">
+<link rel="manifest" href="{{ 'favicons/site.webmanifest' | url }}">
+<meta name="msapplication-config" content="{{ 'favicons/browserconfig.xml' |
url }}">
+<meta name="msapplication-TileColor" content="#ca463a">
+<meta name="theme-color" content="#ca463a">
{% endblock %}
{% block header %}
diff --git a/docs/favicon.ico b/docs/favicon.ico
new file mode 100644
index 0000000000..6360cbebb0
Binary files /dev/null and b/docs/favicon.ico differ
diff --git a/docs/favicons/android-chrome-192x192.png
b/docs/favicons/android-chrome-192x192.png
new file mode 100644
index 0000000000..68be591894
Binary files /dev/null and b/docs/favicons/android-chrome-192x192.png differ
diff --git a/docs/favicons/android-chrome-512x512.png
b/docs/favicons/android-chrome-512x512.png
new file mode 100644
index 0000000000..6956edbe27
Binary files /dev/null and b/docs/favicons/android-chrome-512x512.png differ
diff --git a/docs/favicons/apple-touch-icon.png
b/docs/favicons/apple-touch-icon.png
new file mode 100644
index 0000000000..0013ad7254
Binary files /dev/null and b/docs/favicons/apple-touch-icon.png differ
diff --git a/docs/favicons/browserconfig.xml b/docs/favicons/browserconfig.xml
new file mode 100644
index 0000000000..48c2f87104
--- /dev/null
+++ b/docs/favicons/browserconfig.xml
@@ -0,0 +1,27 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<browserconfig>
+ <msapplication>
+ <tile>
+ <square150x150logo src="mstile-150x150.png"/>
+ <TileColor>#ca463a</TileColor>
+ </tile>
+ </msapplication>
+</browserconfig>
diff --git a/docs/favicons/favicon-16x16.png b/docs/favicons/favicon-16x16.png
new file mode 100644
index 0000000000..0205819c9f
Binary files /dev/null and b/docs/favicons/favicon-16x16.png differ
diff --git a/docs/favicons/favicon-32x32.png b/docs/favicons/favicon-32x32.png
new file mode 100644
index 0000000000..9397e1b78b
Binary files /dev/null and b/docs/favicons/favicon-32x32.png differ
diff --git a/docs/favicons/mstile-150x150.png b/docs/favicons/mstile-150x150.png
new file mode 100644
index 0000000000..9a79bca9a6
Binary files /dev/null and b/docs/favicons/mstile-150x150.png differ
diff --git a/docs/favicons/site.webmanifest b/docs/favicons/site.webmanifest
new file mode 100644
index 0000000000..d0ad3bf8b1
--- /dev/null
+++ b/docs/favicons/site.webmanifest
@@ -0,0 +1,12 @@
+{
+ "name": "Apache Sedona",
+ "short_name": "Sedona",
+ "icons": [
+ { "src": "android-chrome-192x192.png", "sizes": "192x192", "type":
"image/png" },
+ { "src": "android-chrome-512x512.png", "sizes": "512x512", "type":
"image/png" }
+ ],
+ "theme_color": "#ca463a",
+ "background_color": "#ffffff",
+ "display": "standalone",
+ "start_url": "."
+}
diff --git a/mkdocs.yml b/mkdocs.yml
index 5da82fee88..27f3e62106 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -165,7 +165,7 @@ theme:
palette:
primary: 'deep orange'
accent: 'green'
- favicon: image/sedona_logo_symbol.png
+ favicon: favicon.ico
logo: image/logo.svg
icon:
logo: fontawesome/solid/earth-americas