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 2016/01/14 16:43:32 UTC

[36/50] [abbrv] airavata-php-gateway git commit: hiding experiment has failed message in PGA experiment outputs list

hiding experiment has failed message in PGA experiment outputs list


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

Branch: refs/heads/develop
Commit: 99d146adecf8635b607b3bd30ceba64bd44b17cf
Parents: ae9ed4a
Author: scnakandala <su...@gmail.com>
Authored: Mon Jan 11 10:36:22 2016 -0500
Committer: scnakandala <su...@gmail.com>
Committed: Mon Jan 11 10:36:22 2016 -0500

----------------------------------------------------------------------
 app/libraries/ExperimentUtilities.php        | 4 ++--
 app/views/partials/experiment-info.blade.php | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/99d146ad/app/libraries/ExperimentUtilities.php
----------------------------------------------------------------------
diff --git a/app/libraries/ExperimentUtilities.php b/app/libraries/ExperimentUtilities.php
index f19027f..8d428b4 100644
--- a/app/libraries/ExperimentUtilities.php
+++ b/app/libraries/ExperimentUtilities.php
@@ -663,8 +663,8 @@ class ExperimentUtilities
             $outputPathArray[ count($outputPathArray)-1] . '">' .
                         $outputPathArray[sizeof($outputPathArray) - 1] . ' <span class="glyphicon glyphicon-new-window"></span></a></p>';
                 }
-                else
-                    echo 'Output paths are not correctly defined for : <br/>' . $output->name . '<br/><br/> Please report this issue to the admin<br/><br/>';
+//                else
+//                    echo 'Output paths are not correctly defined for : <br/>' . $output->name . '<br/><br/> Please report this issue to the admin<br/><br/>';
             
             } 
             elseif ($output->type == DataType::STRING) {

http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/99d146ad/app/views/partials/experiment-info.blade.php
----------------------------------------------------------------------
diff --git a/app/views/partials/experiment-info.blade.php b/app/views/partials/experiment-info.blade.php
index b039371..bef7c83 100644
--- a/app/views/partials/experiment-info.blade.php
+++ b/app/views/partials/experiment-info.blade.php
@@ -128,7 +128,7 @@
             <td><?php ExperimentUtilities::list_output_files($experiment->experimentOutputs, $experiment->experimentStatus->state, false); ?></td>
         </tr>
         <!-- an experiment is editable only when it has not failed. otherwise, show errors. -->
-        @if( $expVal["editable"] == false)
+{{--        @if( $expVal["editable"] == false)--}}
         <tr>
             <td><strong>Errors</strong></td>
             <td>
@@ -139,7 +139,7 @@
             @endif
             </td>
         </tr>
-        @endif
+        {{--@endif--}}
 
     </table>