chisel 1.4.1__tar.gz → 1.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {chisel-1.4.1/src/chisel.egg-info → chisel-1.4.2}/PKG-INFO +1 -1
- {chisel-1.4.1 → chisel-1.4.2}/setup.cfg +1 -1
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel/doc.py +2 -2
- {chisel-1.4.1 → chisel-1.4.2/src/chisel.egg-info}/PKG-INFO +1 -1
- {chisel-1.4.1 → chisel-1.4.2}/LICENSE +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/README.md +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/pyproject.toml +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel/__init__.py +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel/action.py +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel/app.py +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel/request.py +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel/static/__init__.py +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel/static/chiselDoc.bare +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel/static/index.html +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel/static/markdown-up.tar.gz +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel.egg-info/SOURCES.txt +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel.egg-info/dependency_links.txt +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel.egg-info/requires.txt +0 -0
- {chisel-1.4.1 → chisel-1.4.2}/src/chisel.egg-info/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@ Chisel documentation application
|
|
|
7
7
|
|
|
8
8
|
import importlib.resources
|
|
9
9
|
import os
|
|
10
|
-
from pathlib import
|
|
10
|
+
from pathlib import PurePosixPath
|
|
11
11
|
import tarfile
|
|
12
12
|
|
|
13
13
|
from schema_markdown import get_referenced_types
|
|
@@ -59,7 +59,7 @@ def create_doc_requests(requests=None, root_path='/doc', api=True, app=True, mar
|
|
|
59
59
|
'Documentation'
|
|
60
60
|
)
|
|
61
61
|
if markdown_up or app:
|
|
62
|
-
parent_posix =
|
|
62
|
+
parent_posix = PurePosixPath(root_path).parent
|
|
63
63
|
with importlib.resources.files('chisel.static').joinpath('markdown-up.tar.gz').open('rb') as tgz:
|
|
64
64
|
with tarfile.open(fileobj=tgz, mode='r:gz') as tar:
|
|
65
65
|
for member in tar.getmembers():
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|