Commit graph

1944 commits

Author SHA1 Message Date
Saivann
77fd50dd41 Update da translations 2015-02-24 23:40:36 -05:00
David A. Harding
fc10efd3dc
Dev Docs: Fix Confusing Sentence About UTXO/Input Values
Reported by Nathan Wilcox (thanks!)

Closes #766
2015-02-24 16:25:48 -05:00
Saivann
5544ab22e1 Drop cancelled event 2015-02-24 00:28:36 -05:00
Saivann
228344fb0d Update events (fixes #769) 2015-02-24 00:21:16 -05:00
Saivann
74ad2acf51 Fix date in Turkish string 2015-02-23 21:39:19 -05:00
Saivann
152730da09 Update tr translations 2015-02-23 21:37:27 -05:00
anduck
42072eae70
Fix typos "Bicoin" -> "Bitcoin" 2015-02-23 19:23:12 -05:00
David A. Harding
09a13aac4f
Merge pull 761: Update some images 2015-02-23 15:01:27 -05:00
David A. Harding
bac9de664c
Merge pulls #711, #752, #758
* Pull #711: Add Basic "How To Run A Full Node" Page
* Pull #752: Revert "Drop good tor privacy score for mycelium"
* Pull #758: Dev Docs: Add Inline Template Plugin And Use It For RPC/REST
2015-02-23 08:49:47 -05:00
louisjc
a811c9cdb0 Update chart caption (now time independent) 2015-02-22 17:27:40 +01:00
louisjc
e9e1dbf1cf Update merchants map 2015-02-22 17:20:03 +01:00
louisjc
d0357100c8 Update price chart (2013-2015) 2015-02-21 15:39:39 +01:00
Saivann
c1b8da98d7 Merge branch 'isolatedownload' 2015-02-21 08:30:11 -05:00
David A. Harding
2c44b59d88
Dev Docs: Use Sed To Convert Tables To YAML
Run sed -i -f <this_file.sed> _includes/ref/bitcoin-core/rpcs/rpcs/* _includes/ref/bitcoin-core/rest/requests/get_* _includes/helpers/vars.md

    ## On lines that start with a pipe:
    /^|/ {
        ## Delete all table header/table body divider lines
        /|----/d;

        ## Escape all double quotes
        s/"/\\"/g;

        ## Replace lines that look like NTPD headers with a itemplate start block
        s/^| Name *| Type.*/{% itemplate ntpd1 %}/;

        ## Delete extraneous whitespace
        s/ *|/|/g;

        ## Replace the first pipe with "- name:" plus a start quote
        s/^| */- n: "/;

        ## Replace the remaining pipes, starting each one with a newline and two spaces
        s/| */"\n  t: "/;
        s/| */"\n  p: "/;
        s/| */"\n  d: "/;

        ## Add a close quote and an empty line after the last list item
        ## built from a single table row, except for the header row. This
        ## improves readability/maintainability
        /[^}]$/s/$/"\n/;
    }

    ## Replace the old table class with the itemplate close tag
    s/{:.ntpd}/{% enditemplate %}/
2015-02-20 15:39:10 -05:00
David A. Harding
79fd671e90
Add New Inline-Template Plugin
Also add inline template for RPC and REST tables
2015-02-20 15:38:53 -05:00
David A. Harding
94c1166470
Merge pull #736: Dev Docs: Add Section About Headers-First IBD 2015-02-20 08:28:27 -05:00
David A. Harding
f61f66d326
Releases: Link To Full Node Page From Download Page 2015-02-19 19:04:12 -05:00
David A. Harding
91bd921d3e Full Node Howto: Mention Screensaver Slowdown
Mention that many OSes enter a low-power mode that's bad for Bitcoin
when their screensavers activate.

Closes #698
2015-02-19 18:29:05 -05:00
David A. Harding
83d02bdbca Full Node Howto: Merge Ubuntu Instructions Together
Suggested by Saivann Carignan (thanks!)
2015-02-19 18:29:05 -05:00
David A. Harding
4488c4dc48 Full Node Howto: Mention More Hours Better
Thanks Jameson Lopp and Saivann Carignan!
2015-02-19 18:29:05 -05:00
David A. Harding
1ba00657ae Full Node Howto: Add Windows 7, Ubuntu Server, and Other Linux
* Added instructions for Windows 7, but only for Bitcoin Core GUI. I
  added a stub for anyone who wants to write instructions for using the
  daemon on Windows.

* Added instructions for Ubuntu 14.04 LTS Server, but only for Bitcoin
  core daemon. I assume most server users run headless.

* Added instructions for Other Linux Distributions, for both GUI and
  daemon. Hopefully the instructions are general enough to apply to most
  distributions but specific enough that they actually help readers.

* Added a stub for Windows 8.1 as I don't have access to a copy, and all
  the pay-per-hour Windows VPSes I can find run some version of Windows
  Server. (I have the same problem with OS X.)

* Hid some subsections in the table of contents: I found having
  subsections named "Bitcoin Core GUI" and "...Daemon" within multiple
  sections distracting, so I hid them in the TOC.

* Added basic PGP verification instructions: I didn't try to explain PGP
  to newbies, but I did provide instructions useful to people who have
  used PGP before.  These instructions are currently displayed in the
  Windows 7 and Other Linux Distributions sections (where users download
  from Bitcoin.org).

* Made sure the end of each install section points to the Network
  Configuration section so users open port 8333.

Closes #410
2015-02-19 18:29:05 -05:00
David A. Harding
b29923a533 Full Node Howto: Add Port 8333 Instructions, Plus Corrections
Made numerous corrections suggestion by Saivann Carignan (thanks!),
including:

