Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sonar: Fix 'Make sure not using rel=noopener is safe here' #441

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<div class="row" generator-header>
<div class="col-md-12">
<div class="alert alert-info" role="alert">
<p>Generated applications can be deployed on <a href="https://azure.microsoft.com/products/spring-apps/" target="_blank">Azure Spring Apps</a> in a few easy steps, please refer to the readme file in the generated project for the deployment guide.</p>
<p>Detailed documentation is also available <a href="https://learn.microsoft.com/azure/spring-apps/quickstart-deploy-web-app?pivots=sc-consumption-plan&tabs=Azure-Developer-CLI" target="_blank">here</a>.</p>
<p>Generated applications can be deployed on <a href="https://azure.microsoft.com/products/spring-apps/" target="_blank" rel="noopener">Azure Spring Apps</a> in a few easy steps, please refer to the readme file in the generated project for the deployment guide.</p>
<p>Detailed documentation is also available <a href="https://learn.microsoft.com/azure/spring-apps/quickstart-deploy-web-app?pivots=sc-consumption-plan&tabs=Azure-Developer-CLI" target="_blank" rel="noopener">here</a>.</p>
</div>
</div>
<div class="col-md-12">
<p>
Provision your Azure Resources using NubesGen<br>
<a href="https://nubesgen.com" target="_blank">https://nubesgen.com</a>
<a href="https://nubesgen.com" target="_blank" rel="noopener">https://nubesgen.com</a>
</p>
<div class="alert alert-warning" role="alert">
<p>Please note that the current version of this form only supports the following selections within NubesGen:</p>
Expand Down
8 changes: 4 additions & 4 deletions src/main/webapp/app/home/ci-cd/ci-cd.output.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ <h4 class="modal-title">
<div class="lead">
<b>Continuous Integration configured!</b>
<ul>
<li>Merge the Pull Request at <a href="{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/pulls" target="_blank">{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/pulls</a></li>
<li>Open your GitHub branch at <a href="{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-{{ciCdTool}}-{{ciCdId}}" target="_blank">{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-{{ciCdTool}}-{{ciCdId}}</a></li>
<li>Merge the Pull Request at <a href="{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/pulls" target="_blank" rel="noopener">{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/pulls</a></li>
<li>Open your GitHub branch at <a href="{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-{{ciCdTool}}-{{ciCdId}}" target="_blank" rel="noopener">{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-{{ciCdTool}}-{{ciCdId}}</a></li>
</ul>
</div>
</div>
Expand All @@ -33,8 +33,8 @@ <h4 class="modal-title">
<div class="lead">
<b>Continuous Integration configured!</b>
<ul>
<li>Merge the Merge Request at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/merge_requests" target="_blank">{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/merge_requests</a></li>
<li>Open your GitLab branch at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-{{ciCdTool}}-{{ciCdId}}" target="_blank">{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-{{ciCdTool}}-{{ciCdId}}</a></li>
<li>Merge the Merge Request at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/merge_requests" target="_blank" rel="noopener">{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/merge_requests</a></li>
<li>Open your GitLab branch at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-{{ciCdTool}}-{{ciCdId}}" target="_blank" rel="noopener">{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-{{ciCdTool}}-{{ciCdId}}</a></li>
</ul>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ <h4 class="modal-title">
<div class="row" *ngIf="displayApplicationUrl && githubConfigured && selectedGitProvider === 'GitHub'">
<div class="col-md-12">
<div class="lead">
<b>Application generated!</b><br/>Open your GitHub repository at <a href="{{githubHost}}/{{selectedGitCompany}}/{{repositoryName}}" target="_blank">{{githubHost}}/{{selectedGitCompany}}/{{repositoryName}}</a>
<b>Application generated!</b><br/>Open your GitHub repository at <a href="{{githubHost}}/{{selectedGitCompany}}/{{repositoryName}}" target="_blank" rel="noopener">{{githubHost}}/{{selectedGitCompany}}/{{repositoryName}}</a>
</div>
</div>
</div>
<div class="row" *ngIf="displayApplicationUrl && gitlabConfigured && selectedGitProvider === 'GitLab'">
<div class="col-md-12">
<div class="lead">

<b>Application generated!</b><br/>Open your GitLab repository at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{repositoryName}}" target="_blank">{{gitlabHost}}/{{selectedGitCompany}}/{{repositoryName}}</a>
<b>Application generated!</b><br/>Open your GitLab repository at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{repositoryName}}" target="_blank" rel="noopener">{{gitlabHost}}/{{selectedGitCompany}}/{{repositoryName}}</a>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ <h4 class="modal-title">
<div class="lead">
<b>JDL Model applied!</b>
<ul>
<li>Merge the Pull Request at <a href="{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/pulls" target="_blank">{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/pulls</a></li>
<li>Open your GitHub branch at <a href="{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-entities-{{applyJdlId}}" target="_blank">{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-entities-{{applyJdlId}}</a></li>
<li>Merge the Pull Request at <a href="{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/pulls" target="_blank" rel="noopener">{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/pulls</a></li>
<li>Open your GitHub branch at <a href="{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-entities-{{applyJdlId}}" target="_blank" rel="noopener">{{githubHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-entities-{{applyJdlId}}</a></li>
</ul>
</div>
</div>
Expand All @@ -33,8 +33,8 @@ <h4 class="modal-title">
<div class="lead">
<b>JDL Model applied!</b>
<ul>
<li>Merge the Merge Request at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/merge_requests" target="_blank">{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/merge_requests</a></li>
<li>Open your GitLab branch at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-entities-{{applyJdlId}}" target="_blank">{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-entities-{{applyJdlId}}</a></li>
<li>Merge the Merge Request at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/merge_requests" target="_blank" rel="noopener">{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/merge_requests</a></li>
<li>Open your GitLab branch at <a href="{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-entities-{{applyJdlId}}" target="_blank" rel="noopener">{{gitlabHost}}/{{selectedGitCompany}}/{{selectedGitRepository}}/tree/jhipster-entities-{{applyJdlId}}</a></li>
</ul>
</div>
</div>
Expand Down
Loading