You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2021/04/27 20:32:36 UTC

[airavata-django-portal] branch staging updated (b20d047 -> 1d0a857)

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a change to branch staging
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git.


    from b20d047  fix typo
     add ce39667  Documenting generate_data parameters
     add 4611f66  Fix link to dreg output view
     add 1ad4e74  WIP
     add 8b0a93a  AIRAVATA-3415 Fix bug loading app module when app has been deleted
     add d2fca49  Option to add Nav Extra links to main menu dropdown
     add 0870a6b  Merge branch 'staging'
     add 6f02f43  Adding experiment status email notification
     add 82c3dcd  fixed typo
     add 8edca67  Merge pull request #54 from akbranam/develop
     add ffb9711  Fixing lint errors
     add 87d2aaf  Merge branch 'airavata-3415' into develop
     add 7885e35  Merge branch 'main-menu-dropdown-links' into develop
     add 8a5ba65  Adding 'All' option to experiment browse status filter
     add 17ea4eb  Merge pull request #57 from akbranam/AIRAVATA-3416-All-Status-Experiment-Browse-Filter
     add 1b96ac6  Merge branch 'staging' into develop
     add f28c747  Automatically set OAUTHLIB_INSECURE_TRANSPORT for local dev
     add a7db41f  AIRAVATA-3075 Add extra check that special gateway groups were loaded
     add 34c6e8f  Adding button for ssh credential shared with Admins
     add 1332cf3  Updating gateway credential button
     add aea1664  Merge pull request #56 from akbranam/AIRAVATA-3373-Admins-View-SSH-Keys
     add 1349921  docs: active_prefixes can be regexes
     add cb8fec7  fixing linting error
     add a5f49f0  Fix using PUT for file upload (FormData request)
     add 7acb0ab  AIRAVATA-3431 Preserve original filename when downloading input file
     add 6bcdebc  Common UI components library, for use in custom apps
     add 4e39edd  Merge branch 'common-ui-components-lib' into develop
     add 20a0f90  AIRAVATA-3362 Display exp data dir in experiment summary page
     add b81a41e  AIRAVATA-3362 Cleaning up unused code
     add 033a994  AIRAVATA-3362 Restoring unintentional code deletes
     add 002569f  AIRAVATA-3440 Support "next" query parameter in group views
     add 2834425  Removing unused import
     add edb1f64  Vetur monorepo config
     add a43a997  AIRAVATA-3420 Remove usage of "move from filepath" user_storage functions
     add 0ae3cff  Making allowPreview not required since it has default
     new 1d0a857  Merge branch 'develop' into staging

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:
 Dockerfile                                         |   1 -
 README.md                                          |   8 --
 .../dashboards/CredentialStoreDashboard.vue        |  53 ++++++++-
 .../statistics/ExperimentDetailsView.vue           |  19 ----
 django_airavata/apps/api/serializers.py            |  61 +++++-----
 .../api/static/django_airavata_api/js/index.js     |   1 +
 .../django_airavata_api/js/models/Experiment.js    |   1 -
 .../js/models/ExperimentStoragePath.js             |   4 +
 .../django_airavata_api/js/service_config.js       |  12 ++
 .../django_airavata_api/js/utils/FetchUtils.js     |   4 +
 django_airavata/apps/api/tus.py                    |  12 +-
 django_airavata/apps/api/urls.py                   |   4 +
 django_airavata/apps/api/views.py                  |  76 ++++++++++---
 django_airavata/apps/auth/backends.py              |   7 ++
 .../js/containers/GroupCreateContainer.vue         |   8 +-
 .../js/containers/GroupEditContainer.vue           |   6 +-
 .../js/group-create-entry-point.js                 |  20 +++-
 .../js/group-edit-entry-point.js                   |   5 +
 .../templates/django_airavata_groups/base.html     |   2 +-
 .../django_airavata_groups/group_edit.html         |   2 +-
 django_airavata/apps/groups/views.py               |   2 +
 .../js/components/experiment/ExperimentEditor.vue  |  13 +++
 .../js/components/experiment/ExperimentSummary.vue |  28 ++---
 .../output-displays/DefaultOutputDisplay.vue       |  10 +-
 .../storage/ExperimentStoragePathViewer.vue        | 125 +++++++++++++++++++++
 .../storage/ExperimentStorageViewContainer.vue     |  48 ++++++++
 ...athBreadcrumb.vue => StoragePathBreadcrumb.vue} |   8 +-
 .../storage/UserStorageFileSelectionContainer.vue  |   1 -
 .../components/storage/UserStoragePathViewer.vue   |  24 ++--
 .../storage/storage-edit/UserStorageLink.vue       |   2 +-
 .../js/containers/ExperimentListContainer.vue      |   5 +-
 .../django_airavata_workspace/js/utils/urls.js     |   6 -
 django_airavata/static/common/js/components.js     |   3 +
 .../static/common/js/components/ShareButton.vue    |  13 ++-
 django_airavata/static/common/package.json         |   6 +-
 django_airavata/static/common/vue.config.js        |  25 +++--
 django_airavata/templates/base.html                |   1 +
 .../includes/main_menu_navs.html                   |  10 ++
 django_airavata/wagtailapps/base/blocks.py         |   4 +
 .../base/migrations/0025_auto_20210319_2247.py     |  21 ++++
 .../base/templatetags/navigation_tags.py           |  19 ++++
 docs/dev/custom_output_view_provider.md            |  17 ++-
 docs/dev/new_django_app.md                         |   4 +-
 docs/tutorial/gateways_tutorial.md                 |  12 +-
 vetur.config.js                                    |  11 ++
 45 files changed, 570 insertions(+), 154 deletions(-)
 create mode 100644 django_airavata/apps/api/static/django_airavata_api/js/models/ExperimentStoragePath.js
 create mode 100644 django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/ExperimentStoragePathViewer.vue
 create mode 100644 django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/ExperimentStorageViewContainer.vue
 rename django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/{UserStoragePathBreadcrumb.vue => StoragePathBreadcrumb.vue} (81%)
 create mode 100644 django_airavata/static/common/js/components.js
 create mode 100644 django_airavata/templates/django_airavata_wagtail_base/includes/main_menu_navs.html
 create mode 100644 django_airavata/wagtailapps/base/migrations/0025_auto_20210319_2247.py
 create mode 100644 vetur.config.js

