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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chisel
3
- Version: 1.8.0
3
+ Version: 1.8.2
4
4
  Summary: Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation
5
5
  Home-page: https://github.com/craigahobbs/chisel
6
6
  Author: Craig A. Hobbs
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = chisel
3
- version = 1.8.0
3
+ version = 1.8.2
4
4
  url = https://github.com/craigahobbs/chisel
5
5
  author = Craig A. Hobbs
6
6
  author_email = craigahobbs@gmail.com
@@ -17,9 +17,9 @@ endfunction
17
17
 
18
18
 
19
19
  # The Chisel documentation application arguments
20
- chiselDocArguments = argsValidate(arrayNew( \
21
- objectNew('name', 'name') \
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, objectNew('name', requestName), false, '_top'))
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', objectNew('name', null)))
67
+ markdownPrint(argsLink(chiselDocArguments, 'Index', {'name': null}))
68
68
 
69
69
  # Action request?
70
70
  if types != null:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chisel
3
- Version: 1.8.0
3
+ Version: 1.8.2
4
4
  Summary: Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation
5
5
  Home-page: https://github.com/craigahobbs/chisel
6
6
  Author: Craig A. Hobbs
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes