Set license files and headers for bitcoin.org's content

This commit is contained in:
Saivann 2014-11-21 17:13:43 -05:00
parent 27f1da3ba8
commit 2a139a51a1
276 changed files with 524 additions and 171 deletions

14
COPYING
View file

@ -1,9 +1,5 @@
Various picture files inside the folders listed above are subjected to copyright restrictions. The use of these materials is not permitted unless otherwise specified by their copyright owner.
img/brand
img/wallets
img/screenshots
img/faq
img/innovation
img/press
img/os
The intellectual property rights in the files are owned by the respective
authors. Some of the files can be licensed under MIT License (MIT) available on
http://opensource.org/licenses/MIT or other licenses. Appropriate licensing
information can be found in the header of the file or in the folder containing
the file.

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
## List of words to match with references in _includes/references.md
## in developer documentation, used by autocrossref.rb plugin.
## "pattern to match in file" => "reference to give it"

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
## This script is used to compare all links between two branches of the
## website. Each branches are built and compared.

View file

@ -1,5 +1,8 @@
#!/usr/bin/env ruby
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#Drop outdated fallback HTML code in all layouts for specified language.
#Example: ./_contrib/updatetx.rb

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
{% autocrossref %}
The following guide aims to provide examples to help you start

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## P2P Network
### Retrieving A MerkleBlock

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Payment Processing
### Payment Protocol

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Testing Applications
{% autocrossref %}

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Transactions
### Transaction Tutorial
@ -221,7 +226,7 @@ second argument (a JSON object) creates the output with the address
(public key hash) and number of bitcoins we want to transfer.
We save the resulting raw format transaction to a shell variable.
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**Warning:** `createrawtransaction` does not automatically create change
outputs, so you can easily accidentally pay a large transaction fee. In
this example, our input had 50.0000 bitcoins and our output
@ -429,7 +434,7 @@ Use the `dumpprivkey` RPC to get the private keys corresponding to the
public keys used in the two UTXOs out inputs we will be spending. We need
the private keys so we can sign each of the inputs separately.
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**Warning:** Users should never manually manage private keys on mainnet.
As dangerous as raw transactions are (see warnings above), making a
mistake with a private key can be much worse---as in the case of a HD
@ -586,7 +591,7 @@ Offline signing is safe. However, in this example we will also be
spending an output which is not part of the block chain because the
transaction containing it has never been broadcast. That can be unsafe:
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**Warning:** Transactions which spend outputs from unconfirmed
transactions are vulnerable to transaction malleability. Be sure to read
about transaction malleability and adopt good practices before spending
@ -973,7 +978,7 @@ redeem script.
The P2SH address is returned along with the redeem script which must be
provided when we spend satoshis sent to the P2SH address.
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**Warning:** You must not lose the redeem script, especially if you
don't have a record of which public keys you used to create the P2SH
multisig address. You need the redeem script to spend any bitcoins sent
@ -1124,7 +1129,7 @@ transaction, the same way we got private keys in the Complex Raw
Transaction subsection. Recall that we created a 2-of-3 multisig pubkey script,
so signatures from two private keys are needed.
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**Reminder:** Users should never manually manage private keys on
mainnet. See the warning in the [complex raw transaction section][devex
complex raw transaction].

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
<!--Temporary disclaimer BEGIN-->
<div id="develdocdisclaimer" class="develdocdisclaimer"><div>
<b>BETA</b>: This documentation has been written recently and still needs more reviews to ensure all content is covered correctly and accurately; if you find a mistake, please <a href="https://github.com/bitcoin/bitcoin.org/issues/new" onmouseover="updateIssue(event);">report an issue</a> on GitHub. <a href="#" onclick="disclaimerClose(event);">Click here</a> to close this disclaimer.

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Block Chain
{% autocrossref %}

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Contracts
{% autocrossref %}

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
{% autocrossref %}
The Developer Guide aims to provide the information you need to understand

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Mining
{% autocrossref %}

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Operating Modes
{% autocrossref %}

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## P2P Network
{% autocrossref %}

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Payment Processing
{% autocrossref %}
@ -116,7 +121,7 @@ payment requests is recommended.
increased security, authentication of a receiver's identity using X.509 certificates,
and other important features such as refunds.
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**Warning:** Special care must be taken to avoid the theft of incoming
payments. In particular, private keys should not be stored on web servers,
and payment requests should be sent over HTTPS or other secure methods

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Transactions
{% autocrossref %}

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Wallets
{% autocrossref %}
@ -508,7 +513,7 @@ as 128 bits is the the only data the user needs to backup in order to
derive every key created by a particular wallet program using
particular settings.
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**Warning:** As of this writing, HD wallet programs are not expected to
be fully compatible, so users must only use the same HD wallet program
with the same HD-related settings for a particular root seed.

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Block Chain
The following subsections briefly document core block details.

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
### Hash Byte Order
{% autocrossref %}

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
#### addmultisigaddress
~~~
@ -1925,7 +1930,7 @@ getinfo
Prints various information about the node and the network.
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**Warning:** `getinfo` will be removed in a later version of Bitcoin
Core. Use `getblockchaininfo`, `getnetworkinfo`, or `getwalletinfo`
instead.
@ -3222,7 +3227,7 @@ getwork [data]
Provides a block header which can be hashed to attempt to find the next
block, and lets a miner return a successful header.
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**Warning:** `getwork` will be removed in Bitcoin Core 0.10. Use
the `getblocktemplate` RPC instead.

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
#### help
~~~

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
#### ping
~~~

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
#### validateaddress
~~~

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
{% autocrossref %}
The Developer Reference aims to provide specifications and API information

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## P2P Network
{% autocrossref %}

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Transactions
The following subsections briefly document core transaction details.
@ -63,7 +68,7 @@ A complete list of OP codes can be found on the Bitcoin Wiki [Script
Page][wiki script], with an authoritative list in the `opcodetype` enum
of the Bitcoin Core [script header file][core script.h]
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**<span id="signature_script_modification_warning">Signature script modification warning</span>:**
Signature scripts are not signed, so anyone can modify them. This
means signature scripts should only contain data and data-pushing op
@ -73,7 +78,7 @@ makes a transaction non-standard, and future consensus rules may forbid
such transactions altogether. (Non-data-pushing op codes are already
forbidden in signature scripts when spending a P2SH pubkey script.)
![Warning icon](/img/icon_warning.svg)
![Warning icon](/img/icons/icon_warning.svg)
**`OP_CHECKMULTISIG` warning:** The multisig verification process
described above requires that signatures in the signature script be
provided in the same order as their corresponding public keys in

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
## Wallets
### Deterministic Wallet Formats

View file

@ -1,3 +1,8 @@
{% comment %}
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
{% endcomment %}
<!-- Terms; must have tooltip description in "quotes"; alphabetical order -->
[51 percent attack]: /en/developer-guide#term-51-attack "The ability of someone controlling a majority of hashing power to revise transactions history and prevent new transactions from confirming"
[addr message]: /en/developer-guide#term-addr-message "A Bitcoin network protocol message which relays IP addresses and port numbers of active nodes to other nodes and clients, allowing decentralized peer discovery."

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
---

View file

@ -1,8 +1,12 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
---
<!DOCTYPE HTML>
<html lang="{{ page.lang }}">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta property="og:image" content="https://bitcoin.org/img/opengraph.png" />
<meta property="og:image" content="https://bitcoin.org/img/icons/opengraph.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>{% capture title %}{% translate title %}{% endcapture %}{% if title != '' %}{{ title }}{% else %}{{ page.title }}{% endif %}</title>
{% capture metadescription %}{% translate metadescription %}{% endcapture %}{% if metadescription != '' %}<meta name="description" content="{{ metadescription }}">{% endif %}
@ -12,7 +16,7 @@
{% if page.lang == 'bg' or page.lang == 'ko' or page.lang == 'hi' or page.lang == 'pl' or page.lang == 'sl' or page.lang == 'ro' or page.lang == 'ru' or page.lang == 'tr' or page.lang == 'uk' or page.lang == 'zh_CN' or page.lang == 'zh_TW' %}{% lesscss sans.less %}{% endif %}
<script type="text/javascript" src="/js/main.js"></script>
<link rel="shortcut icon" href="/favicon.png">
<link rel="apple-touch-icon-precomposed" href="/img/logo_ios.png"/>
<link rel="apple-touch-icon-precomposed" href="/img/icons/logo_ios.png"/>
</head>
<body>
<div id="detectmobile" class="detectmobile"></div>
@ -41,7 +45,7 @@
</ul>
</li>
</ul>
<a class="logo" href="/{{ page.lang }}/"><img src="/img/logotop.svg" alt="Bitcoin"></a>
<a class="logo" href="/{{ page.lang }}/"><img src="/img/icons/logotop.svg" alt="Bitcoin"></a>
<a id="menumobile" class="menumobile" onclick="mobileMenuShow(event);" href="#"></a>
<div id="langselect" class="langselect"><select onchange="window.location=this.value;">
{% for lang in site.langsorder %}{% assign active = ''%}{% if lang == page.lang %}{% assign active = ' selected="selected"'%}{% endif %}

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
---
<meta name="robots" content="noindex">

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
---

View file

