Skip to content

Commit

Permalink
Merge pull request #791 from executablebooks/agoose77/fix-sphinx-726-…
Browse files Browse the repository at this point in the history
…warning

FIX: properly handle CSS objects in css_files
  • Loading branch information
agoose77 authored Dec 14, 2023
2 parents 29a73f6 + ecacc0f commit d9623d6
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 13 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ jobs:
python-version: '3.9'
cache: "pip"
cache-dependency-path: "pyproject.toml"
- name: Install fonts
# This is required until sphinx-opengraph fixes their fallback
run: sudo apt-get install -y fonts-roboto

- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -103,11 +107,12 @@ jobs:
shell: python
run: |
from pathlib import Path
import re
text = Path("./warnings.txt").read_text().strip()
expected_warning_snippets = ["kitchen-sink", "urllib/parse.py"]
expected_warning_patterns = [r"kitchen\-sink", r"urllib/parse\.py", r"Glyph 10024 .*? missing from current font"]
print("\n=== Sphinx Warnings ===\n\n" + text) # Print just for reference so we can look at the logs
unexpected = [ii for ii in text.split("\n") if not any(snippet in ii for snippet in expected_warning_snippets)]
assert len(unexpected) == 0
unexpected = [l for l in text.splitlines() if not any(re.search(p, ii) for p in expected_warning_patterns)]
assert len(unexpected) == 0, unexpected
- name: Audit with Lighthouse
uses: treosh/lighthouse-ci-action@10.1.0
Expand Down
34 changes: 24 additions & 10 deletions src/sphinx_book_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _gen_hash(path: str) -> str:
return hashlib.sha1(path.read_bytes()).hexdigest()


def hash_assets_for_files(assets: list, theme_static: Path, context):
def hash_assets_for_files(assets: list, theme_static: Path, context, app):
"""Generate a hash for assets, and append to its entry in context.
assets: a list of assets to hash, each path should be relative to
Expand All @@ -88,22 +88,36 @@ def hash_assets_for_files(assets: list, theme_static: Path, context):
context: the Sphinx context object where asset links are stored. These are:
`css_files` and `script_files` keys.
"""
for asset in assets:
for asset_path in assets:
# CSS assets are stored in css_files, JS assets in script_files
asset_type = "css_files" if asset.endswith(".css") else "script_files"
asset_type = "css_files" if asset_path.endswith(".css") else "script_files"
if asset_type in context:
# Define paths to the original asset file, and its linked file in Sphinx
asset_sphinx_link = f"_static/{asset}"
asset_source_path = theme_static / asset
asset_sphinx_link = f"_static/{asset_path}"
asset_source_path = theme_static / asset_path
if not asset_source_path.exists():
SPHINX_LOGGER.warning(
f"Asset {asset_source_path} does not exist, not linking."
)
# Find this asset in context, and update it to include the digest
if asset_sphinx_link in context[asset_type]:
hash = _gen_hash(asset_source_path)
ix = context[asset_type].index(asset_sphinx_link)
context[asset_type][ix] = asset_sphinx_link + "?digest=" + hash
for ii, other_asset in enumerate(context[asset_type]):
# TODO: eventually the contents of context['css_files'] etc should probably
# only be _CascadingStyleSheet etc. For now, assume mixed with strings.
if (
getattr(other_asset, "filename", str(other_asset))
!= asset_sphinx_link
):
continue
# Take priority from existing asset or use default priority (500)
priority = getattr(other_asset, "priority", 500)
# Remove existing asset
del context[asset_type][ii]
# Add new asset
app.add_css_file(
asset_sphinx_link,
digest=_gen_hash(asset_source_path),
priority=priority,
)


def hash_html_assets(app, pagename, templatename, context, doctree):
Expand All @@ -117,7 +131,7 @@ def hash_html_assets(app, pagename, templatename, context, doctree):
# run but the book theme CSS file won't be linked in Sphinx.
if app.config.html_theme == "sphinx_book_theme":
assets.append("styles/sphinx-book-theme.css")
hash_assets_for_files(assets, get_html_theme_path() / "static", context)
hash_assets_for_files(assets, get_html_theme_path() / "static", context, app)


def update_mode_thebe_config(app):
Expand Down

0 comments on commit d9623d6

Please sign in to comment.