* Replaced GUI autostart instructions with using Bitcoin Core GUI's own
  autostart option.

* Described minimum upload speed requirements.

* Described metered bandwidth requirements. Also added a warning about
  exceeding periodic bandwidth limits.

* List items that ended with complete sentences (subject+predicate)
  received terminal punctuation. Did not terminally punctuate sentence
  fragments (sentences missing a subject or predicate).

Also suggested by Saivann, I added an extended section describing
setting up port forwarding on home routers and opening firewall ports to
allow inbound connections to port 8333.
2015-02-19 18:29:05 -05:00
David A. Harding
3c673cc338 Add Basic "How To Run A Full Node" Page
Add basic page with some general information plus instructions for
Ubuntu 14.10.

Change a link on the participate page to point to the full node page.

This page is being added as English-only for now.  I figure we can
convert it into a translation template after we have instructions for
Windows and Mac OS X, and after the instrutions have actually been
tested with the released version of Bitcoin Core 0.10.0.  (These Ubuntu
instructions were tested with RC3 and the old Ubuntu packaging.)
2015-02-19 18:29:05 -05:00
merland
0dfed56245
Grammar fix. 'As many of them' needs an 'as' part to be complete, but 'any amount' is more simple and clear, I think. 2015-02-19 18:16:06 -05:00
Saivann
20d456204e Reduce future changes to the javascript code of the download page
Drop unnecessary code used in other pages
Load download links from links already on the page
2015-02-19 09:42:53 -05:00
David A. Harding
3d7ba837bb
Dev Docs: Fix a->an typo (thanks Saïvann!) 2015-02-19 07:22:17 -05:00
David A. Harding
7fed5ea0bd
Revert "Drop good tor privacy score for mycelium"
This reverts commit bf452cdc17.

Conflicts:
	_templates/choose-your-wallet.html
2015-02-18 11:34:15 -05:00
David A. Harding
297afbedc9
Merge pull #750: fixed grammar error: have -> has 2015-02-18 08:28:49 -05:00
Saivann
f3580f553e Fix link to release signatures 2015-02-17 19:12:15 -05:00
Saivann
c7bccaa344 Update download directory prefix (fixes #748) 2015-02-17 18:57:41 -05:00
merland
49013b66fc fixed grammar error: have -> has 2015-02-17 21:00:17 +01:00
Saivann
9ac6bdd463
Downloads: Updates for v0.10.0
* Set filenames once in the download page

* Edit download page for new or updated files

* Add link to the source code, GitHub and torrent download

* Replace long sync instructions by short instructions to run a full node on the download page

Commit originated by Saïvann Carignan and updated by Dave Harding.
2015-02-16 03:03:20 -05:00
David A. Harding
e04cd9c792
Merge pull #742: Site Docs: Stregthen Appeal For Volunteers In README 2015-02-12 20:17:39 -05:00
David A. Harding
69999c39d5
Events: The State Of Digital Money (CA, USA) 2015-02-11 10:12:13 -05:00
David A. Harding
ac43f09e26
Merge Pull #738: Add links to givebtc.org 2015-02-11 10:09:31 -05:00
David A. Harding
3173f8fe42
Event: Coin Debut At SXSW (Austin, TX, USA)
Closes #744
2015-02-10 15:24:17 -05:00
Saivann
8308d27c2a Merge branch 'airbitz' 2015-02-10 11:15:30 -05:00
David A. Harding
f5d627fea8
Events: Add Bitcoin Conference (Russia|Prague) 2015
Closes #743 (thanks Voffkas)
2015-02-10 09:32:13 -05:00
David A. Harding
5d4968ee94
Site Docs: Mention Events In README Preface (Thanks Saïvann!) 2015-02-09 18:42:24 -05:00
David A. Harding
f0002d26fb
Site Docs: Stregthen Appeal For Volunteers In README
This suggests specific tasks for new volunteers and links directly to
relevant pages or README sections.

We also advise submitters of new wallets to read the requirements list.
2015-02-09 16:42:47 -05:00
Saivann
9bc5f0bef0 Merge branch 'crowdfunding' 2015-02-09 10:36:44 -05:00
David A. Harding
d0432319b8
Events: Add Pirate Payments Systems, Cryptocurrencies... (California, US)
Closes: #741
2015-02-08 12:04:00 -05:00
Saivann
02e444e7f2 Fix a small mistake (thanks harding!) 2015-02-07 11:22:18 -05:00
Saivann
60a2fd1f3a Update crowdfunding text and links 2015-02-07 10:24:01 -05:00
David A. Harding
e840e7eefb
Events: Add Bitcoin Wednesday (Amsterdam, NL)
Closes #739
2015-02-07 08:46:09 -05:00
Saivann
385b096a74 Merge remote-tracking branch 'remotes/harding/re-add-circle' 2015-02-06 13:29:14 -05:00
Saivann
095c9fdf72 Add links to givebtc.org (fixes #734) 2015-02-05 21:27:53 -05:00
David A. Harding
72cc5f7f9e
Dev Docs: Add Section About Headers-First IBD
* Add flowchart illustration to blocks-first section to match new
  headers-first flowchart

* Add new headers-first initial block download (IBD) section

* Revise Block Broadcasting section

* Add paragraph about orphan block handling in headers-first to the
  Orphan Blocks section
2015-02-05 16:16:46 -05:00
Saivann
7dcf67d5a8 Merge remote-tracking branch 'remotes/louisjc/master' 2015-02-04 11:49:06 -05:00
louisjc
98c6f208e2 Fix "bit" French translation 2015-02-04 17:15:15 +01:00