Skip to content

Commit b76ab92

Browse files
authored
Merge pull request #141 from scipp/release0.9
Update docs to new sphinx theme for release 0.9
2 parents 1bfa19c + 7252468 commit b76ab92

File tree

15 files changed

+1087
-128
lines changed

15 files changed

+1087
-128
lines changed

.buildconfig/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dependencies:
5252
- debugpy=1.6.3
5353
- decorator=5.1.1
5454
- defusedxml=0.7.1
55-
- docutils=0.16
55+
- docutils=0.17.1
5656
- double-conversion=3.1.7
5757
- eigen=3.4.0
5858
- entrypoints=0.4
@@ -233,7 +233,7 @@ dependencies:
233233
- py=1.11.0
234234
- pycodestyle=2.9.1
235235
- pycparser=2.21
236-
- pydata-sphinx-theme=0.7.2
236+
- pydata-sphinx-theme=0.8.1
237237
- pyflakes=2.5.0
238238
- pygments=2.13.0
239239
- pyopenssl=22.0.0
@@ -262,7 +262,8 @@ dependencies:
262262
- six=1.16.0
263263
- snowballstemmer=2.2.0
264264
- soupsieve=2.3.2.post1
265-
- sphinx-book-theme=0.2.0
265+
- sphinx=4.5.0
266+
- sphinx-book-theme=0.3.3
266267
- sphinx-copybutton=0.5.0
267268
- sphinxcontrib-applehelp=1.0.2
268269
- sphinxcontrib-devhelp=1.0.2
@@ -313,5 +314,4 @@ dependencies:
313314
- pip:
314315
- nb-clean==2.3.0
315316
- orsopy==1.0.1
316-
- sphinx==5.2.2
317-
- sphinx-autodoc-typehints==1.19.4
317+
- sphinx-autodoc-typehints==1.18.3

docs/_static/favicon.ico

46.6 KB
Binary file not shown.

docs/_static/logo.png

-27 KB
Binary file not shown.

docs/_static/logo.svg

