From 54ac09ff6e801292b913cda092fb6e27581db724 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Wed, 22 Mar 2023 10:44:03 -0400 Subject: [PATCH] Website: more rss feeds (#6579) * add rss feeds * Update rss/erc-last-call.xml Co-authored-by: Sam Wilson <57262657+SamWilsn@users.noreply.github.com> * update anchor and titles --------- Co-authored-by: Sam Wilson <57262657+SamWilsn@users.noreply.github.com> --- index.html | 3 +++ rss/erc-last-call.xml | 35 +++++++++++++++++++++++++++++++++++ rss/erc.xml | 33 +++++++++++++++++++++++++++++++++ rss/last-call.xml | 2 +- rss/nonerc-last-call.xml | 35 +++++++++++++++++++++++++++++++++++ rss/nonerc.xml | 35 +++++++++++++++++++++++++++++++++++ 6 files changed, 142 insertions(+), 1 deletion(-) create mode 100644 rss/erc-last-call.xml create mode 100644 rss/erc.xml create mode 100644 rss/nonerc-last-call.xml create mode 100644 rss/nonerc.xml diff --git a/index.html b/index.html index 31e562530352c9..a4e0d0c2de1d72 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,10 @@

EIPs Discord channel for ECH eip-editer Discord channel for Eth R&D eip-editing Discord server for discussions about proposals that impact Ethereum wallets + RSS RSS + RSS + RSS

Ethereum Improvement Proposals (EIPs) describe standards for the Ethereum platform, including core protocol specifications, client APIs, and contract standards. Network upgrades are discussed separately in the Ethereum Project Management repository.

diff --git a/rss/erc-last-call.xml b/rss/erc-last-call.xml new file mode 100644 index 00000000000000..5ba15cf2f0fbba --- /dev/null +++ b/rss/erc-last-call.xml @@ -0,0 +1,35 @@ +--- +layout: null +--- + + + + Ethereum EIPs - Last Call Review + All EIPs which are in the "last call" status, please help review these and provide your feedback! + {{ site.url }} + + {{ site.time | date_to_rfc822 }} + {% assign eips = site.pages | sort: 'eip' %} + {% for eip in eips %} + {% if eip.category == "ERC" %} + {% if eip.status == "Last Call" %} + {% capture description %} +

EIP #{{ eip.eip }} - {{eip.title }} is in Last Call status. It is authored by {{ eip.author }} and was originally created {{ eip.created }}. It is in the {{ eip.category }} category of type {{ eip.type }}. Please review and note any changes that should block acceptance.

+ {% if eip.discussions-to %} +

The author has requested that discussions happen at the following URL: {{ eip.discussions-to }}

+ {% endif %} +
+ {{ eip.content }} + {% endcapture %} + + {{ eip.title | xml_escape }} + {{ description | xml_escape }} + {{ eip.created | date_to_rfc822 }} + {{ site.url }}/{{ eip.url }} + {{ site.url }}/{{ eip.url }} + + {% endif %} + {% endif %} + {% endfor %} +
+
diff --git a/rss/erc.xml b/rss/erc.xml new file mode 100644 index 00000000000000..48f58f598c8dfd --- /dev/null +++ b/rss/erc.xml @@ -0,0 +1,33 @@ +--- +layout: null +--- + + + + Ethereum ERCs + All updates for ERCs + {{ site.url }} + + {{ site.time | date_to_rfc822 }} + {% assign eips = site.pages | sort: 'eip' %} + {% for eip in eips %} + {% if eip.category == "ERC" %} + {% capture description %} +

EIP #{{ eip.eip }} - {{eip.title }} is in the {{ eip.category }} category of type {{ eip.type }} and was just updated.

+ {% if eip.discussions-to %} +

The author has requested that discussions happen at the following URL: {{ eip.discussions-to }}

+ {% endif %} +
+ {{ eip.content }} + {% endcapture %} + + {{ eip.title | xml_escape }} + {{ description | xml_escape }} + {{ eip.created | date_to_rfc822 }} + {{ site.url }}/{{ eip.url }} + {{ site.url }}/{{ eip.url }} + + {% endif %} + {% endfor %} +
+
diff --git a/rss/last-call.xml b/rss/last-call.xml index 0d6ef29c4f9c1a..da06188ca24741 100644 --- a/rss/last-call.xml +++ b/rss/last-call.xml @@ -15,7 +15,7 @@ layout: null {% capture description %}

EIP #{{ eip.eip }} - {{eip.title }} is in Last Call status. It is authored by {{ eip.author }} and was originally created {{ eip.created }}. It is in the {{ eip.category }} category of type {{ eip.type }}. Please review and note any changes that should block acceptance.

{% if eip.discussions-to %} -

The author has requested that discussions happen at the following URL: {{ eip.discussions-to }}

+

The author has requested that discussions happen at the following URL: {{ eip.discussions-to }}

{% endif %}
{{ eip.content }} diff --git a/rss/nonerc-last-call.xml b/rss/nonerc-last-call.xml new file mode 100644 index 00000000000000..17f09393674463 --- /dev/null +++ b/rss/nonerc-last-call.xml @@ -0,0 +1,35 @@ +--- +layout: null +--- + + + + Ethereum EIPs - Last Call Review + All EIPs which are in the two-week "last call" status, please help review these and provide your feedback! + {{ site.url }} + + {{ site.time | date_to_rfc822 }} + {% assign eips = site.pages | sort: 'eip' %} + {% for eip in eips %} + {% unless eip.category == "ERC" %} + {% if eip.status == "Last Call" %} + {% capture description %} +

EIP #{{ eip.eip }} - {{eip.title }} is in Last Call status. It is authored by {{ eip.author }} and was originally created {{ eip.created }}. It is in the {{ eip.category }} category of type {{ eip.type }}. Please review and note any changes that should block acceptance.

+ {% if eip.discussions-to %} +

The author has requested that discussions happen at the following URL: {{ eip.discussions-to }}

+ {% endif %} +
+ {{ eip.content }} + {% endcapture %} + + {{ eip.title | xml_escape }} + {{ description | xml_escape }} + {{ eip.created | date_to_rfc822 }} + {{ site.url }}/{{ eip.url }} + {{ site.url }}/{{ eip.url }} + + {% endif %} + {% endunless %} + {% endfor %} +
+
diff --git a/rss/nonerc.xml b/rss/nonerc.xml new file mode 100644 index 00000000000000..327e47827ae964 --- /dev/null +++ b/rss/nonerc.xml @@ -0,0 +1,35 @@ +--- +layout: null +--- + + + + Ethereum EIPs + All EIPs that are not ERCs + {{ site.url }} + + {{ site.time | date_to_rfc822 }} + {% assign eips = site.pages | sort: 'eip' %} + {% for eip in eips %} + {% unless eip.category == "ERC" %} + {% if eip.status == "Last Call" %} + {% capture description %} +

EIP #{{ eip.eip }} - {{eip.title }} is in Last Call status. It is authored by {{ eip.author }} and was originally created {{ eip.created }}. It is in the {{ eip.category }} category of type {{ eip.type }}. Please review and note any changes that should block acceptance.

+ {% if eip.discussions-to %} +

The author has requested that discussions happen at the following URL: {{ eip.discussions-to }}

+ {% endif %} +
+ {{ eip.content }} + {% endcapture %} + + {{ eip.title | xml_escape }} + {{ description | xml_escape }} + {{ eip.created | date_to_rfc822 }} + {{ site.url }}/{{ eip.url }} + {{ site.url }}/{{ eip.url }} + + {% endif %} + {% endunless %} + {% endfor %} +
+