-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
downloads: split into primary and secondary
Currently we have one large table with many options in it including not actively downloaded releases. This commit separates the list into a primary and additional downloads. It also adds PPC to the list of additional downloads as it is now officially supported.
- Loading branch information
Myles Borins
committed
Mar 17, 2016
1 parent
c2fb6a7
commit 0d3af48
Showing
6 changed files
with
62 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<section> | ||
<ul> | ||
<li><a href="https://nodejs.org/dist/{{version}}">{{site.all-downloads}}</a></li> | ||
<li><a href="/{{site.locale}}/{{site.download.package-manager.link}}">{{site.download.package-manager.text}}</a></li> | ||
<li><a href="/{{site.locale}}/{{site.download.releases.link}}/">{{site.download.releases.text}}</a></li> | ||
<li><a href="https://nodejs.org/download/nightly/">{{site.nightly}}</a></li> | ||
</ul> | ||
<p>{{downloads.buildDisclaimer}}</p> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<section> | ||
<h2>Additional Platforms</h2> | ||
<table class="download-matrix full-width"> | ||
<tbody> | ||
<tr> | ||
<th>ARM Binaries (.tar.xz)</th> | ||
<td colspan="2"><a href="https://nodejs.org/dist/{{version}}/node-{{version}}-linux-armv6l.tar.xz">ARMv6</a></td> | ||
<td colspan="2"><a href="https://nodejs.org/dist/{{version}}/node-{{version}}-linux-armv7l.tar.xz">ARMv7</a></td> | ||
<td colspan="2"><a href="https://nodejs.org/dist/{{version}}/node-{{version}}-linux-arm64.tar.xz">ARMv8</a></td> | ||
</tr> | ||
|
||
<tr> | ||
<th>SunOS Binaries (.tar.xz)</th> | ||
<td colspan="3"><a href="https://nodejs.org/dist/{{version}}/node-{{version}}-sunos-x86.tar.xz">32-bit</a></td> | ||
<td colspan="3"><a href="https://nodejs.org/dist/{{version}}/node-{{version}}-sunos-x64.tar.xz">64-bit</a></td> | ||
</tr> | ||
|
||
<tr> | ||
<th>Docker Image</th> | ||
<td colspan="6"><a href="https://hub.docker.com/_/node/">Official Node.js Docker Image</a></td> | ||
</tr> | ||
|
||
<tr> | ||
<th>Linux on Power Systems</th> | ||
<td colspan="3"> | ||
<a href="https://nodejs.org/dist/{{version}}/node-{{version}}-linux-ppc64le.tar.xz">64-bit le</a> | ||
<span>Official Node.js release</span> | ||
</td> | ||
<td colspan="3"> | ||
<a href="http://www.ibm.com/developerworks/web/nodesdk/">64-bit be</a> | ||
<span>Unofficial, provided by IBM</span> | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<th>Linux on System z</th> | ||
<td colspan="6"><a href="http://www.ibm.com/developerworks/web/nodesdk/">Download (Unofficial, provided by IBM)</a></td> | ||
</tr> | ||
<tr> | ||
<th>AIX on Powert Systems</th> | ||
<td colspan="6"><a href="http://www.ibm.com/developerworks/web/nodesdk/">Download (Unofficial, provided by IBM)</a></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
{{> download-list }} | ||
</section> |