forked from Synthetixio/SIPs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
last-call.xml
35 lines (35 loc) · 1.69 KB
/
last-call.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Synthetix Sips Last Call Review</title>
<description>All sips 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>
{% assign sips = site.pages | sort: 'sip' %}
{% for sip in sips %}
{% if sip.status == "Last Call" %}
{% capture description %}
<p><strong>sip #{{ sip.sip }} - {{sip.title }}</strong> is in Last Call status. It is authored by {{ sip.author }} and was originally created {{ sip.created }}. It is in the {{ sip.category }} category of type {{ sip.type }}. Please review and note any changes that should block acceptance.</p>
{% if sip.discussions-to %}
<p>The author has requested that discussions happen at the following URL: {{ sip.discussions-to }}</p>
{% else %}
<p>Please visit the [ethereum/sips issues to comment](https://github.com/ethereum/sips/issues/{{sip.sip}}).</p>
{% endif %}
<hr />
{{ sip.content }}
{% endcapture %}
<item>
<title>{{ sip.title | xml_escape }}</title>
<description>{{ description | xml_escape }}</description>
<pubDate>{{ sip.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<link>{{ site.url }}/{{ sip.url }}</link>
<guid isPermaLink="true">{{ site.url }}/{{ sip.url }}</guid>
</item>
{% endif %}
{% endfor %}
</channel>
</rss>