aboutsummaryrefslogtreecommitdiff
blob: 419c2ce8c00a8b390c98a819c83b528d4817bce5 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
title: Gentoo Linux Enhancement Proposals
navtitle: GLEPs
permalink: /glep/

nav1: inside-gentoo
nav2: gleps
nav2-show: true
nav2-weight: 25
---

<h2>Implemented GLEPs (Final or Active)</h2>

<table class="table table-condensed table-striped">
  <tr>
    <th>GLEP number</th>
    <th>Type</th>
    <th>Status</th>
    <th>Title</th>
  </tr>
  {% for entry in site.data.gleps %}
    {% if entry.Status == 'Active' or entry.Status == 'Final' %}
      <tr>
	<td><a href='{{ entry.url }}'>{{ entry.GLEP | xml_escape }}</a></td>
	<td>{{ entry.Type | xml_escape }}</td>
	<td>{{ entry.Status | xml_escape }}</td>
	<td>{{ entry.Title | xml_escape }}</td>
      </tr>
    {% endif %}
  {% endfor %}
</table>

<h2>Accepted but not implemented GLEPs (Accepted)</h2>

<table class="table table-condensed table-striped">
  <tr>
    <th>GLEP number</th>
    <th>Type</th>
    <th>Status</th>
    <th>Title</th>
  </tr>
  {% for entry in site.data.gleps %}
    {% if entry.Status == 'Accepted' %}
      <tr>
	<td><a href='{{ entry.url }}'>{{ entry.GLEP | xml_escape }}</a></td>
	<td>{{ entry.Type | xml_escape }}</td>
	<td>{{ entry.Status | xml_escape }}</td>
	<td>{{ entry.Title | xml_escape }}</td>
      </tr>
    {% endif %}
  {% endfor %}
</table>

<h2>Draft GLEPs (Drafts)</h2>

<table class="table table-condensed table-striped">
  <tr>
    <th>GLEP number</th>
    <th>Type</th>
    <th>Status</th>
    <th>Title</th>
  </tr>
  {% for entry in site.data.gleps %}
    {% if entry.Status == 'Draft' %}
      <tr>
	<td><a href='{{ entry.url }}'>{{ entry.GLEP | xml_escape }}</a></td>
	<td>{{ entry.Type | xml_escape }}</td>
	<td>{{ entry.Status | xml_escape }}</td>
	<td>{{ entry.Title | xml_escape }}</td>
      </tr>
    {% endif %}
  {% endfor %}
</table>

<h2>Deferred, Rejected, Withdrawn, or Moribund GLEPs</h2>

<table class="table table-condensed table-striped">
  <tr>
    <th>GLEP number</th>
    <th>Type</th>
    <th>Status</th>
    <th>Title</th>
  </tr>
  {% for entry in site.data.gleps %}
    {% if entry.Status != 'Active' and entry.Status != 'Final'
        and entry.Status != 'Accepted' and entry.Status != 'Draft' %}
      <tr>
	<td><a href='{{ entry.url }}'>{{ entry.GLEP | xml_escape }}</a></td>
	<td>{{ entry.Type | xml_escape }}</td>
	<td>{{ entry.Status | xml_escape }}</td>
	<td>{{ entry.Title | xml_escape }}</td>
      </tr>
    {% endif %}
  {% endfor %}
</table>