forked from ethereum/EIPs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Website: more rss feeds (ethereum#6579)
* add rss feeds * Update rss/erc-last-call.xml Co-authored-by: Sam Wilson <[email protected]> * update anchor and titles --------- Co-authored-by: Sam Wilson <[email protected]>
- Loading branch information
Showing
6 changed files
with
142 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
layout: null | ||
--- | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | ||
<channel> | ||
<title>Ethereum EIPs - Last Call Review</title> | ||
<description>All EIPs which are in the "last call" status, please help review these and provide your feedback!</description> | ||
<link>{{ site.url }}</link> | ||
<atom:link href="{{ site.url }}/rss/last-call.xml" rel="self" type="application/rss+xml" /> | ||
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate> | ||
{% assign eips = site.pages | sort: 'eip' %} | ||
{% for eip in eips %} | ||
{% if eip.category == "ERC" %} | ||
{% if eip.status == "Last Call" %} | ||
{% capture description %} | ||
<p><strong>EIP #{{ eip.eip }} - {{eip.title }}</strong> 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.</p> | ||
{% if eip.discussions-to %} | ||
<p>The author has requested that discussions happen at the following URL: <a href="{{ eip.discussions-to }}">{{ eip.discussions-to }}</a></p> | ||
{% endif %} | ||
<hr /> | ||
{{ eip.content }} | ||
{% endcapture %} | ||
<item> | ||
<title>{{ eip.title | xml_escape }}</title> | ||
<description>{{ description | xml_escape }}</description> | ||
<pubDate>{{ eip.created | date_to_rfc822 }}</pubDate> | ||
<link>{{ site.url }}/{{ eip.url }}</link> | ||
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid> | ||
</item> | ||
{% endif %} | ||
{% endif %} | ||
{% endfor %} | ||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
layout: null | ||
--- | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | ||
<channel> | ||
<title>Ethereum ERCs</title> | ||
<description>All updates for ERCs</description> | ||
<link>{{ site.url }}</link> | ||
<atom:link href="{{ site.url }}/rss/erc.xml" rel="self" type="application/rss+xml" /> | ||
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate> | ||
{% assign eips = site.pages | sort: 'eip' %} | ||
{% for eip in eips %} | ||
{% if eip.category == "ERC" %} | ||
{% capture description %} | ||
<p><strong>EIP #{{ eip.eip }} - {{eip.title }}</strong> is in the {{ eip.category }} category of type {{ eip.type }} and was just updated.</p> | ||
{% if eip.discussions-to %} | ||
<p>The author has requested that discussions happen at the following URL: <a href="{{ eip.discussions-to }}">{{ eip.discussions-to }}</a></p> | ||
{% endif %} | ||
<hr /> | ||
{{ eip.content }} | ||
{% endcapture %} | ||
<item> | ||
<title>{{ eip.title | xml_escape }}</title> | ||
<description>{{ description | xml_escape }}</description> | ||
<pubDate>{{ eip.created | date_to_rfc822 }}</pubDate> | ||
<link>{{ site.url }}/{{ eip.url }}</link> | ||
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid> | ||
</item> | ||
{% endif %} | ||
{% endfor %} | ||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
layout: null | ||
--- | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | ||
<channel> | ||
<title>Ethereum EIPs - Last Call Review</title> | ||
<description>All EIPs which are in the two-week "last call" status, please help review these and provide your feedback!</description> | ||
<link>{{ site.url }}</link> | ||
<atom:link href="{{ site.url }}/rss/last-call.xml" rel="self" type="application/rss+xml" /> | ||
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate> | ||
{% assign eips = site.pages | sort: 'eip' %} | ||
{% for eip in eips %} | ||
{% unless eip.category == "ERC" %} | ||
{% if eip.status == "Last Call" %} | ||
{% capture description %} | ||
<p><strong>EIP #{{ eip.eip }} - {{eip.title }}</strong> 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.</p> | ||
{% if eip.discussions-to %} | ||
<p>The author has requested that discussions happen at the following URL: <a href="{{ eip.discussions-to }}">{{ eip.discussions-to }}</a></p> | ||
{% endif %} | ||
<hr /> | ||
{{ eip.content }} | ||
{% endcapture %} | ||
<item> | ||
<title>{{ eip.title | xml_escape }}</title> | ||
<description>{{ description | xml_escape }}</description> | ||
<pubDate>{{ eip.created | date_to_rfc822 }}</pubDate> | ||
<link>{{ site.url }}/{{ eip.url }}</link> | ||
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid> | ||
</item> | ||
{% endif %} | ||
{% endunless %} | ||
{% endfor %} | ||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
layout: null | ||
--- | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | ||
<channel> | ||
<title>Ethereum EIPs</title> | ||
<description>All EIPs that are not ERCs</description> | ||
<link>{{ site.url }}</link> | ||
<atom:link href="{{ site.url }}/rss/last-call.xml" rel="self" type="application/rss+xml" /> | ||
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate> | ||
{% assign eips = site.pages | sort: 'eip' %} | ||
{% for eip in eips %} | ||
{% unless eip.category == "ERC" %} | ||
{% if eip.status == "Last Call" %} | ||
{% capture description %} | ||
<p><strong>EIP #{{ eip.eip }} - {{eip.title }}</strong> 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.</p> | ||
{% if eip.discussions-to %} | ||
<p>The author has requested that discussions happen at the following URL: <a href="{{ eip.discussions-to }}">{{ eip.discussions-to }}</a></p> | ||
{% endif %} | ||
<hr /> | ||
{{ eip.content }} | ||
{% endcapture %} | ||
<item> | ||
<title>{{ eip.title | xml_escape }}</title> | ||
<description>{{ description | xml_escape }}</description> | ||
<pubDate>{{ eip.created | date_to_rfc822 }}</pubDate> | ||
<link>{{ site.url }}/{{ eip.url }}</link> | ||
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid> | ||
</item> | ||
{% endif %} | ||
{% endunless %} | ||
{% endfor %} | ||
</channel> | ||
</rss> |