Skip to content
Merged
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 @@ -51,7 +51,7 @@ test.describe('Home Page - External Links', () => {

await test.step('Then it should have the correct href', async () => {
const href = await homePage.externalLinks.mailingList.getAttribute('href');
expect(href).toBe('http://zeppelin.apache.org/community.html');
expect(href).toBe('https://zeppelin.apache.org/community.html');
});

await test.step('And it should open in a new tab', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h3>Help</h3>
<a
style="text-decoration: none"
target="_blank"
href="http://zeppelin.apache.org/docs/{{ ticketService.version }}/index.html"
href="https://zeppelin.apache.org/docs/{{ ticketService.version }}/index.html"
>
Zeppelin documentation
</a>
Expand All @@ -46,7 +46,7 @@ <h3>Community</h3>
Any contribution are welcome!
<br />
<br />
<a href="http://zeppelin.apache.org/community.html" target="_blank">
<a href="https://zeppelin.apache.org/community.html" target="_blank">
<i nz-icon nzType="mail"></i>
Mailing list
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h3>Apache Zeppelin</h3>
<span class="about-version">{{ ticketService.version }}</span>
<br />
<br />
<a href="http://zeppelin.apache.org/" target="_blank"><span>Get involved!</span></a>
<a href="https://zeppelin.apache.org/" target="_blank"><span>Get involved!</span></a>
<br />
<a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">
<span>Licensed under the Apache License, Version 2.0</span>
Expand Down
4 changes: 2 additions & 2 deletions zeppelin-web/src/app/home/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ <h5 ng-controller="NoteCreateCtrl as noteCreateCtrl"><a href="" data-toggle="mod
<div class="col-md-6">
<h4>Help</h4>
Get started with <a style="text-decoration: none;" target="_blank" rel="noopener noreferrer"
href="http://zeppelin.apache.org/docs/{{zeppelinVersion}}/index.html">Zeppelin documentation</a><br/>
href="https://zeppelin.apache.org/docs/{{zeppelinVersion}}/index.html">Zeppelin documentation</a><br/>

<h4>Community</h4>
Please feel free to help us to improve Zeppelin, <br/>
Any contribution are welcome!<br/><br/>
<a style="text-decoration: none;" href="http://zeppelin.apache.org/community.html"
<a style="text-decoration: none;" href="https://zeppelin.apache.org/community.html"
target="_blank" rel="noopener noreferrer"><i style="font-size: 15px;" class="fa fa-users"></i> Mailing list</a><br/>
<a style="text-decoration: none;" href="https://issues.apache.org/jira/projects/ZEPPELIN/issues/filter=allopenissues"
target="_blank" rel="noopener noreferrer"><i style="font-size: 15px;" class="fa fa-bug"></i> Issues tracking</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion zeppelin-web/src/components/navbar/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ <h3>Apache Zeppelin</h3>
<span class="modal-body-about-version"> {{zeppelinVersion}} </span>
<br/>
<br/>
<a href="http://zeppelin.apache.org/" target="_blank" rel="noopener noreferrer"><span id="i18n-15">Get involved!</span></a>
<a href="https://zeppelin.apache.org/" target="_blank" rel="noopener noreferrer"><span id="i18n-15">Get involved!</span></a>
<br/>
<a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank" rel="noopener noreferrer"><span id="i18n-16">Licensed under the Apache License, Version 2.0</span></a>
</div>
Expand Down
Loading