This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git
The following commit(s) were added to refs/heads/main by this push:
new c4813631 docs: Add ASF attribution (#973)
c4813631 is described below
commit c48136319c1f69eab7176c74078e2e9a81076216
Author: Dejan Simic <[email protected]>
AuthorDate: Fri Feb 9 15:14:35 2024 +0100
docs: Add ASF attribution (#973)
* Update footer and project information
* Update requirements.txt and logo in docs-sidebar.html
* Update project name
Co-authored-by: Andy Grove <[email protected]>
* Update project description
Co-authored-by: Andy Grove <[email protected]>
---------
Co-authored-by: Andy Grove <[email protected]>
---
docs/requirements.txt | 9 +++++----
docs/source/_templates/docs-sidebar.html | 2 +-
docs/source/_templates/layout.html | 21 +++++++++++++++++++++
docs/source/conf.py | 8 +++-----
4 files changed, 30 insertions(+), 10 deletions(-)
diff --git a/docs/requirements.txt b/docs/requirements.txt
index 0f18a115..50e71817 100644
--- a/docs/requirements.txt
+++ b/docs/requirements.txt
@@ -15,7 +15,8 @@
# specific language governing permissions and limitations
# under the License.
-sphinx==2.4.4
-pydata-sphinx-theme
-myst-parser<1
-maturin<0.12
+sphinx
+Jinja2
+pydata-sphinx-theme==0.8.0
+myst-parser
+maturin
diff --git a/docs/source/_templates/docs-sidebar.html
b/docs/source/_templates/docs-sidebar.html
index bc2bf009..e99e8278 100644
--- a/docs/source/_templates/docs-sidebar.html
+++ b/docs/source/_templates/docs-sidebar.html
@@ -1,6 +1,6 @@
<a class="navbar-brand" href="{{ pathto(master_doc) }}">
- <img src="{{ pathto('_static/images/' + logo, 1) }}" class="logo" alt="logo">
+ <img src="{{ pathto('_static/images/ballista-logo.png', 1) }}" class="logo"
alt="logo">
</a>
<form class="bd-search d-flex align-items-center" action="{{ pathto('search')
}}" method="get">
diff --git a/docs/source/_templates/layout.html
b/docs/source/_templates/layout.html
index a9d0f30b..101a49ab 100644
--- a/docs/source/_templates/layout.html
+++ b/docs/source/_templates/layout.html
@@ -3,3 +3,24 @@
{# Silence the navbar #}
{% block docs_navbar %}
{% endblock %}
+
+<!--
+ Custom footer
+-->
+{% block footer %}
+<!-- Based on pydata_sphinx_theme/footer.html -->
+<footer class="footer mt-5 mt-md-0">
+ <div class="container">
+ {% for footer_item in theme_footer_items %}
+ <div class="footer-item">
+ {% include footer_item %}
+ </div>
+ {% endfor %}
+ <div class="footer-item">
+ <p>Apache Arrow Ballista, Arrow Ballista, Apache, the Apache feather
logo, and the Apache Arrow Ballista project logo</p>
+ <p>are either registered trademarks or trademarks of The Apache Software
Foundation in the United States and other countries.</p>
+ </div>
+ </div>
+</footer>
+
+{% endblock %}
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 62f6bb81..ae2f03eb 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -31,13 +31,11 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))
-import datafusion
-
# -- Project information -----------------------------------------------------
-project = 'Arrow DataFusion'
-copyright = '2022, Apache Software Foundation'
-author = 'Arrow DataFusion Authors'
+project = 'Apache Arrow Ballista'
+copyright = '2019-2024, Apache Software Foundation'
+author = 'Apache Software Foundation'
# -- General configuration ---------------------------------------------------