chisel 1.8.0__tar.gz → 1.8.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.8.0/src/chisel.egg-info → chisel-1.8.2}/PKG-INFO +1 -1
- {chisel-1.8.0 → chisel-1.8.2}/setup.cfg +1 -1
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel/static/chiselDoc.bare +5 -5
- chisel-1.8.2/src/chisel/static/markdown-up.tar.gz +0 -0
- {chisel-1.8.0 → chisel-1.8.2/src/chisel.egg-info}/PKG-INFO +1 -1
- chisel-1.8.0/src/chisel/static/markdown-up.tar.gz +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/LICENSE +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/README.md +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/pyproject.toml +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel/__init__.py +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel/action.py +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel/app.py +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel/doc.py +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel/request.py +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel/static/__init__.py +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel/static/index.html +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel.egg-info/SOURCES.txt +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel.egg-info/dependency_links.txt +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel.egg-info/requires.txt +0 -0
- {chisel-1.8.0 → chisel-1.8.2}/src/chisel.egg-info/top_level.txt +0 -0
|
@@ -17,9 +17,9 @@ endfunction
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
# The Chisel documentation application arguments
|
|
20
|
-
chiselDocArguments = argsValidate(
|
|
21
|
-
|
|
22
|
-
)
|
|
20
|
+
chiselDocArguments = argsValidate([ \
|
|
21
|
+
{'name': 'name'} \
|
|
22
|
+
])
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
# Render the Chisel documentation application index page
|
|
@@ -41,7 +41,7 @@ async function chiselDocIndexPage():
|
|
|
41
41
|
for groupName in arraySort(objectKeys(groups)):
|
|
42
42
|
markdownPrint('', '## ' + markdownEscape(groupName))
|
|
43
43
|
for requestName in arraySort(objectGet(groups, groupName)):
|
|
44
|
-
markdownPrint('', argsLink(chiselDocArguments, requestName,
|
|
44
|
+
markdownPrint('', argsLink(chiselDocArguments, requestName, {'name': requestName}, false, '_top'))
|
|
45
45
|
endfor
|
|
46
46
|
endfor
|
|
47
47
|
endfunction
|
|
@@ -64,7 +64,7 @@ async function chiselDocRequestPage(typeName):
|
|
|
64
64
|
|
|
65
65
|
# Render the request page
|
|
66
66
|
documentSetTitle(typeName)
|
|
67
|
-
markdownPrint(argsLink(chiselDocArguments, 'Index',
|
|
67
|
+
markdownPrint(argsLink(chiselDocArguments, 'Index', {'name': null}))
|
|
68
68
|
|
|
69
69
|
# Action request?
|
|
70
70
|
if types != null:
|
|
Binary file
|
|
Binary file
|
|
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
|