Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add examples of extension libraries. #191

Merged
merged 41 commits into from
Feb 14, 2023
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
89d959f
Download all sphinx design examples
Revathyvenugopal162 Feb 2, 2023
1bf5a32
Add the examples in doc
Revathyvenugopal162 Feb 2, 2023
969e089
Move the scripts
Revathyvenugopal162 Feb 2, 2023
bdd5a64
Update ci/cd
Revathyvenugopal162 Feb 2, 2023
5ac3ee7
Modify workflow
Revathyvenugopal162 Feb 2, 2023
b47b03f
Modify the images
Revathyvenugopal162 Feb 2, 2023
a85ed66
Add additional lines
Revathyvenugopal162 Feb 2, 2023
32e087c
Add the docs source
Revathyvenugopal162 Feb 2, 2023
dc596d7
Merge branch 'main' into feat/add-examples
Revathyvenugopal162 Feb 3, 2023
566ef1b
Add the scripts inside conf file
Revathyvenugopal162 Feb 3, 2023
e53fa9c
Merge branch 'feat/add-examples' of https://github.com/ansys/ansys-sp…
Revathyvenugopal162 Feb 3, 2023
5be58a4
Modify workflow
Revathyvenugopal162 Feb 3, 2023
335a28f
Add the sphinx jinja
Revathyvenugopal162 Feb 6, 2023
5295be5
Add the sentance case
Revathyvenugopal162 Feb 6, 2023
c865199
Add the docstrings
Revathyvenugopal162 Feb 6, 2023
509e65a
Merge branch 'main' into feat/add-examples
Revathyvenugopal162 Feb 6, 2023
c59a171
Add example dir
Revathyvenugopal162 Feb 6, 2023
197be4b
Merge branch 'feat/add-examples' of https://github.com/ansys/ansys-sp…
Revathyvenugopal162 Feb 6, 2023
6da723d
Add the docstrings
Revathyvenugopal162 Feb 7, 2023
e22f265
remove all warnings
Revathyvenugopal162 Feb 7, 2023
59908c5
remove all unnecessary files
Revathyvenugopal162 Feb 7, 2023
ae4b0eb
Merge branch 'main' into feat/add-examples
Revathyvenugopal162 Feb 10, 2023
77957ab
Merge branch 'main' into feat/add-examples
Revathyvenugopal162 Feb 14, 2023
b374a71
Update .github/workflows/ci_cd.yml
Revathyvenugopal162 Feb 14, 2023
07d2dc7
Update doc/source/examples/examples.rst
Revathyvenugopal162 Feb 14, 2023
3a901ce
Add the sphinx card
Revathyvenugopal162 Feb 14, 2023
aaca7c8
Add the sphinx card ref
Revathyvenugopal162 Feb 14, 2023
11a8ba2
Add the table in examples
Revathyvenugopal162 Feb 14, 2023
6b51add
Typo error
Revathyvenugopal162 Feb 14, 2023
179c4a9
Typo error
Revathyvenugopal162 Feb 14, 2023
b0fc2f4
Add the sphinx styles
Revathyvenugopal162 Feb 14, 2023
b5d429b
Update src/ansys_sphinx_theme/theme/ansys_sphinx_theme/static/js/tabl…
Revathyvenugopal162 Feb 14, 2023
9c1177f
Add the table color
Revathyvenugopal162 Feb 14, 2023
dc2a28f
Merge branch 'feat/add-examples' of https://github.com/ansys/ansys-sp…
Revathyvenugopal162 Feb 14, 2023
e467bf8
Add the toml and arrange css styles
Revathyvenugopal162 Feb 14, 2023
1d01456
Modify the parameters
Revathyvenugopal162 Feb 14, 2023
ddcf7f9
Resolves vale error
Revathyvenugopal162 Feb 14, 2023
e154ea7
Add the docs for css
Revathyvenugopal162 Feb 14, 2023
9bb9985
change the docs
Revathyvenugopal162 Feb 14, 2023
29879dd
change the table
Revathyvenugopal162 Feb 14, 2023
aea7ad4
Update .github/workflows/ci_cd.yml
RobPasMue Feb 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

doc-deploy-development:
name: Doc dev version deploy
if: ${{ github.ref == 'refs/heads/main' }}
# if: ${{ github.ref == 'refs/heads/main' }}
RobPasMue marked this conversation as resolved.
Show resolved Hide resolved
runs-on: ubuntu-latest
needs: doc-build
steps:
Expand Down
80 changes: 80 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

from datetime import datetime
import os
from pathlib import Path
from typing import List

from bs4 import BeautifulSoup
import requests
from sphinx.builders.latex import LaTeXBuilder

LaTeXBuilder.supported_image_types = ["image/png", "image/pdf", "image/svg+xml"]
Expand All @@ -19,6 +23,10 @@
watermark,
)

