Return-Path: X-Original-To: apmail-airavata-commits-archive@www.apache.org Delivered-To: apmail-airavata-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 586C118240 for ; Tue, 9 Feb 2016 15:55:33 +0000 (UTC) Received: (qmail 41231 invoked by uid 500); 9 Feb 2016 15:55:33 -0000 Delivered-To: apmail-airavata-commits-archive@airavata.apache.org Received: (qmail 40534 invoked by uid 500); 9 Feb 2016 15:55:32 -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 37977 invoked by uid 99); 9 Feb 2016 15:55:30 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Feb 2016 15:55:30 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7BC1DE1086; Tue, 9 Feb 2016 15:55:30 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: scnakandala@apache.org To: commits@airavata.apache.org Date: Tue, 09 Feb 2016 15:56:12 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [44/50] [abbrv] airavata-php-gateway git commit: Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/airavata-php-gateway into develop Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/airavata-php-gateway into develop # Conflicts: # app/views/account/dashboard.blade.php Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/be7e4717 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/be7e4717 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/be7e4717 Branch: refs/heads/master Commit: be7e471721748be655923c25c27ffaca0b67dc4b Parents: 87a2f23 9c8eb1f Author: Nipurn Doshi Authored: Wed Feb 3 11:17:14 2016 -0500 Committer: Nipurn Doshi Committed: Wed Feb 3 11:17:14 2016 -0500 ---------------------------------------------------------------------- app/controllers/AccountController.php | 2 +- app/controllers/DataCatController.php | 23 + app/filters.php | 2 +- app/libraries/Wsis/Wsis.php | 5 +- app/routes.php | 6 + app/views/account/dashboard.blade.php | 9 +- app/views/admin/manage-credentials.blade.php | 4 + app/views/datacat/select.blade.php | 82 + app/views/datacat/summary.blade.php | 451 ++++++ public/js/datacat/GLmol.js | 1708 +++++++++++++++++++++ public/js/datacat/Three.js | 382 +++++ public/js/datacat/jquery-1.7.min.js | 4 + 12 files changed, 2669 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/be7e4717/app/controllers/AccountController.php ---------------------------------------------------------------------- diff --cc app/controllers/AccountController.php index 4a6c1bf,a8ac349..f0131eb --- a/app/controllers/AccountController.php +++ b/app/controllers/AccountController.php @@@ -146,9 -144,10 +146,9 @@@ class AccountController extends BaseCon } //only for super admin - if( Config::get('pga_config.portal')['super-admin-portal'] == true){ + if( Config::get('pga_config.portal')['super-admin-portal'] == true && Session::has("admin")){ Session::put("super-admin", true); } - CommonUtilities::store_id_in_session($username); Session::put("gateway_id", Config::get('pga_config.airavata')['gateway-id']); http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/be7e4717/app/views/account/dashboard.blade.php ---------------------------------------------------------------------- diff --cc app/views/account/dashboard.blade.php index 530ebe1,c210d2c..9fc4b7a --- a/app/views/account/dashboard.blade.php +++ b/app/views/account/dashboard.blade.php @@@ -65,7 -65,7 +65,8 @@@ @endif - @if( Session::has('admin') || Session::has('admin-read-only')) + @if( Session::has('admin') || Session::has('admin-read-only') ) ++

Manage Users Access