You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sc...@apache.org on 2015/05/12 20:36:01 UTC

[1/2] airavata-php-gateway git commit: removing use of missing app_config.

Repository: airavata-php-gateway
Updated Branches:
  refs/heads/master c1174e1e7 -> 40c0ff686


removing use of missing app_config.


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/2af16974
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/2af16974
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/2af16974

Branch: refs/heads/master
Commit: 2af169749e2413e996691cfe06bae50a7b35b4ac
Parents: c1174e1
Author: Supun Nakandala <su...@gmail.com>
Authored: Wed May 13 00:04:40 2015 +0530
Committer: Supun Nakandala <su...@gmail.com>
Committed: Wed May 13 00:04:40 2015 +0530

----------------------------------------------------------------------
 app/libraries/Utilities.php | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/2af16974/app/libraries/Utilities.php
----------------------------------------------------------------------
diff --git a/app/libraries/Utilities.php b/app/libraries/Utilities.php
index 923e1d2..e3b91be 100644
--- a/app/libraries/Utilities.php
+++ b/app/libraries/Utilities.php
@@ -128,10 +128,7 @@ public static function id_matches_db($username, $password)
     //var_dump( $idStore->authenticate($username, $password)); exit;
     if($idStore->authenticate($username, $password))
     {
-        //checking if user is an Admin and saving in Session.
-       $app_config = Utilities::read_config();
-
-        if( in_array( $app_config["admin-role"], (array)$idStore->getRoleListOfUser( $username)))
+        if( in_array(Config::get('pga_config.wsis')['admin-role-name'], (array)$idStore->getRoleListOfUser( $username)))
         {
             Session::put("admin", true);
         }


[2/2] airavata-php-gateway git commit: correcting the API name

Posted by sc...@apache.org.
correcting the API name


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/40c0ff68
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/40c0ff68
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/40c0ff68

Branch: refs/heads/master
Commit: 40c0ff68691eb9d11db831ce57b91f3d308a0cd8
Parents: 2af1697
Author: Supun Nakandala <su...@gmail.com>
Authored: Wed May 13 00:05:33 2015 +0530
Committer: Supun Nakandala <su...@gmail.com>
Committed: Wed May 13 00:05:33 2015 +0530

----------------------------------------------------------------------
 app/filters.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/40c0ff68/app/filters.php
----------------------------------------------------------------------
diff --git a/app/filters.php b/app/filters.php
index 33f98d2..d89a087 100755
--- a/app/filters.php
+++ b/app/filters.php
@@ -13,7 +13,7 @@
 
 App::before(function($request)
 {
-    $apiVersion = Airavata::getApiVersion();
+    $apiVersion = Airavata::getAPIVersion();
 	if(empty($apiVersion))
 		return View::make("server-down");
 });