Commit graph

2530 commits

Author SHA1 Message Date
David A. Harding
7d98f798ab
Upgrade to Jekyll 3.0
Gemfile:

  - Upgrade to Jekyll 3.x (3.0.1 tested).  This brings several new
    features I want to use, most notably *collections* which allows us
    to add blog-like collections. I've converted the `_releases` and
    `_alerts` pages into collections, although their plugins are
    maintained to handle the Download and Active Alert features.

  - Upgrade to latest Kramdown.

  - Lock Less at 2.4.0.  This prevents breaking our Less plugin.  Jekyll
    3.x provides native support for SCSS, so we may want to switch to
    that in time.

  - Lock HTML Proofer at 2.1.0.  The most recent version was taking
    forever to check our pages (I never actually got it to complete).
    I'll look into it when I get more time.

Makefile:

  - New `make clean` command.  Jekyll 3.x by default attempts to do
    incremental rebuilds.  The new `jekyll clean` command cleans up the
    metadata necessary for than so that a full build is performed, and
    this new `make clean` command is a wrapper around it so that we
    automatically do full rebuilds in the relevant cases.  Note: our
    plugins aren't fully compatible with the incremental rebuilds, but
    I'd like to fix that in the future.

  - Remove WEBrick hack to enable previewing with default URL paths (/
    instead of /index.html).

  - Filter out compliants from Rouge

README.md:

  - Now that Alerts (_alerts) are part of a collection, the file names
    are no longer parsed for dates, so instructions on adding the date
    to the YAML metadata have been added.

