Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
Merge pull request #638 from danushkaf/master
Browse files Browse the repository at this point in the history
Fixing APPFAC-3362 partially. Needs to fix it in proper manner
  • Loading branch information
Danushka Fernando committed Sep 22, 2015
2 parents c2c6cbe + 5a7a3ba commit 874ff94
Showing 1 changed file with 14 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -783,9 +783,9 @@ function getMessage(type, applicationName, launchUrl){
+ "<div class='alert-extra-content'>"
+ "<h5>Now you can</h5>"
+ "<ul>"
+ "<li><a target='_blank' href='" + launchUrl + "'>Launch</a> the web application</li>"
+ "<li>Edit code of the sample application</li>"
+ "<li>Map to a custom URL</li>"
+ "<li><a target='_blank' href='" + launchUrl + "'>Launch</a> the web application.</li>"
+ "<li>Edit code of the sample application.</li>"
+ "<li>Map to a custom URL.</li>"
+ "</ul>"
+ "</div>"
+ "</div>";
Expand All @@ -802,7 +802,7 @@ function getMessage(type, applicationName, launchUrl){
+ "<div class='alert-extra-content'>"
+ "<h5>Now you can</h5>"
+ "<ul>"
+ "<li><a target='_blank' href='" + launchUrl + "'>Launch</a> the application after it is successfully deployed</li>"
+ "<li><a target='_blank' href='" + launchUrl + "'>Launch</a> the application after it is successfully deployed.</li>"
+ "<li>You can upload new versions for the application.</li>"
+ "</ul>"
+ "</div>"
Expand All @@ -815,14 +815,14 @@ function getMessage(type, applicationName, launchUrl){
+ "</button>"
+ "<span class='alert-content-block'>"
+ "<i class='fa fa-check-circle-o'></i>"
+ "<strong> Congratulations..</strong> your application " + applicationName + " is now ready..! We have created a sample dataservice and it is deployed."
+ "<strong> Congratulations..</strong> your application " + applicationName + " is now ready..! We have created a sample data service and it is deployed."
+ "</span>"
+ "<div class='alert-extra-content'>"
+ "<h5>Now you can</h5>"
+ "<ul>"
+ "<li>Get the <a target='_blank' href='" + launchUrl + "'>url</a> of data service and it is deployed. The sample dataservice points to a common sample datasource.</li>"
+ "<li>Edit code in the sample data service</li>"
+ "<li>Point the dataservice to your own datasource</li>"
+ "<li>Get the <a target='_blank' href='" + launchUrl + "'>URL</a> of data service and it is deployed. The sample data service points to a common sample datasource.</li>"
+ "<li>Edit code in the sample data service.</li>"
+ "<li>Point the data service to your own datasource.</li>"
+ "</ul>"
+ "</div>"
+ "</div>";
Expand All @@ -839,8 +839,8 @@ function getMessage(type, applicationName, launchUrl){
+ "<div class='alert-extra-content'>"
+ "<h5>Now you can</h5>"
+ "<ul>"
+ "<li>Get the <a target='_blank' href='" + launchUrl + "'>url</a> of the service.</li>"
+ "<li>Edit code in the sample jax-rs app</li>"
+ "<li>Get the <a target='_blank' href='" + launchUrl + "'>URL</a> of the service.</li>"
+ "<li>Edit code in the sample jax-rs application.</li>"
+ "</ul>"
+ "</div>"
+ "</div>";
Expand All @@ -858,8 +858,8 @@ function getMessage(type, applicationName, launchUrl){
+ "<h5>Now you can</h5>"
+ "<ul>"
+ "<ul>"
+ "<li>Get the <a target='_blank' href='" + launchUrl + "'>url</a> of the service.</li>"
+ "<li>Edit code in the sample jax-rs app</li>"
+ "<li>Get the <a target='_blank' href='" + launchUrl + "'>URL</a> of the service.</li>"
+ "<li>Edit code in the sample jax-rs application.</li>"
+ "</ul>"
+ "</div>"
+ "</div>";
Expand All @@ -871,17 +871,16 @@ function getMessage(type, applicationName, launchUrl){
+ "</button>"
+ "<span class='alert-content-block'>"
+ "<i class='fa fa-check-circle-o'></i>"
+ "<strong> Congratulations..</strong> your application " + applicationName + " is now ready..! We have created a sample app and it is deployed."
+ "<strong> Congratulations..</strong> your application " + applicationName + " is now ready..! We have created a sample application and it is deployed."
+ "</span>"
+ "<div class='alert-extra-content'>"
+ "<h5>Now you can</h5>"
+ "<ul>"
+ "<li><a target='_blank' href='" + launchUrl + "'>Launch</a> the application.</li>"
+ "<li>Edit code in the sample app</li>"
+ "<li>Edit code in the sample application.</li>"
+ "</ul>"
+ "</div>"
+ "</div>";
}
return successMessage;

}

0 comments on commit 874ff94

Please sign in to comment.