Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
website: Improved install button behavior
Browse files Browse the repository at this point in the history
Just install whatever's best for the OS.
  • Loading branch information
isaacs committed Aug 16, 2012
1 parent 226d37b commit 7cb3aa1
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 22 deletions.
15 changes: 15 additions & 0 deletions doc/download/index.html
Expand Up @@ -101,6 +101,20 @@
<td><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-darwin-x64.tar.gz">64-bit</a></td>
</tr>

<!-- TODO Uncomment when we have these
<tr>
<th>Linux Installer (.deb)</th>
<td><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-linux-x86.deb">32-bit</a></td>
<td><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-linux-x64.deb">64-bit</a></td>
</tr>
<tr>
<th>Linux Installer (.rpm)</th>
<td><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-linux-x86.rpm">32-bit</a></td>
<td><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-linux-x64.rpm">64-bit</a></td>
</tr>
-->

<tr>
<th>Linux Binaries (.tar.gz)</th>
<td><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-linux-x86.tar.gz">32-bit</a></td>
Expand Down Expand Up @@ -132,6 +146,7 @@ <h2 style="margin-top:1em" id=other-info>Other Info</h2>
<li><a href="https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager">Installing from package managers</a>

<li><a href="http://nodejs.org/dist/__VERSION__">Other release files</a></li>
<li><a href="http://nodejs.org/dist/">Other releases</a></li>
</ul>
</div>

Expand Down
48 changes: 38 additions & 10 deletions doc/index.html
Expand Up @@ -29,12 +29,47 @@
lightweight and efficient, perfect for data-intensive real-time
applications that run across distributed devices.</p>

<a href="download/" class="button" id="downloadbutton">Download</a>
<a href="api/" class="button" id="docsbutton">Docs</a>
<p class="version">__VERSION__</p>
<div class=buttons>
<a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.tar.gz" class="button downloadbutton" id="downloadbutton">INSTALL</a>

<a href="download/" class=button id="all-dl-options">Downloads</a
><a href="api/" class="button" id="docsbutton">API Docs</a>
</div>

<a href="http://github.com/joyent/node"><img class="forkme" src="images/forkme.png" alt="Fork me on GitHub"></a>
</div>

<script>;(function(d,p){
var os = p.match(/(Win|Mac|Linux)/);
var base = 'http://nodejs.org/dist/__VERSION__/';
var href = 'node-__VERSION__.tar.gz';
var db = d.getElementById('downloadbutton');
var d2;
switch (os && os[1]) {
case 'Mac':
href = 'node-__VERSION__.pkg';
break;
case 'Win':
href = 'node-__VERSION__-x86.msi';
break;
// TODO uncomment when we have these
// case 'Linux':
// // two buttons: .deb and .rpm
// href = 'node-__VERSION__-x86.rpm';
// var d2 = document.createElement('a');
// d2.href = base + 'node-__VERSION__-x86.deb';
// d2.className = 'button downloadbutton';
// d2.innerHTML = 'INSTALL .deb';
// db.innerHTML = 'INSTALL .rpm';
// db.parentNode.insertBefore(d2, db);
// break;
}
db.href = base + href;
// if there's one download option, then download it at #download
if (location.hash === '#download' && !d2)
location.replace(b.href);
})(document,'Win32'||navigator.platform);</script>

<div id="quotes" class="clearfix">
<h2>Node.js in the Industry</h2>
<ul>
Expand Down Expand Up @@ -148,13 +183,6 @@ <h2>Explore Node.js</h2>
<script src="sh_javascript.min.js"></script>
<script>highlight(undefined, undefined, 'pre');</script>

<script type="text/javascript">
if (location.hash === '#download') {
var n = location.href.replace(/(index.html)?#download/, 'download/$1')
location.replace(n);
}
</script>

<script>
window._gaq = [['_setAccount', 'UA-10874194-2'], ['_trackPageview']];
(function(d, t) {
Expand Down
35 changes: 23 additions & 12 deletions doc/pipe.css
Expand Up @@ -65,18 +65,13 @@ h1 a, h2 a, h3 a, h4 a
margin: 0 auto;
text-align: center;
color: #d2d8ba;

/* preload platform-icons.png */
background-image: url(http://nodejs.org/images/platform-icons.png);
background-repeat: no-repeat;
background-position: -999em -999em;
}

#intro p {
width: 680px;
line-height: 180%;
padding-top: 30px;
margin: 0 auto 30px auto;
margin: 0 auto;
font-size: 14px;
}

Expand All @@ -89,17 +84,27 @@ h1 a, h2 a, h3 a, h4 a
font-size: 12px;
}

#intro .buttons {
height:auto;
overflow:hidden;
_zoom:1;
width:300px;
margin:0 auto;
}

#intro .button {
font-weight: bold;
font-size: 14px;
text-transform: uppercase;
padding: 6px 12px;
font-size: 12px;
padding: 6px 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
margin: 0 1px;
margin: 30px 4px 0;

display:inline-block;
color: #46483e;
background-color: #9a9f8b;
width:96px;
}

#intro .forkme {
Expand All @@ -114,11 +119,17 @@ h1 a, h2 a, h3 a, h4 a
background-color: #aab293;
}

#intro #downloadbutton {
#intro #docsbutton {
clear:left;
}

#intro .downloadbutton {
background-color: #8BC84B;
width:200px;
font-size:14px;
}

#intro #downloadbutton:hover {
#intro .downloadbutton:hover {
background-color: #73a53e;
}

Expand Down

0 comments on commit 7cb3aa1

Please sign in to comment.