feat: SVG snapshot output and remote URL support for hg#5
Merged
Conversation
- dirplot hg and dirplot git now accept --output file.svg for single-frame snapshots, using the same interactive SVG renderer as dirplot map - dirplot hg now accepts https://, http://, and ssh:// URLs, cloning to a temp dir automatically (mirrors git's GitHub support) - Validation error updated to name both .png and .svg as valid snapshot extensions - Tests added for SVG output and unsupported-extension rejection in both git and hg
dirplot imports click directly in _overview.py but relied on it being pulled in transitively by typer. Since typer ~0.12 made click optional in some builds, this caused ModuleNotFoundError under Python 3.14.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
gitandhg— both commands now accept--output file.svgfor single-frame snapshots, producing interactive SVGs with hover tooltips and CSS highlights, identical tomap's SVG outputhg—dirplot hgnow acceptshttps://,http://, andssh://URLs, cloning into a temp directory automatically (mirrors existing GitHub URL support indirplot git)clickdeclared as explicit dependency — fixes potentialModuleNotFoundErrorunder Python 3.14 where typer no longer pulls in click transitivelysvglibdependency — was added experimentally but not used in the codebaseTest plan
dirplot git <repo> --output snapshot.svgproduces a valid SVGdirplot hg <repo> --output snapshot.svgproduces a valid SVGdirplot hg https://hg.reportlab.com/hg-public/reportlab --inlineworks end-to-enduv run pytest tests/test_git_local.py tests/test_hg_local.pypassespip install dirplotunder Python 3.14 does not raiseModuleNotFoundErrorfor click