[airavata-django-portal] 01/01: Merge branch 'develop' into staging

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch staging
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git

commit 1d0a8573b8ed2735f83e21d9966483e8b47a7124
Merge: 0870a6b 0ae3cff
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Tue Apr 27 16:31:19 2021 -0400

    Merge branch 'develop' into staging

 Dockerfile                                         |   1 -
 README.md                                          |   8 --
 .../dashboards/CredentialStoreDashboard.vue        |  53 ++++++++-
 .../statistics/ExperimentDetailsView.vue           |  19 ----
 django_airavata/apps/api/serializers.py            |  61 +++++-----
 .../api/static/django_airavata_api/js/index.js     |   1 +
 .../django_airavata_api/js/models/Experiment.js    |   1 -
 .../js/models/ExperimentStoragePath.js             |   4 +
 .../django_airavata_api/js/service_config.js       |  12 ++
 .../django_airavata_api/js/utils/FetchUtils.js     |   4 +
 django_airavata/apps/api/tus.py                    |  12 +-
 django_airavata/apps/api/urls.py                   |   4 +
 django_airavata/apps/api/views.py                  |  68 +++++++++--
 django_airavata/apps/auth/backends.py              |   7 ++
 .../js/containers/GroupCreateContainer.vue         |   8 +-
 .../js/containers/GroupEditContainer.vue           |   6 +-
 .../js/group-create-entry-point.js                 |  20 +++-
 .../js/group-edit-entry-point.js                   |   5 +
 .../templates/django_airavata_groups/base.html     |   2 +-
 .../django_airavata_groups/group_edit.html         |   2 +-
 django_airavata/apps/groups/views.py               |   2 +
 .../js/components/experiment/ExperimentEditor.vue  |  13 +++
 .../js/components/experiment/ExperimentSummary.vue |  28 ++---
 .../output-displays/DefaultOutputDisplay.vue       |  10 +-
 .../storage/ExperimentStoragePathViewer.vue        | 125 +++++++++++++++++++++
 .../storage/ExperimentStorageViewContainer.vue     |  48 ++++++++
 ...athBreadcrumb.vue => StoragePathBreadcrumb.vue} |   8 +-
 .../storage/UserStorageFileSelectionContainer.vue  |   1 -
 .../components/storage/UserStoragePathViewer.vue   |  24 ++--
 .../storage/storage-edit/UserStorageLink.vue       |   2 +-
 .../js/containers/ExperimentListContainer.vue      |   5 +-
 .../django_airavata_workspace/js/utils/urls.js     |   6 -
 django_airavata/static/common/js/components.js     |   3 +
 .../static/common/js/components/ShareButton.vue    |  10 +-
 django_airavata/static/common/package.json         |   6 +-
 django_airavata/static/common/vue.config.js        |  25 +++--
 docs/dev/new_django_app.md                         |   4 +-
 vetur.config.js                                    |  11 ++
 38 files changed, 486 insertions(+), 143 deletions(-)