mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
Modification of luke-jr's proposal.
This commit is contained in:
parent
cd31123d6a
commit
d26c2241d5
8 changed files with 43 additions and 348 deletions
2
_less/bootstrap.less
vendored
2
_less/bootstrap.less
vendored
|
@ -23,5 +23,3 @@
|
||||||
@import "patterns.less";
|
@import "patterns.less";
|
||||||
@import "bitcoin.less";
|
@import "bitcoin.less";
|
||||||
|
|
||||||
// Clients
|
|
||||||
@import "clients.less";
|
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/* Clients.less
|
|
||||||
* Styles used on the Clients page
|
|
||||||
* ---------------------------------------------------------------------------- */
|
|
||||||
|
|
||||||
.best {
|
|
||||||
background-color: #dfffdf;
|
|
||||||
}
|
|
||||||
|
|
||||||
.good {
|
|
||||||
background-color: #dfffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ugly {
|
|
||||||
background-color: #ffdfdf;
|
|
||||||
}
|
|
||||||
|
|
||||||
#oslist {
|
|
||||||
border-right: 1px solid black;
|
|
||||||
vertical-align: top;
|
|
||||||
width: 14ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
#oslist ul {
|
|
||||||
list-style-type: none;
|
|
||||||
width: 12ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
#oslist,#oslist ul {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#oslist li a {
|
|
||||||
padding: 1ex;
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
th.clients:first-child {
|
|
||||||
max-width: 16ex;
|
|
||||||
}
|
|
|
@ -1,42 +0,0 @@
|
||||||
module Jekyll
|
|
||||||
|
|
||||||
class Clients < Liquid::Tag
|
|
||||||
def render(context)
|
|
||||||
page = context.environments.first['page']
|
|
||||||
r = ''
|
|
||||||
for h in page['client_info']
|
|
||||||
r += '<tr>'
|
|
||||||
r += '<th>' + h['text'] + '</th>'
|
|
||||||
hid = h['id']
|
|
||||||
td = h.fetch('td', 'td')
|
|
||||||
for c in page['clients']
|
|
||||||
if c.has_key?('incomplete')
|
|
||||||
next
|
|
||||||
end
|
|
||||||
ci = c[hid]
|
|
||||||
curi = c.fetch(hid + '_uri', nil)
|
|
||||||
r += '<' + td + ' class="clients ' + c['os']
|
|
||||||
if h.has_key?(ci)
|
|
||||||
r += ' ' + h[ci]
|
|
||||||
end
|
|
||||||
r += '">'
|
|
||||||
if curi
|
|
||||||
r += "<a href='" + curi + "'>" + ci + "</a>"
|
|
||||||
elsif ci
|
|
||||||
r += ci
|
|
||||||
elsif hid == '_os'
|
|
||||||
for os in c['os'].split(' ')
|
|
||||||
r += '<img class="icon" src="img/ico-' + os + '.png">'
|
|
||||||
end
|
|
||||||
end
|
|
||||||
r += "</" + td + ">"
|
|
||||||
end
|
|
||||||
r += '</tr>'
|
|
||||||
end
|
|
||||||
r
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
Liquid::Template.register_tag('clients', Jekyll::Clients)
|
|
308
clients.html
308
clients.html
|
@ -1,274 +1,54 @@
|
||||||
---
|
---
|
||||||
layout: simple
|
layout: simple
|
||||||
section: clients
|
title: Clients
|
||||||
|
|
||||||
client_info:
|
|
||||||
- id: name
|
|
||||||
text: Client
|
|
||||||
td: th
|
|
||||||
Bitcoin-Qt: best
|
|
||||||
- id: start
|
|
||||||
text: Get Started
|
|
||||||
- id: audience
|
|
||||||
text: Audience
|
|
||||||
Everyone: best
|
|
||||||
End-users: good
|
|
||||||
- id: security
|
|
||||||
text: Wallet Security
|
|
||||||
Multisig: best
|
|
||||||
Encryption: good
|
|
||||||
None: ugly
|
|
||||||
- id: nodetype
|
|
||||||
text: Network Security
|
|
||||||
Full: best
|
|
||||||
Remote: ugly
|
|
||||||
- id: backups
|
|
||||||
text: Backups
|
|
||||||
One-time local: best
|
|
||||||
One-time memorized: best
|
|
||||||
Automatic remote: good
|
|
||||||
'No': ugly
|
|
||||||
- id: setuptime
|
|
||||||
text: Setup Time
|
|
||||||
Seconds: best
|
|
||||||
Minutes: good
|
|
||||||
Hours: ugly
|
|
||||||
- id: disk
|
|
||||||
text: Disk Space
|
|
||||||
2+ GB: ugly
|
|
||||||
'5 MB': good
|
|
||||||
'3 MB': good
|
|
||||||
'2 MB': good
|
|
||||||
None: best
|
|
||||||
- id: maturity
|
|
||||||
text: Maturity
|
|
||||||
Aug 2009: best
|
|
||||||
May 2011: good
|
|
||||||
- id: license
|
|
||||||
text: License
|
|
||||||
EULA: ugly
|
|
||||||
Proprietary: ugly
|
|
||||||
- id: multiuser
|
|
||||||
text: Multi-user
|
|
||||||
- id: _os
|
|
||||||
text: Available For
|
|
||||||
|
|
||||||
clients:
|
clients:
|
||||||
- name: Armory
|
|
||||||
name_uri: http://bitcoinarmory.com/
|
|
||||||
start_uri: http://bitcoinarmory.com/index.php/get-armory
|
|
||||||
start: Download
|
|
||||||
audience: Power users
|
|
||||||
security: Encryption
|
|
||||||
nodetype: Addon
|
|
||||||
backups: One-time local
|
|
||||||
setuptime: Varies
|
|
||||||
disk: 2+ GB
|
|
||||||
maturity: Jul 2011
|
|
||||||
license: AGPLv3
|
|
||||||
multiuser: Multi-wallet
|
|
||||||
os: linux win
|
|
||||||
- name: Bitcoin Wallet
|
|
||||||
name_uri: http://code.google.com/p/bitcoin-wallet/
|
|
||||||
start_uri: https://play.google.com/store/apps/details?id=de.schildbach.wallet
|
|
||||||
start: Download
|
|
||||||
audience:
|
|
||||||
security:
|
|
||||||
nodetype:
|
|
||||||
backups:
|
|
||||||
setuptime:
|
|
||||||
disk:
|
|
||||||
maturity: Mar 2011
|
|
||||||
license: GPLv3
|
|
||||||
multiuser:
|
|
||||||
os: android
|
|
||||||
- name: Bitcoin-Qt
|
- name: Bitcoin-Qt
|
||||||
name_uri:
|
url: bitcoin.org
|
||||||
start_uri: http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.0/
|
image: bitcoin-qt.png
|
||||||
start: Download
|
description: Bitcoin-Qt is the frontend for the original code written by Satoshi. It replaced the aging wxWidgets version with a newer architecture that allows changes to be made easier and making the software more portable to different platforms. Bitcoin-Qt is well tested, and is a good starting point for any Bitcoin user looking for stability.
|
||||||
audience: End-users
|
- name: Armory
|
||||||
security: Encryption
|
url: bitcoinarmory.com
|
||||||
nodetype: Full
|
image: armory.png
|
||||||
backups: Manual local
|
description: Armory is an advanced client that incorporates a number of wallet management features for security. It works in conjunction with the Satoshi codebase to leverage a platform which maintain multiple wallets with encryption with support for offline transactions. Armory is security oriented and targets the high end of the Bitcoin userbase.
|
||||||
setuptime: Hours
|
|
||||||
disk: 2+ GB
|
|
||||||
maturity: May 2011
|
|
||||||
license: MIT
|
|
||||||
multiuser: 'No'
|
|
||||||
os: linux mac win
|
|
||||||
- name: bitcoind
|
|
||||||
name_uri:
|
|
||||||
start_uri: http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.6.0/
|
|
||||||
start: Download
|
|
||||||
audience: Developers
|
|
||||||
security: Encryption
|
|
||||||
nodetype: Full
|
|
||||||
backups: Manual local
|
|
||||||
setuptime: Hours
|
|
||||||
disk: 2+ GB
|
|
||||||
maturity: Aug 2009
|
|
||||||
license: MIT
|
|
||||||
multiuser: Virtual accounts
|
|
||||||
os: linux win
|
|
||||||
- name: BitcoinSpinner
|
|
||||||
name_uri: http://code.google.com/p/bitcoinspinner/
|
|
||||||
start_uri: https://play.google.com/store/apps/details?id=com.miracleas.bitcoin_spinner
|
|
||||||
start: Download
|
|
||||||
audience: End-users
|
|
||||||
security: None
|
|
||||||
nodetype:
|
|
||||||
backups: Manual QR-Code
|
|
||||||
setuptime: Seconds
|
|
||||||
disk: 2 MB
|
|
||||||
maturity: Nov 2011
|
|
||||||
license: Apache2
|
|
||||||
multiuser: 'No'
|
|
||||||
os: android
|
|
||||||
- name: Blockchain
|
|
||||||
name_uri: https://blockchain.info/wallet/iphone-app
|
|
||||||
start_uri: https://blockchain.info/wallet/iphone-app#download-instructions-btn
|
|
||||||
start: Download
|
|
||||||
audience: End-users
|
|
||||||
security: Encryption
|
|
||||||
nodetype: Remote
|
|
||||||
backups: Automatic remote
|
|
||||||
setuptime: 15 Minutes
|
|
||||||
disk: 2 MB
|
|
||||||
maturity: Mar 2012
|
|
||||||
license: <img src="img/ico-android.png">GPL • <img src="img/ico-ios.png">LGPL
|
|
||||||
multiuser:
|
|
||||||
os: android ios
|
|
||||||
- name: Electrum
|
- name: Electrum
|
||||||
name_uri: http://ecdsa.org/electrum/
|
url: ecdsa.org/electrum
|
||||||
start_uri: http://ecdsa.org/electrum/
|
image: electrum.png
|
||||||
start: Download
|
description: Electrum is a client that was designed to simplify the use of Bitcoin. Electrum does not download the blockchain and startup times are instant which it does by pooling remote blockchain servers. You do not need to perform regular backups of your wallet as your wallet can be recovered from a secret passphrase which you can memorize or write on a piece of paper.
|
||||||
audience: Power users
|
|
||||||
security: Encryption
|
|
||||||
nodetype: Minimal
|
|
||||||
backups: One-time memorized
|
|
||||||
setuptime: Minutes
|
|
||||||
disk: 5 MB
|
|
||||||
maturity: Nov 2011
|
|
||||||
license: GPLv3
|
|
||||||
multiuser: 'No'
|
|
||||||
os: linux win
|
|
||||||
- name: MtGox Mobile
|
|
||||||
name_uri: http://mtgoxlive.com/mobile/
|
|
||||||
start_uri: https://play.google.com/store/apps/details?id=com.mtgoxlive.trader
|
|
||||||
start: Download
|
|
||||||
audience: End-users
|
|
||||||
security: Remote
|
|
||||||
nodetype: Remote
|
|
||||||
backups: Automatic remote
|
|
||||||
setuptime: Minutes
|
|
||||||
disk: 3 MB
|
|
||||||
maturity: Jul 2011
|
|
||||||
license: WTFPL
|
|
||||||
multiuser: 'No'
|
|
||||||
os: android
|
|
||||||
- name: MultiBit
|
- name: MultiBit
|
||||||
name_uri: http://multibit.org/
|
url: multibit.org
|
||||||
start_uri: http://multibit.org/releases.html
|
image: multibit.png
|
||||||
start: Download
|
description: MultiBit is a Bitcoin client. It understands the Bitcoin protocol so it can send and receive bitcoins. It makes the job of sending and receiving bitcoins simple and quick. MultiBit can handle multiple wallets so you can maintain different Bitcoin "accounts" for different purposes. On the 'Your Wallets' screen you can see all your wallets and transactions. MultiBit provides features like different languages, single click payment and quicker access to new features.
|
||||||
audience: End-users
|
|
||||||
security: None
|
|
||||||
nodetype: Partial
|
|
||||||
backups: 'No'
|
|
||||||
setuptime: 1 hour
|
|
||||||
disk: 50 MB
|
|
||||||
maturity: Jul 2011
|
|
||||||
license: MIT
|
|
||||||
multiuser: Multi-wallet
|
|
||||||
os: linux mac win
|
|
||||||
- name: My Wallet
|
|
||||||
name_uri: https://blockchain.info/wallet
|
|
||||||
start_uri: https://blockchain.info/wallet/new
|
|
||||||
start: eWallet
|
|
||||||
audience: Everyone
|
|
||||||
security: Encryption
|
|
||||||
nodetype: Remote
|
|
||||||
backups: Automatic remote
|
|
||||||
setuptime: Minutes
|
|
||||||
disk: None
|
|
||||||
maturity: Dec 2011
|
|
||||||
license: BSD*
|
|
||||||
multiuser: 'Yes'
|
|
||||||
os: android ios linux mac win
|
|
||||||
- name: StrongCoin
|
|
||||||
name_uri: https://strongcoin.com/
|
|
||||||
start_uri: https://strongcoin.com/users/sign_up
|
|
||||||
start: eWallet
|
|
||||||
audience: Power users
|
|
||||||
security: Encryption
|
|
||||||
nodetype: Remote
|
|
||||||
backups: Automatic remote
|
|
||||||
setuptime: Minutes
|
|
||||||
disk: None
|
|
||||||
maturity: Sep 2011
|
|
||||||
license: Proprietary
|
|
||||||
multiuser: 'Yes'
|
|
||||||
os: linux mac win
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<section id="clients">
|
<section id="graphical-interfaces">
|
||||||
<h1>Bitcoin Clients</h1>
|
<h1>Graphical Interfaces</h1>
|
||||||
<!-- yes, this is an abuse of tables, but really CSS doesn't provide any sane way to do the same thing :( -->
|
<div class="row">
|
||||||
<table><tr>
|
{% for client in page.clients %}
|
||||||
<td style="" id="oslist">
|
<div class="span5">
|
||||||
<ul>
|
<h2><a href="http://{{ client.url }}">{{ client.name }}</a></h2>
|
||||||
<li><a id="android" href="javascript:clientfilt('android')"><img src="img/ico-android.png"> Android</a></li>
|
<img src="img/clients/{{ client.image }}" />
|
||||||
<li><a id="ios" href="javascript:clientfilt('ios')"><img src="img/ico-ios.png"> iPhone</a></li>
|
<p>Website: <a href="http://{{ client.url }}">{{ client.url }}</a></p>
|
||||||
<li><a id="linux" href="javascript:clientfilt('linux')"><img src="img/ico-linux.png"> Linux</a></li>
|
<p>{{ client.description }}</p>
|
||||||
<li><a id="mac" href="javascript:clientfilt('mac')"><img src="img/ico-mac.png"> Mac OS X</a></li>
|
|
||||||
<li><a id="win" href="javascript:clientfilt('win')"><img src="img/ico-win.png"> Windows</a></li>
|
|
||||||
</ul>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<table>
|
|
||||||
{% clients %}
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr></table>
|
|
||||||
</section>
|
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
{% endfor %}
|
||||||
var visiblerule = null;
|
</div>
|
||||||
var selrule = null;
|
</section>
|
||||||
function clientfilt(c) {
|
|
||||||
if (visiblerule) {
|
<!--
|
||||||
selrule.selectorText = '#' + c;
|
<section id="website-frontends">
|
||||||
visiblerule.selectorText = '.clients.' + c;
|
<h1>Website Frontends</h1>
|
||||||
return;
|
<div class="row">
|
||||||
}
|
<div class="span5">
|
||||||
var ss = document.styleSheets[0];
|
<h2><a href="http://bitcoin.org">Bitcoin-Qt</a></h2>
|
||||||
var rules = ss.cssRules ? ss.cssRules : ss.rules;
|
<img src="img/bitcoin.png" />
|
||||||
if (ss.insertRule) {
|
<p>Website: <a href="http://bitcoin.org">bitcoin.org</a></p>
|
||||||
ss.insertRule('.clients { display: none }');
|
<p>Bitcoin is one of the first implementations of a concept called crypto-currency, which was first described in 1998 by Wei Dai on the cypherpunks mailing list. Building upon the notion that money is any object, or any sort of record, accepted as payment for goods and services and repayment of debts in a given country or socio-economic context, Bitcoin is designed around the idea of using cryptography to control the creation and transfer of money, rather than relying on central authorities.</p>
|
||||||
ss.insertRule('#' + c + '{ background-color: #bfbfbf }', 0);
|
</div>
|
||||||
ss.insertRule('.clients.' + c + ' { display: table-cell }', 0);
|
...
|
||||||
} else {
|
</div>
|
||||||
ss.addRule('.clients', 'display: none');
|
</section>
|
||||||
ss.addRule('#' + c, 'background-color: #bfbfbf', 0);
|
-->
|
||||||
ss.addRule('.clients.' + c, 'display: table-cell', 0);
|
</div>
|
||||||
}
|
|
||||||
visiblerule = rules[0];
|
|
||||||
selrule = rules[1];
|
|
||||||
}
|
|
||||||
(function(){
|
|
||||||
var av = navigator.appVersion;
|
|
||||||
if (av.indexOf('Android') != -1)
|
|
||||||
clientfilt('android');
|
|
||||||
else
|
|
||||||
if (av.indexOf('iPhone') != -1)
|
|
||||||
clientfilt('ios');
|
|
||||||
else
|
|
||||||
if (av.indexOf('Linux') != -1 || av.indexOf('X11') != -1)
|
|
||||||
clientfilt('linux');
|
|
||||||
else
|
|
||||||
if (av.indexOf('Mac') != -1)
|
|
||||||
clientfilt('mac');
|
|
||||||
else
|
|
||||||
if (av.indexOf('Win') != -1)
|
|
||||||
clientfilt('win');
|
|
||||||
})()
|
|
||||||
</script>
|
|
||||||
|
|
BIN
img/clients/armory.png
Normal file
BIN
img/clients/armory.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
BIN
img/clients/bitcoin-qt.png
Normal file
BIN
img/clients/bitcoin-qt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
BIN
img/clients/electrum.png
Normal file
BIN
img/clients/electrum.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
BIN
img/clients/multibit.png
Normal file
BIN
img/clients/multibit.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
Loading…
Add table
Add a link
Reference in a new issue