shellfoundry 1.2.26__tar.gz → 1.2.27__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.
- {shellfoundry-1.2.26/shellfoundry.egg-info → shellfoundry-1.2.27}/PKG-INFO +1 -1
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/list_command.py +1 -1
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/driver_generator.py +1 -1
- {shellfoundry-1.2.26 → shellfoundry-1.2.27/shellfoundry.egg-info}/PKG-INFO +1 -1
- shellfoundry-1.2.27/version.txt +1 -0
- shellfoundry-1.2.26/version.txt +0 -1
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/HISTORY.rst +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/LICENSE +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/MANIFEST.in +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/README.rst +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/dev_requirements.txt +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/requirements.txt +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/setup.cfg +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/setup.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/__main__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/bootstrap.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/config_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/delete_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/dist_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/extend_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/generate_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/get_templates_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/install_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/new_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/pack_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/commands/show_command.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/data/standards.json +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/data/templates.yml +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/decorators/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/decorators/standards.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/decorators/version_check.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/exceptions.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/models/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/models/install_config.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/models/shell_template.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/models/shellfoundry_settings.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/archive_creator.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/cloudshell_api/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/cloudshell_api/client_wrapper.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/config/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/config/config_context.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/config/config_file_creation.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/config/config_providers.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/config/config_record.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/config_reader.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/constants.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/cookiecutter_integration.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/filters.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/installer.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/modifiers/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/modifiers/configuration/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/modifiers/configuration/aggregated_modifiers.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/modifiers/configuration/password_modification.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/modifiers/definition/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/modifiers/definition/definition_modification.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/package_builder.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/python_dependencies_packager.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/repository_downloader.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/shell_config_reader.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/shell_datamodel_merger.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/shell_package.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/shell_package_builder.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/shell_package_installer.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/standards/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/standards/consts.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/standards/standards_retriever.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/standards/standards_versions.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/temp_dir_context.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/template_retriever.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/template_url.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/template_versions.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/validations/__init__.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/validations/shell_generation_validation.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/validations/shell_name_validations.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/version_utilities.py +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry.egg-info/SOURCES.txt +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry.egg-info/dependency_links.txt +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry.egg-info/entry_points.txt +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry.egg-info/not-zip-safe +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry.egg-info/requires.txt +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry.egg-info/top_level.txt +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/test_requirements.txt +0 -0
- {shellfoundry-1.2.26 → shellfoundry-1.2.27}/tests/test_bootstrap.py +0 -0
|
@@ -105,6 +105,6 @@ class ListCommandExecutor(object):
|
|
|
105
105
|
As of CloudShell 8.0, CloudShell uses 2nd generation shells,
|
|
106
106
|
to view the list of 1st generation shells use: shellfoundry list --gen1.
|
|
107
107
|
For more information, please visit our devguide:
|
|
108
|
-
https://
|
|
108
|
+
https://help.quali.com/devguide
|
|
109
109
|
"""
|
|
110
110
|
)
|
|
@@ -67,7 +67,7 @@ class DriverGenerator(object):
|
|
|
67
67
|
url = "http://{}:{}/API/ShellDrivers/Generate".format(
|
|
68
68
|
cloudshell_config.host, cloudshell_config.port
|
|
69
69
|
)
|
|
70
|
-
token = client.
|
|
70
|
+
token = client._token
|
|
71
71
|
response = post(
|
|
72
72
|
url,
|
|
73
73
|
files={path.basename(shell_filename): open(package_full_path, "rb")},
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.2.27
|
shellfoundry-1.2.26/version.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.2.26
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/cloudshell_api/__init__.py
RENAMED
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/cloudshell_api/client_wrapper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/config/config_file_creation.py
RENAMED
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/config/config_providers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/cookiecutter_integration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/modifiers/definition/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/python_dependencies_packager.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/shell_datamodel_merger.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/shell_package_installer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/standards/standards_retriever.py
RENAMED
|
File without changes
|
{shellfoundry-1.2.26 → shellfoundry-1.2.27}/shellfoundry/utilities/standards/standards_versions.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|