Skip to content

Commit

Permalink
Two small RSS fixes to last-call.xml (ethereum#2438)
Browse files Browse the repository at this point in the history
* Fix pubDate in last call RSS

* Format date with RFC-822 as required by RSS 2.0
  • Loading branch information
axic authored Dec 16, 2019
1 parent dac5bfd commit e70716d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions last-call.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ 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>
<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 }}/last-call.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time }}</lastBuildDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}
{% for eip in eips %}
{% if eip.status == "Last Call" %}
Expand All @@ -25,7 +25,7 @@ layout: null
<item>
<title>{{ eip.title | xml_escape }}</title>
<description>{{ description | xml_escape }}</description>
<pubDate>{{ eip.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<pubDate>{{ eip.created | date_to_rfc822 }}</pubDate>
<link>{{ site.url }}/{{ eip.url }}</link>
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid>
</item>
Expand Down

0 comments on commit e70716d

Please sign in to comment.