forked from neomutt/neomutt.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feature.html
71 lines (64 loc) · 1.59 KB
/
feature.html
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
---
layout: concertina
title: Features
---
<h2>Features</h2>
<p>
NeoMutt has brought together lots of Mutt patches, many of which were useful,
but had been abandoned.
</p>
<p>Before each patch is marked stable:
<ul>
<li>The code is brought up-to-date with Mutt-1.8.0</li>
<li>The code is tidied up, comments added, checks done</li>
<li>Documentation is written</li>
<li>A sample muttrc is created</li>
<li>The feature is tested</li>
</ul>
<p>
To find out more, see the <a href="/dev.html">Development Page</a>.
</p>
<h2>Status</h2>
<table summary="list of features">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Since</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{% for f in site.feature %}
{% if f.status == 'ignore' %}
{% continue %}
{% endif %}
<tr>
<td><a href="{{ f.url }}">{{ f.title }}</a>
{% if f.title == "Sidebar" %}
<a href="/feature/sidebar-intro">(Intro)</a>
{% endif %}
</td>
<td>{{ f.description }}</td>
<td>{{ f.since }}</td>
<td>
{% case f.status %}
{% when 'stable' %}
{% assign span = true %}
<span class="good">✔
{% when 'devel' %}
{% assign span = true %}
<span class="devel">⚠
{% when 'disabled' %}
{% assign span = true %}
<span class="devel">⚠
{% endcase %}
{{ f.status }}
{% if span == true %}
</span>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>