_alerts/*:

  - Now that alerts are part of a collection, the file names are no
    longer parsed to provide dates, so a `date:` field has been added to
    the YAML metadata.

_config.yml:

  - Some variables renamed per upgrade instructions.

  - Switched from old default syntax highlighter Pygments to new default
    Rouge.  I tried to use Rouge options to keep new output as similar
    to old output as possible to making diffing easy, but Rouge adds
    extra CSS class info.

  - Move `_alerts` and `_releases` into Jekyll 3.x "collections", which
    provide the organizational features we were using plugins to
    manange.  I haven't removed the old plugins because we still use
    some of their features (alerts.rb provides active issue and banner
    features; releases.rb provides info to Download page)

  - _layouts/* can no longer provide default global metadata; that is now
    provided in the new `defaults:` section in _config.yml.

_layouts/*:

  - Default metadata can no longer be provided in the layout files for
    collections, so I've removed it and left a message to see
    _config.yml.

_plugins/*:

  - Remove filter_for.rb. It's completely broken on Jekyll 3.x because
    of changes to Liquid which prevent adding new arguments to the
    inherited Liquid::For class. Existing uses of filter_for have been
    migrated to built-in for loops prefaced by sorts.

  - Remove remove-html-extension.rb: at it said in the comments, this
    was a temporary hack to get us to Jekyll 3.0.

_releases/*:

  - Rename all the files: prefix a v to the file name so the output html
    (e.g. v10.0.0.html) is the same as the source filename (e.g.
    v10.0.0.md).  This is necessary to migrate them to a Jekyll collection.

  - Remove %v from titles: we have to explicitly set the title, like we
    used to.  Again required for migration to collections.

_templates/events.html & en/rss/events.rss:

  - Sort events by date and then loop with regular for loop rather than
    filter_for

en/alerts.html & en/rss/alerts.rss:

  - Sort alerts by date and then loop with regular for loop rather than
    filter_for

en/bitcoin-core/index.md & en/version-history.html & en/rss/releases.rss:

  - Sort alerts by date and then loop with regular for loop rather than
    filter_for
2016-01-06 23:09:56 -05:00
David A. Harding
02f72f778c
Capacity Increases: add/remove signatures
- Removed one signature per request
- Add several new ones
- Haven't figured out how to handle company sigs yet
2016-01-06 09:49:52 -05:00
David A. Harding
4505da13b0
Update events
Closes #1162
Closes #1143
Closes #1152
Closes #1182
2016-01-05 18:32:36 -05:00
David A. Harding
65669e25f6
Merge pull 1164: Add note about future traceability to privacy concerns 2016-01-05 13:30:14 -05:00
David A. Harding
bf0071a6e0
Capacity Increases Statement/FAQ: add Italian translation
- Moved files to correct directory
- Added links from the English versions to the Italian ones
- Linked the Italian statement to the Italian FAQ

Rebased-from: d264ac1571e39577e78aac45109f746447607e37
Closes: #1177
2016-01-05 11:39:46 -05:00
Gabriele Domenichini
6ba9109d84 Typos, links fixed and italian language flowing better. 2016-01-05 11:24:11 -05:00
Gabriele Domenichini
344b1104c1 Translated bitcoin capacity-increases-FAQ.md in italian
Some constructions in italian don't work so well. I have tried to
expose the concept as best as I colud remaining adherent to the
original text.
2016-01-05 11:24:11 -05:00
Gabriele Domenichini
90a26872c2 copyright license untranslated
And links to other languages added
2016-01-05 11:24:11 -05:00
gabridome
1c85343e5b Create capacity-increases.md
Thank you for the opportunity to contribute. Please feel free to tell us if we have to follow particular procedures other than those followed by this document (fork of the repository + pull request). Tell us also if it's ok to create this branch
2016-01-05 11:24:11 -05:00
David A. Harding
8f638b55b5
Merge pull #1184: Capacity FAQ Chinese translation 2016-01-05 10:42:59 -05:00
David A. Harding
5a4aec0cc5
Capacity Increases FAQ: link to Chinese versions 2016-01-05 10:42:10 -05:00
David A. Harding
e3e72b8764
Merge pulls #1187 and #1188
- 1187: Core: mention separation of concerns from Bitcoin.org
- 1188: Updated requirements in full-node.md
2016-01-05 10:19:21 -05:00
Johnson Lau
c343d5f5b3 Formatting 2016-01-05 23:09:08 +08:00
Johnson Lau
d59b8fcc1c Merge remote-tracking branch 'refs/remotes/bitcoin-dot-org/master' into capacity-increases
# Conflicts:
#	zh_CN/bitcoin-core/capacity-increases.md
#	zh_TW/bitcoin-core/capacity-increases.md
2016-01-01 01:32:28 +08:00
Johnson Lau
d45da93163 Minor revision 2015-12-31 23:57:35 +08:00
Jorgeminator
a1c2715e28 Merge pull request #1 from harding/core-requirements
Full node guide: use site vars for chain size
2015-12-30 00:13:44 +02:00
David A. Harding
8d36844396
Full node guide: use site vars for chain size
Also updates the various Bitcoin Core-related vars.
2015-12-29 10:36:18 -05:00
Jorgeminator
bc8ad6e494 Update full-node.md
Updated disk space and bandwidth requirements due to blockchain growth.
2015-12-29 16:05:04 +02:00
Johnson Lau
40296462c5 Sync zh_TW with zh_CN 2015-12-29 16:12:01 +08:00
David A. Harding
9f94bce8c4 Core: mention separation of concerns from Bitcoin.org 2015-12-29 01:24:50 -05:00
Johnson Lau
704ed96890 Further proof read 2015-12-29 12:10:01 +08:00
Johnson Lau
151a9b8b26 Merge pull request #1 from danielsocials/capacity-increases-cn
update some word to make translation more accurate
2015-12-29 11:57:19 +08:00
daniel
128de7ecff update some word to make translation more accurate 2015-12-29 10:44:02 +08:00
David A. Harding
51a5e1c829
README: Apple reviewers no longer needed (Craig's got it covered) 2015-12-28 14:59:46 -05:00
Johnson Lau
626262243f Capacity FAQ Chinese translation 2015-12-29 00:23:09 +08:00
Cøbra
a37c4873e1
Sign statement
Sign statement
2015-12-28 06:02:57 +00:00
Cøbra
507a578c83 Update about page
Update domain owners list
2015-12-27 17:15:44 +00:00
David A. Harding
9541371587
Merge pull #1149: Keepkey 2015-12-27 11:56:15 -05:00
Cøbra
7d1cdd9465 Merge pull request #1178 from Cobra-Bitcoin/remove-coinbase
Remove Coinbase from the "Choose your Wallet" page
2015-12-27 16:45:31 +00:00
Cøbra
faa6026398 Remove Coinbase
Remove Coinbase from the choose your wallet page.
2015-12-27 01:58:54 +00:00
Cøbra
06e41b9e5a Merge remote-tracking branch 'refs/remotes/bitcoin-dot-org/master' 2015-12-27 01:53:10 +00:00
David A. Harding
cc79a1ee7d
Capacity increases FAQ: add links 2015-12-23 18:44:56 -05:00
David A. Harding
4f906e43fe
Capacity increases FAQ: fix typos reported by Dooglus (thanks!) 2015-12-22 21:45:06 -05:00
David A. Harding
f16634a6b0
Capacity increases: update Chinese translations
Translation by jl2012
2015-12-22 21:23:30 -05:00
David A. Harding
0934026778
Add capacity increses FAQ 2015-12-22 19:00:58 -05:00
David A. Harding
f394135bf0
Capacity increases: move FAQ mention to near top 2015-12-22 12:13:37 -05:00
David A. Harding
3896ad0784
Capacity increases: add chinese translations (jl2012) 2015-12-22 11:45:17 -05:00
David A. Harding
55c21fe8f9
Capacity increases: add signatures 2015-12-22 08:45:29 -05:00
David A. Harding
ef21d830ca
Capacity increases: new sigs & link from Bitcoin Core main page 2015-12-21 18:38:51 -05:00
David A. Harding
2a9d7e8d9a
Capacity increases: add signature 2015-12-21 16:47:45 -05:00
David A. Harding
20fe0674da Capacity increases: add signatures 2015-12-21 16:04:52 -05:00
David A. Harding
f95fdf2929 Capaticy increase: add signatures and ref to future FAQ 2015-12-21 15:41:26 -05:00
David A. Harding
5a8763d84c Capacity increases: add signatures 2015-12-21 15:16:20 -05:00
David A. Harding
47ceeb5dff capacity increases: add signatures & link to PR 2015-12-21 14:49:24 -05:00
David A. Harding
a5faf19c63 Capacity increases: add signatures 2015-12-21 14:35:27 -05:00
David A. Harding
ce2e2e0766 Capacity increases: add signatures 2015-12-21 14:23:23 -05:00
David A. Harding
2fae96f604 Capacity increases: add signatures 2015-12-21 14:08:53 -05:00
David A. Harding
d1dcbf2955 Capacity increases: add signatures 2015-12-21 12:53:46 -05:00
David A. Harding
0149c933a3 Capacity increases: add signatures 2015-12-21 12:19:07 -05:00
David A. Harding
f8caef0c26 Capacity increases: add signatures 2015-12-21 11:58:13 -05:00