Disable unnecessary plugins (alerts, contrib, events, wallets)

- Remove related files to ensure successful build
This commit is contained in:
thephez 2018-01-04 12:50:04 -05:00
parent 5c22586e02
commit 89da1af838
8 changed files with 0 additions and 613 deletions

View file

@ -1,42 +0,0 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
id: alerts
title: Network status and alerts - Bitcoin
---
{% assign date_sorted_alerts = site.alerts | sort: 'date' %}
<link rel="alternate" type="application/rss+xml" href="/en/rss/alerts.rss" title="Bitcoin network status and alerts">
<h1>Network status and alerts</h1>
<p class="summary">Stay aware of network alerts by <a type="application/rss+xml" href="/en/rss/alerts.rss">subscribing to the RSS feed <img src="/img/icons/icon_rss.svg" alt="rss" class="rssicon"></a></p>
<div>
{% if site.STATUS == 0 %}
<div class="alertstatusinactive">There is no ongoing event on the Bitcoin network.</div>
{% else %}
<div class="alertstatusactive">The following network event is ongoing.</div>
<ul class="alertsactive">
{% for p in date_sorted_alerts reversed %}{% if p.active == true %}
<li>
{{ p.date | date:"%Y-%m-%d" }} - <a href="{{ p.url | replace:'.html','' }}">{{ p.title }}</a>
</li>
{% endif %}{% endfor %}
</ul>
{% endif %}
<ul class="alertsinactive">
{% for p in date_sorted_alerts reversed %}{% if p.active == false %}
<li>
{{ p.date | date:"%Y-%m-%d" }} - <a href="{{ p.url | replace:'.html','' }}">{{ p.title }}</a>
</li>
{% endif %}{% endfor %}
</ul>
<p><a href="http://getaddr.bitnodes.io/">Status and distribution of Bitcoin nodes</a></p>
<p><a href="http://bitcoinstats.com/network/propagation/">Propagation time on the network</a></p>
<p><a href="https://en.bitcoin.it/wiki/Common_Vulnerabilities_and_Exposures">Complete CVE list</a></p>
<p>Please refer to the <a href="/en/development">development</a> page if you want to report a vulnerability.</p>
</div>

View file

@ -1,28 +0,0 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
lang: en
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Bitcoin network status and alerts</title>
<link>https://bitcoin.org/en/alerts</link>
<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/icons/logo_rss.png</url>
<link>https://bitcoin.org/en/alerts</link>
</image>
{% assign date_sorted_alerts = site.alerts | sort: 'date' %}
{% for p in date_sorted_alerts reversed %}
<item>
<title>{{ p.title | htmlescape }}</title>
<link>https://bitcoin.org{{ p.url }}</link>
<guid>https://bitcoin.org{{ p.url }}</guid>
<pubDate>{{ p.date | date: "%a, %d %b %Y" }} 00:00:00 GMT</pubDate>
</item>
{% endfor %}
</channel>
</rss>

View file

@ -1,29 +0,0 @@
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
lang: en
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<!-- Note: this file is built non-deterministically -->
<channel>
<title>Bitcoin conferences and events</title>
<link>https://bitcoin.org/en/events</link>
<description>This RSS feed allows to follow Bitcoin events and conferences.</description>
<image>
<title>Bitcoin conferences and events</title>
<url>https://bitcoin.org/img/icons/logo_rss.png</url>
<link>https://bitcoin.org/en/events</link>
</image>
{% assign date_sorted_conferences = site.conferences | sort: 'date' %}
{% for p in date_sorted_conferences %}
<item>
<title>{{ p.title | htmlescape }}, {{ p.city | htmlescape }} - {{ p.country | htmlescape }}</title>
<link>{{p.link}}</link>
<guid>{{p.link}}</guid>
<pubDate>{{ p.date | date: "%a, %d %b %Y" }} 00:00:00 GMT</pubDate>
</item>
{% endfor %}
</channel>
</rss>