THIS_PATH = Path(__file__).parent.resolve()

EXAMPLE_PATH = (THIS_PATH / "examples" / "sphinx_examples").resolve()

# Project information
project = "ansys_sphinx_theme"
copyright = f"(c) {datetime.now().year} ANSYS, Inc. All rights reserved"
Expand Down Expand Up @@ -66,6 +74,8 @@
"sphinx.ext.intersphinx",
"notfound.extension",
"sphinx_copybutton",
"sphinx_design",
"sphinx_jinja",
]

# Intersphinx mapping
Expand Down Expand Up @@ -128,3 +138,73 @@
"body": generate_404(),
}
notfound_no_urls_prefix = True


def extract_example_links(archive_url: str) -> List[str]:
"""
Extract example links from a specific URL.

Parameters
----------
archive_url : str
The URL of the archive to retrieve the example links from.

Returns
-------
list
List of example links.
"""
response = requests.get(archive_url)
soup = BeautifulSoup(response.content, "html5lib")
links = soup.find_all("a")
exclude_files = ["article-info.txt"]
Revathyvenugopal162 marked this conversation as resolved.
Show resolved Hide resolved
example_links = [
f"https://raw.githubusercontent.com{link['href'].replace('/blob/', '/')}"
for link in links
if link["href"].endswith(".txt") and all(file not in link["href"] for file in exclude_files)
]
return example_links


def download_and_process_files(example_links: List[str]) -> List[str]:
"""Download and process a series of example files.

This function downloads a series of example files using a
list of links and processes each file.

Parameters
----------
example_links : List[str]
List of links to the example files to be downloaded.

Returns
-------
list
List of the names of the processed files.
"""
file_names = []
for link in example_links:
file_name = link.split("/")[-1]
file_path = str((EXAMPLE_PATH / file_name).absolute())
with open(file_path, "wb") as f:
response = requests.get(link)
content = response.content.decode()
lines = content.splitlines()
# Customised only to remove the warnings on docs build.
filtered_lines = [
line
for line in lines
if not line.startswith("Cards Clickable") and not line.startswith("...............")
]
f.write(
b"\n".join([line.replace("target", file_name).encode() for line in filtered_lines])
)
file_names.append(file_name)
return file_names


URL_ARCHIVE = "https://github.com/executablebooks/sphinx-design/tree/main/docs/snippets/rst"
example_links = extract_example_links(URL_ARCHIVE)
file_names = download_and_process_files(example_links)

jinja_contexts = {"examples": {"inputs_examples": file_names}}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions doc/source/examples/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
========
Examples
========
This show how the different extensions get rendered in ansys-sphinx-theme. This is for testing purpose.

.. grid:: 2

.. grid-item::
.. card:: Sphinx design
:link: sphinx-design
:link-type: ref

Examples rendered with sphinx design.

.. grid-item::
.. card:: Table
:link: table
:link-type: ref

Examples for table with js and rst.


.. toctree::
:hidden:
:maxdepth: 2

sphinx-design
table
33 changes: 33 additions & 0 deletions doc/source/examples/snippet.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
"""Sample functions for ansys-sphinx-theme."""


def func(arg1, arg2):
"""Summary line <should be one one line>.

Extended description of function. Can span multiple lines and
provides a general overview of the function.

.. warning::
Use the ``.. warning::`` directive within the doc-string for any
warnings you would like to explicitly state. For example, if
this method will be deprecated in the next release.

Parameters
----------
arg1 : int
Description of arg1.
arg2 : str
Description of arg2.

Returns
-------
bool
Description of return value.

Examples
--------
>>> func(1, 'foo')
True

"""
return True
23 changes: 23 additions & 0 deletions doc/source/examples/sphinx-design.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.. _sphinx-design:

Sphinx design
=============
The rendering of sphinx design with ansys sphinx theme. To use this see
the full document of `sphinx design <https://sphinx-design.readthedocs.io/en/latest/index.html>`_.

.. jinja:: examples

{% for filename in inputs_examples %}
{% set title = filename.split('.')[0] %}

{{ title[0].upper() }}{{ title[1:] }}
{{ '~' * (title | length) }}

.. literalinclude:: sphinx_examples/{{ filename }}
:language: rst

This directive renders the as follow:

.. include:: sphinx_examples/{{ filename }}

{% endfor %}
2 changes: 2 additions & 0 deletions doc/source/examples/sphinx_examples/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
jorgepiloto marked this conversation as resolved.
Show resolved Hide resolved
!.gitignore
99 changes: 99 additions & 0 deletions doc/source/examples/table.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
.. _table:

Table
=====
The rendering of table directive with ansys sphinx theme.

Data table
----------
Here is the data table.

.. code:: rst

.. table::
:class: datatable

