mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
implement multilanguage new improved clients list page update history and statistics in the "about" page add "Some things you need to know" page add "Support Bitcoin" page add a contextual presentation for each category of users (individuals, organizations, developers and enthusiasts) add a short and concise "how it works" page add a "vocabulary" page for Bitcoin technical words definitions give more visibility for the foundation new website design and layout
53 lines
2.8 KiB
HTML
53 lines
2.8 KiB
HTML
---
|
|
layout: base-fr
|
|
title: Développement - Bitcoin
|
|
---
|
|
<h1>Développement du Bitcoin</h1>
|
|
|
|
<h2>Spécification</h2>
|
|
<p>Si vous êtes intéressés à en apprendre davantage sur les détails techniques du Bitcoin, il est recommandé de commencer avec ces documents.</p>
|
|
<ul class="list">
|
|
<li><a href="/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a></li>
|
|
<li><a href="https://en.bitcoin.it/wiki/Protocol_rules" target="_blank">Protocol rules</a></li>
|
|
<li><a href="https://en.bitcoin.it/wiki/Category:Technical" target="_blank">Bitcoin Wiki</a></li>
|
|
</ul>
|
|
|
|
<h2>Développeurs</h2>
|
|
<ul class="list">
|
|
<li>Satoshi Nakamoto</li>
|
|
<li>Gavin Andresen - <a href="mailto:gavinandresen@gmail.com">gavinandresen@gmail.com</a> (<a href="/gavinandresen.asc">PGP</a>)</li>
|
|
<li>Pieter Wuille - <a href="mailto:pieter.wuille@gmail.com">pieter.wuille@gmail.com</a> (<a href="/pieterwuille.asc">PGP</a>)</li>
|
|
<li>Nils Schneider - <a href="mailto:nils.schneider@gmail.com">nils.schneider@gmail.com</a> (<a href="/schneider.asc">PGP</a>)</li>
|
|
<li>Jeff Garzik - <a href="mailto:jgarzik@exmulti.com">jgarzik@exmulti.com</a> (<a href="/jgarzik-exmulti.asc">PGP</a>)</li>
|
|
<li>Wladimir J. van der Laan - <a href="mailto:laanwj@gmail.com">laanwj@gmail.com</a> (<a href="/laanwj.asc">PGP</a>)</li>
|
|
<li>Gregory Maxwell - <a href="mailto:gmaxwell@gmail.com">gmaxwell@gmail.com</a> (<a href="/gmaxwell.asc">PGP</a>)</li>
|
|
</ul>
|
|
|
|
<h2>S'impliquer dans le développement</h2>
|
|
<p>Le développement du Bitcoin est ouvert et tout développeur peut contribuer au projet. Tout ce que vous devez savoir est dans le dépôt <a href="https://github.com/bitcoin/bitcoin" target="_blank">Github</a>. Veuillez vous assurer de lire et de suivre le processus de développement décrit dans le README ainsi que de produire du code de qualité.</p>
|
|
|
|
<section id="contributors">
|
|
<h2>Contributeurs</h2>
|
|
<p>Classé par le nombre d'ajouts dans le code</p>
|
|
<table class="contributors">
|
|
<tr>
|
|
{% for c in site.project.contributors %}
|
|
<td>
|
|
{% if c.gravatar_id %}
|
|
<img class="icon" height="16" width="16" src="https://secure.gravatar.com/avatar/{{c.gravatar_id}}?s=140&d=http%3A%2F%2Fbitcoin.org%2Fimg%2Fgravatar-140.png" />
|
|
{% else %}
|
|
<img class="icon" height="16" width="16" src="http://bitcoin.org/img/gravatar-140.png" />
|
|
{% endif %}
|
|
{% if c.login %}
|
|
<a href="http://github.com/{{c.login}}">
|
|
{{ c.name }} ({{ c.contributions }})
|
|
</a>
|
|
{% else %}
|
|
{{ c.name }} ({{ c.contributions }})
|
|
{% endif %}
|
|
</td>
|
|
{% cycle nil, nil, nil, nil, '</tr><tr>' %}
|
|
{% endfor %}
|
|
</tr>
|
|
</table>
|
|
</section>
|