@ -1,3 +1,8 @@
/*
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
*/
body{
/*Allows to use :hover on any html tag using javascript*/
behavior:url("/css/csshover.htc");

View file

@ -1,2 +1,7 @@
/*
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
*/
@import "normalize.less";
@import "screen.less";

View file

@ -1,3 +1,8 @@
/*
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
*/
/*Language specific styles that override default*/
/*Styles for HTML tags*/
@ -281,16 +286,16 @@ h2 .rssicon{
left:20px;
}
.wallets .checkgood>div>span{
background-image:url(/img/checkbubble_pass_rtl.svg);
background-image:url(/img/icons/checkbubble_pass_rtl.svg);
}
.wallets .checkpass>div>span{
background-image:url(/img/checkbubble_pass_rtl.svg);
background-image:url(/img/icons/checkbubble_pass_rtl.svg);
}
.wallets .checkfail>div>span{
background-image:url(/img/checkbubble_fail_rtl.svg);
background-image:url(/img/icons/checkbubble_fail_rtl.svg);
}
.wallets .checkneutral>div>span{
background-image:url(/img/checkbubble_neutral_rtl.svg);
background-image:url(/img/icons/checkbubble_neutral_rtl.svg);
}
.warningicon{

View file

@ -1,3 +1,8 @@
/*
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
*/
h1,h2{
font-family:Arial, sans-serif;
font-weight:bold;

View file

@ -1,3 +1,8 @@
/*
This file is licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.
*/
/*Styles for HTML tags*/
body{
@ -412,10 +417,10 @@ table td,table th{
padding-left:20px;
background-position:left center;
background-repeat:no-repeat;
background-image:url(/img/netstatus_normal.svg);
background-image:url(/img/icons/netstatus_normal.svg);
}
.statusmenu.alert{
background-image:url(/img/netstatus_alert.svg);
background-image:url(/img/icons/netstatus_alert.svg);
}
/*Styles specific to elements in pages*/
@ -738,13 +743,13 @@ table td,table th{
padding-top:8px;
}
.toc ul.goback li{
background:url(/img/mini_ico_back.svg) no-repeat 0 3px;
background:url(/img/icons/mini_ico_back.svg) no-repeat 0 3px;
}
.toc ul.reportissue li{
background:url(/img/mini_ico_report.svg) no-repeat 0 3px;
background:url(/img/icons/mini_ico_report.svg) no-repeat 0 3px;
}
.toc ul.editsource li{
background:url(/img/mini_ico_rev.svg) no-repeat 0 3px;
background:url(/img/icons/mini_ico_rev.svg) no-repeat 0 3px;
}
.toc a,
.toc a:link,
@ -837,7 +842,7 @@ table td,table th{
left:-24px;
bottom:0;
top:0;
background:url(/img/mini_ico_anchor.svg) no-repeat center center;
background:url(/img/icons/mini_ico_anchor.svg) no-repeat center center;
}
.anchorAf:hover a{
display:block;
@ -1076,7 +1081,7 @@ table td,table th{
}
.resources .resourcesext p{
padding-left:24px;
background:url(/img/mini_ico_link.svg) no-repeat 0 4px;
background:url(/img/icons/mini_ico_link.svg) no-repeat 0 4px;
}
.resourcesorg{
@ -1124,7 +1129,7 @@ table td,table th{
font-size:115%;
margin:6px 0;
padding-left:24px;
background:url(/img/mini_ico_link.svg) no-repeat 0 4px;
background:url(/img/icons/mini_ico_link.svg) no-repeat 0 4px;
}
.coredevtable div div:first-child{
@ -1249,7 +1254,7 @@ table td,table th{
background-position:left -24px;
}
.walletmenu ul li ul li a{
background-image:url(/img/wallet_select.svg);
background-image:url(/img/icons/wallet_select.svg);
background-repeat:no-repeat;
background-position:-32px center;
padding:8px 32px 5px 32px;
@ -1259,16 +1264,16 @@ table td,table th{
background-position:right center;
}
.walletmenu .wallet-mobile{
background-image:url(/img/wallet_menu_mobile.svg);
background-image:url(/img/icons/wallet_menu_mobile.svg);
}
.walletmenu .wallet-desktop{
background-image:url(/img/wallet_menu_desktop.svg);
background-image:url(/img/icons/wallet_menu_desktop.svg);
}
.walletmenu .wallet-hardware{
background-image:url(/img/wallet_menu_hardware.svg);
background-image:url(/img/icons/wallet_menu_hardware.svg);
}
.walletmenu .wallet-web{
background-image:url(/img/wallet_menu_web.svg);
background-image:url(/img/icons/wallet_menu_web.svg);
}
.walletmenu .wallet-blackberry{
background-image:url(/img/os/wallet_menu_blackberry.svg);
@ -1355,7 +1360,7 @@ table td,table th{
position:absolute;
z-index:100;
height:32px;
background:url(/img/wallet_bubble.svg) no-repeat center 0;
background:url(/img/icons/wallet_bubble.svg) no-repeat center 0;
top:0;
left:0;
right:0;
@ -1513,8 +1518,8 @@ table td,table th{
}
.wallets>div>div>h2:first-child+div+div+div>div>div{
display:inline-block;
background-image:url(/img/wallet_help.png);
background-image:none, url(/img/wallet_help.svg), url(/img/wallet_help.png);
background-image:url(/img/icons/wallet_help.png);
background-image:none, url(/img/icons/wallet_help.svg), url(/img/icons/wallet_help.png);
width:16px;
height:16px;
margin-left:5px;
@ -1601,7 +1606,7 @@ table td,table th{
font-weight:normal;
}
.wallets .checkgood>div>span{
background-image:url(/img/checkbubble_pass.svg);
background-image:url(/img/icons/checkbubble_pass.svg);
}
.wallets .checkpass{
color:#329239;
@ -1610,7 +1615,7 @@ table td,table th{
border-color:#329239;
}
.wallets .checkpass>div>span{
background-image:url(/img/checkbubble_pass.svg);
background-image:url(/img/icons/checkbubble_pass.svg);
}
.wallets .checkneutral{
color:#8b8b8b;
@ -1619,7 +1624,7 @@ table td,table th{
border-color:#8b8b8b;
}
.wallets .checkneutral>div>span{
background-image:url(/img/checkbubble_neutral.svg);
background-image:url(/img/icons/checkbubble_neutral.svg);
}
.wallets .checkfail{
color:#ee9209;
@ -1628,48 +1633,48 @@ table td,table th{
border-color:#ee9209;
}
.wallets .checkfail>div>span{
background-image:url(/img/checkbubble_fail.svg);
background-image:url(/img/icons/checkbubble_fail.svg);
}
.wallets .checkcontrol.checkpass,
.wallets .checkcontrol.checkgood{
background-image:url(/img/check_control_pass.svg);
background-image:url(/img/icons/check_control_pass.svg);
}
.wallets .checkcontrol.checkfail{
background-image:url(/img/check_control_fail.svg);
background-image:url(/img/icons/check_control_fail.svg);
}
.wallets .checkvalidation.checkpass,
.wallets .checkvalidation.checkgood{
background-image:url(/img/check_validation_pass.svg);
background-image:url(/img/icons/check_validation_pass.svg);
}
.wallets .checkvalidation.checkneutral{
background-image:url(/img/check_validation_neutral.svg);
background-image:url(/img/icons/check_validation_neutral.svg);
}
.wallets .checkvalidation.checkfail{
background-image:url(/img/check_validation_fail.svg);
background-image:url(/img/icons/check_validation_fail.svg);
}
.wallets .checktransparency.checkpass,
.wallets .checktransparency.checkgood{
background-image:url(/img/check_transparency_pass.svg);
background-image:url(/img/icons/check_transparency_pass.svg);
}
.wallets .checktransparency.checkfail{
background-image:url(/img/check_transparency_fail.svg);
background-image:url(/img/icons/check_transparency_fail.svg);
}
.wallets .checkenvironment.checkpass,
.wallets .checkenvironment.checkgood{
background-image:url(/img/check_environment_pass.svg);
background-image:url(/img/icons/check_environment_pass.svg);
}
.wallets .checkenvironment.checkfail{
background-image:url(/img/check_environment_fail.svg);
background-image:url(/img/icons/check_environment_fail.svg);
}
.wallets .checkprivacy.checkpass,
.wallets .checkprivacy.checkgood{
background-image:url(/img/check_privacy_pass.svg);
background-image:url(/img/icons/check_privacy_pass.svg);
}
.wallets .checkprivacy.checkneutral{
background-image:url(/img/check_privacy_neutral.svg);
background-image:url(/img/icons/check_privacy_neutral.svg);
}
.wallets .checkprivacy.checkfail{
background-image:url(/img/check_privacy_fail.svg);
background-image:url(/img/icons/check_privacy_fail.svg);
}
.walletsswitch{
@ -2076,7 +2081,7 @@ h2 .rssicon{
height:40px;
width:40px;
padding:12px;
background-image:url(/img/menumobile.svg);
background-image:url(/img/icons/menumobile.svg);
background-repeat:no-repeat;
background-position:center center;
}

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#alerts.rb generates alert pages using files in _alerts
#and assign them the 'alert' category.

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#alphab_for allows to loop in an array sorted by the translated value of
#each key using appropriate collation for the current language. In short,
#this is used to generate translated table of contents.
@ -19,7 +22,7 @@ module Jekyll
if !site.has_key?("loc")
site['loc'] = {}
Dir.foreach('_translations') do |file|
next if file == '.' or file == '..'
next if file == '.' or file == '..' or file == 'COPYING'
lang=file.split('.')[0]
site['loc'][lang] = YAML.load_file('_translations/'+file)[lang]
end

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
## autocrossref.rb automatically adds cross reference links in documentation
## texts using the list of words defined in _autocrossref.yaml.

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#contributors.rb fetches Bitcoin Core contributors list and set
#site.contributors array. This is later used to display the
#list of contributors on the "Development" page.

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#events.rb set site.conferences and site.meetups arrays based
#on events in _events/ and meetups on bitcoin.meetups.com .
#This is later used to populate the events map and display the

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#filter_for allows to loop in site.pages sorted and filtered
#by custom page variables.

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#htmlescape espaces special html characters. This is a replacement for
#CGI::escapeHTML, which has an inconsistent behavior with single quotes
#on different ruby versions ( 1.9 and 2.0 ).

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
require 'digest/md5'
module Jekyll

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#redirects.rb generates all redirection pages
#from _config.yml .

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#releases.rb generates release pages using files in _releases
#and assign them the 'release' category.

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#sitemap.rb generates a sitemap.xml file, which also includes
#alternate hreflang for each translated version of each page.
@ -24,7 +27,7 @@ module Jekyll
enabled = ENV['ENABLED_LANGS'];
enabled = enabled.split(' ') if !enabled.nil?
Dir.foreach('_translations') do |file|
next if file == '.' or file == '..'
next if file == '.' or file == '..' or file == 'COPYING'
lang=file.split('.')[0]
#Ignore lang if disabled
if lang != 'en' and !enabled.nil? and !enabled.include?(lang)

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#svg.rb is a workaround to allow built-in jekyll server
#to serve svg files with jekyll --server.

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#templates.rb generates all translated pages using templates in
#_templates. The final file name of each page is defined in
#the url section of each translations in _translations.
@ -25,7 +28,7 @@ module Jekyll
enabled = ENV['ENABLED_LANGS'];
enabled = enabled.split(' ') if !enabled.nil?
Dir.foreach('_translations') do |file|
next if file == '.' or file == '..'
next if file == '.' or file == '..' or file == 'COPYING'
lang = file.split('.')[0]
#Ignore lang if disabled
if lang != 'en' and !enabled.nil? and !enabled.include?(lang)

View file

@ -1,3 +1,6 @@
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
#translate( id [,category ,lang] )
#Return translated string using translations files

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: about-us
---

View file

@ -1,35 +1,38 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: bitcoin-for-businesses
---
<h1>{% translate pagetitle %}</h1>
<p class="summary">{% translate summary %}</p>
<h2><img class="titleicon" src="/img/ico_lowfee.svg" alt="Icon" />{% translate lowfee %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_lowfee.svg" alt="Icon" />{% translate lowfee %}</h2>
<p>{% translate lowfeetext %}</p>
<h2><img class="titleicon" src="/img/ico_shield.svg" alt="Icon" />{% translate fraud %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_shield.svg" alt="Icon" />{% translate fraud %}</h2>
<p>{% translate fraudtext %}</p>
<h2><img class="titleicon" src="/img/ico_international.svg" alt="Icon" />{% translate international %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_international.svg" alt="Icon" />{% translate international %}</h2>
<p>{% translate internationaltext %}</p>
<h2><img class="titleicon" src="/img/ico_pci.svg" alt="Icon" />{% translate pci %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_pci.svg" alt="Icon" />{% translate pci %}</h2>
<p>{% translate pcitext %}</p>
<h2><img class="titleicon" src="/img/ico_visib.svg" alt="Icon" />{% translate visibility %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_visib.svg" alt="Icon" />{% translate visibility %}</h2>
<p>{% translate visibilitytext %}</p>
<h2><img class="titleicon" src="/img/ico_multi.svg" alt="Icon" />{% translate multisig %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_multi.svg" alt="Icon" />{% translate multisig %}</h2>
<p>{% translate multisigtext %}</p>
<h2><img class="titleicon" src="/img/ico_transparency.svg" alt="Icon" />{% translate transparency %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_transparency.svg" alt="Icon" />{% translate transparency %}</h2>
<p>{% translate transparencytext %}</p>
{% case page.lang %}
{% when 'fa' or 'pl' or 'zh_TW' %}
<div class="mainbutton"><a href="/en/{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
<div class="mainbutton"><a href="/en/{% translate getting-started url %}"><img src="/img/icons/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
{% else %}
<div class="mainbutton"><a href="/{{ page.lang }}/{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
<div class="mainbutton"><a href="/{{ page.lang }}/{% translate getting-started url %}"><img src="/img/icons/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
{% endcase %}

View file

@ -1,26 +1,29 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: bitcoin-for-developers
---
<h1>{% translate pagetitle %}</h1>
<p class="summary">{% translate summary %}</p>
<h2><img class="titleicon" src="/img/ico_simple.svg" alt="Icon" />{% translate simple %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_simple.svg" alt="Icon" />{% translate simple %}</h2>
<p>{% translate simpletext %}</p>
<h2><img class="titleicon" src="/img/ico_conf.svg" alt="Icon" />{% translate api %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_conf.svg" alt="Icon" />{% translate api %}</h2>
<p>{% translate apitext %}</p>
<h2><img class="titleicon" src="/img/ico_own.svg" alt="Icon" />{% translate own %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_own.svg" alt="Icon" />{% translate own %}</h2>
<p>{% translate owntext %}</p>
<h2><img class="titleicon" src="/img/ico_invoice.svg" alt="Icon" />{% translate invoice %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_invoice.svg" alt="Icon" />{% translate invoice %}</h2>
<p>{% translate invoicetext %}</p>
<h2><img class="titleicon" src="/img/ico_lock.svg" alt="Icon" />{% translate security %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_lock.svg" alt="Icon" />{% translate security %}</h2>
<p>{% translate securitytext %}</p>
<h2><img class="titleicon" src="/img/ico_micro.svg" alt="Icon" />{% translate micro %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_micro.svg" alt="Icon" />{% translate micro %}</h2>
<p>{% translate microtext %}</p>
<div class="mainbutton"><a href="/en/developer-documentation"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
<div class="mainbutton"><a href="/en/developer-documentation"><img src="/img/icons/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>

View file

@ -1,32 +1,35 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: bitcoin-for-individuals
---
<h1>{% translate pagetitle %}</h1>
<p class="summary">{% translate summary %}</p>
<h2><img class="titleicon" src="/img/ico_mobile.svg" alt="Icon"/>{% translate mobile %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_mobile.svg" alt="Icon"/>{% translate mobile %}</h2>
<p>{% translate mobiletext %}</p>
<h2><img class="titleicon" src="/img/ico_lock.svg" alt="Icon" />{% translate secure %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_lock.svg" alt="Icon" />{% translate secure %}</h2>
<p>{% translate securetext %}</p>
<h2><img class="titleicon" src="/img/ico_simple.svg" alt="Icon" />{% translate simple %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_simple.svg" alt="Icon" />{% translate simple %}</h2>
<p>{% translate simpletext %}</p>
<h2><img class="titleicon" src="/img/ico_international.svg" alt="Icon" />{% translate international %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_international.svg" alt="Icon" />{% translate international %}</h2>
<p>{% translate internationaltext %}</p>
<h2><img class="titleicon" src="/img/ico_lowfee.svg" alt="Icon" />{% translate lowfee %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_lowfee.svg" alt="Icon" />{% translate lowfee %}</h2>
<p>{% translate lowfeetext %}</p>
<h2><img class="titleicon" src="/img/ico_anon.svg" alt="Icon" />{% translate anonymous %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_anon.svg" alt="Icon" />{% translate anonymous %}</h2>
<p>{% translate anonymoustext %}</p>
{% case page.lang %}
{% when 'fa' or 'pl' or 'zh_TW' %}
<div class="mainbutton"><a href="/en/{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
<div class="mainbutton"><a href="/en/{% translate getting-started url %}"><img src="/img/icons/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
{% else %}
<div class="mainbutton"><a href="/{{ page.lang }}/{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
<div class="mainbutton"><a href="/{{ page.lang }}/{% translate getting-started url %}"><img src="/img/icons/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
{% endcase %}

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: choose-your-wallet
@ -783,6 +786,6 @@ wallets:
<script>if(isMobile())walletShowPlatform('mobile');else walletShowPlatform('desktop');</script>
<div class="walletsdisclaimer">
<h2><img src="/img/warning.svg" class="warningicon" alt="warning">{% translate educate %}</h2>
<h2><img src="/img/icons/warning.svg" class="warningicon" alt="warning">{% translate educate %}</h2>
<p>{% translate educatetxt %}</p>
</div>

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: community
---
@ -8,7 +11,7 @@ id: community
<div class="resources">
<div>
<div>
<h2><img src="/img/ico_invoice.svg" class="titleicon" alt="Icon">{% translate forums %}</h2>
<h2><img src="/img/icons/ico_invoice.svg" class="titleicon" alt="Icon">{% translate forums %}</h2>
{% if page.lang == 'bg' %}<p><a href="http://bitcoinbg.eu/forum/">BitcoinBG.eu</a></p>{% endif %}
{% if page.lang == 'bg' %}<p><a href="http://hash.bg/forum/">Hash.bg</a></p>{% endif %}
{% if page.lang == 'es' %}<p><a href="http://forobitco.in/">ForoBitco.in en Español</a></p>{% endif %}
@ -19,7 +22,7 @@ id: community
<p><a href="http://reddit.com/r/Bitcoin/">{% translate reddit %}</a></p>
<p><a href="https://bitcoin.stackexchange.com/">{% translate stackexchange %}</a></p>
</div><div>
<h2><img src="/img/ico_network.svg" class="titleicon" alt="Icon">{% translate social %}</h2>
<h2><img src="/img/icons/ico_network.svg" class="titleicon" alt="Icon">{% translate social %}</h2>
{% if page.lang == 'ru' %}<p><a href="https://vk.com/bitcoin">Страница на ВКонтакте</a></p>{% endif %}
<p>{% translate linkgoogle %}</p>
<p><a href="https://twitter.com/search?q=bitcoin">{% translate linktwitter %}</a></p>
@ -28,7 +31,7 @@ id: community
</div>
<div>
<div>
<h2><img src="/img/ico_multi.svg" class="titleicon" alt="Icon">{% translate meetups %}</h2>
<h2><img src="/img/icons/ico_multi.svg" class="titleicon" alt="Icon">{% translate meetups %}</h2>
{% case page.lang %}
{% when 'fa' %}
{% else %}
@ -38,7 +41,7 @@ id: community
<p><a href="https://bitcointalk.org/index.php?board=86.0">{% translate meetupbitcointalk %}</a></p>
<p><a href="https://en.bitcoin.it/wiki/Meetups">{% translate meetupwiki %}</a></p>
</div><div>
<h2><img src="/img/ico_help.svg" class="titleicon" alt="Icon">{% translate irc %}</h2>
<h2><img src="/img/icons/ico_help.svg" class="titleicon" alt="Icon">{% translate irc %}</h2>
<p>{% translate ircjoin %}</p>
<p>#bitcoin <small>{% translate chanbitcoin %}</small></p>
<p>#bitcoin-dev <small>{% translate chandev %}</small></p>

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: development
---

View file

@ -1,12 +1,15 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: download
---
<link rel="alternate" type="application/rss+xml" href="/en/rss/releases.rss" title="Bitcoin Core releases">
<div class="download">
<h1>{% translate pagetitle %}</h1>
<h2>{% translate latestversion %} {{site.DOWNLOAD_VERSION}}<a type="application/rss+xml" href="/en/rss/releases.rss"><img src="/img/icon_rss.svg" alt="rss" class="rssicon"></a></h2>
<div class="mainbutton"><a id="downloadbutton" href="/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe"><img src="/img/but_windows.svg" alt="icon">{% translate download %}</a></div>
<h2>{% translate latestversion %} {{site.DOWNLOAD_VERSION}}<a type="application/rss+xml" href="/en/rss/releases.rss"><img src="/img/icons/icon_rss.svg" alt="rss" class="rssicon"></a></h2>
<div class="mainbutton"><a id="downloadbutton" href="/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe"><img src="/img/os/but_windows.svg" alt="icon">{% translate download %}</a></div>
<div class="downloadbox">
<p>{% translate downloados %}</p>
<div>
@ -25,7 +28,7 @@ id: download
<a href="/en/version-history">{% translate versionhistory %}</a>
</p>
</div>
<h2><img src="/img/note.svg" class="warningicon" alt="note">{% translate patient %}</h2>
<h2><img src="/img/icons/note.svg" class="warningicon" alt="note">{% translate patient %}</h2>
<p>{% translate notesync %}</p>
<p>{% translate notelicense %}</p>
</div>
@ -40,23 +43,23 @@ else if(navigator.userAgent.indexOf('WOW64')!=-1||navigator.userAgent.indexOf('W
var but=document.getElementById('downloadbutton');
switch(os){
case 'windows64':
but.getElementsByTagName('IMG')[0].src='/img/but_windows.svg';
but.getElementsByTagName('IMG')[0].src='/img/os/but_windows.svg';
but.href='/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win64-setup.exe';
break;
case 'windows32':
but.getElementsByTagName('IMG')[0].src='/img/but_windows.svg';
but.getElementsByTagName('IMG')[0].src='/img/os/but_windows.svg';
but.href='/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe';
break;
case 'linux':
but.getElementsByTagName('IMG')[0].src='/img/but_linux.png';
but.getElementsByTagName('IMG')[0].src='/img/os/but_linux.png';
but.href='/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-linux.tar.gz';
break;
case 'ubuntu':
but.getElementsByTagName('IMG')[0].src='/img/but_ubuntu.svg';
but.getElementsByTagName('IMG')[0].src='/img/os/but_ubuntu.svg';
but.href='https://launchpad.net/~bitcoin/+archive/ubuntu/bitcoin';
break;
case 'mac':
but.getElementsByTagName('IMG')[0].src='/img/but_mac.svg';
but.getElementsByTagName('IMG')[0].src='/img/os/but_mac.svg';
but.href='/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-macosx.dmg';
break;
}

View file

@ -1,9 +1,12 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: events
---
<link rel="alternate" type="application/rss+xml" href="/en/rss/events.rss" title="Bitcoin conferences and events">
<h1>{% translate pagetitle %}<a type="application/rss+xml" href="/en/rss/events.rss"><img src="/img/icon_rss.svg" alt="rss" class="rssicon"></a></h1>
<h1>{% translate pagetitle %}<a type="application/rss+xml" href="/en/rss/events.rss"><img src="/img/icons/icon_rss.svg" alt="rss" class="rssicon"></a></h1>
<p class="summary">{% translate pagedesc %}</p>
<link rel="stylesheet" type="text/css" href="/js/leaflet/leaflet.css" />

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: faq
---

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: getting-started
---

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: how-it-works
---
@ -8,7 +11,7 @@ id: how-it-works
<h2>{% translate basics %}</h2>
<p>{% translate basicstxt1 %}</p>
<p><br><img src="/img/bitcoin-how-it-works.svg" alt="Bitcoin" /></p>
<p><br><img src="/img/icons/bitcoin-how-it-works.svg" alt="Bitcoin" /></p>
<h2>{% translate balances %}</h2>
<p>{% translate balancestxt %}</p>

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: index
---
@ -21,12 +24,12 @@ id: index
<p class="mainsummary">{% translate listintro %}</p>
<div class="mainvideo"><iframe src="//www.youtube.com/embed/Gc2en3nHxA4?rel=0&showinfo=0&wmode=opaque{% if page.lang != 'en' %}&cc_load_policy=1&hl={{ page.lang }}&cc_lang_pref={{ page.lang }}{% endif %}" frameborder="0" allowfullscreen></iframe></div>
<div class="mainlist">
<div><div><img src="/img/main_ico_instant.svg" alt="Icon"><div>{% translate list1 %}</div></div></div>
<div><div><img src="/img/main_ico_worldwide.svg" alt="Icon"><div>{% translate list2 %}</div></div></div>
<div><div><img src="/img/main_ico_lowfee.svg" alt="Icon"><div>{% translate list3 %}</div></div></div>
<div><div><img src="/img/icons/main_ico_instant.svg" alt="Icon"><div>{% translate list1 %}</div></div></div>
<div><div><img src="/img/icons/main_ico_worldwide.svg" alt="Icon"><div>{% translate list2 %}</div></div></div>
<div><div><img src="/img/icons/main_ico_lowfee.svg" alt="Icon"><div>{% translate list3 %}</div></div></div>
</div>
<p class="maindesc">{% translate desc %}</p>
<div class="mainbutton"><a href="/{{ page.lang }}/{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
<div class="mainbutton"><a href="/{{ page.lang }}/{% translate getting-started url %}"><img src="/img/icons/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
<div class="mainoverview">{% translate overview %}</div>
<div class="mainoverviews"><a href="/{{ page.lang }}/{% translate bitcoin-for-individuals url %}">{% translate menu-bitcoin-for-individuals layout %}</a> <a href="/{{ page.lang }}/{% translate bitcoin-for-businesses url %}">{% translate menu-bitcoin-for-businesses layout %}</a> <a href="/{{ page.lang }}/{% translate bitcoin-for-developers url %}">{% translate menu-bitcoin-for-developers layout %}</a></div>

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: innovation
---
@ -8,25 +11,25 @@ id: innovation
<h1>{% translate pagetitle %}</h1>
<p class="summarytxt">{% translate summary %}</p>
<h2><img class="titleicon" src="/img/ico_democracy.svg" alt="Icon" />{% translate consensus %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_democracy.svg" alt="Icon" />{% translate consensus %}</h2>
<p>{% translate consensustext %}</p>
<h2><img class="titleicon" src="/img/ico_network.svg" alt="Icon" />{% translate network %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_network.svg" alt="Icon" />{% translate network %}</h2>
<p>{% translate networktext %}</p>
<h2><img class="titleicon" src="/img/ico_own.svg" alt="Icon" />{% translate freedom %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_own.svg" alt="Icon" />{% translate freedom %}</h2>
<p>{% translate freedomtext %}</p>
<h2><img class="titleicon" src="/img/ico_international.svg" alt="Icon" />{% translate global %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_international.svg" alt="Icon" />{% translate global %}</h2>
<p>{% translate globaltext %}</p>
<h2><img class="titleicon" src="/img/ico_transparency.svg" alt="Icon" />{% translate transparency %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_transparency.svg" alt="Icon" />{% translate transparency %}</h2>
<p>{% translate transparencytext %}</p>
<h2><img class="titleicon" src="/img/ico_lock.svg" alt="Icon" />{% translate secure %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_lock.svg" alt="Icon" />{% translate secure %}</h2>
<p>{% translate securetext %}</p>
<h2><img class="titleicon" src="/img/ico_solve.svg" alt="Icon" />{% translate trust %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_solve.svg" alt="Icon" />{% translate trust %}</h2>
<p>{% translate trusttext %}</p>
{% else %}
@ -38,73 +41,73 @@ id: innovation
<div>
<img src="/img/innovation/inno_control.jpg" alt="Banner" />
<h2><img class="titleicon" src="/img/ico_lock.svg" alt="Icon" />{% translate control %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_lock.svg" alt="Icon" />{% translate control %}</h2>
<p>{% translate controltext %}</p>
</div>
<div>
<img src="/img/innovation/inno_global.jpg" alt="Banner" />
<h2><img class="titleicon" src="/img/ico_international.svg" alt="Icon" />{% translate global %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_international.svg" alt="Icon" />{% translate global %}</h2>
<p>{% translate globaltext %}</p>
</div>
<div>
<img src="/img/innovation/inno_cost.jpg" alt="Banner" />
<h2><img class="titleicon" src="/img/ico_lowfee.svg" alt="Icon" />{% translate cost %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_lowfee.svg" alt="Icon" />{% translate cost %}</h2>
<p>{% translate costtext %}</p>
</div>
<div>
<img src="/img/innovation/inno_donation.jpg" alt="Banner" />
<h2><img class="titleicon" src="/img/ico_donate.svg" alt="Icon" />{% translate donation %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_donate.svg" alt="Icon" />{% translate donation %}</h2>
<p>{% translate donationtext %}</p>
</div>
<div>
<img src="/img/innovation/inno_crowdfunding.jpg" alt="Banner" />
<h2><img class="titleicon" src="/img/ico_multi.svg" alt="Icon" />{% translate crowdfunding %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_multi.svg" alt="Icon" />{% translate crowdfunding %}</h2>
<p>{% translate crowdfundingtext %}</p>
</div>
<div>
<img src="/img/innovation/inno_micro.jpg" alt="Banner" />
<h2><img class="titleicon" src="/img/ico_micro.svg" alt="Icon" />{% translate micro %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_micro.svg" alt="Icon" />{% translate micro %}</h2>
<p>{% translate microtext %}</p>
</div>
<div>
<img src="/img/innovation/inno_mediation.jpg" alt="Banner" />
<h2><img class="titleicon" src="/img/ico_balance.svg" alt="Icon" />{% translate mediation %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_balance.svg" alt="Icon" />{% translate mediation %}</h2>
<p>{% translate mediationtext %}</p>
</div>
<div>
<img src="/img/innovation/inno_multisig.jpg" alt="Banner" />
<h2><img class="titleicon" src="/img/ico_multisig.svg" alt="Icon" />{% translate multisig %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_multisig.svg" alt="Icon" />{% translate multisig %}</h2>
<p>{% translate multisigtext %}</p>
</div>
<div>
<img src="/img/innovation/inno_trust.jpg" />
<h2><img class="titleicon" src="/img/ico_law.svg" alt="Icon" />{% translate trust %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_law.svg" alt="Icon" />{% translate trust %}</h2>
<p>{% translate trusttext %}</p>
</div>
<div>
<img src="/img/innovation/inno_resiliency.jpg" />
<h2><img class="titleicon" src="/img/ico_network.svg" alt="Icon" />{% translate resiliency %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_network.svg" alt="Icon" />{% translate resiliency %}</h2>
<p>{% translate resiliencytext %}</p>
</div>
<div>
<img src="/img/innovation/inno_transparency.jpg" alt="Banner" />
<h2><img class="titleicon" src="/img/ico_transparency.svg" alt="Icon" />{% translate transparency %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_transparency.svg" alt="Icon" />{% translate transparency %}</h2>
<p>{% translate transparencytext %}</p>
</div>
<div>
<img src="/img/innovation/inno_automation.jpg" />
<h2><img class="titleicon" src="/img/ico_solve.svg" alt="Icon" />{% translate automation %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_solve.svg" alt="Icon" />{% translate automation %}</h2>
<p>{% translate automationtext %}</p>
</div>

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: legal
---

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: press

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: protect-your-privacy
---

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: resources
---
@ -8,14 +11,14 @@ id: resources
<div class="resources">
<div>
<div>
<h2><img src="/img/ico_simple.svg" class="titleicon" alt="Icon">{% translate useful %}</h2>
<h2><img src="/img/icons/ico_simple.svg" class="titleicon" alt="Icon">{% translate useful %}</h2>
<p><a href="https://bitcoinfoundation.org/">Bitcoin Foundation</a></p>
<p>{% translate linkwiki %}</p>
{% if page.lang == 'fr' %}<p><a href="http://francebitcoin.com/">France Bitcoin</a></p>{% endif %}
<p><a href="https://www.weusecoins.com/">WeUseCoins.com</a></p>
<p><a href="http://www.bitcoinmining.com/">BitcoinMining.com</a></p>
</div><div>
<h2><img src="/img/ico_invoice.svg" class="titleicon" alt="Icon">{% translate directories %}</h2>
<h2><img src="/img/icons/ico_invoice.svg" class="titleicon" alt="Icon">{% translate directories %}</h2>
<p><a href="/{{ page.lang }}/{% translate choose-your-wallet url %}">{% translate linkwallets %}</a> - bitcoin.org</p>
<p><a href="http://usebitcoins.info/">{% translate linkmerchants %}</a> - usebitcoins.info</p>
<p><a href="http://howtobuybitcoins.info/">{% translate linkexchanges %}</a> - howtobuybitcoins.info</p>
@ -24,7 +27,7 @@ id: resources
</div>
<div>
<div>
<h2><img src="/img/ico_spread.svg" class="titleicon" alt="Icon">{% translate news %}</h2>
<h2><img src="/img/icons/ico_spread.svg" class="titleicon" alt="Icon">{% translate news %}</h2>
{% if page.lang == 'fr' %}<p><a href="http://le-coin-coin.fr/">Le Coin Coin</a></p>{% endif %}
{% if page.lang == 'fr' %}<p><a href="http://www.bitcoin.fr/">Bitcoin.fr</a></p>{% endif %}
{% if page.lang == 'bg' %}<p><a href="http://hash.bg/">Hash.bg</a></p>{% endif %}
@ -35,7 +38,7 @@ id: resources
<p><a href="http://bitcoinmagazine.com/">Bitcoin Magazine</a></p>
{% if page.lang == 'ru' %}<p><a href="https://bitcointalk.org/index.php?board=128.0">Биткойн Форум / Новости</a></p>{% else %}<p><a href="https://bitcointalk.org/index.php?board=77.0">BitcoinTalk press links</a></p>{% endif %}
</div><div>
<h2><img src="/img/ico_market.svg" class="titleicon" alt="Icon">{% translate charts %}</h2>
<h2><img src="/img/icons/ico_market.svg" class="titleicon" alt="Icon">{% translate charts %}</h2>
<p><a href="http://blockchain.info/charts">Blockchain.info</a></p>
<p><a href="https://www.biteasy.com/">Biteasy.com</a></p>
<p><a href="https://tradeblock.com/">Trade Block</a></p>
@ -44,10 +47,10 @@ id: resources
</div>
<div>
<div>
<h2><img src="/img/ico_doc.svg" class="titleicon" alt="Icon">{% translate documentaries %}</h2>
<h2><img src="/img/icons/ico_doc.svg" class="titleicon" alt="Icon">{% translate documentaries %}</h2>
<p><a href="http://bitcoinfilm.org/">BitcoinFilm.org</a></p>
</div><div>
<h2><img src="/img/ico_solve.svg" class="titleicon" alt="Icon">{% translate learn %}</h2>
<h2><img src="/img/icons/ico_solve.svg" class="titleicon" alt="Icon">{% translate learn %}</h2>
<p><a href="http://letstalkbitcoin.com/">Let's Talk Bitcoin</a></p>
<p><a href="https://www.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/bitcoin/v/bitcoin-what-is-it">Khan Academy</a></p>
</div>

View file

@ -1,11 +1,14 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: secure-your-wallet
---
<h1>{% translate pagetitle %}</h1>
<p class="summarytxt">{% translate summary %}</p>
<h2><img src="/img/ico_warning.svg" class="titleicon" alt="warning">{% translate online %}</h2>
<h2><img src="/img/icons/ico_warning.svg" class="titleicon" alt="warning">{% translate online %}</h2>
<p>{% translate onlinetxt %}</p>
<h2>{% translate everyday %}</h2>

View file

@ -1,43 +1,46 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: support-bitcoin
---
<h1>{% translate pagetitle %}</h1>
<p class="summarytxt">{% translate summary %}</p>
<h2><img class="titleicon" src="/img/ico_multi.svg" alt="Icon" />{% translate use %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_multi.svg" alt="Icon" />{% translate use %}</h2>
<p>{% translate usetxt %}</p>
<h2><img class="titleicon" src="/img/ico_network.svg" alt="Icon" />{% translate node %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_network.svg" alt="Icon" />{% translate node %}</h2>
<p>{% translate nodetxt %}</p>
<h2><img class="titleicon" src="/img/ico_mining.svg" alt="Icon" />{% translate mining %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_mining.svg" alt="Icon" />{% translate mining %}</h2>
<p>{% translate miningtxt %}</p>
<h2><img class="titleicon" src="/img/ico_translate.svg" alt="Icon" />{% translate translate %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_translate.svg" alt="Icon" />{% translate translate %}</h2>
<p>{% translate translatetxt %}</p>
<p><a href="https://www.transifex.com/projects/p/bitcoin/">Bitcoin Core</a> - <a href="https://www.transifex.com/projects/p/bitcoinorg/">Bitcoin.org</a> - <a href="https://en.bitcoin.it/wiki/Bitcoin.it_Wiki">Bitcoin Wiki</a> - <a href="https://www.transifex.com/projects/p/bitcoin-wallet/">Bitcoin Wallet (Android)</a> - <a href="http://translate.multibit.org/">MultiBit</a> - <a href="https://crowdin.com/project/electrum">Electrum</a> - <a href="https://github.com/hivewallet/hive-osx/wiki/I18n-guide">Hive</a></p>
<h2><img class="titleicon" src="/img/ico_conf.svg" alt="Icon" />{% translate develop %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_conf.svg" alt="Icon" />{% translate develop %}</h2>
<p>{% translate developtxt %}</p>
<h2><img class="titleicon" src="/img/ico_donate.svg" alt="Icon" />{% translate donation %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_donate.svg" alt="Icon" />{% translate donation %}</h2>
<p>{% translate donationtxt %}</p>
{% case page.lang %}
{% when 'bg' or 'tr' %}
<h2><img class="titleicon" src="/img/ico_law.svg" alt="Icon" />{% translate foundation %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_law.svg" alt="Icon" />{% translate foundation %}</h2>
<p>{% translate foundationtxt %}</p>
{% else %}
<h2><img class="titleicon" src="/img/ico_law.svg" alt="Icon" />{% translate nonprofit %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_law.svg" alt="Icon" />{% translate nonprofit %}</h2>
<p>{% translate nonprofittxt %}</p>
{% endcase %}
<h2><img class="titleicon" src="/img/ico_spread.svg" alt="Icon" />{% translate spread %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_spread.svg" alt="Icon" />{% translate spread %}</h2>
<p>{% translate spreadtxt %}</p>
<h2><img class="titleicon" src="/img/ico_wiki.svg" alt="Icon" />{% translate wiki %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_wiki.svg" alt="Icon" />{% translate wiki %}</h2>
<p>{% translate wikitxt %}</a>
<h2><img class="titleicon" src="/img/ico_help.svg" alt="Icon" />{% translate help %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_help.svg" alt="Icon" />{% translate help %}</h2>
<p>{% translate helptxt %}</p>

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: vocabulary

View file

@ -1,27 +1,30 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
id: you-need-to-know
---
<h1>{% translate pagetitle %}</h1>
<p class="summarytxt">{% translate summary %}</p>
<h2><img class="titleicon" src="/img/ico_key.svg" alt="Icon" />{% translate secure %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_key.svg" alt="Icon" />{% translate secure %}</h2>
<p>{% translate securetxt %}</p>
<h2><img class="titleicon" src="/img/ico_market.svg" alt="Icon" />{% translate volatile %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_market.svg" alt="Icon" />{% translate volatile %}</h2>
<p>{% translate volatiletxt %}</p>
<h2><img class="titleicon" src="/img/ico_irreversible.svg" alt="Icon" />{% translate irreversible %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_irreversible.svg" alt="Icon" />{% translate irreversible %}</h2>
<p>{% translate irreversibletxt %}</p>
<h2><img class="titleicon" src="/img/ico_anon.svg" alt="Icon" />{% translate anonymous %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_anon.svg" alt="Icon" />{% translate anonymous %}</h2>
<p>{% translate anonymoustxt %}</p>
<h2><img class="titleicon" src="/img/ico_fast.svg" alt="Icon" />{% translate instant %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_fast.svg" alt="Icon" />{% translate instant %}</h2>
<p>{% translate instanttxt %}</p>
<h2><img class="titleicon" src="/img/ico_lab.svg" alt="Icon" />{% translate experimental %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_lab.svg" alt="Icon" />{% translate experimental %}</h2>
<p>{% translate experimentaltxt %}</p>
<h2><img class="titleicon" src="/img/ico_invoice.svg" alt="Icon" />{% translate tax %}</h2>
<h2><img class="titleicon" src="/img/icons/ico_invoice.svg" alt="Icon" />{% translate tax %}</h2>
<p>{% translate taxtxt %}</p>

2
_translations/COPYING Normal file
View file

@ -0,0 +1,2 @@
The files in this folder are licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
id: alerts
@ -6,7 +9,7 @@ title: Network status and alerts - Bitcoin
---
<link rel="alternate" type="application/rss+xml" href="/en/rss/alerts.rss" title="Bitcoin network status and alerts">
<div class="alerttext">
<h1>Network status and alerts<a type="application/rss+xml" href="/en/rss/alerts.rss"><img src="/img/icon_rss.svg" alt="rss" class="rssicon"></a></h1>
<h1>Network status and alerts<a type="application/rss+xml" href="/en/rss/alerts.rss"><img src="/img/icons/icon_rss.svg" alt="rss" class="rssicon"></a></h1>
{% if site.STATUS == 0 %}
<div class="alertstatusinactive">There is no ongoing event on the Bitcoin network.</div>
{% else %}

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
id: developer-documentation
@ -10,18 +13,18 @@ title: "Developer Documentation - Bitcoin"
<p class="summary">Find useful resources, guides and reference material for developers.</p>
<div class="docreference">
<a href="/en/developer-guide"><img src="/img/main_ico_compass.svg" alt="icon"><span>Developer Guide</span><span>(How Bitcoin works)</span></a>
<a href="/en/developer-reference"><img src="/img/main_ico_guide.svg" alt="icon"><span>Developer Reference</span><span>(Specifications and APIs)</span></a>
<a href="/en/developer-examples"><img src="/img/main_ico_hash.svg" alt="icon"><span>Developer Examples</span><span>(Examples you can use)</span></a>
<a href="/en/developer-guide"><img src="/img/icons/main_ico_compass.svg" alt="icon"><span>Developer Guide</span><span>(How Bitcoin works)</span></a>
<a href="/en/developer-reference"><img src="/img/icons/main_ico_guide.svg" alt="icon"><span>Developer Reference</span><span>(Specifications and APIs)</span></a>
<a href="/en/developer-examples"><img src="/img/icons/main_ico_hash.svg" alt="icon"><span>Developer Examples</span><span>(Examples you can use)</span></a>
</div>
<div class="resources">
<div><div>
<h2><img src="/img/ico_blockchain.svg" class="titleicon" alt="Icon">Block Chain</h2>
<h2><img src="/img/icons/ico_blockchain.svg" class="titleicon" alt="Icon">Block Chain</h2>
<p><a href="/en/developer-guide#block-chain">Block Chain Guide</a></p>
<p><a href="/en/developer-reference#block-chain">Block Chain Reference</a></p>
</div><div>
<h2><img src="/img/ico_micro.svg" class="titleicon" alt="Icon">Transactions</h2>
<h2><img src="/img/icons/ico_micro.svg" class="titleicon" alt="Icon">Transactions</h2>
<p><a href="/en/developer-guide#transactions">Transactions Guide</a></p>
<p><a href="/en/developer-reference#transactions">Transactions Reference</a></p>
<p><a href="/en/developer-examples#transactions">Transaction Examples</a></p>
@ -29,14 +32,14 @@ title: "Developer Documentation - Bitcoin"
</div>
<div>
<div>
<h2><img src="/img/ico_contract.svg" class="titleicon" alt="Icon">Contracts</h2>
<h2><img src="/img/icons/ico_contract.svg" class="titleicon" alt="Icon">Contracts</h2>
<p><a href="/en/developer-guide#contracts">Contracts Guide</a></p>
<div class="resourcesext">
<p><a href="https://en.bitcoin.it/wiki/Contracts">More Contracts</a> - Wiki</p>
<p><a href="https://bitcoinj.github.io/working-with-micropayments">Micropayment Channel Example</a> - bitcoinj</p>
</div>
</div><div>
<h2><img src="/img/ico_key.svg" class="titleicon" alt="Icon">Wallets</h2>
<h2><img src="/img/icons/ico_key.svg" class="titleicon" alt="Icon">Wallets</h2>
<p><a href="/en/developer-guide#wallets">Wallets Guide</a></p>
<p><a href="/en/developer-reference#wallets">Wallets Reference</a></p>
<div class="resourcesext">
@ -47,20 +50,20 @@ title: "Developer Documentation - Bitcoin"
</div>
<div>
<div>
<h2><img src="/img/ico_bill.svg" class="titleicon" alt="Icon">Payment Processing</h2>
<h2><img src="/img/icons/ico_bill.svg" class="titleicon" alt="Icon">Payment Processing</h2>
<p><a href="/en/developer-guide#payment-processing">Payment Processing Guide</a></p>
<p><a href="/en/developer-examples#payment-processing">Payment Processing Examples</a></p>
<div class="resourcesext">
<p><a href="https://github.com/bitcoin/bips/blob/master/bip-0070.mediawiki">Payment Protocol</a> - BIP70</p>
</div>
</div><div>
<h2><img src="/img/ico_conf.svg" class="titleicon" alt="Icon">Operating Modes</h2>
<h2><img src="/img/icons/ico_conf.svg" class="titleicon" alt="Icon">Operating Modes</h2>
<p><a href="/en/developer-guide#operating-modes">Operating Modes Guide</a></p>
</div>
</div>
<div>
<div>
<h2><img src="/img/ico_network.svg" class="titleicon" alt="Icon">P2P Network</h2>
<h2><img src="/img/icons/ico_network.svg" class="titleicon" alt="Icon">P2P Network</h2>
<p><a href="/en/developer-guide#p2p-network">P2P Network Guide</a></p>
<p><a href="/en/developer-reference#p2p-network">P2P Network Reference</a></p>
<p><a href="/en/developer-examples#p2p-network">P2P Network Examples</a></p>
@ -68,7 +71,7 @@ title: "Developer Documentation - Bitcoin"
<p><a href="https://en.bitcoin.it/wiki/Protocol_specification">Full Protocol Specification</a> - Wiki</p>
</div>
</div><div>
<h2><img src="/img/ico_mining.svg" class="titleicon" alt="Icon">Mining</h2>
<h2><img src="/img/icons/ico_mining.svg" class="titleicon" alt="Icon">Mining</h2>
<p><a href="/en/developer-guide#mining">Mining Guide</a></p>
<div class="resourcesext">
<p><a href="https://github.com/bitcoin/bips/blob/master/bip-0022.mediawiki">getworktemplate Fundamentals</a> - BIP22</p>
@ -79,7 +82,7 @@ title: "Developer Documentation - Bitcoin"
</div>
<div class="resourcesmore"><div>
<h2><img src="/img/ico_wiki.svg" class="titleicon" alt="Icon">Additional resources</h2>
<h2><img src="/img/icons/ico_wiki.svg" class="titleicon" alt="Icon">Additional resources</h2>
<p><a href="/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a> - Satoshi Nakamoto</p>
<p><a href="https://github.com/bitcoin/bips#readme">Bitcoin Improvement Proposals</a> - GitHub</p>
<p><a href="https://github.com/minium/Bitcoin-Spec">Bitcoin Developer Reference (working paper)</a> - Krzysztof Okupski</p>

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
id: developer-examples

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
id: developer-guide

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
id: developer-reference

View file

@ -1,4 +1,6 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
@ -8,7 +10,7 @@
<description>This RSS feed allows to follow events and alerts surrounding the Bitcoin network and software.</description>
<image>
<title>Bitcoin network status and alerts</title>
<url>https://bitcoin.org/img/logo_rss.png</url>
<url>https://bitcoin.org/img/icons/logo_rss.png</url>
<link>https://bitcoin.org/en/alerts</link>
</image>
{% filter_for p in site.pages reversed sort_by:date category:alert %}

View file

@ -1,4 +1,6 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
@ -8,7 +10,7 @@
<description>This RSS feed allows to follow Bitcoin events and conferences.</description>
<image>
<title>Bitcoin conferences and events</title>
<url>https://bitcoin.org/img/logo_rss.png</url>
<url>https://bitcoin.org/img/icons/logo_rss.png</url>
<link>https://bitcoin.org/en/events</link>
</image>
{% filter_for p in site.conferences sort_by:date %}

View file

@ -1,4 +1,6 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
@ -8,7 +10,7 @@
<description>This RSS feed allows to follow Bitcoin Core new releases.</description>
<image>
<title>Bitcoin Core releases</title>
<url>https://bitcoin.org/img/logo_rss.png</url>
<url>https://bitcoin.org/img/icons/logo_rss.png</url>
<link>https://bitcoin.org/en/version-history</link>
</image>
{% filter_for p in site.pages reversed sort_by:date category:release %}

View file

@ -1,4 +1,7 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
id: version-history
@ -6,7 +9,7 @@ title: Bitcoin Core version history
---
<link rel="alternate" type="application/rss+xml" href="/en/rss/releases.rss" title="Bitcoin Core releases">
<div class="versiontext">
<h1>Bitcoin Core version history<a type="application/rss+xml" href="/en/rss/releases.rss"><img src="/img/icon_rss.svg" alt="rss" class="rssicon"></a></h1>
<h1>Bitcoin Core version history<a type="application/rss+xml" href="/en/rss/releases.rss"><img src="/img/icons/icon_rss.svg" alt="rss" class="rssicon"></a></h1>
<ul>
{% filter_for p in site.pages reversed sort_by:date category:release %}
<li>

3
img/brand/COPYING Normal file
View file

@ -0,0 +1,3 @@
The files inside this folder may be subjected to copyright restrictions. The
use of these materials is not permitted unless otherwise specified by their
copyright owner.

2
img/dev/COPYING Normal file
View file

@ -0,0 +1,2 @@
The files in this folder are licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.

3
img/faq/COPYING Normal file
View file

@ -0,0 +1,3 @@
The files inside this folder may be subjected to copyright restrictions. The
use of these materials is not permitted unless otherwise specified by their
copyright owner.

2
img/icons/COPYING Normal file
View file

@ -0,0 +1,2 @@
The files in this folder are licensed under the MIT License (MIT) available on
http://opensource.org/licenses/MIT.

View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 527 B

After

Width:  |  Height:  |  Size: 527 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 530 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 370 B

After

Width:  |  Height:  |  Size: 370 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 370 B

After

Width:  |  Height:  |  Size: 370 B

Before After
Before After

Some files were not shown because too many files have changed in this diff Show more