jaaql-middleware-python 5.3.7__tar.gz → 5.3.9__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.
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/PKG-INFO +1 -1
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/constants.py +1 -1
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/documentation/documentation_shared.py +3 -3
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/controller.py +7 -3
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql_middleware_python.egg-info/PKG-INFO +1 -1
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/LICENSE.txt +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/README.md +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/config/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/config/config-docker.ini +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/config/config-test.ini +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/config/config.ini +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/config_constants.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/db/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/db/db_interface.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/db/db_pg_interface.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/db/db_utils.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/db/db_utils_no_circ.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/documentation/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/documentation/documentation_internal.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/documentation/documentation_public.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/email/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/email/email_manager.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/email/email_manager_service.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/email/patch_ems.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/exceptions/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/exceptions/custom_http_status.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/exceptions/http_status_exception.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/exceptions/jaaql_interpretable_handled_errors.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/exceptions/not_yet_implement_exception.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/generated_constants.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/interpreter/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/interpreter/interpret_jaaql.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/jaaql.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/migrations/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/migrations/migrations.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/base_controller.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/base_model.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/controller_interface.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/exception_queries.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/generated_queries.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/handmade_queries.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/model.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/model_interface.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/response.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/openapi/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/openapi/swagger_documentation.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/patch.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/01.install_domains.generated.sql +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/02.install_super_user.exceptions.sql +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/03.install_super_user.handwritten.sql +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/04.install_jaaql_data_structures.generated.sql +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/05.install_static_data.generated.sql +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/06.install_jaaql.exceptions.sql +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/ZZZZ.generated_functions_views_and_permissions.sql +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/ZZZZ.reset_references.sql +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/swagger_template.html +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/services/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/services/cached_canned_query_service.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/services/migrations_manager_service.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/services/patch_mms.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/services/patch_shared_var_service.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/services/shared_var_service.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/__init__.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/bootstrap_secrets.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/cron.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/crypt_utils.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/options.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/utils.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/utils_no_project_imports.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/vault.py +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql_middleware_python.egg-info/SOURCES.txt +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql_middleware_python.egg-info/dependency_links.txt +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql_middleware_python.egg-info/requires.txt +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql_middleware_python.egg-info/top_level.txt +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/setup.cfg +0 -0
- {jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jaaql-middleware-python
|
|
3
|
-
Version: 5.3.
|
|
3
|
+
Version: 5.3.9
|
|
4
4
|
Summary: The jaaql package, allowing for rapid development and deployment of RESTful HTTP applications
|
|
5
5
|
Home-page: https://github.com/JAAQL/JAAQL-middleware-python
|
|
6
6
|
Author: Software Quality Measurement and Improvement bv
|
|
@@ -166,7 +166,7 @@ DOCUMENTATION__submit = SwaggerDocumentation(
|
|
|
166
166
|
method=REST__POST,
|
|
167
167
|
arguments=ARG_RESP__allow_all,
|
|
168
168
|
response=RES__allow_all,
|
|
169
|
-
parallel_verification=
|
|
169
|
+
parallel_verification=False
|
|
170
170
|
)
|
|
171
171
|
)
|
|
172
172
|
|
|
@@ -178,7 +178,7 @@ DOCUMENTATION__execute = SwaggerDocumentation(
|
|
|
178
178
|
method=REST__POST,
|
|
179
179
|
arguments=ARG_RESP__allow_all,
|
|
180
180
|
response=RES__allow_all,
|
|
181
|
-
parallel_verification=
|
|
181
|
+
parallel_verification=False
|
|
182
182
|
)
|
|
183
183
|
)
|
|
184
184
|
|
|
@@ -190,6 +190,6 @@ DOCUMENTATION__call_proc = SwaggerDocumentation(
|
|
|
190
190
|
method=REST__POST,
|
|
191
191
|
arguments=ARG_RESP__allow_all,
|
|
192
192
|
response=RES__allow_all,
|
|
193
|
-
parallel_verification=
|
|
193
|
+
parallel_verification=False
|
|
194
194
|
)
|
|
195
195
|
)
|
|
@@ -102,16 +102,20 @@ class JAAQLController(BaseJAAQLController):
|
|
|
102
102
|
def prepare(http_inputs: dict, account_id: str):
|
|
103
103
|
return self.model.fetch_domains(http_inputs, account_id)
|
|
104
104
|
|
|
105
|
+
# verification_hook (and ip_address, which follows it) are optional: the router only injects
|
|
106
|
+
# verification_hook when the method's parallel_verification is True. With it False these verify
|
|
107
|
+
# synchronously (verification_hook stays None), so there is no shared serial verifier thread to
|
|
108
|
+
# wedge/queue-stall - which is what timed out @dba requests during a \wipe dbms rebuild.
|
|
105
109
|
@self.publish_route('/submit', DOCUMENTATION__submit)
|
|
106
|
-
def submit(http_inputs: dict, account_id: str, verification_hook: queue.Queue, ip_address: str):
|
|
110
|
+
def submit(http_inputs: dict, account_id: str, verification_hook: queue.Queue = None, ip_address: str = None):
|
|
107
111
|
return self.model.submit(http_inputs, account_id, verification_hook=verification_hook, ip_address=ip_address)
|
|
108
112
|
|
|
109
113
|
@self.publish_route('/execute', DOCUMENTATION__execute)
|
|
110
|
-
def execute(http_inputs: dict, account_id: str, verification_hook: queue.Queue):
|
|
114
|
+
def execute(http_inputs: dict, account_id: str, verification_hook: queue.Queue = None):
|
|
111
115
|
return self.model.execute(http_inputs, account_id, verification_hook=verification_hook)
|
|
112
116
|
|
|
113
117
|
@self.publish_route('/call-proc', DOCUMENTATION__execute)
|
|
114
|
-
def call_proc(http_inputs: dict, account_id: str, verification_hook: queue.Queue):
|
|
118
|
+
def call_proc(http_inputs: dict, account_id: str, verification_hook: queue.Queue = None):
|
|
115
119
|
return self.model.call_proc(http_inputs, account_id, verification_hook=verification_hook)
|
|
116
120
|
|
|
117
121
|
@self.publish_route('/internal/clean', DOCUMENTATION__clean)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jaaql-middleware-python
|
|
3
|
-
Version: 5.3.
|
|
3
|
+
Version: 5.3.9
|
|
4
4
|
Summary: The jaaql package, allowing for rapid development and deployment of RESTful HTTP applications
|
|
5
5
|
Home-page: https://github.com/JAAQL/JAAQL-middleware-python
|
|
6
6
|
Author: Software Quality Measurement and Improvement bv
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/config/config-docker.ini
RENAMED
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/config/config-test.ini
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/db/db_utils_no_circ.py
RENAMED
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/documentation/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/email/email_manager.py
RENAMED
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/email/email_manager_service.py
RENAMED
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/exceptions/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/generated_constants.py
RENAMED
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/interpreter/__init__.py
RENAMED
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/interpreter/interpret_jaaql.py
RENAMED
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/migrations/__init__.py
RENAMED
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/migrations/migrations.py
RENAMED
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/base_controller.py
RENAMED
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/controller_interface.py
RENAMED
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/exception_queries.py
RENAMED
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/generated_queries.py
RENAMED
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/handmade_queries.py
RENAMED
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/mvc/model_interface.py
RENAMED
|
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
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/scripts/swagger_template.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/services/shared_var_service.py
RENAMED
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/bootstrap_secrets.py
RENAMED
|
File without changes
|
|
File without changes
|
{jaaql_middleware_python-5.3.7 → jaaql_middleware_python-5.3.9}/jaaql/utilities/crypt_utils.py
RENAMED
|
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
|