Commit Graph

165 Commits

Author SHA1 Message Date
Will Binns
584e891622 rubocop: Remove useless assignments 2020-04-21 11:17:31 -06:00
Will Binns
de0bcb6ce1 rubocop: Denote unused method arguments 2020-04-21 11:17:31 -06:00
Will Binns
282bfd16d7 rubocop: Denote unused block arguments 2020-04-21 11:17:31 -06:00
Will Binns
bbbc8bacf1 rubocop: Avoid shadowing variables 2020-04-21 11:17:31 -06:00
Will Binns
0612d9ee37 rubocop: Drop 'in-line template' conditional 2020-04-21 11:17:31 -06:00
Will Binns
0d453a8e81 rubocop: Update deprecated class methods 2020-04-21 11:17:31 -06:00
Will Binns
7d604c17aa rubocop: Parenthesize method argument 2020-04-21 11:17:30 -06:00
Will Binns
87d07e80d1 rubocop: Remove trailing whitespace 2020-04-21 11:17:30 -06:00
Will Binns
4c1cdc8ab8 rubocop: Resolve indentation inconsistencies 2020-04-21 11:17:30 -06:00
Will Binns
921e1e8745 rubocop: Remove extra space from parenthesis 2020-04-21 11:17:30 -06:00
Will Binns
3c4ad630cb rubocop: Add missing space within hash literal 2020-04-21 11:17:30 -06:00
Will Binns
a3d721fc37 rubocop: Ensure proper spacing within block brackets 2020-04-21 11:17:30 -06:00
Will Binns
bb4384e21c rubocop: Add space at the beginning of a block 2020-04-21 11:17:30 -06:00
Will Binns
27fd55c69e rubocop: Ensure there are spaces surrounding operators 2020-04-21 11:17:30 -06:00
Will Binns
be1d9eafe5 rubocop: Ensure there are no spaces in block parameters 2020-04-21 11:17:29 -06:00
Will Binns
a695caded4 rubocop: Ensure there is no space between '!' and argument 2020-04-21 11:17:29 -06:00
Will Binns
813568b74f rubocop: Ensure presence of spaces after commas 2020-04-21 11:17:29 -06:00
Will Binns
61c2a62f84 rubocop: Align operands 2020-04-21 11:17:29 -06:00
Will Binns
191231f557 rubocop: Indent relative to receiver 2020-04-21 11:17:29 -06:00
Will Binns
1726f03489 rubocop: Move block parameters to same line as beginning of block 2020-04-21 11:17:29 -06:00
Will Binns
9b86998e35 rubocop: Revise comment syntax 2020-04-21 11:17:29 -06:00
Will Binns
bde3080333 rubocop: Add missing spaces 2020-04-21 11:17:29 -06:00
Will Binns
b647a60d26
rubocop: Remove extra spaces 2020-04-21 11:17:13 -06:00
Will Binns
ce38dbe3e7 rubocop: Remove unnecessary line breaks 2020-04-21 06:43:00 -06:00
Will Binns
38ce5741c9 rubocop: Add line breaks 2020-04-21 06:43:00 -06:00
Will Binns
91042a0c0d rubocop: Fix alignment 2020-04-21 06:43:00 -06:00
Igor Kuzmenko
c310832313 WIP #1723: Reworked transformation of site.devsearches 2017-11-23 00:10:51 +01:00
Igor Kuzmenko
819368a991 WIP #1723: Adapting devsearch.js to new glossary structure 2017-11-21 23:59:11 +01:00
Igor Kuzmenko
153ea3ba65 Refactors glossary page entries and glossary.rb. WIP #1723 2017-11-18 14:43:16 +02:00
Igor Kuzmenko
a7f5a1d83c Translates one glossary entry to test translated glossary generation 2017-11-17 11:16:17 +02:00
Igor Kuzmenko
55bbb6bb73 Translates breadcrumbs, subhead links, adds translation disclaimer. WIP: #1723 2017-11-13 12:43:22 +02:00
Igor Kuzmenko
e136c811cc Implement a fallback for untranslated part. WIP #1723 2017-11-09 23:33:25 +02:00
Igor Kuzmenko
fcb67cf236 WIP: Refactoring documentation files, adds templating for index files 2017-11-03 19:19:38 +02:00
Igor Kuzmenko
9214a752fd WIP: Restructures devdocs and moves fragment to _includes 2017-11-03 02:41:30 +02:00
Igor Kuzmenko
0fa2994b8b WIP: Adds Ukrainian translations for testing #1723 2017-11-03 00:58:29 +02:00
Igor Kuzmenko
337e17069e WIP: Refactoring documentations for #1723 2017-10-31 00:15:12 +02:00
Igor Kuzmenko
444d4cf4d7 Fixes an issue with URLs like /web/web/ 2017-07-31 22:44:35 +02:00
Igor Kuzmenko
4476af6a9f Adds empty title test to Makefile and fixes titles in generated wallet pages 2017-07-19 10:03:09 +02:00
Igor Kuzmenko
43ec650bd4 Adds support for translation of platform pages 2017-07-18 17:49:58 +02:00
Igor Kuzmenko
d206471809 Updating choose-your-wallet. Adds wallets page generator with translations. 2017-07-18 15:21:36 +02:00
Igor Kuzmenko
6e7b5eb96e Adds wallet page generator 2017-07-18 14:24:23 +02:00
Igor Kuzmenko
f6c0429ddb Removed trailing space 2017-07-15 16:24:56 +02:00
David A. Harding
bb8e339b85
Layout: remove less CSS engine plugin & references 2017-06-23 11:49:28 -04:00
David A. Harding
a40fb73dab
Layout: render CSS with both "less" and "scss"
This commit renders the same CSS files using both the "less" and "scss"
CSS generation engines so that the results may be compared.  This is a
comparison script:

    old_main_css=$( grep -rl normalize.css _site/*.css )
    new_main_css=_site/css/main.css
    old_rtl_css=$( grep 'Language specific styles that override default' -rl _site/*.css )
    new_rtl_css=_site/css/rtl.css

    (
      diff -ub $old_main_css $new_main_css
      diff -ub $old_rtl_css $new_rtl_css
    )
2017-06-23 11:49:28 -04:00
David A. Harding
b9e114efe8
Build: allow repeated rebuilding in Jekyll Preview mode
The events and contributor plugins both monkey patched the `site`
object.  This worked fine when they were loaded once per site build, but
with Jekyll 3.0 automatic site rebuilding in preview and watch modes,
this applied the monkey patch recursively, causing the program to halt.

With this commit, the monkey patching should only occur once per run.
2017-06-23 11:46:20 -04:00
Will Binns
5472d7ebea Merge pull request #1609 from harding/chain-size-in-translation-string
Translations: variablize chain size in translation strings
2017-06-17 19:21:51 -06:00
David A. Harding
a0fa907b4a
Events plugin: stop requesting events from Meetup.com
Closes #1617 (Meetup.com events no longer display)
2017-06-03 08:52:21 -04:00
David A. Harding
29ede93b27
Translations: put chain size in l11n strings 2017-05-31 04:26:15 -04:00
Will Binns
9b93684599
templates: Drop avatar 2017-03-07 10:12:56 -06:00
Will Binns
77fd49b107
contributors: Fix broken test
GitHub recently made a change on their end to the URLs with which
profile images are stored. As a result, this has caused the profile
images on the About Us page to break, and tests to fail.

This updates the URL to what GitHub has switched to, in order to resolve
the issue.
2017-03-07 09:11:24 -06:00