-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix two bugs + cards from website (#263)
* Update ruff and add cards * Fix hover over table color * Fix cards
- Loading branch information
Showing
20 changed files
with
333 additions
and
113 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
exclude rebuild_all_rtd.py | ||
exclude tox.ini | ||
exclude .gitignore | ||
exclude .pre-commit-config.yaml | ||
exclude .stylelintrc | ||
|
||
prune .circleci/ | ||
prune .github/ | ||
prune docs/ | ||
prune examples/ | ||
prune tools/ | ||
|
||
recursive-include src/sunpy_sphinx_theme/sunpy/ * |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
================ | ||
Cards and Tables | ||
================ | ||
|
||
This page covers the cards and tables that are used in the website. | ||
|
||
Cards | ||
****** | ||
|
||
.. custom-card:: Stuart Mumford | ||
:img_name: Stuart-Mumford.png | ||
:github: cadair | ||
:title: Lead Developer | ||
:aff_name: Sheffield University | ||
:aff_link: https://www.sheffield.ac.uk/ | ||
:date: 17 March 2014 | ||
|
||
Stuart Mumford is the Python developer for the Daniel K. Inouye Solar Telescope Data Centre. He obtained a PhD in Numerical solar physics from Sheffield University in 2016, prior to his PhD he obtained a first class MPhys degree in Physics with Planetary and Space Physics from The University of Wales Aberystwyth, during which he spent 5 months studying at UNIS on Svalbard in the high arctic. | ||
|
||
Tables | ||
****** | ||
|
||
.. list-table:: | ||
:widths: 20, 80 | ||
|
||
* - **sunpy core** | ||
- The core package for solar physics in Python. | ||
|
||
`Documentation <https://docs.sunpy.org/>`__, `Source code <https://github.com/sunpy/sunpy>`__ | ||
|
||
|package_general| |integration_full| |docs_extensive| |tests_excellent| |duplication_none| |community_excellent| |dev_stable| | ||
|
||
**Maintainer**: `The SunPy Project`_ | ||
|
||
Version reviewed: `v1.1.4 <https://github.com/sunpy/sunpy/releases/tag/v1.1.4>`__ | ||
|
||
.. _The SunPy Project: https://sunpy.org/about/roles | ||
.. |package_general| image:: https://img.shields.io/badge/Functionality-General_Package-brightgreen.svg | ||
.. |integration_full| image:: https://img.shields.io/badge/Integration-Full-brightgreen.svg | ||
.. |docs_extensive| image:: https://img.shields.io/badge/Documentation-Extensive-brightgreen.svg | ||
.. |tests_excellent| image:: https://img.shields.io/badge/Testing-Excellent-brightgreen.svg | ||
.. |duplication_none| image:: https://img.shields.io/badge/Duplication-None-brightgreen.svg | ||
.. |community_excellent| image:: https://img.shields.io/badge/Community-Excellent-brightgreen.svg | ||
.. |dev_stable| image:: https://img.shields.io/badge/Development_Status-Stable-brightgreen.svg |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
""" | ||
Test package for the documentation. | ||
Uses code stolen from the internet. | ||
""" | ||
|
||
from .animals import * # noqa: F403 | ||
from .timerange import * # noqa: F403 |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.