+663
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
{# To trigger whether the TOC and its button show up #}
2+
{% set page_toc = generate_toc_html() %}
3+
4+
{# Start copy from buttons.html -#}
5+
{# Utility macros we'll re-use below -#}
6+
{% macro render_tooltip_metadata(tooltip, tooltip_placement) -%}
7+
data-toggle="tooltip"
8+
data-placement="{{ tooltip_placement }}"
9+
title="{{ translate(tooltip) }}"
10+
{%- endmacro %}
11+
12+
13+
{% macro render_inner_html(icon, text) %}
14+
{# used across multiple button types #}
15+
{% if icon -%}
16+
<span class="headerbtn__icon-container">
17+
{% if icon.startswith("fa") -%}
18+
<i class="{{ icon }}"></i>
19+
{% else %}
20+
<img src="{{ pathto(icon, 1) }}">
21+
{% endif -%}
22+
</span>
23+
{% endif %}
24+
{%- if text %}<span class="headerbtn__text-container">{{ translate(text) }}</span>{% endif -%}
25+
{% endmacro %}
26+
27+
28+
{% macro render_link_button(url, tooltip=None, icon=None, text=None, label=None, tooltip_placement="bottom") -%}
29+
<a href="{{ url }}"
30+
class="headerbtn{% if label %} headerbtn-{{ label }}{% endif %}"
31+
{% if tooltip %}{{ render_tooltip_metadata(tooltip, tooltip_placement) }}{% endif %}
32+
>
33+
{{ render_inner_html(icon, text) }}
34+
</a>
35+
{% endmacro %}
36+
37+
38+
{% macro render_js_button(javascript, tooltip=None, icon=None, text=None, label=None, tooltip_placement="bottom") %}
39+
<button onclick="{{ javascript }}"
40+
class="headerbtn{% if label %} headerbtn-{{ label }}{% endif %}"
41+
{% if tooltip %}{{ render_tooltip_metadata(tooltip, tooltip_placement) }}{% endif %}
42+
>
43+
{{ render_inner_html(icon, text) }}
44+
</button>
45+
{% endmacro %}
46+
47+
48+
{% macro render_label_input_button(for_input, tooltip=None, icon=None, text=None, label=None, tooltip_placement="bottom") -%}
49+
<label for="{{ for_input }}"
50+
class="headerbtn{% if label %} headerbtn-{{ label }}{% endif %}"
51+
{% if tooltip %}{{ render_tooltip_metadata(tooltip, tooltip_placement) }}{% endif %}
52+
>
53+
{{ render_inner_html(icon, text) }}
54+
</label>
55+
{% endmacro %}
56+
57+
58+
{# Modified from original buttons.html to add a text option -#}
59+
{% macro render_button_group(buttons, icon=None, text=None, tooltip=None, label=None) %}
60+
<div class="menu-dropdown{% if label %} menu-dropdown-{{ label }}{% endif %}">
61+
<button class="headerbtn menu-dropdown__trigger"
62+
aria-label="{{ tooltip }}">
63+
{% if text %}<span class="headerbtn__text-container">{{ translate(text) }}</span>{% endif %}
64+
{% if icon %}<i class="{{ icon }}"></i>{% endif %}
65+
</button>
66+
{# Modified from original buttons.html to avoid -75% translation, which makes sense only for icon-only buttons -#}
67+
<div class="menu-dropdown__content" {% if text %}style="transform:translateX(0%)"{% endif %}>
68+
<ul>
69+
{%- for button in buttons %}
70+
<li>
71+
{{ render_funcs[button.pop("type")](**button) }}
72+
</li>
73+
{% endfor %}
74+
</ul>
75+
</div>
76+
</div>
77+
{% endmacro %}
78+
79+
{%- set render_funcs = {
80+
"group" : render_button_group,
81+
"javascript" : render_js_button,
82+
"link": render_link_button,
83+
"input_label": render_label_input_button,
84+
}
85+
-%}
86+
{# End copy from buttons.html -#}
87+
88+
<div class="col py-1 d-flex header-article-main">
89+
<div class="header-article__left">
90+
{% if theme_single_page != True %}
91+
{{ render_label_input_button(for_input="__navigation", tooltip="Toggle navigation", icon="fas fa-bars", tooltip_placement="right") }}
92+
{% endif %}
93+
</div>
94+
<div class="header-article__right">
95+
{%- for button in header_buttons -%}
96+
{{ render_funcs[button.pop("type")](**button) }}
97+
{%- endfor -%}
98+
99+
{% if page_toc -%}
100+
{{ render_label_input_button("__page-toc", icon="fas fa-list", label="page-toc") }}
101+
{%- endif %}
102+
</div>
103+
</div>
104+
105+
<!-- Table of contents -->
106+
<div class="col-md-3 bd-toc show noprint">
107+
{%- if page_toc | length >= 1 %}
108+
<div class="tocsection onthispage pt-5 pb-3">
109+
<i class="fas fa-list"></i> {{ translate(theme_toc_title) }}
110+
</div>
111+
<nav id="bd-toc-nav" aria-label="Page">
112+
{{ page_toc }}
113+
</nav>
114+
{%- endif %}
115+
</div>

docs/_templates/topbar/download.html

-22
This file was deleted.

docs/_templates/topbar/launchbuttons.html

-59
This file was deleted.

docs/about/release-notes.rst

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
Release Notes
44
=============
55

6+
v0.9.0 (September 2022)
7+
-----------------------
8+
9+
See full changelog `here <https://github.com/scipp/ess/releases/tag/0.9.0>`_.
10+
11+
Features
12+
~~~~~~~~
13+
14+
* Made ``ess`` compatible with ``scippneutron=0.9`` `#138 <https://github.com/scipp/ess/pull/136>`_.
15+
16+
Contributors
17+
~~~~~~~~~~~~
18+
19+
Simon Heybrock :sup:`a`\ ,
20+
Neil Vaytet :sup:`a`\ ,
21+
and Jan-Lukas Wynen :sup:`a`
22+
623
v0.8.0 (August 2022)
724
--------------------
825

0 commit comments

Comments
 (0)