Skip to content

Commit

Permalink
Comments + we are no longer asking nicely to copy files
Browse files Browse the repository at this point in the history
  • Loading branch information
pushfoo committed Jan 25, 2025
1 parent 6ec7faf commit 12d8c56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ def run_util(filename, run_name="__main__", init_globals=None):
}
copy_media(src_res_dir, out_res_dir, copy_what)

# We are no longer asking. We are copying.
copy_media(
REPO_LOCAL_ROOT / "doc/_static/icons",
OUT_STATIC / "icons" ,
Expand All @@ -163,10 +164,10 @@ def run_util(filename, run_name="__main__", init_globals=None):
}
)
copy_media(
REPO_LOCAL_ROOT / "doc/_static/icons",
OUT_STATIC / "icons" ,
REPO_LOCAL_ROOT / "doc/_static/",
OUT_STATIC ,
{
'tabler': ("*.svg",)
'filetiles': ("*.png",)
}
)
#copy_media(
Expand Down
3 changes: 2 additions & 1 deletion util/create_resources_listing.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def announce_templating(var_name):


def src_kludge(strpath): # pending: post-3.0 cleanup: # evil evil evil evil
return f"{RTD_EVIL}{strpath}"
"""We inject what RTD says the canonical domain is up top + the version"""
return f"{RTD_EVIL}{strpath}"

MODULE_DIR = Path(__file__).parent.resolve()
ARCADE_ROOT = MODULE_DIR.parent
Expand Down

0 comments on commit 12d8c56

Please sign in to comment.