From commits-return-19437-archive-asf-public=cust-asf.ponee.io@airavata.apache.org Wed Jul 11 19:10:05 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 634E518062A for ; Wed, 11 Jul 2018 19:10:05 +0200 (CEST) Received: (qmail 61276 invoked by uid 500); 11 Jul 2018 17:10:04 -0000 Mailing-List: contact commits-help@airavata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airavata.apache.org Delivered-To: mailing list commits@airavata.apache.org Received: (qmail 61267 invoked by uid 99); 11 Jul 2018 17:10:04 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jul 2018 17:10:04 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id E782980942; Wed, 11 Jul 2018 17:10:03 +0000 (UTC) Date: Wed, 11 Jul 2018 17:10:03 +0000 To: , "' commits@airavata.apache.org" , '@gitbox.apache.org, Subject: [airavata-django-portal] branch master updated (bee6eb7 -> a790c3e) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153132900372.24903.12571865907377342241@gitbox.apache.org> From: machristie@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: airavata-django-portal X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: bee6eb71f0a31bdfe72269aa6f8fa6bb30fc042d X-Git-Newrev: a790c3eb1a6b659b97ab2b68d62eb02c4ec96e71 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. machristie pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git. from bee6eb7 AIRAVATA-2835 ShareButton with display of number of shared users/groups new fb3e0e4 AIRAVATA-2835 Sharing modal with group management new 1c766b4 AIRAVATA-2835 AutocompleteTextInput factored out to display groups new 75a6925 AIRAVATA-2835 Load all of the groups (disable pagination) new ee15be5 AIRAVATA-2835 Change GroupResourceProfile editor to use ShareButton new a790c3e AIRAVATA-2835 User management in ShareButton The 5 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: .../GroupComputeResourcePreference.vue | 39 +---- .../api/static/django_airavata_api/js/index.js | 17 ++- .../js/models/GroupPermission.js | 18 +++ .../django_airavata_api/js/models/SharedEntity.js | 33 +--- .../js/models/UserPermission.js | 18 +++ .../django_airavata_api/js/models/UserProfile.js | 2 +- .../django_airavata_api/js/service_config.js | 26 +++- .../js/services/ServiceFactory.js | 37 ++++- django_airavata/apps/api/view_utils.py | 6 + .../js/group_components/GroupEditor.vue | 5 +- .../js/utils/Autocomplete.vue | 113 -------------- .../static/common/js/components/Autocomplete.vue | 66 ++------ .../common/js/components/AutocompleteTextInput.vue | 104 +++++++++++++ .../static/common/js/components/ShareButton.vue | 170 +++++++++++++++++++-- django_airavata/static/common/js/index.js | 2 + 15 files changed, 388 insertions(+), 268 deletions(-) create mode 100644 django_airavata/apps/api/static/django_airavata_api/js/models/GroupPermission.js create mode 100644 django_airavata/apps/api/static/django_airavata_api/js/models/UserPermission.js delete mode 100644 django_airavata/apps/groups/static/django_airavata_groups/js/utils/Autocomplete.vue create mode 100644 django_airavata/static/common/js/components/AutocompleteTextInput.vue