===== ===== =======
A B A and B
===== ===== =======
False False False
True False False
False True False
True True True
===== ===== =======

.. table::
:class: datatable

===== ===== =======
A B A and B
===== ===== =======
False False False
True False False
False True False
True True True
===== ===== =======

Longtable-centered
------------------
Here is the long table.

.. code:: rst

.. table::
:class: longtable-centered

+---------------------------+-------------------+
| | MAPDL Command |
+===========================+===================+
| **GUI commands** | * ``*ASK`` |
| | |
| **GUI commands** | * ``*ASK`` |
| | |
| **GUI commands** | * ``*ASK`` |
+---------------------------+-------------------+

.. table::
:class: longtable-centered

+---------------------------+-------------------+
| | MAPDL Command |
+===========================+===================+
| **GUI commands** | * ``*ASK`` |
| | |
| **GUI commands** | * ``*ASK`` |
| | |
| **GUI commands** | * ``*ASK`` |
+---------------------------+-------------------+

Table-centered
--------------
Here is the table centered.

.. code:: rst

.. table::
:class: table-centered

+---------------------------+-------------------+
| | MAPDL Command |
+===========================+===================+
| **GUI commands** | * ``*ASK`` |
+---------------------------+-------------------+
| **GUI commands** | * ``*ASK`` |
+---------------------------+-------------------+
| **GUI commands** | * ``*ASK`` |
+---------------------------+-------------------+

.. table::
:class: table-centered

+---------------------------+-------------------+
| | MAPDL Command |
+===========================+===================+
| **GUI commands** | * ``*ASK`` |
+---------------------------+-------------------+
| **GUI commands** | * ``*ASK`` |
+---------------------------+-------------------+
| **GUI commands** | * ``*ASK`` |
+---------------------------+-------------------+
2 changes: 0 additions & 2 deletions doc/source/getting_started/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,3 @@ Consider using the ``conf.py`` for this repository:
.. toctree::
:hidden:
:maxdepth: 2


1 change: 1 addition & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ Ansys Sphinx Theme documentation |version|

getting_started/index.rst
user_guide/index.rst
examples/index.rst
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ doc = [
"Sphinx==5.3.0",
"sphinx-copybutton==0.5.1",
"sphinx-notfound-page==0.8.3",
"sphinx-design==0.3.0",
"bs4==0.0.1",
"html5lib",
Revathyvenugopal162 marked this conversation as resolved.
Show resolved Hide resolved
"requests==2.28.2",
"sphinx-jinja==2.0.2",
]

[project.entry-points."sphinx.html_themes"]
Expand Down
3 changes: 3 additions & 0 deletions src/ansys_sphinx_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
THEME_PATH = THIS_PATH / "theme" / "ansys_sphinx_theme"
STATIC_PATH = THEME_PATH / "static"
STYLE_PATH = STATIC_PATH / "css"
JS_PATH = STATIC_PATH / "js"
CSS_PATH = STYLE_PATH / "ansys_sphinx_theme.css"
TEMPLATES_PATH = THEME_PATH / "_templates"
JS_FILE = JS_PATH / "table.js"

# make logo paths available
ansys_favicon = str((STATIC_PATH / "ansys-favicon.png").absolute())
Expand Down Expand Up @@ -108,6 +110,7 @@ def setup(app: sphinx.application.Sphinx) -> Dict:
if not CSS_PATH.exists():
raise FileNotFoundError(f"Unable to locate ansys-sphinx theme at {CSS_PATH.absolute()}")
app.add_css_file(str(CSS_PATH.relative_to(STATIC_PATH)))
app.add_js_file(str(JS_FILE.relative_to(STATIC_PATH)))

# Add templates for autosummary
app.config.templates_path.append(str(TEMPLATES_PATH))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,9 @@ html[data-theme="light"] {
--pst-color-target: rgb(255, 255, 255);
/* color for sphinx-gallery-code output*/
--pst-color-codecell: #fafae2;
--pst-color-codeout:var(--pst-color-inline-code);
--pst-color-sig:#0965C8;
--pst-color-codeout: var(--pst-color-inline-code);
--pst-color-sig: #0965C8;
--sd-color-primary : var(--pst-color-text-base)
}

html[data-theme="dark"] {
Expand Down Expand Up @@ -296,6 +297,7 @@ Sphinx-design

.bd-content .sd-tab-set>input:checked+label, .bd-content .sd-tab-set>input:not(:checked)+label:hover {
color: var(--pst-color-text-base);
border-color: var(--pst-color-text-base);
}


Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
$(document).ready( function () {
$('table.datatable').DataTable();
} );

$(document).ready( function () {
$('table.gridtable').GridTable();
} );

$(document).ready( function () {
$('table.gianttables').GiantTable();
} );
Revathyvenugopal162 marked this conversation as resolved.
Show resolved Hide resolved