This is an automated email from the ASF dual-hosted git repository.
machristie pushed a change to branch delta-topology-workshop
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git.
from 1bebf23 Merge branch 'master' into delta-topology-workshop
add 07655c4 AIRAVATA-3557 Refactored experiment summary to use vuex store
add debca13 AIRAVATA-3557 Integrate calling fetchIntermediateOutputs into
REST API and UI
add 1fa1f4b AIRAVATA-3557 REST API for getting intermediate output info
add e46aff1 AIRAVATA-3557 Display text preview inline of intermediate and
final text files
add 5f8a6cd AIRAVATA-3557 some code simplifications: relying on process
COMPLETED status and data product URIs
add d052ba6 AIRAVATA-3557 Only display text files less than 10MB in
browser
add 672e318 AIRAVATA-3557 Don't show output view providers menu when
executing
add f5cc136 AIRAVATA-3557 Make store initialization compatible with entry
function
add 141fcfc AIRAVATA-3557 blocking UI when intermediate fetch is running
add 22ae106 AIRAVATA-3557 Users with only READ access should be able to
see but not execute intermediate output fetches
add b7de0b0 AIRAVATA-3557 Don't display download button when there are
multiple files
add 9bb40e1 AIRAVATA-3557 Convenience button for setting plain text file
type for outputs
add 2b7d562 AIRAVATA-3557 Display message when output has no file(s)
add b40a741 AIRAVATA-3557 Only allow fetching outputs if job ACTIVE
add 48e5557 AIRAVATA-3557 Update python sdk to version with intermediate
output fetching API methods
add 47cdd73 Merge branch 'AIRAVATA-3557' into develop
add 3cb599f Merge branch 'master' into develop
add ba029d4 Merge branch 'AIRAVATA-3319-2' into develop
add 390069e Remove unused import
add 22e6159 AIRAVATA-3583 Update to sdk v1.3.1
new 9e8f125 Merge branch 'master' into delta-topology-workshop
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../applications/ApplicationOutputFieldEditor.vue | 7 +
django_airavata/apps/api/serializers.py | 67 +++++-
.../js/models/IntermediateOutput.js | 21 ++
.../js/models/OutputDataObjectType.js | 5 +
.../django_airavata_api/js/models/ProcessState.js | 12 +-
.../django_airavata_api/js/models/ProcessStatus.js | 4 +
.../django_airavata_api/js/service_config.js | 7 +
django_airavata/apps/api/views.py | 12 ++
.../js/components/experiment/ExperimentSummary.vue | 134 ++++--------
.../output-displays/DefaultOutputDisplay.vue | 167 +++++++++++++-
.../output-displays/OutputDisplayContainer.vue | 143 ++++++++++--
.../js/containers/ViewExperimentContainer.vue | 52 -----
.../js/entry-view-experiment.js | 37 ++--
.../django_airavata_workspace/js/store/index.js | 16 ++
.../js/store/modules/view-experiment.js | 240 +++++++++++++++++++++
requirements.txt | 4 +-
16 files changed, 730 insertions(+), 198 deletions(-)
create mode 100644
django_airavata/apps/api/static/django_airavata_api/js/models/IntermediateOutput.js
delete mode 100644
django_airavata/apps/workspace/static/django_airavata_workspace/js/containers/ViewExperimentContainer.vue
create mode 100644
django_airavata/apps/workspace/static/django_airavata_workspace/js/store/index.js
create mode 100644
django_airavata/apps/workspace/static/django_airavata_workspace/js/store/modules/view-experiment.js